/* ═══════════════════════════════════════════════
   PROPERTY FOR EQUITY — Base Styles v1.0
   ═══════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s4);
  background: var(--navy);
  color: var(--white);
  padding: var(--s3) var(--s5);
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: var(--fw-semibold);
}
.skip-link:focus { top: var(--s4); }

/* ── Layout ── */
.container {
  width: min(var(--max-width), calc(100% - var(--s7)));
  margin: 0 auto;
}

.container-sm {
  width: min(900px, calc(100% - var(--s7)));
  margin: 0 auto;
}

.container-xs {
  width: min(720px, calc(100% - var(--s7)));
  margin: 0 auto;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: var(--lh-tight);
}

h1 { font-size: var(--text-5xl); font-weight: var(--fw-bold); }
h2 { font-size: var(--text-4xl); font-weight: var(--fw-bold); }
h3 { font-size: var(--text-3xl); font-weight: var(--fw-bold); }
h4 { font-size: var(--text-2xl); font-weight: var(--fw-semibold); }
h5 { font-size: var(--text-xl);  font-weight: var(--fw-semibold); }
h6 { font-size: var(--text-lg);  font-weight: var(--fw-semibold); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--fw-black);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
}

.section-lead {
  font-size: var(--text-md);
  color: var(--muted);
  line-height: var(--lh-relaxed);
  max-width: 680px;
}

.gold-bar {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: var(--s6);
}

/* ── Sections ── */
.section {
  padding: var(--s11) 0;
}

.section-sm {
  padding: var(--s9) 0;
}

.section-ivory {
  background: var(--ivory);
}

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

.bg-white {
  background: var(--white);
}

.bg-ivory {
  background: var(--ivory);
}

.section-alt {
  background: var(--ivory);
  padding: var(--s11) 0;
}

.section-tight {
  padding: var(--s7) 0;
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}
.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}
.section-navy .eyebrow {
  color: var(--gold);
}
.section-navy .section-lead {
  color: rgba(255,255,255,0.75);
}

.section-header {
  text-align: center;
  margin-bottom: var(--s9);
}

.section-header .section-lead {
  margin: var(--s4) auto 0;
}

/* ── Hero (Homepage) ── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(100px, 12vh, 160px) 0 clamp(80px, 10vh, 120px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(192,154,91,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero h1 {
  font-size: var(--text-6xl);
  color: var(--white);
  margin-bottom: var(--s5);
  max-width: 780px;
}

.hero .hero-sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
  line-height: var(--lh-relaxed);
  max-width: 600px;
  margin-bottom: var(--s8);
}

.hero-stats {
  display: flex;
  gap: var(--s8);
  margin-top: var(--s9);
  padding-top: var(--s7);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--fw-bold);
  color: var(--gold);
  display: block;
}

.hero-stat .stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  margin-top: var(--s1);
}

/* ── Page Hero (Inner Pages) ── */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: clamp(120px, 14vh, 180px) 0 clamp(100px, 12vh, 160px);
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 42, 0.65);
  z-index: 1;
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: var(--text-5xl);
  color: var(--white);
  margin-bottom: var(--s4);
  max-width: 720px;
}

.page-hero .page-hero-lead {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s6);
}

.page-hero .eyebrow {
  color: var(--gold);
  margin-bottom: var(--s3);
}

.page-hero .btn-group {
  margin-top: var(--s6);
}

.home-hero {
  min-height: 85vh;
}

/* ── Hero Trust Strip ── */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s3);
  margin-top: var(--s7);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-trust-strip .trust-divider {
  color: var(--gold);
  opacity: 0.6;
  font-size: 0.5rem;
}

/* ── Featured Project Cards ── */
.card-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: var(--s4);
}
.card-location {
  font-size: var(--text-xs);
  color: var(--muted);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--s3);
  margin-top: -var(--s2);
}
.card-owner-note {
  margin-top: var(--s4);
  font-size: var(--text-sm);
  color: var(--muted);
  padding-top: var(--s4);
  border-top: 1px solid var(--line);
}
.card-owner-note strong { color: var(--navy); }

