/* ============================================
   VELA AGUILAR CONSULTORES - Complete Style System
   ============================================ */

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

:root {
  --black:       #0a0a0a;
  --off-black:   #111111;
  --gray-dark:   #1c1c1c;
  --gray-mid:    #4a4a4a;
  --gray-soft:   #8a8a8a;
  --gray-line:   #e2e2e2;
  --off-white:   #f7f5f2;
  --white:       #ffffff;
  --gold:        #c9a84c;
  --gold-light:  #e8d49a;
  --gold-dark:   #b8943a;
  --whatsapp:    #25D366;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.04);
  --shadow-md:   0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:   0 24px 60px rgba(0,0,0,0.12);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   24px;
  --transition:  0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; overflow-x: hidden; }

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

h1, h2, h3, h4, .serif, .font-serif { font-family: 'DM Serif Display', serif; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ----- BUTTONS ----- */
.btn,
.btn-primary,
.btn-gold,
.btn-outline,
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 34px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn::after,
.btn-primary::after,
.btn-gold::after,
.btn-outline::after,
.btn-outline-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.btn:hover::after,
.btn-primary:hover::after,
.btn-gold:hover::after,
.btn-outline:hover::after,
.btn-outline-dark:hover::after { opacity: 1; }
.btn:active,
.btn-primary:active,
.btn-gold:active,
.btn-outline:active,
.btn-outline-dark:active { transform: scale(0.97) translateY(0); }

.btn i,
.btn-primary i,
.btn-gold i,
.btn-outline i,
.btn-outline-dark i { font-size: 1.05rem; transition: transform 0.3s ease; }
.btn:hover i,
.btn-primary:hover i,
.btn-gold:hover i,
.btn-outline:hover i,
.btn-outline-dark:hover i { transform: translateX(3px); }

/* Primary - White to Gold */
.btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(255,255,255,0.1);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.2);
}
.btn-primary:active { box-shadow: 0 4px 16px rgba(255,255,255,0.1); }

/* Gold */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  box-shadow: 0 4px 24px rgba(201,168,76,0.25);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.4);
}
.btn-gold:active { box-shadow: 0 4px 16px rgba(201,168,76,0.2); }

/* Outline (white) */
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.08);
}
.btn-outline:active { box-shadow: 0 4px 16px rgba(255,255,255,0.03); }

/* Outline Dark */
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gray-line);
}
.btn-outline-dark:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.btn-outline-dark:active { box-shadow: 0 4px 16px rgba(0,0,0,0.04); }

/* WhatsApp button (full-width forms) */
.btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 34px;
  border-radius: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--black);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.08);
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.btn-wa i { color: var(--whatsapp); font-size: 1.25rem; transition: transform 0.3s ease; }
.btn-wa:hover { background: #1a1a1a; border-color: rgba(255,255,255,0.15); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.15); }
.btn-wa:hover i { transform: scale(1.1); }
.btn-wa:active { transform: scale(0.97); }

/* Small variant – use alongside btn / btn-primary etc: class="btn btn-sm" */
.btn-sm { padding: 12px 24px; font-size: 0.82rem; border-radius: 6px; gap: 8px; }
.btn-sm i { font-size: 0.9rem; }

/* ===== HEADER / NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
header.scrolled {
  background: rgba(10,10,10,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  gap: 1.5rem;
}
.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo img { height: 75px; width: auto; display: block; object-fit: contain; }
@media (max-width: 768px) { .logo img { height: 50px; } }

/* Navigation */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 0.15rem;
  align-items: center;
}
.nav-menu > li > a,
.nav-menu > li > .dropdown-toggle {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav-menu > li > .dropdown-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active,
.nav-menu > li > .dropdown-toggle:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-menu > li > a .arrow,
.nav-menu > li > .dropdown-toggle .arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
}
.nav-menu > li:hover > a .arrow,
.nav-menu > li:hover > .dropdown-toggle .arrow { transform: rotate(180deg); }

