/* ============================================================
   SRISHIELD — styles.css
   Deep Navy + Gold design system
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:          #0A1628;
  --bg-soft:     #0D1930;
  --bg-card:     #0C1828;
  --bg-dark:     #070F1C;
  --gold:        #C9A84C;
  --gold-light:  #E2C06A;
  --gold-dim:    rgba(201, 168, 76, 0.12);
  --gold-border: rgba(201, 168, 76, 0.22);
  --text:        #DDE3EE;
  --text-muted:  #7B8DAA;
  --white:       #FFFFFF;
  --border:      rgba(255, 255, 255, 0.07);
  --red:         #EF4444;

  --font-h:  'Playfair Display', Georgia, serif;
  --font-b:  'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:   82px;
  --r:       12px;
  --r-lg:    20px;
  --max-w:   1180px;
  --pad:     96px;
  --pad-x:   24px;

  --t:       0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow:  0 8px 40px rgba(0, 0, 0, 0.45);
  --glow:    0 0 32px rgba(201, 168, 76, 0.14);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font-family: inherit; font-size: inherit; }
address { font-style: normal; }

/* ── UTILITIES ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad) var(--pad-x);
}

.section { background: var(--bg); }
.section--alt { background: var(--bg-soft); }

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 14px;
  border: 1px solid var(--gold-border);
  border-radius: 99px;
  margin-bottom: 16px;
}

.h2 {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 9px;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--t);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: #08111E;
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.38);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; padding: 16px 28px; font-size: 1rem; }

/* Scroll animations */
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger siblings */
.services__grid .animate-up:nth-child(2),
.why__grid .animate-up:nth-child(2),
.testimonials__grid .animate-up:nth-child(2),
.how__steps .animate-up:nth-child(2) { transition-delay: 0.1s; }

.services__grid .animate-up:nth-child(3),
.why__grid .animate-up:nth-child(3),
.testimonials__grid .animate-up:nth-child(3),
.how__steps .animate-up:nth-child(3) { transition-delay: 0.2s; }

.services__grid .animate-up:nth-child(4),
.why__grid .animate-up:nth-child(4) { transition-delay: 0.05s; }

.services__grid .animate-up:nth-child(5) { transition-delay: 0.15s; }
.services__grid .animate-up:nth-child(6) { transition-delay: 0.25s; }

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 200;
  transition: background var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 15, 28, 0.93);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(201,168,76,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.nav.scrolled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}

.nav__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  position: relative;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: rgba(221,227,238,0.7);
  border-radius: 0;
  transition: color var(--t);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}
.nav__link:hover {
  color: var(--white);
  background: none;
}
.nav__link:hover::after {
  transform: scaleX(1);
}

/* Divider between links and CTA */
.nav__links::after {
  content: '';
  display: block;
  width: 1px;
  height: 22px;
  background: rgba(201,168,76,0.22);
  margin: 0 20px;
}

.nav__cta {
  padding: 11px 26px;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid rgba(201,168,76,0.48);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--t);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--gold);
  color: #08111E;
  border-color: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(201,168,76,0.38);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--t);
}
.nav__hamburger:hover { background: rgba(255,255,255,0.08); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t);
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 65% 50%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 80% at 5% 85%, rgba(18,45,80,0.6) 0%, transparent 50%),
    linear-gradient(150deg, #0A1628 0%, #0D1B32 60%, #0A1628 100%);
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -50deg,
    transparent,
    transparent 44px,
    rgba(201,168,76,0.022) 44px,
    rgba(201,168,76,0.022) 45px
  );
}

.hero__container {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 56px) var(--pad-x) 72px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: var(--font-h);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 40px;
}

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

/* Shield visual */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__shield-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__shield-svg {
  width: 200px;
  height: auto;
  animation: floatShield 5s ease-in-out infinite;
  filter: drop-shadow(0 0 48px rgba(201,168,76,0.22));
  position: relative;
  z-index: 1;
}
@keyframes floatShield {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(0.5deg); }
  66%       { transform: translateY(-6px) rotate(-0.5deg); }
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  pointer-events: none;
}
.hero__ring--1 { width: 260px; height: 260px; animation: pulse 3s 0s   ease-out infinite; }
.hero__ring--2 { width: 310px; height: 310px; animation: pulse 3s 1s   ease-out infinite; }
.hero__ring--3 { width: 360px; height: 360px; animation: pulse 3s 1.8s ease-out infinite; }

