/* =========================================================
   UtilityMaster Showcase — Wonderkid brand language
   Navy + gold + cream, serif headlines, editorial spacing.
   Mirrors the design adopted in the corporate-profile PDF.
   ========================================================= */

:root {
  /* Palette */
  --navy:        #0d1f3c;
  --navy-deep:   #081830;
  --navy-soft:   #14294d;
  --surface:     #14294d;
  --surface-2:   #1a335d;

  --cream:       #f4ebd6;
  --cream-card:  #ede5cc;

  --gold:        #f5a623;
  --gold-soft:   #f4a93a;
  --gold-deep:   #d48d12;

  --cyan:        #06b6d4;

  --text:        #ffffff;
  --text-muted:  #c9d2e3;
  --text-faint:  #9aa6c2;
  --text-dark:   #0d1f3c;
  --text-dark-m: #4a5575;

  --border:        rgba(255,255,255,0.10);
  --border-strong: rgba(255,255,255,0.20);
  --border-gold:   rgba(245,166,35,0.40);

  /* Type */
  --font-display: 'Playfair Display', 'DejaVu Serif', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --radius-lg: 8px;
  --radius-md: 6px;
  --radius-sm: 4px;
  --radius-pill: 999px;

  --shadow-card: 0 2px 12px -4px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.005em;
  margin: 0;
  color: #ffffff;
}

a { color: inherit; text-decoration: none; }

p { color: var(--text-muted); margin: 0; }

.italic-accent {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ========== Decorative arc backdrop ========== */
.bg-arc {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* ========== Header ========== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(13, 31, 60, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.site-header .container-xl { gap: 24px; }

.brand {
  display: flex; align-items: center; gap: 10px;
}
.brand-spark {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: var(--gold);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #ffffff;
  letter-spacing: -0.005em;
}
.brand-by {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-left: 2px;
  font-weight: 500;
}

.site-nav {
  margin-left: auto;
  display: flex; gap: 28px;
  font-size: 13.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}
.site-nav a { transition: color 0.2s; }
.site-nav a:hover { color: var(--gold); }

.header-cta {
  display: flex; gap: 10px;
  margin-left: 24px;
}

/* ========== Buttons ========== */
.btn-primary, .btn-ghost, .btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.15s, background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 6px 18px -8px rgba(245,166,35,0.55);
}
.btn-primary:hover {
  background: var(--gold-soft);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(245,166,35,0.6);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary.lg, .btn-ghost.lg {
  padding: 14px 28px;
  font-size: 14px;
}
.btn-primary.block { display: flex; justify-content: center; width: 100%; margin-top: 16px; }

/* ========== Eyebrow ========== */
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ========== Hero ========== */
.hero {
  padding: 60px 0 24px;
  position: relative;
}
.hero-title {
  font-size: clamp(40px, 6.5vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: #ffffff;
}
.hero-title .italic-accent {
  font-size: inherit;
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 600px;
}

/* Hero mockup — recoloured to navy / gold */
.hero-mockup {
  position: relative;
  perspective: 1000px;
  height: 420px;
}
.mock-window {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(4deg);
  transform-style: preserve-3d;
}
.mock-chrome {
  height: 32px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 14px;
  gap: 8px;
}
.mock-chrome span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
}
.mock-chrome span:nth-child(1) { background: #ff5f57; }
.mock-chrome span:nth-child(2) { background: #febc2e; }
.mock-chrome span:nth-child(3) { background: #28c840; }
.mock-body { padding: 20px; }
.mock-kpi-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 20px;
}
.mock-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex; flex-direction: column;
  gap: 4px;
}
.mock-kpi-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-faint);
}
.mock-kpi-value {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
}
.mock-chart {
  display: flex; align-items: flex-end; gap: 8px;
  height: 140px;
  padding: 12px;
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.mock-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  border-radius: 3px 3px 1px 1px;
  opacity: 0.92;
}
.mock-rows {
  display: flex; flex-direction: column; gap: 8px;
}
.mock-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
}
.mock-dot { width: 6px; height: 6px; border-radius: 50%; }
.mock-dot.ok   { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.mock-dot.warn { background: var(--gold); box-shadow: 0 0 10px var(--gold); }

.mock-phone {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 130px;
  height: 240px;
  background: var(--navy-deep);
  border-radius: 22px;
  border: 2px solid var(--border-strong);
  padding: 10px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6);
  transform: rotate(8deg);
}
.mock-phone-screen {
  background: rgba(245,166,35,0.10);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 16px;
  height: 100%;
  padding: 16px 10px;
  display: flex; flex-direction: column; gap: 8px;
}
.mp-bar {
  height: 6px; background: var(--gold);
  border-radius: 3px; width: 60%;
}
.mp-row { height: 10px; background: rgba(255,255,255,0.10); border-radius: 4px; }
.mp-row.short { width: 60%; }
.mp-cta { height: 24px; background: var(--gold); border-radius: 4px; margin-top: auto; }

/* ========== Stats band (gold, full-bleed) ========== */
.stats-band {
  background: var(--gold);
  padding: 32px 0 30px;
  margin-top: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  padding: 0 12px;
}
.stat-cell {
  text-align: left;
  padding: 0 4px;
  position: relative;
}
.stat-cell + .stat-cell::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 8%; bottom: 8%;
  width: 1px;
  background: rgba(13,31,60,0.18);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--navy);
}
.stat-label {
  font-size: 10px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 6px;
  font-weight: 600;
  line-height: 1.35;
}