/* Dropdown bridge fix - no gap between li and dropdown */
.nav-menu > li.has-dropdown {
  position: relative;
}
.nav-menu > li.has-dropdown::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: -10px;
  width: calc(100% + 20px);
  height: 24px;
}
.nav-menu > li.has-dropdown > a,
.nav-menu > li.has-dropdown > .dropdown-toggle {
  position: relative;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 0px);
  left: 50%;
  transform: translateX(-50%) translateY(8px) scale(0.98);
  min-width: 260px;
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-menu > li.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(4px) scale(1);
  pointer-events: auto;
}
.dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.dropdown li a i {
  width: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gold);
  opacity: 0.7;
}
.dropdown li a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.dropdown li a:hover i { opacity: 1; }
.dropdown li a .drop-label {
  display: flex;
  flex-direction: column;
}
.dropdown li a .drop-label small {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  font-size: 26px;
  z-index: 1001;
  transition: color var(--transition);
}
.hamburger:hover { color: var(--gold); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }

/* Mobile-only elements - hidden on desktop */
.mob-header,
.mob-cta,
.btn-mob-account { display: none; }

@media (max-width: 1024px) {
  .hamburger { display: flex; gap: 0; }
  .hamburger .hamburger-icon { display: flex; }
  .hamburger .close-icon { display: none; }
  .hamburger.active .hamburger-icon { display: none; }
  .hamburger.active .close-icon { display: flex; }
  .mobile-overlay { display: block; }

  /* --- Mobile header bar --- */
  .mob-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.5rem 0 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 0.5rem;
    flex-shrink: 0;
  }
  .mob-logo { display: flex; align-items: center; }
  .mob-logo img { height: 42px; width: auto; object-fit: contain; }
  .mob-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }
  .mob-close:hover,
  .mob-close:active {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.25);
    color: var(--gold);
  }

  /* --- Mobile CTA button --- */
  .mob-cta {
    display: block;
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 0.8rem;
  }
  .btn-mob-account {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(201,168,76,0.05) 100%);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.2);
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
    box-shadow: 0 0 20px rgba(201,168,76,0.06);
  }
  .btn-mob-account i { font-size: 1rem; }
  .btn-mob-account:hover,
  .btn-mob-account:active {
    background: linear-gradient(135deg, rgba(201,168,76,0.25) 0%, rgba(201,168,76,0.1) 100%);
    box-shadow: 0 0 30px rgba(201,168,76,0.15);
    transform: scale(1.02);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #050816;
    flex-direction: column;
    padding: 1.2rem 1.5rem 2rem;
    gap: 0.35rem;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
    align-items: stretch;
    border: none;
    -webkit-overflow-scrolling: touch;
  }
  .nav-menu.active { transform: translateY(0); }

  .mob-header,
  .mob-cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .nav-menu > li:not(.mob-header):not(.mob-cta) {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 14px;
    overflow: hidden;
    box-sizing: border-box;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  }
  .nav-menu > li:not(.mob-header):not(.mob-cta):hover,
  .nav-menu > li:not(.mob-header):not(.mob-cta):active {
    background: rgba(255,255,255,0.04);
    border-color: rgba(201,168,76,0.15);
    box-shadow: 0 0 20px rgba(201,168,76,0.04);
  }
  .nav-menu > li:not(.mob-header):not(.mob-cta) > a,
  .nav-menu > li:not(.mob-header):not(.mob-cta) > .dropdown-toggle {
    display: flex;
    width: 100%;
    max-width: 100%;
    font-size: 0.92rem;
    padding: 14px 18px;
    justify-content: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    border-radius: 14px;
    letter-spacing: 0.06em;
    font-weight: 500;
    box-sizing: border-box;
    transition: color 0.25s ease;
  }
  .nav-menu > li:not(.mob-header):not(.mob-cta) > a i:first-child {
    width: 20px;
    text-align: center;
    font-size: 0.95rem;
    color: var(--gold);
    opacity: 0.6;
    transition: opacity 0.25s ease;
  }
  .nav-menu > li:not(.mob-header):not(.mob-cta):hover > a i:first-child,
  .nav-menu > li:not(.mob-header):not(.mob-cta):active > a i:first-child { opacity: 1; }
  .nav-menu > li:not(.mob-header):not(.mob-cta) > a:hover,
  .nav-menu > li:not(.mob-header):not(.mob-cta) > .dropdown-toggle:hover,
  .nav-menu > li:not(.mob-header):not(.mob-cta) > a:active {
    color: var(--white);
  }
  /* --- Arrow --- */
  .nav-menu > li:not(.mob-header):not(.mob-cta) > a .arrow,
  .nav-menu > li:not(.mob-header):not(.mob-cta) > .dropdown-toggle .arrow {
    font-size: 0.6rem;
    margin-left: auto;
    color: rgba(255,255,255,0.2);
    transition: color 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .nav-menu > li:not(.mob-header):not(.mob-cta):hover > a .arrow,
  .nav-menu > li:not(.mob-header):not(.mob-cta):hover > .dropdown-toggle .arrow,
  .nav-menu > li:not(.mob-header):not(.mob-cta):active > a .arrow {
    color: var(--gold);
  }
  .nav-menu > li.dropdown-open > a .arrow,
  .nav-menu > li.dropdown-open > .dropdown-toggle .arrow {
    transform: none;
    color: rgba(255,255,255,0.35);
  }

  .nav-menu > li.has-dropdown::after { display: none; }

  .nav-menu > li.has-dropdown > a,
  .nav-menu > li.has-dropdown > .dropdown-toggle {
    justify-content: flex-start;
  }
  .nav-menu > li.has-dropdown > .dropdown-toggle {
    cursor: default;
    pointer-events: none;
  }
  .nav-menu > li.has-dropdown > .dropdown-toggle .arrow {
    display: none;
  }

  .nav-menu > li.has-dropdown,
  .nav-menu > li.has-dropdown .dropdown {
    width: 100%;
    max-width: 100%;
    align-self: stretch;
  }

  /* --- Dropdown accordion --- */
  .dropdown {
    position: static;
    top: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 0 0 14px 14px;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    padding: 8px;
    margin: 0;
    max-height: none;
    overflow: visible;
    overflow-x: hidden;
    box-sizing: border-box;
    gap: 4px;
    transition: background 0.25s ease, border-color 0.25s ease;
  }

  .dropdown li {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
  }

  .dropdown li:not(:last-child) a {
    border-bottom: 1px solid rgba(255,255,255,0.03);
  }
  .dropdown li a {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
    padding: 12px 14px;
    font-size: 0.82rem;
    border-radius: 0;
    border: none;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
    background: transparent;
    text-transform: none;
    letter-spacing: normal;
    white-space: normal;
    transition: background 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  .dropdown li:first-child a { padding-top: 14px; }
  .dropdown li:last-child a { padding-bottom: 14px; }
  .dropdown li a:hover {
    background: rgba(201,168,76,0.05);
    color: var(--white);
  }
  .dropdown li a i {
    font-size: 0.8rem;
    width: 18px;
    text-align: center;
    color: var(--gold);
    opacity: 0.5;
    transition: opacity 0.25s ease;
    margin-top: 2px;
  }
  .dropdown li a:hover i { opacity: 1; }
  .dropdown li a .drop-label {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .dropdown li a .drop-label strong,
  .dropdown li a .drop-label small {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
    line-height: 1.35;
  }
  .dropdown li a .drop-label strong {
    font-weight: 500;
  }
  .dropdown li a .drop-label small {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.2);
    font-weight: 300;
    margin-top: 1px;
  }
  .dropdown li a:hover .drop-label small {
    color: rgba(255,255,255,0.3);
  }
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: block;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.12;
  margin-bottom: 1.2rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 540px;
}
.section-head { margin-bottom: 4rem; }
.section-head.center { text-align: center; }
.section-head.center .section-label,
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }
.section-head.light .section-title { color: var(--white); }
.section-head.light .section-sub { color: rgba(255,255,255,0.55); }