@keyframes pulse {
  0%   { opacity: 0.5; transform: scale(0.88); }
  100% { opacity: 0;   transform: scale(1.06); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero__scroll-dot { animation: scrollDot 2.4s ease-in-out infinite; }
@keyframes scrollBounce {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(5px); }
}
@keyframes scrollDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.3; }
}

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px 36px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}
.trust__item svg { width: 22px; height: 22px; flex-shrink: 0; }
.trust__divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── SERVICES ────────────────────────────────────────────── */
/* 6-col grid so 3 cards per row each spanning 2 cols,
   and the last 2 can be offset to sit centered */
.services__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.services__grid > * { grid-column: span 2; }
/* Center last two cards in their row */
.services__grid > :nth-child(4) { grid-column: 2 / 4; }
.services__grid > :nth-child(5) { grid-column: 4 / 6; }

/* Cards */
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  padding: 30px 26px 26px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
  overflow: hidden;
}
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(201,168,76,0.07) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.card:hover {
  border-color: rgba(201,168,76,0.48);
  transform: translateY(-5px);
  box-shadow: var(--glow), var(--shadow);
}
.card:hover::after { opacity: 1; }

.card--featured {
  border-color: rgba(201,168,76,0.32);
  background: linear-gradient(140deg, #0F1D34 0%, #0B1726 100%);
}

.card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #08111E;
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 99px;
}

.card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
}
.card__icon svg { width: 100%; height: 100%; }

.card h3 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 20px;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--t);
}
.card__link span { transition: transform 0.22s; }
.card__link:hover { gap: 9px; }
.card__link:hover span { transform: translateX(3px); }

/* ── WHY SRISHIELD ───────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why__card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.why__card:hover {
  border-color: rgba(201,168,76,0.44);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.why__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-h);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 0 20px rgba(201,168,76,0.35);
}

.why__icon {
  width: 46px;
  height: 46px;
  background: var(--gold-dim);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.why__card h3 {
  font-family: var(--font-h);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.why__card p {
  font-size: 0.91rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how { text-align: center; }

.how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
}

.how__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 240px;
  flex: 1;
}

.how__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.how__num span {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.how__body h3 {
  font-family: var(--font-h);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.how__body p {
  font-size: 0.89rem;
  color: var(--text-muted);
  line-height: 1.68;
}

.how__line {
  flex: 1;
  height: 2px;
  max-width: 80px;
  margin-top: 32px;
  background: linear-gradient(90deg, rgba(201,168,76,0.6), rgba(201,168,76,0.15));
  flex-shrink: 0;
}

.how__cta { margin-top: 4px; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tcard {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  padding: 30px 26px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.tcard:hover {
  border-color: rgba(201,168,76,0.42);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}

.tcard__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.tcard p {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 22px;
}

.tcard footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #8B6914 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.74rem;
  font-weight: 700;
  color: #08111E;
  flex-shrink: 0;
}
.tcard cite {
  display: block;
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.tcard footer span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── QUOTE FORM ──────────────────────────────────────────── */
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: start;
}

.quote__copy { padding-top: 8px; }
.quote__copy .h2 { text-align: left; }
.quote__copy .tag { display: inline-block; }
.quote__copy > p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Fast-track panel */
.fast-track {
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--gold-border);
  border-radius: var(--r);
  padding: 22px 22px 20px;
  margin-bottom: 28px;
}
.fast-track__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.fast-track .btn--whatsapp {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
  padding: 12px 20px;
}
.fast-track__hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.fast-track__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 14px;
}
.fast-track__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--t);
}
.fast-track__phone:hover { color: var(--gold); }

/* WhatsApp button */
.btn--whatsapp {
  background: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
}
.btn--whatsapp:hover {
  background: #1ebe5e;
  border-color: #1ebe5e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
}

.quote__perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.quote__perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

/* Form card */
.quote__form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-of-type { margin-bottom: 20px; }

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text);
}
.req { color: var(--gold); }
.opt { color: var(--text-muted); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 15px;
  color: var(--white);
  font-size: 0.94rem;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237B8DAA' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group select option { background: #0D1930; color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(123,141,170,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input.invalid,
.form-group select.invalid { border-color: var(--red); }

.form-err {
  font-size: 0.75rem;
  color: var(--red);
  display: none;
}
.form-err.show { display: block; }

.form-note {
  margin-top: 14px;
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
}

/* Conditional field groups */
.fields-conditional {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.38s ease, opacity 0.26s ease;
}
.fields-conditional.open {
  max-height: 440px;
  opacity: 1;
}
.fields-conditional__inner {
  padding: 6px 0 2px;
  border-top: 1px solid var(--gold-border);
  margin-bottom: 4px;
}
.fields-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  margin-top: 8px;
}

