/* ============================
   DESIGN TOKENS
   ============================ */
:root {
  --black: #0A0A0A;
  --black-light: #1A1A1A;
  --black-card: #141414;
  --gold: #C9A84C;
  --gold-light: #D4B86A;
  --gold-dark: #B8943F;
  --gold-300: #E8D48B;
  --gold-400: #D4B86A;
  --gold-700: #8B6914;
  --white: #F5F5F5;
  --gray: #A0A0A0;
  --gray-dark: #666;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1140px;
  --radius: 6px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================
   RESET & BASE
   ============================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold); }

.hide-mobile { display: block; }

/* ============================
   GLASS CARD (Liquid Glass)
   ============================ */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
  pointer-events: none;
}

/* ============================
   SECTION TITLES
   ============================ */
.section__tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  text-align: center;
}

.section__tagline--left { text-align: left; }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 16px;
}

.section__title--left { text-align: left; }

.section__subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ============================
   ANIMATIONS
   ============================ */

/* Reveal on scroll — default (up) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal from left */
.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal from right */
.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.reveal[data-delay="100"] { transition-delay: 0.1s; }
.reveal[data-delay="150"] { transition-delay: 0.15s; }
.reveal[data-delay="200"] { transition-delay: 0.2s; }
.reveal[data-delay="250"] { transition-delay: 0.25s; }
.reveal[data-delay="300"] { transition-delay: 0.3s; }
.reveal[data-delay="350"] { transition-delay: 0.35s; }
.reveal[data-delay="400"] { transition-delay: 0.4s; }
.reveal[data-delay="500"] { transition-delay: 0.5s; }

/* Gold shimmer text */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.gold-shimmer {
  background: linear-gradient(
    90deg,
    var(--gold-700) 0%,
    var(--gold-400) 25%,
    var(--gold-300) 50%,
    var(--gold-400) 75%,
    var(--gold-700) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* Float animation */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(-10px) rotate(45deg); }
}

.float {
  animation: float 6s ease-in-out infinite;
}

/* Pulse glow for CTA */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.05); }
}

/* Scroll line */
@keyframes scroll-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--right {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gold-shimmer {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--gold);
    color: var(--gold);
  }

  .float,
  .hero__scale,
  .scale__beam {
    animation: none;
  }

  .hero__scroll-line {
    animation: none;
  }

  .whatsapp-float {
    animation: none;
  }

  .hero__particle {
    animation: none;
  }

  .section-particle {
    animation: none;
  }

  .section-deco__orb {
    animation: none;
  }
}

/* ============================
   NAVBAR (Glassmorphism)
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.8);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.navbar__logo-icon {
  height: 55px;
  width: auto;
  transition: height var(--transition);
}

.navbar.scrolled .navbar__logo-icon { height: 44px; }

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.navbar__logo-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #F2E4A0, #D4AF37, #C9A84C, #A8862A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__logo-sub {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 3px;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__link {
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  color: var(--gray);
}

.navbar__link:hover { color: var(--gold); }

.navbar__link--cta {
  background: var(--gold);
  color: var(--black);
  font-weight: 500;
  padding: 8px 22px;
}

.navbar__link--cta:hover {
  background: var(--gold-light);
  color: var(--black);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}

.navbar__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  position: relative;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.25);
}

.btn--glow {
  overflow: visible;
}

.btn--glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gold);
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity var(--transition);
}

.btn--glow:hover::after {
  opacity: 0.4;
  animation: pulse-glow 2s ease-in-out infinite;
}

.btn--glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.btn--glass:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn--whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.hero__lines {
  position: absolute;
  inset: 0;
}

.hero__line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(201, 168, 76, 0.06), transparent);
}

.hero__line--1 { left: 25%; }
.hero__line--2 { left: 50%; }
.hero__line--3 { left: 75%; }

.hero__diamond {
  position: absolute;
  right: 15%;
  top: 30%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 168, 76, 0.08);
  transform: rotate(45deg);
}

.hero__diamond::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 168, 76, 0.05);
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* Hero content grid */
.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.hero__content {
  max-width: 720px;
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero badge */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Balanza de justicia */
.hero__scale {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-scale 6s ease-in-out infinite;
}

.hero__scale svg {
  filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.35))
          drop-shadow(0 0 40px rgba(201, 168, 76, 0.15));
}

.scale__beam {
  transform-origin: 100px 41px;
  animation: balance-tilt 4s ease-in-out infinite;
}

@keyframes float-scale {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes balance-tilt {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-3deg); }
  75% { transform: rotate(3deg); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

/* ============================
   STATS (Glass Strip with dividers)
   ============================ */
.stats {
  position: relative;
  margin-top: -40px;
  z-index: 3;
  padding: 0 0 60px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 36px 32px;
  background: rgba(201, 168, 76, 0.04) !important;
  border-color: rgba(201, 168, 76, 0.15) !important;
}

.stats__item {
  text-align: center;
  position: relative;
}

.stats__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(201, 168, 76, 0.15);
}