/* ===== HERO ===== */
.hero {
  background: var(--off-black);
  color: var(--white);
  padding: 140px 0 90px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.015) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.015) 80px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 120px 0 70px; min-height: auto; }
  .hero .hero-badges { display: none; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero h1 .gold { color: var(--gold); }
.hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badges { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-end; }
.hero-stat { text-align: right; }
.hero-stat .num {
  font-family: 'DM Serif Display', serif;
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  align-self: center;
  margin: 0 auto;
}

/* Hero for inner pages */
.hero-inner {
  background: var(--off-black);
  color: var(--white);
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner .hero-content { position: relative; max-width: 700px; }
.hero-inner .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero-inner h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-inner h1 span { color: var(--gold); }
.hero-inner p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ===== ABOUT / NOSOTROS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }
.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-mid);
  margin-bottom: 1.2rem;
}
.about-values { display: grid; gap: 1.2rem; }
.value-item {
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 1.3rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.value-item:hover { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.06); }
.value-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--black);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
}
.value-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.value-item p { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.5; }

/* Stats */
.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.stat-item .num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.3rem;
  color: var(--black);
  line-height: 1;
}
.stat-item .label {
  font-size: 0.78rem;
  color: var(--gray-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Timeline for about */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gray-line);
}
.timeline-item { position: relative; padding-bottom: 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item .year {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.timeline-item p { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.6; }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: var(--gold);
}
.team-card h4 { font-size: 1.05rem; margin-bottom: 2px; }
.team-card .role { font-size: 0.8rem; color: var(--gray-soft); margin-bottom: 0.8rem; }
.team-card p { font-size: 0.85rem; color: var(--gray-mid); line-height: 1.6; }

/* ===== SERVICES ===== */
#servicios { background: var(--black); }
#servicios .section-title { color: var(--white); }
#servicios .section-sub { color: rgba(255,255,255,0.5); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--off-black);
  padding: 2.8rem 2.5rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(201,168,76,0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover { background: var(--gray-dark); }
.service-card:hover .s-num { color: var(--gold); }
.s-num {
  font-family: 'DM Serif Display', serif;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.15);
  margin-bottom: 1.5rem;
  transition: color 0.3s;
}
.s-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  color: var(--white);
  transition: border-color 0.3s;
}
.service-card:hover .s-icon { border-color: var(--gold); }
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.service-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.4rem;
}
.s-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.s-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
}

