/* ═══════════════════════════════════════════════════════════════════════════
   Finanzia Consulting — Components
   Header · Footer · Cards · Forms · FAQ · Hero Visual · All UI components
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Splash Screen ───────────────────────────────────────────────────────── */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #081422 0%, #0d1b2e 55%, #163554 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), visibility 0.7s;
}

#splash.splash--out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.splash__mark {
  width: 72px;
  height: 72px;
  background: rgba(196,146,42,.1);
  border: 1px solid rgba(196,146,42,.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  opacity: 0;
  transform: scale(0.75) translateY(12px);
  animation: splashMark 0.55s cubic-bezier(.34,1.56,.64,1) 0.1s forwards;
}

.splash__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(10px);
  animation: splashFade 0.5s ease 0.45s forwards;
}

.splash__sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: #c4922a;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0;
  animation: splashFade 0.5s ease 0.65s forwards;
}

.splash__bar {
  width: 80px;
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-top: 28px;
  overflow: hidden;
  border-radius: 1px;
}

.splash__bar-fill {
  height: 100%;
  width: 100%;
  background: #c4922a;
  transform: scaleX(0);
  transform-origin: left;
  animation: splashBar 1.1s cubic-bezier(.4,0,.2,1) 0.55s forwards;
}

@keyframes splashMark {
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes splashFade {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes splashBar {
  to { transform: scaleX(1); }
}

/* ── Hero Particle Canvas ─────────────────────────────────────────────────── */
#hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero__inner { z-index: 2; }

/* ── 1. Site Header ───────────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--header-h);
  background: rgba(8,20,34,.0);
  transition: background var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(8,20,34,.96) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.header--light {
  background: var(--c-white);
  border-color: var(--c-border);
  box-shadow: var(--shadow-sm);
}

#site-header .container {
  height: 100%;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-8);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.logo__mark {
  width: 36px; height: 36px;
  position: relative;
  flex-shrink: 0;
}

.logo__mark svg { width: 100%; height: 100%; }

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

.logo__name {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  letter-spacing: -.01em;
}

.logo__tagline {
  font-size: 0.6rem;
  font-weight: var(--fw-semibold);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-top: 2px;
}

.header--light .logo__name { color: var(--c-white); }

/* Main nav — floated fixed into the header on desktop, offcanvas on mobile */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  z-index: 310;
  pointer-events: none;
}

.main-nav a { pointer-events: auto; }

.main-nav a {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: rgba(255,255,255,.75);
  letter-spacing: .02em;
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--c-white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.header--light .main-nav a {
  color: var(--c-muted);
}

.header--light .main-nav a:hover,
.header--light .main-nav a.active {
  color: var(--c-white);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--c-white);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.menu-toggle:hover { background: rgba(255,255,255,.1); }

/* Always white regardless of header variant */
.header--light .menu-toggle { color: var(--c-white); }
.header--light .menu-toggle:hover { background: rgba(255,255,255,.1); }

/* Offcanvas close button */
.nav-close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
  flex-shrink: 0;
}
.nav-close:hover {
  background: rgba(255,255,255,.08);
  color: var(--c-white);
}

/* Offcanvas backdrop */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6,14,26,.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
}

.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Blur the page content when offcanvas is open — header/nav/backdrop stay sharp */
main,
#site-footer {
  transition: filter 0.35s ease;
}

body.nav-is-open main,
body.nav-is-open #site-footer {
  filter: blur(5px);
}

/* ── 2. Site Footer ───────────────────────────────────────────────────────── */
#site-footer {
  background: var(--c-navy-deep);
  color: rgba(255,255,255,.45);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}

.footer__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.4);
  line-height: 1.78;
  margin: var(--sp-5) 0 var(--sp-6);
  max-width: 300px;
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,.7);
  margin-bottom: var(--sp-5);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.4);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--c-gold); }

.footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-3);
}

.footer__contact-row a {
  color: rgba(255,255,255,.4);
  transition: color var(--t-fast);
}
.footer__contact-row a:hover { color: var(--c-gold); }

.footer__contact-row svg { flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.25);
}

.footer__logo-name {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: var(--c-white);
}

/* ── 3. Hero Visual (Abstract Financial Card) ────────────────────────────── */
.hero-visual {
  position: relative;
}

.hv-card {
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  position: relative;
  overflow: hidden;
}

/* Gold accent line top */
.hv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-light), transparent);
}

.hv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}

.hv-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
}

.hv-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: #4ade80;
  background: rgba(74,222,128,.12);
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.hv-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
}

.hv-metric {
  margin-bottom: var(--sp-6);
}

.hv-metric__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.45);
  margin-bottom: var(--sp-1);
}

.hv-metric__value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: 1;
}