/* ── Support / Trust Text ── */
.section-support {
  font-size: var(--text-sm);
  color: var(--muted);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-trust-note {
  margin-top: var(--s5);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

.breadcrumb {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s6);
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 var(--s2); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);           /* navy on gold = readable + institutional */
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
  border: 1px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(188,154,90,0.35);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13,27,42,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--soft);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: var(--text-base);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--text-xs);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s7);
  transition: all var(--t-base);
}
.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
  color: var(--gold);
  font-size: 1.25rem;
}

.card h4 {
  margin-bottom: var(--s3);
}

.card p {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
}

.card-navy {
  background: var(--navy);
  border-color: transparent;
  color: var(--white);
}
.card-navy h4 { color: var(--white); }
.card-navy p { color: rgba(255,255,255,0.7); }
.card-navy .card-icon {
  background: rgba(192,154,91,0.15);
}

.card-elevated {
  border: none;
  box-shadow: var(--shadow-sm);
}
.card-elevated:hover {
  box-shadow: var(--shadow-md);
}

/* ── Grids ── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}

/* ── Trust Strip (proof band for inner pages) ── */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--s5) 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--s5);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  min-width: 0;
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.trust-item-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-item-number {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--navy);
}

.trust-item-label {
  font-size: var(--text-xs);
  color: var(--muted);
  font-weight: var(--fw-semibold);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

@media (max-width: 980px) {
  .trust-strip-inner { justify-content: flex-start; gap: var(--s4); }
  .trust-item { flex: 1 1 calc(50% - var(--s4)); }
}

/* ── Segmented CTA Paths (3-path card grid) ── */
.paths-section {
  background: var(--ivory);
}

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.path-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--s7);
  display: flex;
  flex-direction: column;
  transition: all var(--t-base);
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.12);
}

.path-card .path-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  margin-bottom: var(--s5);
}

.path-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--s3);
}

.path-card p {
  color: var(--muted);
  line-height: var(--lh-relaxed);
  font-size: var(--text-sm);
  flex-grow: 1;
  margin-bottom: var(--s6);
}

.path-card .btn {
  align-self: flex-start;
}

.path-card--primary {
  background: var(--navy);
  border-top-color: var(--gold);
  color: var(--white);
}
.path-card--primary h3 { color: var(--white); }
.path-card--primary p { color: rgba(255,255,255,0.75); }
.path-card--primary .path-icon {
  background: rgba(192, 154, 91, 0.2);
  color: var(--gold);
}

@media (max-width: 980px) {
  .paths-grid { grid-template-columns: 1fr; }
}

/* ── 4-Column Strategic Comparison ── */
.compare-4 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  font-size: var(--text-sm);
}

.compare-4 thead th {
  padding: var(--s5) var(--s4);
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  text-align: left;
  color: var(--white);
  background: var(--navy);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.compare-4 thead th:first-child {
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-right: 1px solid var(--line);
}
.compare-4 thead th:last-child {
  background: var(--gold);
  color: var(--white);
  border-right: none;
}

.compare-4 tbody td {
  padding: var(--s4);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  vertical-align: top;
  color: var(--text);
}
.compare-4 tbody td:first-child {
  font-weight: var(--fw-semibold);
  color: var(--navy);
  background: var(--soft);
  white-space: nowrap;
}
.compare-4 tbody td:last-child {
  border-right: none;
  background: rgba(192, 154, 91, 0.06);
  font-weight: var(--fw-semibold);
}
.compare-4 tbody tr:last-child td { border-bottom: none; }

.compare-4-wrap { overflow-x: auto; }

@media (max-width: 768px) {
  .compare-4 { font-size: var(--text-xs); }
  .compare-4 thead th, .compare-4 tbody td { padding: var(--s3); }
}

/* ── Scenario / What-Happens-If list ── */
.scenario-list {
  display: grid;
  gap: var(--s5);
}

.scenario-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--s6);
}