/* Service detail benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem 2.5rem;
  border: 1px solid var(--gray-line);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.benefit-card:hover::before { opacity: 1; }
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--black);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.benefit-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.benefit-card p { font-size: 0.88rem; color: var(--gray-mid); line-height: 1.65; }

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }
.process-step {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.2rem;
  border: 1px solid var(--gray-line);
  transition: var(--transition);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-step .num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.process-step h4 { font-size: 0.95rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.82rem; color: var(--gray-mid); line-height: 1.5; }

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .projects-grid { grid-template-columns: 1fr; } }
.project-card {
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card-img {
  background: var(--black);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  overflow: hidden;
  color: var(--white);
}
.project-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(201,168,76,0.12), transparent 70%);
}
.project-card-img .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .overlay { opacity: 1; }
.project-card-img .overlay span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 18px;
  border-radius: 100px;
}
.project-body { padding: 1.6rem; }
.project-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.project-body p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.proj-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.proj-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--off-white);
  color: var(--gray-mid);
}

/* ===== TESTIMONIALS ===== */
#testimonios { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
.t-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-line);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: var(--transition);
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.t-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.t-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--gray-mid);
  flex-grow: 1;
  font-style: italic;
}
.t-author { display: flex; align-items: center; gap: 0.9rem; }
.t-avatar {
  width: 40px;
  height: 40px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.t-author-name { font-size: 0.88rem; font-weight: 600; }
.t-author-role { font-size: 0.75rem; color: var(--gray-soft); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-icon {
  width: 42px;
  height: 42px;
  background: var(--black);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--white);
}
.ci-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-soft);
  margin-bottom: 2px;
}
.ci-value { font-size: 0.9rem; color: var(--black); font-weight: 500; }
.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-line);
}
.map-wrap iframe { width: 100%; height: 220px; border: 0; display: block; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-mid);
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.error-msg {
  font-size: 0.73rem;
  color: #c0392b;
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 18px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
  padding: 5rem 0 2.5rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand img { height: 60px; width: auto; display: block; margin-bottom: 1rem; object-fit: contain; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-brand .tagline {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 5px 12px;
  border-radius: 4px;
}
.footer-brand .tagline i { color: var(--gold); }
.footer-col h5 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a i { font-size: 0.65rem; color: var(--gold); opacity: 0.5; }
.footer-col ul li a:hover i { opacity: 1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; }
.footer-bottom span { font-size: 0.72rem; color: rgba(255,255,255,0.2); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 60px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  animation: waPulse 2.5s ease infinite;
  transition: var(--transition);
}
.wa-float i { color: var(--white); font-size: 1.3rem; }
.wa-float:hover { transform: scale(1.06); background: #1db954; }
.wa-float .wa-text-label { display: inline; }
@media (max-width: 560px) {
  .wa-float .wa-text-label { display: none; }
  .wa-float { padding: 14px 16px; }
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--gold); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gold); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  background: var(--white);
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--off-white); }
.faq-question i {
  transition: transform 0.3s ease;
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-item.active .faq-question { background: var(--off-white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.2rem;
}
.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-mid);
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img {
  height: 180px;
  background: var(--off-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--gold);
}
.blog-body { padding: 1.5rem; }
.blog-body .blog-date {
  font-size: 0.72rem;
  color: var(--gray-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.blog-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.blog-body p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.blog-body .read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-body .read-more:hover { gap: 10px; }
.blog-body .read-more i { font-size: 0.7rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .cta-content { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-banner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.cta-banner p { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; line-height: 1.7; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== PAGE HEADER (for legal pages) ===== */
.page-header {
  background: var(--off-black);
  color: var(--white);
  padding: 130px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .content { position: relative; max-width: 700px; }
.page-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-header p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.8rem;
  line-height: 1.6;
}

/* ===== LEGAL CONTENT ===== */
.legal-content { padding: 60px 0 100px; }
.legal-content .content { max-width: 800px; margin: 0 auto; }
.legal-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin: 2rem 0 0.8rem;
  color: var(--black);
}
.legal-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  margin: 1.5rem 0 0.6rem;
  color: var(--black);
}
.legal-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-mid);
  margin-bottom: 1rem;
}
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gray-mid);
  margin-bottom: 0.4rem;
  list-style: disc;
}
.legal-content strong { color: var(--black); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.bg-offwhite { background: var(--off-white) !important; }
.bg-black { background: var(--black) !important; }
.gold { color: var(--gold); }
.small-text { font-size: 0.85rem; color: var(--gray-mid); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  section { padding: 70px 0; }
  .section-head { margin-bottom: 2.5rem; }
  .hero { padding: 110px 0 60px; }
  .hero-inner { padding: 110px 0 60px; }
  .page-header { padding: 110px 0 50px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .service-card { padding: 2rem 1.5rem; }
  .benefit-card { padding: 1.5rem; }
  .project-body { padding: 1.2rem; }
  .t-card { padding: 1.5rem; }
  .team-card { padding: 1.5rem; }
  .process-step { padding: 1.4rem 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .team-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-form { gap: 0.8rem; }
  .ci-item { gap: 0.8rem; }
}
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .service-card { padding: 1.5rem 1.2rem; }
  .hero-cta .btn,
  .hero-cta .btn-primary,
  .hero-cta .btn-gold,
  .hero-cta .btn-outline { padding: 16px 24px; font-size: 0.85rem; width: 100%; }
  .section-title { font-size: 1.7rem; }
  .hero h1 { font-size: 1.8rem; }
}