.stats__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
  line-height: 1;
}

.stats__plus, .stats__percent, .stats__unit {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.7;
}

.stats__label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 8px;
  letter-spacing: 0.5px;
}

/* ============================
   SECTION DECORATIVE BACKGROUNDS
   ============================ */

/* Base container — NO overflow hidden so glows aren't clipped */
.section-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Radial glows — no filter:blur, just large soft gradients */
.section-deco__glow {
  position: absolute;
}

.section-deco__glow--left {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 50% 60% at 10% 40%, rgba(201, 168, 76, 0.09) 0%, transparent 100%);
}

.section-deco__glow--right {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 50% 60% at 90% 60%, rgba(201, 168, 76, 0.08) 0%, transparent 100%);
}

.section-deco__glow--center {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 100%);
}

.section-deco__glow--center-low {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 70% 50% at 50% 75%, rgba(201, 168, 76, 0.07) 0%, transparent 100%);
}

.section-deco__glow--top-right {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 45% 50% at 85% 15%, rgba(201, 168, 76, 0.07) 0%, transparent 100%);
}

/* Vertical decorative lines */
.section-deco__line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(201, 168, 76, 0.06) 30%, rgba(201, 168, 76, 0.06) 70%, transparent 100%);
}

.section-deco__line--1 { left: 20%; }
.section-deco__line--2 { right: 20%; }

/* Mesh / grid pattern */
.section-deco__mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* Floating orbs */
.section-deco__orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.03);
}

.section-deco__orb--1 {
  width: 180px;
  height: 180px;
  top: 15%;
  left: 5%;
  animation: orb-float 10s ease-in-out infinite;
}

.section-deco__orb--2 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  right: 8%;
  animation: orb-float 8s ease-in-out infinite reverse;
}

.section-deco__orb--3 {
  width: 150px;
  height: 150px;
  top: 25%;
  right: 5%;
  animation: orb-float 12s ease-in-out infinite;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(10px, -15px); }
  50% { transform: translate(-5px, -25px); }
  75% { transform: translate(-15px, -10px); }
}

/* Particle container (JS-spawned) */
.section-deco__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.section-particle {
  position: absolute;
  bottom: 0;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: section-particle-rise linear infinite;
}

@keyframes section-particle-rise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  10% { opacity: 0.5; }
  90% { opacity: 0.3; }
  100% {
    opacity: 0;
    transform: translateY(calc(-100vh)) scale(1);
  }
}

/* ============================
   SERVICES
   ============================ */
.services {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 30px;
  transition: border-color var(--transition), transform var(--transition-slow), box-shadow var(--transition), background var(--transition);
  position: relative;
}

/* Interactive glass shimmer on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(201, 168, 76, 0.04) 50%,
    transparent 70%
  );
  background-size: 200% 200%;
  background-position: 100% 100%;
  transition: background-position 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card:hover::after {
  background-position: 0% 0%;
}

.service-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.3), transparent);
}

.service-card:hover {
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 40px rgba(201, 168, 76, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.service-card__icon,
.service-card__title,
.service-card__text,
.service-card__features,
.service-card__accent {
  position: relative;
  z-index: 1;
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: rgba(201, 168, 76, 0.08);
  margin-bottom: 20px;
}

.service-card__icon svg { width: 28px; height: 28px; }

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
}

.service-card__features svg {
  flex-shrink: 0;
}

/* ============================
   PROCESS STEPS
   ============================ */
.process {
  padding: 100px 0;
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process__step {
  position: relative;
  text-align: center;
}

.process__number-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.process__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
  position: relative;
  z-index: 1;
  transition: box-shadow var(--transition), background var(--transition);
}

.process__step:hover .process__number {
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.2), 0 0 40px rgba(201, 168, 76, 0.08);
  background: rgba(201, 168, 76, 0.1);
}

.process__connector {
  position: absolute;
  top: 50%;
  left: calc(50% + 40px);
  width: calc(100% - 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, 0.2));
  transform: translateY(-50%);
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.process__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================
   ABOUT
   ============================ */
.about {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.about .container {
  position: relative;
  z-index: 1;
}

.about__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Photo frame */
.about__photo-frame {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.06) 0%, rgba(10, 10, 10, 0.9) 100%) !important;
  border-color: rgba(201, 168, 76, 0.15) !important;
  overflow: hidden;
}

.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.about__role {
  font-size: 1rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}

.about__text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__text strong { color: var(--white); }

.about__values {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold);
  flex-shrink: 0;
}

.about__value-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.about__value-desc {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-dark);
  margin-top: 2px;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials {
  padding: 100px 0;
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.testimonial-card {
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(201, 168, 76, 0.06);
  background: rgba(255, 255, 255, 0.05);
}

.testimonial-card--offset {
  margin-top: 48px;
}

.testimonial-card__quote {
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--white);
  margin: 0;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.testimonial-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.15);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}

.testimonial-card__case {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-dark);
  margin-top: 2px;
}

/* ============================
   FAQ (Accordion with + icon)
   ============================ */