.scenario-item h4 {
  color: var(--navy);
  margin-bottom: var(--s3);
  font-size: var(--text-lg);
}

.scenario-item h4::before {
  content: '→';
  color: var(--gold);
  font-weight: var(--fw-black);
  margin-right: var(--s3);
}

.scenario-item p {
  color: var(--muted);
  line-height: var(--lh-relaxed);
  font-size: var(--text-sm);
}

.scenario-item .scenario-protection {
  margin-top: var(--s4);
  padding-top: var(--s4);
  border-top: 1px dashed var(--line);
  font-size: var(--text-sm);
  color: var(--text);
}
.scenario-item .scenario-protection strong {
  color: var(--navy);
  font-weight: var(--fw-bold);
}

/* ── Document Preview Card (sample deliverable) ── */
.doc-preview {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
}

.doc-preview-mock {
  background: linear-gradient(135deg, #f4f7fa 0%, #e8eef3 100%);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  min-height: 360px;
}

.doc-preview-mock::before {
  content: 'SAMPLE — REDACTED';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-18deg);
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  color: rgba(192, 154, 91, 0.28);
  letter-spacing: 0.15em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.doc-mock-page {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: var(--s5);
  box-shadow: 0 4px 16px rgba(13, 27, 42, 0.08);
  font-size: var(--text-xs);
  line-height: var(--lh-relaxed);
}

.doc-mock-page h5 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: var(--text-sm);
  margin-bottom: var(--s2);
  padding-bottom: var(--s2);
  border-bottom: 2px solid var(--gold);
}

.doc-mock-line {
  height: 8px;
  background: #e1e7ec;
  border-radius: 2px;
  margin-bottom: var(--s2);
}
.doc-mock-line.short { width: 60%; }
.doc-mock-line.medium { width: 80%; }

.doc-mock-row {
  display: flex;
  justify-content: space-between;
  padding: var(--s2) 0;
  border-bottom: 1px dashed #d8e0e7;
  font-size: var(--text-xs);
}
.doc-mock-row strong { color: var(--navy); }
.doc-mock-row span { color: var(--muted); font-family: var(--font-display); }

.doc-preview-content {
  padding: var(--s7);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doc-preview-content h4 {
  margin-bottom: var(--s3);
  color: var(--navy);
}

.doc-preview-content p {
  color: var(--muted);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--s4);
  font-size: var(--text-sm);
}

.doc-preview-content ul.check-list li {
  font-size: var(--text-sm);
}

@media (max-width: 768px) {
  .doc-preview { grid-template-columns: 1fr; }
  .doc-preview-mock { min-height: 260px; padding: var(--s5); }
}

/* ── Principal Portrait (transparent-look on ivory) ── */
.principal-portrait {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.principal-portrait::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  max-width: 90%;
  max-height: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,154,91,0.18) 0%, rgba(192,154,91,0) 70%);
  z-index: 0;
}

.principal-portrait img {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  height: auto;
  /* Drop the white background into the ivory section */
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 32px rgba(13, 27, 42, 0.18));
}

@media (max-width: 980px) {
  .principal-portrait { margin-bottom: var(--s6); }
  .principal-portrait img { max-width: 320px; }
}

/* ── Stats Overlap Band (floats over hero edge) ── */
.stats-overlap {
  position: relative;
  z-index: 3;
  margin-top: -56px;
  margin-bottom: var(--s4);
}

.stats-overlap .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s5);
}

.stats-overlap .stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s5) var(--s4);
  box-shadow: 0 20px 45px rgba(13, 27, 42, 0.12);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 120px;
}

.stats-overlap .stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(13, 27, 42, 0.16);
}

.stats-overlap .stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--navy);
  line-height: 1.15;
  display: block;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.stats-overlap .stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-normal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stats-overlap .stat-card::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: var(--s3);
}

