/* ═══════════════════════════════════════════════════
   RODRÍGUEZ FINANCIAL ADVISORY — Main Stylesheet
   Version: 1.0.0
   ═══════════════════════════════════════════════════ */

/* ── ROOT TOKENS ── */
:root {
  --gold:       #D4AF37;
  --gold-dark:  #B8860B;
  --gold-light: #F2D98C;
  --black:      #0C0C0C;
  --dark1:      #141414;
  --dark2:      #1C1C1C;
  --dark3:      #252525;
  --gray-light: #E0E0E0;
  --gray-mid:   #888;
  --muted:      #5A5040;
  --white:      #FFF;
  --gold-grad:  linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--gray-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9000;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 78px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: rgba(12,12,12,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.12);
  transition: background .4s, box-shadow .4s;
}
nav.scrolled {
  background: rgba(12,12,12,0.98);
  box-shadow: 0 4px 40px rgba(0,0,0,.7);
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.logo-svg-wrap { width: 48px; height: 48px; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1; gap: 5px; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logo-divider-row { display: flex; align-items: center; gap: 5px; }
.logo-divider-row::before {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark));
}
.logo-divider-row::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold-dark), transparent);
}
.logo-sub {
  font-size: .5rem; letter-spacing: .28em; color: var(--muted);
  text-transform: uppercase; font-weight: 500; white-space: nowrap; padding: 0 4px;
}

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  color: rgba(224,224,224,.7); text-decoration: none;
  font-size: .72rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  position: relative; padding-bottom: 4px; transition: color .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .35s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-toggle {
  display: flex; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,175,55,.18);
  border-radius: 24px; padding: 3px;
}
.lang-btn {
  padding: 5px 14px; border: none; background: transparent;
  color: var(--muted); cursor: pointer; border-radius: 20px;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  font-family: 'Montserrat', sans-serif; transition: all .25s;
}
.lang-btn.active { background: var(--gold-grad); color: var(--black); }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid rgba(212,175,55,.45);
  color: var(--gold); background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; white-space: nowrap; transition: all .3s;
}
.nav-cta:hover { background: var(--gold-grad); border-color: transparent; color: var(--black); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--gold); transition: all .3s; }

.mobile-menu {
  display: none; position: fixed; inset: 0; top: 78px;
  background: rgba(12,12,12,.98); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 40px; z-index: 199;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--gray-light); text-decoration: none; transition: color .3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mob-lang { display: flex; gap: 8px; margin-top: 12px; }

/* ── HERO ── */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 130px 6% 90px; position: relative; overflow: hidden;
}
.hero-ambient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 75% 50%, rgba(184,134,11,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,175,55,.04) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.03) 1px, transparent 1px);
  background-size: 72px 72px;
}
.hero-chart {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  display: flex; align-items: flex-end; gap: 10px; height: 260px; opacity: .07;
}
.hero-chart span {
  display: block; width: 22px; border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  animation: barPulse 4s ease-in-out infinite;
}
.hero-chart span:nth-child(1){height:35%;animation-delay:0s}
.hero-chart span:nth-child(2){height:60%;animation-delay:.15s}
.hero-chart span:nth-child(3){height:45%;animation-delay:.3s}
.hero-chart span:nth-child(4){height:82%;animation-delay:.45s}
.hero-chart span:nth-child(5){height:56%;animation-delay:.6s}
.hero-chart span:nth-child(6){height:96%;animation-delay:.75s}
.hero-chart span:nth-child(7){height:70%;animation-delay:.9s}
@keyframes barPulse { 0%,100%{opacity:.07} 50%{opacity:.17} }

.hero-trendline { position: absolute; right: 5%; top: 50%; transform: translateY(-80px); opacity: .06; }

.hero-content { max-width: 680px; position: relative; z-index: 2; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 26px;
  font-size: .68rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  animation: fadeUp .9s both;
}
.hero-eyebrow .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-dark); display: inline-block; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 30px;
  animation: fadeUp .9s .12s both;
}
.hero-title em {
  font-style: italic; display: block;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc {
  font-size: 1rem; color: var(--gray-mid); max-width: 520px;
  line-height: 1.9; margin-bottom: 50px; font-weight: 300;
  animation: fadeUp .9s .24s both;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; animation: fadeUp .9s .36s both; }

.btn-gold {
  padding: 15px 38px; background: var(--gold-grad); color: var(--black);
  font-family: 'Montserrat', sans-serif; font-size: .75rem;
  font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  border: none; cursor: pointer; text-decoration: none; display: inline-block;
  transition: transform .3s, box-shadow .3s; position: relative; overflow: hidden;
}
.btn-gold::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0); transition: background .3s; }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(212,175,55,.35); }
.btn-gold:hover::before { background: rgba(255,255,255,.12); }
.btn-outline {
  padding: 14px 36px; background: transparent;
  border: 1px solid rgba(212,175,55,.35); color: rgba(212,175,55,.85);
  font-family: 'Montserrat', sans-serif; font-size: .75rem;
  font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all .3s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(212,175,55,.06); }