/* Submit error state */
.form-submit-error {
  display: none;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: var(--r);
  padding: 18px 20px;
  margin-top: 16px;
}
.form-submit-error.show { display: block; }
.form-submit-error p {
  font-size: 0.88rem;
  color: #FCA5A5;
  margin-bottom: 4px;
}
.form-submit-error .btn {
  display: flex;
  width: 100%;
  justify-content: center;
  font-size: 0.88rem;
  padding: 11px 20px;
}

/* Success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 20px 0;
}
.form-success.show { display: flex; }
.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success h3 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  color: var(--white);
}
.form-success p { color: var(--text-muted); font-size: 0.95rem; }
.form-success .btn--whatsapp { width: 100%; justify-content: center; }
.form-success__alt {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -4px;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__avatar {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, #152A4A 0%, #0B1726 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(201,168,76,0.08), var(--shadow);
}
.about__avatar-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  animation: pulse 3.5s ease-out infinite;
}

.about__copy .h2 { text-align: left; }
.about__copy .tag { display: inline-block; }
.about__copy p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 16px;
}
.about__copy p:last-of-type { margin-bottom: 0; }

.about__links {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.94rem;
  color: var(--text);
  font-weight: 500;
  transition: color var(--t);
}
.about__link:hover { color: var(--gold); }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer__main {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 72px 0 52px;
}

.footer__container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer__brand .nav__logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.72;
  max-width: 300px;
  margin-top: 12px;
}

.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col ul,
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a,
.footer__address a,
.footer__address span {
  font-size: 0.87rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.footer__col a:hover,
.footer__address a:hover { color: var(--gold); }

.footer__bottom {
  background: #040B16;
  border-top: 1px solid var(--border);
  padding: 18px var(--pad-x);
}
.footer__bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(123,141,170,0.55);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --pad: 80px; }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid > * { grid-column: span 1; }
  .services__grid > :nth-child(4),
  .services__grid > :nth-child(5) { grid-column: span 1; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }

  .quote__inner { gap: 48px; }

  .footer__container { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand p { max-width: 420px; }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 768px) {
  :root { --pad: 64px; --pad-x: 20px; }

  /* Mobile nav */
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(5, 11, 22, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
  }
  .nav__links.open { display: flex; }
  .nav__link { padding: 13px 16px; width: 100%; font-size: 0.95rem; border-radius: 8px; }
  .nav__cta { margin: 8px 0 0; width: 100%; text-align: center; justify-content: center; display: flex; padding: 13px; border-radius: 8px; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 40px);
    padding-bottom: 72px;
    gap: 0;
  }
  .hero__visual { display: none; }
  .hero__eyebrow { justify-content: center; }
  .hero__subtitle { margin: 0 auto 36px; }
  .hero__actions { justify-content: center; }

  /* Trust */
  .trust__divider { display: none; }
  .trust__item { padding: 10px 18px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }
  .services__grid > * { grid-column: span 1; }
  .services__grid > :nth-child(4),
  .services__grid > :nth-child(5) { grid-column: span 1; }

  /* Why */
  .why__grid { grid-template-columns: 1fr; }

  /* How */
  .how__steps {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .how__line {
    width: 2px;
    height: 36px;
    max-width: none;
    margin-top: 0;
    background: linear-gradient(180deg, rgba(201,168,76,0.6), rgba(201,168,76,0.1));
  }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Quote form */
  .quote__inner { grid-template-columns: 1fr; gap: 40px; }
  .quote__copy .h2 { font-size: 1.9rem; }
  .quote__form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .about__copy .h2 { font-size: 1.9rem; text-align: center; }
  .about__visual { justify-content: center; }
  .about__links { align-items: center; }

  /* Footer */
  .footer__container { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand { grid-column: 1; }
  .footer__brand p { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.2rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; justify-content: center; }
  .trust__inner { flex-direction: column; align-items: flex-start; padding: 8px var(--pad-x); }
}

/* ============================================================
   CINEMATIC ANIMATED LAYER
   ============================================================ */

/* ── Hero canvas particles ───────────────────────────────── */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}

/* ── Hero ambient orbs ───────────────────────────────────── */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0px, 0px) scale(1); }
  25%       { transform: translate(35px, -60px) scale(1.08); }
  50%       { transform: translate(-25px, -90px) scale(0.94); }
  75%       { transform: translate(55px, -35px) scale(1.06); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0px, 0px) scale(1); }
  25%       { transform: translate(-50px, 70px) scale(1.07); }
  50%       { transform: translate(35px, 90px) scale(0.95); }
  75%       { transform: translate(-65px, 25px) scale(1.04); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(0px, 0px) scale(1); }
  33%       { transform: translate(70px, -45px) scale(1.12); }
  66%       { transform: translate(-35px, 55px) scale(0.91); }
}