/* ── Inline CTA Band (rounded navy gradient card) ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #173852 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--s8) var(--s8);
  box-shadow: 0 20px 45px rgba(13, 27, 42, 0.18);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s6);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(192, 154, 91, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band h2,
.cta-band h3 {
  color: var(--white);
  margin: 0 0 var(--s3);
  font-size: var(--text-3xl);
  line-height: var(--lh-tight);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: var(--text-md);
  line-height: var(--lh-relaxed);
}

.cta-band .cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

/* ── Comparison Table ── */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: var(--s5) var(--s6);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  text-align: left;
}

.compare-table thead th:last-child {
  background: var(--gold);
}

.compare-table tbody td {
  padding: var(--s4) var(--s6);
  border-bottom: 1px solid var(--line);
  font-size: var(--text-sm);
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody td:last-child {
  background: rgba(192,154,91,0.04);
  font-weight: var(--fw-semibold);
  color: var(--ink);
}

/* ── Steps ── */
.steps {
  counter-reset: step;
}

.step-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--s6);
  padding: var(--s7) 0;
  border-bottom: 1px solid var(--line);
  counter-increment: step;
}

.step-item:last-child {
  border-bottom: none;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: var(--s2);
}

.step-content p {
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
}

.step-timing {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--gold);
  background: var(--gold-light);
  padding: var(--s1) var(--s3);
  border-radius: var(--radius-full);
  margin-top: var(--s3);
}

/* ── FAQ Accordion ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--s6) 0;
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  color: var(--ink);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: var(--s4);
  transition: color var(--t-fast);
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--t-base);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  border-radius: 1px;
  transition: all var(--t-base);
}
.faq-icon::before {
  width: 16px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 2px; height: 16px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

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

.faq-answer-inner {
  padding-bottom: var(--s6);
  color: var(--muted);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ── Badges ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s1) var(--s3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
}

.badge-gold {
  background: var(--gold-light);
  color: var(--gold);
}

.badge-green {
  background: #E8F5ED;
  color: var(--success);
}

.badge-red {
  background: #FDECEC;
  color: var(--danger);
}

/* ── CTA Section (light band — Next Step) ── */
.cta-section {
  background: linear-gradient(180deg, var(--ivory) 0%, #FAF6EE 100%);
  padding: var(--s10) 0;
  text-align: center;
  color: var(--text);
  border-top: 3px solid var(--gold);
  position: relative;
}

.cta-section .eyebrow {
  color: var(--gold-deep);
}

.cta-section h2 {
  color: var(--navy);
  margin-bottom: var(--s4);
  font-size: var(--text-4xl);
}

.cta-section p {
  color: var(--muted);
  margin-bottom: var(--s7);
  font-size: var(--text-md);
}
.cta-section .cta-trust-note {
  color: var(--muted);
  margin-top: var(--s5);
  margin-bottom: 0;
  font-size: var(--text-sm);
}

/* ── Forms ── */
.form-group {
  margin-bottom: var(--s5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--ink);
  margin-bottom: var(--s2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px var(--s4);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(192,154,91,0.15);
}

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

.form-input.error,
.form-select.error {
  border-color: var(--danger);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--danger);
  margin-top: var(--s1);
}

/* ── Notice Box ── */
.notice {
  background: var(--soft);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--s5) var(--s6);
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: var(--lh-relaxed);
}

.notice strong {
  color: var(--ink);
}

/* ── Check / X Lists ── */
.check-list li,
.x-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  padding: var(--s3) 0;
  font-size: var(--text-sm);
  line-height: var(--lh-normal);
}

.check-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: 1px;
}

.x-list li::before {
  content: '✗';
  color: var(--danger);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Feature & Step Cards ── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--s7);
  transition: all var(--t-base);
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: var(--s7);
  transition: all var(--t-base);
}
.step-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ── Container Narrow ── */
.container-narrow {
  width: min(800px, calc(100% - var(--s7)));
  margin: 0 auto;
}

/* ── Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="left"] { transform: translateX(-24px); }
[data-reveal="left"].revealed { transform: translateX(0); }

[data-reveal="right"] { transform: translateX(24px); }
[data-reveal="right"].revealed { transform: translateX(0); }

[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal="scale"].revealed { transform: scale(1); }

/* ── Utilities ── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-sm { font-size: var(--text-sm); }
.mt-4 { margin-top: var(--s4); }
.mt-6 { margin-top: var(--s6); }
.mt-8 { margin-top: var(--s8); }
.mb-4 { margin-bottom: var(--s4); }
.mb-6 { margin-bottom: var(--s6); }
.mb-8 { margin-bottom: var(--s8); }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: var(--s6); }
}

@media (max-width: 980px) {
  .stats-overlap .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { grid-template-columns: 1fr; padding: var(--s7); }
  .cta-band .cta-band-actions { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .section { padding: var(--s9) 0; }
  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; }
  .stats-overlap { margin-top: -32px; }
  .stats-overlap .stats-grid { grid-template-columns: 1fr; gap: var(--s4); }
  .cta-band h2, .cta-band h3 { font-size: var(--text-2xl); }
  .hero { padding: clamp(80px, 10vh, 120px) 0 var(--s9); }
  .hero-stats { flex-direction: column; gap: var(--s5); }
  .hero h1 { font-size: var(--text-5xl); }
  .step-item { grid-template-columns: 48px 1fr; gap: var(--s4); }
  .step-number { width: 44px; height: 44px; font-size: var(--text-base); }
  .btn-group { flex-direction: column; }
  .btn-group .btn { text-align: center; justify-content: center; }
  .compare-table { font-size: var(--text-sm); }
  .compare-table thead th,
  .compare-table tbody td { padding: var(--s3) var(--s4); }
}

/* ── Back to Top Button ── */
.back-to-top {
  position: fixed;
  bottom: var(--s7);
  right: var(--s7);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all var(--t-base);
  z-index: 900;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 640px) {
  .back-to-top {
    bottom: var(--s5);
    right: var(--s5);
    width: 42px;
    height: 42px;
  }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: var(--s5) var(--s7);
  z-index: 9990;
  display: flex;
  align-items: center;
  gap: var(--s6);
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-text {
  flex: 1;
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.88);
}
.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: #e8c060; }

.cookie-banner-actions {
  display: flex;
  gap: var(--s3);
  flex-shrink: 0;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: var(--s5);
    gap: var(--s4);
  }
  .cookie-banner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* ── Floating Contact Widget (FAB) ── */
.contact-fab {
  position: fixed;
  bottom: calc(var(--s7) + 48px + var(--s3));
  right: var(--s7);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s3);
}

.fab-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--t-base), background var(--t-base), box-shadow var(--t-base);
  flex-shrink: 0;
  order: 2;
}

.fab-toggle:hover {
  background: #e8c060;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.32);
}

.fab-toggle[aria-expanded="true"] {
  background: var(--navy);
  color: var(--gold);
}

.contact-fab-options {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s3);
  order: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.contact-fab-options.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.fab-option {
  display: flex;
  align-items: center;
  gap: var(--s3);
  border-radius: var(--radius-full);
  padding: var(--s3) var(--s5);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
  transition: transform var(--t-base), box-shadow var(--t-base), filter var(--t-base);
  white-space: nowrap;
  text-decoration: none;
}

.fab-option:hover {
  transform: translateX(-4px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.28);
  filter: brightness(1.1);
  color: var(--white);
}

.fab-call      { background: var(--navy); }
.fab-whatsapp  { background: #25D366; }
.fab-sms       { background: #4A5AF0; }

.fab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.fab-label { line-height: 1; }

@media (max-width: 640px) {
  .contact-fab {
    bottom: calc(var(--s5) + 42px + var(--s3));
    right: var(--s5);
  }
  .fab-toggle {
    width: 50px;
    height: 50px;
  }
  .fab-label { display: none; }
  .fab-option {
    padding: var(--s3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