@media (max-width: 991.98px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
  .stat-cell + .stat-cell::before { display: none; }
}
@media (max-width: 575.98px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ========== Section heads ========== */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  color: #ffffff;
}
.section-head h2 .italic-accent { font-style: italic; color: var(--gold); }
.section-head p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Gold underline accent under section heads */
.section-head .accent-rule {
  display: block;
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 22px auto 0;
}

/* ========== Why us ========== */
.why { padding: 56px 0 50px; }
.why .section-head { margin-bottom: 32px; }
.why .section-head h2 { font-size: clamp(28px, 3.8vw, 44px); }
.why .section-head p { font-size: 15px; line-height: 1.55; }
.why .row { --bs-gutter-y: 18px; }
.why-card {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 20px 22px 22px;
  transition: transform 0.25s, border-color 0.25s;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  border-left-color: var(--gold);
}
.why-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(245,166,35,0.10);
  border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 12px;
}
.why-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
  letter-spacing: -0.005em;
}
.why-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* ========== Modules — additive tier sections ========== */
.modules { padding: 100px 0 80px; }

.legend-pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}
.badge-smp { background: transparent; color: var(--gold); }
.badge-emp { background: var(--gold); color: var(--navy); }
.badge-erp { background: var(--gold-soft); color: var(--navy); }

.tier-block {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 36px 32px 32px;
  margin-bottom: 28px;
  overflow: hidden;
}
.tier-block:hover { border-color: var(--border-strong); }

.tier-block--popular {
  background: linear-gradient(180deg, rgba(245,166,35,0.07), var(--surface) 60%);
}
.tier-block-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  position: relative;
  flex-wrap: wrap;
}
.tier-block-id {
  display: flex;
  align-items: center;
  gap: 18px;
}
.tier-block-id .legend-pill {
  font-size: 12px;
  padding: 6px 14px;
  flex-shrink: 0;
}
.tier-block-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.tier-block-sub {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
}
.tier-block-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-align: right;
}
.tbp-currency {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}
.tbp-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.tbp-per {
  font-size: 12px;
  color: var(--text-faint);
}
.tier-popular-flag {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tier-module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.module-mini {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.module-mini:hover {
  transform: translateY(-2px);
  border-color: var(--border-gold);
  background: rgba(245,166,35,0.04);
}
.module-mini-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}
.module-mini-body { min-width: 0; }
.module-mini h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px;
  letter-spacing: -0.005em;
}
.module-mini p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 767.98px) {
  .tier-block { padding: 28px 22px 24px; }
  .tier-block-head { gap: 14px; }
  .tier-block-price { width: 100%; justify-content: flex-start; text-align: left; }
  .tier-module-grid { grid-template-columns: 1fr; }
  .tier-popular-flag { right: 16px; }
}