.hero__orb--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.22) 0%,
    rgba(201,168,76,0.08) 40%,
    transparent 70%);
  filter: blur(65px);
  top: -220px;
  right: -80px;
  animation: orbFloat1 22s ease-in-out infinite;
}
.hero__orb--2 {
  width: 1000px;
  height: 700px;
  background: radial-gradient(ellipse at center,
    rgba(8,30,90,0.75) 0%,
    rgba(12,50,130,0.35) 50%,
    transparent 70%);
  filter: blur(90px);
  bottom: -320px;
  left: -250px;
  animation: orbFloat2 32s ease-in-out infinite;
}
.hero__orb--3 {
  width: 520px;
  height: 520px;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.12) 0%,
    transparent 68%);
  filter: blur(55px);
  top: 38%;
  left: 22%;
  animation: orbFloat3 19s ease-in-out infinite;
  animation-delay: -6s;
}
.hero__orb--4 {
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse at center,
    rgba(180,220,255,0.07) 0%,
    transparent 70%);
  filter: blur(45px);
  top: 12%;
  left: 4%;
  animation: orbFloat1 16s ease-in-out infinite reverse;
  animation-delay: -10s;
}

/* ── Hero light ray sweeps ───────────────────────────────── */
@keyframes lightRay {
  0%   { opacity: 0; transform: translateX(-110%) skewX(-22deg); }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(320%) skewX(-22deg); }
}

.hero__light-ray {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 1;
}
.hero__light-ray--1 {
  width: 38%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.045) 50%,
    transparent 100%);
  animation: lightRay 16s ease-in-out infinite;
  animation-delay: 4s;
}
.hero__light-ray--2 {
  width: 22%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.06) 50%,
    transparent 100%);
  animation: lightRay 20s ease-in-out infinite;
  animation-delay: 13s;
}

/* ── Animated section dividers ───────────────────────────── */
.section-divider {
  position: relative;
  height: 1px;
  overflow: hidden;
}
.section-divider::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,168,76,0.18),
    rgba(201,168,76,0.55),
    rgba(201,168,76,0.18),
    transparent
  );
}
.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
  animation: dividerSweep 6s ease-in-out infinite;
}
@keyframes dividerSweep {
  0%   { left: -20%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 110%; opacity: 0; }
}

/* ── Card shimmer on hover ───────────────────────────────── */
.card { overflow: hidden; }
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(201,168,76,0.04) 40%,
    rgba(201,168,76,0.10) 50%,
    rgba(201,168,76,0.04) 60%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}
.card:hover::before {
  animation: cardShimmer 0.75s ease-out forwards;
}
@keyframes cardShimmer {
  0%   { left: -120%; }
  100% { left: 160%; }
}

.why__card { overflow: hidden; }
.why__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(201,168,76,0.05) 45%,
    rgba(201,168,76,0.12) 50%,
    rgba(201,168,76,0.05) 55%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}
.why__card:hover::before {
  animation: cardShimmer 0.75s ease-out forwards;
}

.tcard { overflow: hidden; position: relative; }
.tcard::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(201,168,76,0.04) 45%,
    rgba(201,168,76,0.09) 50%,
    rgba(201,168,76,0.04) 55%,
    transparent 100%
  );
  pointer-events: none;
  border-radius: inherit;
  z-index: 2;
}
.tcard:hover::before {
  animation: cardShimmer 0.75s ease-out forwards;
}

/* ── Section ambient glow backgrounds ───────────────────── */
.services.section { overflow: hidden; }
.services.section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 55%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(40px);
  animation: ambientDrift 22s ease-in-out infinite alternate;
}
.services.section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 45%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(18,55,130,0.12) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(60px);
  animation: ambientDrift 28s ease-in-out infinite alternate-reverse;
}

.why.section--alt { overflow: hidden; }
.why.section--alt::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 75%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 65%);
  pointer-events: none;
  filter: blur(50px);
  animation: ambientDrift 26s ease-in-out infinite alternate;
}

.how.section { overflow: hidden; }
.how.section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
  animation: ambientDrift 24s ease-in-out infinite alternate-reverse;
}

@keyframes ambientDrift {
  0%   { transform: translate(0, 0) scale(1);    opacity: 0.5; }
  100% { transform: translate(30px, -25px) scale(1.18); opacity: 1; }
}

/* ── Hero shield enhanced glow ───────────────────────────── */
.hero__shield-svg {
  filter:
    drop-shadow(0 0 48px rgba(201,168,76,0.28))
    drop-shadow(0 0 100px rgba(201,168,76,0.10));
}