.hero-stats {
  display: flex; align-items: stretch; animation: fadeUp .9s .48s both;
  border: 1px solid rgba(212,175,55,.1); background: rgba(255,255,255,.02);
  backdrop-filter: blur(8px); margin-top: 72px; width: fit-content;
}
.stat { padding: 24px 40px; text-align: center; border-right: 1px solid rgba(212,175,55,.1); }
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 6px;
}
.stat-l { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ── SECTION COMMONS ── */
.section-pad { padding: 110px 6%; }
.tag { font-size: .62rem; letter-spacing: .5em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 14px; display: block; }
.h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.8vw, 3.1rem); font-weight: 700; color: var(--white); line-height: 1.2; }
.h2 em { font-style: italic; color: var(--gold); }
.lead { font-size: .95rem; color: var(--gray-mid); line-height: 1.9; max-width: 540px; font-weight: 300; }
.gold-divider { width: 100%; height: 1px; background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,.25) 30%, rgba(212,175,55,.25) 70%, transparent 100%); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── ABOUT ── */
#about { background: var(--dark1); position: relative; overflow: hidden; }
#about::before {
  content: ''; position: absolute; right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,.05) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.about-text .h2 { margin-bottom: 22px; }
.about-text .lead { margin-bottom: 36px; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(212,175,55,.08); }
.pillar-card { background: var(--dark1); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; transition: background .3s; }
.pillar-card:hover { background: rgba(212,175,55,.04); }
.pillar-ico { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.pillar-ico svg { width: 26px; height: 26px; }
.pillar-name { font-family: 'Playfair Display', serif; font-size: .95rem; color: var(--white); font-weight: 600; }
.pillar-desc { font-size: .78rem; color: var(--gray-mid); line-height: 1.7; }
.about-cards-col { display: flex; flex-direction: column; gap: 20px; }
.about-card { background: var(--dark2); border: 1px solid rgba(212,175,55,.08); padding: 38px 36px; position: relative; overflow: hidden; transition: border-color .35s; }
.about-card::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold-grad); }
.about-card:hover { border-color: rgba(212,175,55,.22); }
.about-card-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 12px; }
.about-card-text { font-size: .85rem; color: var(--gray-mid); line-height: 1.85; }

/* ── SERVICES ── */
#services { background: var(--black); }
.services-hd { text-align: center; margin-bottom: 64px; }
.services-hd .lead { margin: 18px auto 0; text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(212,175,55,.07); }
.svc-card { background: var(--black); padding: 44px 38px; position: relative; overflow: hidden; transition: background .35s; cursor: default; }
.svc-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold-grad); transition: width .45s ease; }
.svc-card:hover { background: rgba(212,175,55,.03); }
.svc-card:hover::after { width: 100%; }
.svc-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 900; color: rgba(212,175,55,.07); position: absolute; top: 20px; right: 24px; line-height: 1; transition: color .35s; }
.svc-card:hover .svc-num { color: rgba(212,175,55,.14); }
.svc-ico { width: 44px; height: 44px; margin-bottom: 22px; display: flex; align-items: center; justify-content: center; color: var(--gold); }
.svc-ico svg { width: 36px; height: 36px; stroke-width: 1.2; }
.svc-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--white); font-weight: 600; margin-bottom: 12px; }
.svc-desc { font-size: .82rem; color: var(--gray-mid); line-height: 1.85; }

/* ── WHY US ── */
#why { background: var(--dark1); position: relative; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.why-items { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.why-item { display: flex; gap: 26px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.why-item:last-child { border-bottom: none; }
.why-n { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; min-width: 36px; line-height: 1; padding-top: 4px; }
.why-t { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 8px; font-weight: 600; }
.why-p { font-size: .83rem; color: var(--gray-mid); line-height: 1.85; }
.why-quote-block { margin-top: 40px; background: var(--dark2); border: 1px solid rgba(212,175,55,.12); padding: 52px 48px; position: relative; overflow: hidden; }
.why-quote-block::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 10rem; line-height: .8; color: rgba(212,175,55,.07); position: absolute; top: 20px; left: 28px; }
.quote-mark-line { width: 40px; height: 2px; background: var(--gold-grad); margin-bottom: 28px; }
.quote-body { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-style: italic; color: var(--gray-light); line-height: 1.75; position: relative; z-index: 1; margin-bottom: 32px; }
.quote-sig { display: flex; align-items: center; gap: 18px; }
.quote-avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--gold-grad); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: var(--black); flex-shrink: 0; }
.quote-name { font-size: .9rem; color: var(--white); font-weight: 600; margin-bottom: 3px; }
.quote-role { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ── PROCESS ── */
#process { background: var(--black); overflow: hidden; }
.process-hd { text-align: center; margin-bottom: 80px; }
.process-hd .lead { margin: 16px auto 0; text-align: center; }
.process-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.process-track::before { content: ''; position: absolute; top: 36px; left: calc(12.5% + 36px); right: calc(12.5% + 36px); height: 1px; background: linear-gradient(90deg, rgba(212,175,55,.15), rgba(212,175,55,.6), rgba(212,175,55,.15)); z-index: 0; }
.proc-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 28px; }
.proc-circle { width: 72px; height: 72px; border-radius: 50%; border: 1px solid rgba(212,175,55,.4); background: var(--black); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); font-weight: 700; position: relative; z-index: 1; margin-bottom: 28px; transition: all .35s; }
.proc-step:hover .proc-circle { background: var(--gold-grad); color: var(--black); box-shadow: 0 0 36px rgba(212,175,55,.4); border-color: transparent; }
.proc-title { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 10px; font-weight: 600; }
.proc-desc { font-size: .8rem; color: var(--gray-mid); line-height: 1.85; }