/* ========== Mobile apps ========== */
.mobile { padding: 64px 0 56px; }
.mobile .section-head { margin-bottom: 36px; }
.mobile .section-head h2 { font-size: clamp(28px, 4vw, 46px); }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 1080px;
  margin: 0 auto 36px;
  text-align: left;
}
.audience-item {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 16px;
}
.audience-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 26px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.15;
  letter-spacing: -0.005em;
}
.audience-action {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.audience-action .italic-accent {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .audience-grid { grid-template-columns: 1fr; gap: 14px; }
}
.mobile .row { --bs-gutter-x: 16px; --bs-gutter-y: 18px; }
.app-card {
  text-align: center;
  padding: 18px 14px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  height: 100%;
  transition: transform 0.25s, border-color 0.25s;
}
.app-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.app-phone {
  width: 70px; height: 124px;
  margin: 0 auto 14px;
  background: var(--navy-deep);
  border: 2px solid var(--border-strong);
  border-radius: 12px;
  padding: 7px;
  position: relative;
}
.app-phone::before {
  content: '';
  position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 22px; height: 3.5px;
  background: rgba(0,0,0,0.6);
  border-radius: 2px;
}
.app-phone-screen {
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.30);
  border-radius: 7px;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--gold);
}
.app-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.app-card p {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

/* ========== Pricing (CREAM section) ========== */
.pricing {
  background: var(--cream);
  color: var(--text-dark);
  padding: 100px 0 80px;
}
.pricing .section-head { max-width: 980px; }
.pricing .section-head h2 { color: var(--text-dark); white-space: nowrap; }
@media (max-width: 1199.98px) {
  .pricing .section-head h2 {
    white-space: normal;
    font-size: clamp(28px, 4vw, 44px);
  }
}
.pricing .section-head h2 .italic-accent { color: var(--gold); }
.pricing .section-head p { color: var(--text-dark-m); }
.pricing .section-head .eyebrow { color: var(--gold); }

.price-card {
  position: relative;
  background: var(--cream-card);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 36px 28px 30px;
  height: 100%;
  display: flex; flex-direction: column;
  color: var(--text-dark);
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-card);
}
.price-card:hover { transform: translateY(-4px); }
.price-card--popular {
  background: var(--navy);
  color: #ffffff;
  border-left: 3px solid var(--gold);
  box-shadow: 0 24px 60px -16px rgba(13,31,60,0.45);
}
.popular-flag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; gap: 5px;
}
.price-code {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  align-self: flex-start;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}
.price-card--popular .price-code { background: var(--gold); color: var(--navy); }
.price-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: inherit;
  letter-spacing: -0.005em;
}
.price-amount {
  display: flex; align-items: baseline; gap: 8px;
  margin-bottom: 8px;
}
.price-amount .currency {
  font-size: 14px;
  color: var(--text-dark-m);
  font-weight: 600;
}
.price-card--popular .price-amount .currency { color: var(--text-faint); }
.price-amount .value {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  color: inherit;
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-amount .per {
  font-size: 13px;
  color: var(--text-dark-m);
}
.price-card--popular .price-amount .per { color: var(--text-faint); }
.price-tagline {
  font-size: 14px;
  line-height: 1.6;
  margin: 14px 0 22px;
  color: var(--text-dark-m);
}
.price-card--popular .price-tagline { color: var(--text-muted); }
.price-modules {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  flex: 1;
}
.price-modules li {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(13,31,60,0.10);
  color: var(--text-dark);
}
.price-card--popular .price-modules li {
  color: var(--text);
  border-bottom-color: rgba(255,255,255,0.10);
}
.price-modules li:last-child { border-bottom: none; }
.price-modules .bi-check2 { color: var(--gold); font-weight: 700; }

.price-card .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.price-card--popular .btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.pricing-foot {
  text-align: center;
  color: var(--text-dark-m);
  font-size: 13px;
  margin-top: 36px;
}

/* ========== Contact ========== */
.contact {
  padding: 80px 0 110px;
  background: var(--navy);
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border-gold);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 64px 44px 52px;
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55);
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 50px);
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.contact-card h2 .italic-accent { color: var(--gold); }
.contact-card > p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 38px;
  line-height: 1.65;
}
.contact-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
  margin-bottom: 26px;
}
.btn-contact {
  display: inline-flex; flex-direction: column; align-items: flex-start;
  gap: 4px;
  padding: 20px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 230px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
  text-align: left;
  color: var(--text);
}
.btn-contact:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  color: var(--text);
}
.btn-contact i {
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--gold);
}
.btn-contact.whatsapp i { color: #25D366; }
.bc-top {
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
}
.bc-sub {
  font-size: 12.5px;
  color: var(--text-muted);
}

.contact-pdf {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.contact-pdf a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ========== Footer ========== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 26px 0;
  background: var(--navy-deep);
}
.site-footer .container-xl { gap: 16px; }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.footer-brand .brand-spark { width: 18px; height: 18px; }
.footer-links { font-size: 13px; color: var(--text-muted); }
.footer-links a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links a:hover { color: var(--gold); }
.footer-links .dot { margin: 0 8px; }
.footer-copy {
  font-size: 12.5px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* ========== Reveal animation ========== */
/* Default: content visible (in case JS is slow / blocked / disabled). */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}
/* Once JS bootstraps, hide .reveal items briefly, then animate via .is-visible. */
.js-animate .reveal {
  opacity: 0;
  transform: translateY(24px);
}
.js-animate .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ========== Password gate ========== */
.gate-body {
  font-family: var(--font-body);
  background: var(--navy);
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  color: var(--text);
  position: relative;
}
.gate-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(245,166,35,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(13,31,60,0.6) 0%, transparent 50%);
  pointer-events: none;
}
.gate-shell { width: 100%; max-width: 460px; position: relative; }
.gate-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.gate-logo {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
}
.gate-spark {
  width: 22px; height: 22px;
  border-radius: 4px;
  background: var(--gold);
}
.gate-card h1 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: #ffffff;
}
.gate-sub {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 30px;
}
.gate-card form {
  display: flex; gap: 8px;
}
.gate-card input[type=password] {
  flex: 1;
  background: rgba(0,0,0,0.30);
  border: 1px solid var(--border-strong);
  color: #ffffff;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gate-card input[type=password]:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.18);
}
.gate-card input::placeholder { color: var(--text-faint); }
.gate-card button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  transition: transform 0.15s, background 0.2s;
  letter-spacing: 0.04em;
}
.gate-card button:hover { transform: translateY(-1px); background: var(--gold-soft); }
.gate-error {
  margin-top: 16px;
  color: #fda4a4;
  font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
}
.gate-foot {
  margin-top: 30px;
  font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* ========== Responsive tweaks ========== */
@media (max-width: 991.98px) {
  .site-nav { display: none; }
  .header-cta .btn-ghost { display: none; }
  .hero-mockup { display: none; }
  .hero { padding-top: 40px; padding-bottom: 24px; }
  .stats-band { padding: 36px 0 32px; }
}
@media (max-width: 575.98px) {
  .header-cta .btn-primary span { display: none; }
  .contact-card { padding: 42px 20px 36px; }
  .btn-contact { min-width: 100%; }
  .site-footer .container-xl { flex-direction: column; align-items: flex-start; }
}