.hv-metric__value span {
  color: var(--c-gold);
}

/* Bar chart */
.hv-bars {
  display: flex;
  align-items: flex-end;
  gap: var(--sp-3);
  height: 100px;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.hv-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  position: relative;
  min-height: 20px;
  transition: opacity var(--t-fast);
}

.hv-bar:hover { opacity: .85; }

.hv-bar--gold  { background: linear-gradient(180deg, var(--c-gold-light), var(--c-gold)); }
.hv-bar--blue  { background: linear-gradient(180deg, var(--c-blue-mid), var(--c-blue)); }
.hv-bar--dim   { background: rgba(255,255,255,.15); }

.hv-bar__label {
  position: absolute;
  bottom: calc(-100% - 4px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}

/* Row of mini metrics */
.hv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.hv-stat {
  text-align: center;
}

.hv-stat__val {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  display: block;
}

.hv-stat__desc {
  font-size: 0.65rem;
  color: rgba(255,255,255,.35);
  display: block;
  margin-top: 2px;
}

/* Floating pill */
.hv-pill {
  position: absolute;
  bottom: -var(--sp-4);
  right: var(--sp-4);
  bottom: -18px;
  background: var(--c-gold);
  color: var(--c-navy-deep);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

/* ── 4. Stat/Trust Block ─────────────────────────────────────────────────── */
.stats-bar {
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--c-border-light);
  border-bottom: 1px solid var(--c-border-light);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-item__number span {
  color: var(--c-gold);
}

.stat-item__label {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.5;
}

.stat-item + .stat-item {
  border-left: 1px solid var(--c-border-light);
}

/* ── 5. Service Cards ─────────────────────────────────────────────────────── */
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-gold), var(--c-gold-light));
  opacity: 0;
  transition: opacity var(--t-base);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-border);
}

.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--c-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  font-size: 1.4rem;
  color: var(--c-gold);
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: var(--sp-4);
}

/* Full-detail service card (servicios.html) */
.service-full {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base);
}

.service-full:hover { box-shadow: var(--shadow-md); }

.service-full__head {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-petrol) 100%);
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.service-full__icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.service-full__head-text { flex: 1; }

.service-full__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  margin-bottom: var(--sp-2);
}

.service-full__category {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.service-full__body {
  padding: var(--sp-8);
}

.service-full__desc {
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: 1.78;
  margin-bottom: var(--sp-6);
}

.service-full__section-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--c-text-mid);
  line-height: 1.6;
}

.benefit-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.for-whom {
  background: var(--c-bg);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--c-muted);
  border-left: 3px solid var(--c-gold);
  margin-bottom: var(--sp-6);
}

.for-whom strong {
  display: block;
  color: var(--c-navy);
  margin-bottom: var(--sp-1);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── 6. "A quién ayudamos" Cards ─────────────────────────────────────────── */
.audience-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.audience-card__icon {
  font-size: 2rem;
  line-height: 1;
}

.audience-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
}

.audience-card__desc {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── 7. "Por qué elegirnos" Cards ────────────────────────────────────────── */
.why-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--sp-5);
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}

.why-card:hover { background: var(--c-bg-alt); }

.why-card__icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--c-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--c-gold);
}

.why-card__title {
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--c-navy);
  margin-bottom: var(--sp-1);
}

.why-card__desc {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.65;
}

/* ── 8. Process Steps ─────────────────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
}

/* Connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 22px);
  right: calc(12.5% + 22px);
  height: 1px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-border), var(--c-gold));
  opacity: .4;
}

.process-step { text-align: center; position: relative; }

.process-step__num {
  width: 56px; height: 56px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-petrol) 100%);
  border: 2px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--c-gold);
  position: relative;
  z-index: 1;
}

.process-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}

.process-step__desc {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.65;
}

/* ── 9. Case Example ─────────────────────────────────────────────────────── */
.case-card {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-petrol) 100%);
  border-radius: var(--r-lg);
  padding: var(--sp-10);
  overflow: hidden;
  position: relative;
}

.case-card::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,146,42,.1) 0%, transparent 65%);
  pointer-events: none;
}

.case-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-gold-dim);
  border: 1px solid rgba(196,146,42,.3);
  color: var(--c-gold);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
}

.case-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.case-step {
  display: flex;
  gap: var(--sp-4);
  position: relative;
  padding-bottom: var(--sp-5);
}

.case-step:last-child { padding-bottom: 0; }

.case-step__dot {
  width: 20px; height: 20px;
  border-radius: var(--r-full);
  border: 2px solid var(--c-gold);
  background: var(--c-navy);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.case-step__line {
  position: absolute;
  left: 9px; top: 22px; bottom: -var(--sp-5);
  width: 1px;
  background: rgba(196,146,42,.25);
  bottom: 0;
}

.case-step:last-child .case-step__line { display: none; }

.case-step__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  margin-bottom: 3px;
}