/* ── Navigation logo subtle pulse ───────────────────────── */
.nav__shield-icon {
  animation: logoPulse 5s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 0px rgba(201,168,76,0)); }
  50%       { filter: drop-shadow(0 0 10px rgba(201,168,76,0.45)); }
}

/* ── About avatar breathing glow ────────────────────────── */
.about__avatar {
  animation: avatarBreath 5.5s ease-in-out infinite;
}
@keyframes avatarBreath {
  0%, 100% { box-shadow: 0 0 0 8px rgba(201,168,76,0.07), var(--shadow); }
  50%       { box-shadow: 0 0 0 14px rgba(201,168,76,0.15), 0 0 50px rgba(201,168,76,0.12), var(--shadow); }
}

/* ── How-it-works step pulse ─────────────────────────────── */
.how__num {
  animation: stepRing 3.5s ease-in-out infinite;
}
.how__step:nth-child(3) .how__num { animation-delay: 0.6s; }
.how__step:nth-child(5) .how__num { animation-delay: 1.2s; }
@keyframes stepRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%       { box-shadow: 0 0 0 10px rgba(201,168,76,0.12); }
}

/* ── Trust bar staggered entrance ────────────────────────── */
.trust__item { animation: trustIn 0.8s ease both; }
.trust__item:nth-child(1) { animation-delay: 0.1s; }
.trust__item:nth-child(3) { animation-delay: 0.22s; }
.trust__item:nth-child(5) { animation-delay: 0.34s; }
.trust__item:nth-child(7) { animation-delay: 0.46s; }
@keyframes trustIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Parallax will-change hints ──────────────────────────── */
.hero__bg        { will-change: transform; }
.hero__container { will-change: transform; }
.hero__scroll    { transition: opacity 0.3s ease; }

/* ── Z-index lift: orbs/rays now direct .hero children ──── */
.hero__orb       { z-index: 2; }
.hero__light-ray { z-index: 2; }
.hero__canvas    { z-index: 3; }

/* ── VIDEO BACKGROUND ───────────────────────────────────── */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  pointer-events: none;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,22,40,0.70) 0%,
      rgba(10,22,40,0.22) 35%,
      rgba(10,22,40,0.40) 65%,
      rgba(10,22,40,0.88) 100%
    ),
    linear-gradient(125deg,
      rgba(10,22,40,0.72) 0%,
      transparent 55%
    );
  z-index: 1;
  pointer-events: none;
}

/* ── NAV LOGO IMAGE ─────────────────────────────────────── */
.nav__logo-img {
  height: 82px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.nav__logo:hover .nav__logo-img {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.45));
}

/* Footer logo */
.footer__brand .nav__logo-img {
  height: 110px;
  margin-bottom: 4px;
}

/* ── HERO LOGO DISPLAY ──────────────────────────────────── */
.hero__logo-wrap {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-glass {
  position: relative;
  z-index: 1;
  animation: floatShield 6s ease-in-out infinite;
}

.hero__logo-float {
  display: block;
  width: 360px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.25));
}

/* Pulse rings for logo wrap */
.hero__logo-wrap .hero__ring--1 { width: 360px; height: 360px; }
.hero__logo-wrap .hero__ring--2 { width: 430px; height: 430px; }
.hero__logo-wrap .hero__ring--3 { width: 500px; height: 500px; }

/* ── ABOUT HEADSHOT ─────────────────────────────────────── */
.about__photo-wrap {
  position: relative;
  z-index: 1;
  width: 230px;
  height: 272px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.35);
  box-shadow:
    0 0 0 8px rgba(201,168,76,0.08),
    0 24px 64px rgba(0,0,0,0.55);
}

.about__headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}

.about__photo-wrap:hover .about__headshot {
  transform: scale(1.04);
}

/* Update avatar-ring shape to match photo */
.about__avatar-ring {
  width: 254px;
  height: 296px;
  border-radius: 26px;
  top: -11px;
  left: -11px;
}

/* ── RESPONSIVE: logo ────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__logo-img { height: 64px; }
  .hero__logo-wrap { width: 280px; height: 280px; }
  .hero__logo-float { width: 240px; }
  .hero__logo-wrap .hero__ring--1 { width: 260px; height: 260px; }
  .hero__logo-wrap .hero__ring--2 { width: 310px; height: 310px; }
  .hero__logo-wrap .hero__ring--3 { width: 360px; height: 360px; }
  .about__photo-wrap { width: 190px; height: 226px; }
  .about__avatar-ring { width: 214px; height: 250px; border-radius: 22px; }
}