.faq {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq__grid {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  transition: border-color var(--transition);
}

.faq__item.open {
  border-color: rgba(201, 168, 76, 0.3);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--gold); }

.faq__icon {
  display: flex;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq__item.open .faq__answer {
  max-height: 300px;
}

.faq__answer p {
  padding: 0 24px 22px;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 640px;
}

/* ============================
   CTA BANNER (Centered with diamonds)
   ============================ */
.cta-banner {
  padding: 60px 0;
  background: var(--black-light);
  position: relative;
  overflow: hidden;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
}

.cta-banner__inner {
  position: relative;
  padding: 80px 60px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02)) !important;
  border-color: rgba(201, 168, 76, 0.2) !important;
}

.cta-banner__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin: 16px 0;
}

.cta-banner__text {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto;
}

.cta-banner__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Decorative diamonds */
.cta-banner__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-banner__diamond {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 168, 76, 0.08);
}

.cta-banner__diamond--sm {
  right: 0;
  width: 120px;
  height: 120px;
  border-color: rgba(201, 168, 76, 0.05);
}

/* ============================
   CONTACT
   ============================ */
.contact {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form {
  padding: 36px;
}

.contact-form__card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form__card-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 28px;
}

.contact-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__group--full {
  grid-column: 1 / -1;
}

.contact-form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 6px;
}

.contact-form__input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
}

.contact-form__input::placeholder { color: var(--gray-dark); }

.contact-form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
  background: rgba(201, 168, 76, 0.03);
}

.contact-form__input.error { border-color: #e74c3c; }

.contact-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  margin-top: 24px;
}

.contact-form__disclaimer {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--gray-dark);
  text-align: center;
}

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  transition: border-color var(--transition);
}

.contact-info__card:hover { border-color: rgba(201, 168, 76, 0.3); }

.contact-info__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.contact-info__icon svg { width: 100%; height: 100%; }

.contact-info__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-info__value {
  font-size: 0.9rem;
  color: var(--white);
  transition: color var(--transition);
}

a.contact-info__value:hover { color: var(--gold); }

/* Form success */
.contact-form.sent .contact-form__fields,
.contact-form.sent .contact-form__card-subtitle,
.contact-form.sent .btn,
.contact-form.sent .contact-form__disclaimer { display: none; }

.contact-form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.contact-form.sent .contact-form__success { display: block; }

.contact-form__success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-form__success p {
  color: var(--gray);
  font-size: 0.9rem;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  padding: 70px 0 0;
  background: var(--black-light);
  position: relative;
}

.footer__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer__brand {
  padding-right: 20px;
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer__logo-icon {
  height: 48px;
  width: auto;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer__logo-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, #F2E4A0, #D4AF37, #C9A84C, #A8862A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer__logo-sub {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  opacity: 0.85;
  margin-top: 3px;
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav a {
  font-size: 0.88rem;
  color: var(--gray);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--gold); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact li {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

.footer__contact a {
  color: var(--gray);
  transition: color var(--transition);
}

.footer__contact a:hover { color: var(--gold); }

.footer__schedule {
  color: var(--gold) !important;
  font-size: 0.82rem !important;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--gray-dark);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--gray);
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.footer__social a:hover { color: var(--gold); }

/* ============================
   WHATSAPP FLOAT
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: whatsapp-pulse 3s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    display: none;
  }

  .about__inner { gap: 40px; }

  .cta-banner__inner {
    padding: 60px 30px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-inline: auto;
  }

  .testimonial-card--offset {
    margin-top: 0;
  }

  .footer__grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .navbar__toggle { display: flex; }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0,0,0,0.5);
  }

  .navbar__menu.open { right: 0; }

  .navbar__link {
    font-size: 1rem;
    padding: 14px 20px;
    width: 100%;
    text-align: center;
  }

  .hide-mobile { display: none !important; }

  .hero {
    min-height: calc(100vh - 60px);
  }

  .hero__container { padding-top: 100px; padding-bottom: 60px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__subtitle br { display: none; }
  .hero__scroll { display: none; }

  .stats { margin-top: 0; padding: 40px 0; }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 28px 24px;
  }

  .stats__item:nth-child(2)::after {
    display: none;
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__photo-frame { max-width: 280px; margin-inline: auto; }
  .section__title--left { text-align: center; }
  .section__tagline--left { text-align: center; }
  .about__role { text-align: center; }
  .about__text { text-align: center; }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form__fields {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .process__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 20px;
    text-align: left;
  }

  .process__number-wrapper {
    grid-row: 1 / 3;
    align-self: start;
    margin-bottom: 0;
  }

  .process__number {
    width: 52px;
    height: 52px;
    font-size: 1rem;
  }

  .process__step-title {
    align-self: end;
  }

  .faq__question { font-size: 0.9rem; padding: 18px 20px; }
  .faq__answer p { padding: 0 20px 18px; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__number { font-size: 2rem; }

  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; }

  .contact-form { padding: 24px; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer__brand { padding-right: 0; }
  .footer__nav, .footer__contact { align-items: center; }
}