.case-step__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ── 10. Values Grid ──────────────────────────────────────────────────────── */
.value-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-card__icon {
  font-size: 2rem;
  margin-bottom: var(--sp-3);
  display: block;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}

.value-card__desc {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── 11. CTA Sections ─────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-petrol) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,146,42,.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,73,118,.35) 0%, transparent 65%);
  pointer-events: none;
}

/* ── 12. Credibility Block ─────────────────────────────────────────────────── */
.credibility-block {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-petrol) 100%);
  border-radius: var(--r-lg);
  padding: var(--sp-10);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  text-align: center;
}

.cred-item__number {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.cred-item__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* ── 13. FAQ Accordion ────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  max-width: 780px;
  margin-inline: auto;
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.faq-item--open {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--c-navy);
  text-align: left;
  transition: background var(--t-fast);
}

.faq-question:hover { background: var(--c-bg); }

.faq-chevron {
  width: 20px; height: 20px;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: transform var(--t-base);
}

.faq-item--open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-6);
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.78;
  border-top: 1px solid var(--c-border-light);
  padding-top: var(--sp-4);
}

/* ── 14. Contact Form ─────────────────────────────────────────────────────── */
.contact-form {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--sp-10) var(--sp-8);
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: var(--sp-5);
}

.form-group--double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}

.form-label span {
  color: var(--c-gold);
  margin-left: 2px;
}

.form-control {
  width: 100%;
  padding: 0.75rem var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--c-text);
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(196,146,42,.12);
  background: var(--c-white);
}

.form-control.is-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.1);
}

.form-control.is-valid {
  border-color: #38a169;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  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='%235a6e83' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  padding-right: var(--sp-10);
}

.form-error {
  display: none;
  font-size: var(--text-xs);
  color: #e53e3e;
  margin-top: var(--sp-1);
}

.form-group.has-error .form-error { display: block; }

.form-success {
  display: none;
  background: rgba(56,161,105,.08);
  border: 1px solid rgba(56,161,105,.25);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
  margin-top: var(--sp-5);
  font-size: var(--text-sm);
  color: #276749;
  text-align: center;
}

.form-success--visible { display: block; }

/* ── 15. Contact Info Sidebar ─────────────────────────────────────────────── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.contact-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.contact-card__icon {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: var(--c-gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}

.contact-card__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-muted);
  margin-bottom: var(--sp-1);
}

.contact-card__value {
  font-size: var(--text-sm);
  color: var(--c-navy);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.contact-card__value a {
  color: var(--c-navy);
  transition: color var(--t-fast);
}
.contact-card__value a:hover { color: var(--c-gold); }

/* ── 16. "What happens next" Steps ────────────────────────────────────────── */
.next-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.next-step {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.next-step__num {
  width: 32px; height: 32px;
  border-radius: var(--r-full);
  background: var(--c-gold);
  color: var(--c-navy-deep);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.next-step__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--c-navy);
  margin-bottom: 3px;
}

.next-step__desc {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.65;
}

/* ── 17. Page Hero proof bar ──────────────────────────────────────────────── */
.hero-proof-stat {
  text-align: center;
}

.hero-proof-stat__num {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.hero-proof-stat__num span { color: var(--c-gold); }

.hero-proof-stat__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.45);
}

.hero-proof__divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}

/* ── 18. Methodology Timeline ────────────────────────────────────────────── */
.method-item {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
}

.method-item__num {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--c-gold-dim);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}

.method-item__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-2);
}

.method-item__desc {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.75;
}

/* ── 19. WhatsApp FAB ─────────────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 150;
  width: 56px; height: 56px;
  border-radius: var(--r-full);
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.40);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

.wa-fab::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-full);
  background: #25d366;
  animation: fabPulse 3s ease-out infinite;
  z-index: -1;
}

@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.5); opacity: 0;  }
  100% { transform: scale(1.5); opacity: 0;  }
}

/* ── 20. Comparison Table ──────────────────────────────────────────────────── */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.comp-card {
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-md);
  padding: var(--sp-6);
  background: var(--c-surface);
}

.comp-card--highlight {
  border-color: var(--c-gold);
  background: var(--c-gold-pale);
}

.comp-card__label {
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-muted);
  margin-bottom: var(--sp-3);
}

.comp-card--highlight .comp-card__label { color: var(--c-gold); }

.comp-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--c-navy);
  margin-bottom: var(--sp-3);
}

.comp-card__desc {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.7;
}

/* ── 21. Breadcrumb ───────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-5);
}

.breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb span { color: rgba(255,255,255,.7); }

.breadcrumb-sep { opacity: .4; }