/* ── CONTACT ── */
#contact { background: var(--dark1); position: relative; overflow: hidden; }
#contact::before { content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 1000px; height: 600px; background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(212,175,55,.06) 0%, transparent 70%); pointer-events: none; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; position: relative; z-index: 1; }
.contact-info { padding-top: 8px; }
.contact-info .h2 { margin-bottom: 22px; }
.contact-info .lead { margin-bottom: 44px; }
.contact-details { display: flex; flex-direction: column; gap: 28px; }
.cdet { display: flex; align-items: flex-start; gap: 18px; }
.cdet-ico { width: 42px; height: 42px; flex-shrink: 0; border: 1px solid rgba(212,175,55,.2); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.cdet-ico svg { width: 18px; height: 18px; }
.cdet-label { font-size: .58rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.cdet-value { font-size: .88rem; color: var(--gray-light); font-weight: 400; text-decoration: none; transition: color .3s; }
a.cdet-value:hover { color: var(--gold); }
.form-card { background: var(--dark2); border: 1px solid rgba(212,175,55,.1); padding: 50px 48px; position: relative; overflow: hidden; }
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold-grad); }
.form-title { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--white); font-weight: 600; margin-bottom: 6px; }
.form-subtitle { font-size: .8rem; color: var(--gray-mid); margin-bottom: 38px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; position: relative; }
.form-label { display: block; font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 9px; }
.form-input, .form-select, .form-textarea { width: 100%; background: rgba(255,255,255,.03); border: 1px solid rgba(212,175,55,.12); color: var(--gray-light); font-family: 'Montserrat', sans-serif; font-size: .88rem; font-weight: 300; padding: 14px 18px; outline: none; transition: border-color .3s, background .3s; -webkit-appearance: none; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(136,136,136,.4); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: rgba(212,175,55,.5); background: rgba(212,175,55,.03); }
.form-select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23D4AF37' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-color: rgba(255,255,255,.03); padding-right: 40px; }
.form-select option { background: var(--dark2); color: var(--gray-light); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.7; }
.form-submit { width: 100%; padding: 16px; background: var(--gold-grad); color: var(--black); font-family: 'Montserrat', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; border: none; cursor: pointer; transition: transform .3s, box-shadow .3s, opacity .3s; position: relative; overflow: hidden; margin-top: 8px; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(212,175,55,.3); }
.form-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.form-feedback { display: none; padding: 16px 20px; margin-top: 16px; font-size: .82rem; font-weight: 500; text-align: center; letter-spacing: .05em; }
.form-feedback.success { display: block; background: rgba(212,175,55,.08); border: 1px solid rgba(212,175,55,.3); color: var(--gold); }
.form-feedback.error { display: block; background: rgba(180,60,60,.08); border: 1px solid rgba(180,60,60,.3); color: #E87; }
.invalid-border { border-color: rgba(220,80,80,.6) !important; }

/* ── FOOTER ── */
footer { background: var(--black); border-top: 1px solid rgba(212,175,55,.1); padding: 60px 6% 36px; }
.footer-top { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 50px; }
.footer-tagline { font-size: .65rem; letter-spacing: .35em; text-transform: uppercase; color: var(--muted); margin-top: 10px; font-weight: 500; }
.footer-links { display: flex; gap: 32px; list-style: none; align-items: center; flex-wrap: wrap; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; transition: color .3s; font-weight: 500; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: .7rem; color: #3A3A3A; letter-spacing: .1em; }

/* ── RESPONSIVE ── */
@media (max-width: 1000px) {
  .about-grid, .why-grid, .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process-track::before { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 36px 28px; }
  .hero-stats { flex-direction: column; width: 100%; }
  .stat { border-right: none; border-bottom: 1px solid rgba(212,175,55,.1); }
  .stat:last-child { border-bottom: none; }
  .pillars { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .process-track { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .section-pad { padding: 72px 5%; }
}
