/* ═══════════════════════════════════════════════════════════════
   ROEDER PAYMENT SOLUTIONS — styles.css
   Brand: Deep Navy · Warm Gold · Clean White · Charcoal
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --navy:          #1D3B53;
  --navy-mid:      #254d6b;
  --navy-light:    #1E4080;
  --gold:          #D4A017;
  --gold-light:    #F2BE3A;
  --gold-dark:     #AA800D;
  --white:         #FFFFFF;
  --off-white:     #F8FAFB;
  --gray-50:       #F5F7FA;
  --gray-100:      #EAEFF6;
  --gray-200:      #D8DFE9;
  --gray-400:      #8A97AB;
  --charcoal:      #141F2E;
  --text-body:     #2C3A4E;
  --text-muted:    #657384;
  --text-white:    rgba(255,255,255,0.88);
  --text-dim:      rgba(255,255,255,0.5);

  --shadow-xs:   0 1px 4px rgba(11,31,58,0.06);
  --shadow-sm:   0 2px 12px rgba(11,31,58,0.08);
  --shadow-md:   0 8px 28px rgba(11,31,58,0.13);
  --shadow-lg:   0 20px 60px rgba(11,31,58,0.18);
  --shadow-xl:   0 32px 80px rgba(11,31,58,0.22);
  --shadow-gold: 0 8px 32px rgba(212,160,23,0.30);

  --r-xs:  0px;
  --r-sm:  0px;
  --r-md:  0px;
  --r-lg:  0px;
  --r-xl:  0px;
  --r-full: 0px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t:           0.28s;
  --t-slow:      0.55s;

  --container:      1200px;
  --container-wide: 1360px;
  --header-h:       88px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-radius: 0 !important; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; padding: 0; }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; color: var(--charcoal); }
h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.0625rem; }
p  { line-height: 1.72; }

/* ── Layout ─────────────────────────────────────────────────── */
.container       { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 28px; }
.section         { padding: 96px 0; }
.section--sm     { padding: 64px 0; }
.section--lg     { padding: 120px 0; }
.text-center     { text-align: center; }

/* ── Eyebrow ─────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.eyebrow--light         { color: var(--gold-light); }

/* ── Section title helpers ───────────────────────────────────── */
.section-title        { font-size: clamp(1.75rem, 3vw, 2.6rem); margin-bottom: 16px; line-height: 1.15; }
.section-title--light { color: var(--white); }
.section-sub          { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.72; }
.section-sub--light   { color: var(--text-dim); }
.section-divider      { width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 2px; margin: 16px 0 0; }
.section-divider--c   { margin: 16px auto 0; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 0.9375rem; font-weight: 700; line-height: 1;
  padding: 15px 30px; border-radius: var(--r-full);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), background var(--t) var(--ease);
  white-space: nowrap;
}
.btn svg    { width: 18px; height: 18px; flex-shrink: 0; }
.btn--lg    { padding: 17px 36px; font-size: 1rem; }
.btn--sm    { padding: 10px 20px; font-size: 0.8125rem; }

.btn-gold   { background: var(--gold); color: var(--navy); box-shadow: 0 4px 18px rgba(212,160,23,0.32); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,160,23,0.44); }

.btn-outline-white { background: transparent; color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.32); }
.btn-outline-white:hover { background: rgba(255,255,255,0.09); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.6); transform: translateY(-2px); }

.btn-navy   { background: var(--navy); color: var(--white); box-shadow: var(--shadow-md); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-outline-navy { background: transparent; color: var(--navy); box-shadow: inset 0 0 0 1.5px var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal           { opacity: 0; transform: translateY(26px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible   { opacity: 1; transform: none; }
.reveal-delay-1   { transition-delay: 0.08s; }
.reveal-delay-2   { transition-delay: 0.16s; }
.reveal-delay-3   { transition-delay: 0.24s; }
.reveal-delay-4   { transition-delay: 0.32s; }
.reveal-delay-5   { transition-delay: 0.40s; }

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); display: flex; align-items: center;
  padding: 12px 0;
  border: none; box-shadow: none;
  transition: background var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
}
.site-header--transparent { background: transparent; box-shadow: none; border-bottom: none; }
.site-header--solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
}
.site-header--elevated {
  box-shadow: 0 1px 0 rgba(11,31,58,0.06), 0 4px 24px rgba(11,31,58,0.10);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 0 32px;
}
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.header-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.header-logo-name { font-size: 1.0625rem; font-weight: 800; color: var(--navy); letter-spacing: -0.025em; }
.header-logo-sub  { font-size: 0.5rem; font-weight: 700; color: var(--gold-dark); letter-spacing: 0.14em; text-transform: uppercase; }
.header-logo-img  { height: 64px; width: auto; display: block; object-fit: contain; }

/* Solid-state nav colors (white bg) */
.site-header--solid .nav-link   { color: var(--charcoal); }
.site-header--solid .nav-link:hover, .site-header--solid .nav-link.active { color: var(--navy); background: rgba(29,59,83,0.07); }

/* Transparent-state nav colors (over dark hero) */
.header-nav { display: flex; align-items: center; gap: 2px; }
.nav-link   { font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.82); padding: 6px 13px; border-radius: var(--r-full); transition: color var(--t), background var(--t); }
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.10); }
.nav-cta    { font-size: 0.8125rem; font-weight: 700; color: var(--navy); background: var(--gold); padding: 9px 20px; border-radius: var(--r-full); margin-left: 14px; transition: background var(--t), transform var(--t), box-shadow var(--t); }
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* Hamburger — dark on white header */
.header-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; border-radius: var(--r-sm); transition: background var(--t); }
.site-header--solid .header-hamburger:hover { background: rgba(29,59,83,0.07); }
.site-header--transparent .header-hamburger:hover { background: rgba(255,255,255,0.07); }
.header-hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.site-header--solid .header-hamburger span { background: var(--navy); }
.header-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.header-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999;
  flex-direction: column; padding: 24px 20px 40px; gap: 4px;
  overflow-y: auto; overflow-x: hidden;
  border-top: 1px solid rgba(255,255,255,0.07);
  /* Hidden state */
  display: flex;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Staggered link entry */
.mobile-nav-link,
.mobile-nav-cta,
.mobile-nav-contact {
  opacity: 0;
  transform: translateX(-14px);
  transition: opacity 0.25s ease, transform 0.25s ease, color var(--t), background var(--t);
}
.mobile-nav.open .mobile-nav-link,
.mobile-nav.open .mobile-nav-cta,
.mobile-nav.open .mobile-nav-contact { opacity: 1; transform: translateX(0); }

.mobile-nav.open .mobile-nav-link:nth-child(1) { transition-delay: 0.06s; }
.mobile-nav.open .mobile-nav-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.open .mobile-nav-link:nth-child(3) { transition-delay: 0.14s; }
.mobile-nav.open .mobile-nav-link:nth-child(4) { transition-delay: 0.18s; }
.mobile-nav.open .mobile-nav-link:nth-child(5) { transition-delay: 0.22s; }
.mobile-nav.open .mobile-nav-link:nth-child(6) { transition-delay: 0.26s; }
.mobile-nav.open .mobile-nav-contact           { transition-delay: 0.30s; }
.mobile-nav.open .mobile-nav-cta               { transition-delay: 0.34s; }

.mobile-nav-link { font-size: 1.0625rem; font-weight: 600; color: rgba(255,255,255,0.7); padding: 14px 16px; border-radius: var(--r-md); }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--white); background: rgba(255,255,255,0.07); }
.mobile-nav-cta {
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--navy); background: var(--gold);
  padding: 16px; border-radius: var(--r-full); margin-top: 12px; flex-shrink: 0;
}
.mobile-nav-cta:hover { background: var(--gold-light); }

/* Mobile nav contact card */
.mobile-nav-contact {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 20px 20px 18px;
  margin-top: 8px; flex-shrink: 0;
}
.mobile-nav-contact-lbl {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.40); margin-bottom: 10px;
}
.mobile-nav-contact-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.7);
  flex-shrink: 0;
  animation: dot-pulse 2.4s ease infinite;
}
.mobile-nav-contact-num {
  display: block;
  font-size: 1.5rem; font-weight: 900; color: var(--gold);
  letter-spacing: -0.02em; line-height: 1;
  margin-bottom: 8px;
  transition: color var(--t);
}
.mobile-nav-contact-num:hover { color: var(--gold-light); }
.mobile-nav-contact-hours {
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.35);
}

/* Admin ribbon helpers */
.ar-btn { display: inline-flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 600; line-height: 1; color: rgba(255,255,255,0.55); height: 24px; padding: 0 10px; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; text-decoration: none; background: transparent; cursor: pointer; font-family: inherit; transition: color .2s, border-color .2s, background .2s; box-sizing: border-box; vertical-align: middle; }
.ar-btn:hover { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
.ar-btn--exit:hover { color: #f87171; border-color: rgba(239,68,68,0.4); background: rgba(220,38,38,0.12); }
.ar-btn svg { width: 12px; height: 12px; flex-shrink: 0; }
@media(max-width:640px){ .ar-username, .ar-username-sep { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 70% 25%, rgba(30,64,128,0.55) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 15% 85%, rgba(212,160,23,0.07) 0%, transparent 55%),
    linear-gradient(150deg, #1D3B53 0%, #254d6b 55%, #1D3B53 100%);
}
.hero-grid-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.hero-blob--1 { width: 600px; height: 600px; background: rgba(30,64,128,0.38); top: -150px; right: -80px; }
.hero-blob--2 { width: 320px; height: 320px; background: rgba(212,160,23,0.09); bottom: 80px; right: 28%; }
.hero-blob--3 { width: 200px; height: 200px; background: rgba(212,160,23,0.06); top: 30%; left: 5%; }

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  padding: 72px 0 88px;
}
.hero-left { padding-right: 12px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: none; border: none;
  padding: 0; margin-bottom: 28px;
}
.hero-badge-dot { display: none; }
@keyframes dot-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.78); } }
.hero-badge-text { font-size: 0.6875rem; font-weight: 700; color: var(--gold-light); letter-spacing: 0.06em; text-transform: uppercase; }

.hero-title    { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; color: var(--white); line-height: 1.12; letter-spacing: -0.027em; margin-bottom: 22px; }
.hero-title-accent { color: var(--gold); }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.68); line-height: 1.68; margin-bottom: 34px; max-width: 510px; }
.hero-bullets  { display: flex; flex-direction: column; gap: 13px; margin-bottom: 40px; }
.hero-bullet   { display: flex; align-items: center; gap: 13px; font-size: 0.9375rem; font-weight: 500; color: rgba(255,255,255,0.8); }
.hero-bullet-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(212,160,23,0.13); border: 1px solid rgba(212,160,23,0.22);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-bullet-icon svg { width: 16px; height: 16px; color: var(--gold); }

.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }

.hero-trust { display: flex; align-items: center; gap: 12px; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
  width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--navy);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; color: var(--navy); margin-left: -9px;
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-stars svg { width: 13px; height: 13px; color: var(--gold); }
.hero-trust-label { font-size: 0.75rem; color: rgba(255,255,255,0.42); line-height: 1.4; }

/* Hero Right — Mockup */
.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-mockup-wrap { position: relative; width: 100%; max-width: 500px; margin: 0 auto; }

/* ── Animated line grid ── */
.hero-lines {
  position: absolute; inset: -10%; z-index: 0; pointer-events: none;
}
.hero-lines-svg { width: 100%; height: 100%; overflow: visible; }

/* Concentric rings — slow rotate + pulse opacity */
.hl-ring {
  fill: none;
  stroke: rgba(212,160,23,0.18);
  stroke-width: 1;
}
.hl-ring-1 {
  stroke: rgba(212,160,23,0.22);
  stroke-dasharray: 12 8;
  animation: ring-spin 22s linear infinite, ring-pulse 4s ease-in-out infinite;
}
.hl-ring-2 {
  stroke: rgba(255,255,255,0.07);
  stroke-dasharray: 6 14;
  animation: ring-spin-rev 30s linear infinite, ring-pulse 6s ease-in-out infinite 1s;
}
.hl-ring-3 {
  stroke: rgba(212,160,23,0.10);
  stroke-dasharray: 3 18;
  animation: ring-spin 40s linear infinite, ring-pulse 5s ease-in-out infinite 2s;
}

@keyframes ring-spin     { from { transform-origin: 250px 250px; transform: rotate(0deg);    } to { transform-origin: 250px 250px; transform: rotate(360deg);  } }
@keyframes ring-spin-rev { from { transform-origin: 250px 250px; transform: rotate(0deg);    } to { transform-origin: 250px 250px; transform: rotate(-360deg); } }
@keyframes ring-pulse    { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Horizontal scan lines — travel up one by one */
.hl-scan {
  stroke: rgba(212,160,23,0.0);
  stroke-width: 1;
  stroke-linecap: round;
}
.hl-scan-1 { animation: scan-travel 6s ease-in-out infinite 0s;   }
.hl-scan-2 { animation: scan-travel 6s ease-in-out infinite 1.2s; }
.hl-scan-3 { animation: scan-travel 6s ease-in-out infinite 2.4s; }
.hl-scan-4 { animation: scan-travel 6s ease-in-out infinite 3.6s; }
.hl-scan-5 { animation: scan-travel 6s ease-in-out infinite 4.8s; }

@keyframes scan-travel {
  0%   { stroke: rgba(212,160,23,0.0);  stroke-width: 1; }
  30%  { stroke: rgba(212,160,23,0.18); stroke-width: 1; }
  60%  { stroke: rgba(255,255,255,0.06); stroke-width: 1; }
  100% { stroke: rgba(212,160,23,0.0);  stroke-width: 1; }
}

/* Corner brackets — draw in then fade */
.hl-corner {
  fill: none;
  stroke: rgba(212,160,23,0.18);
  stroke-width: 1;
  stroke-linecap: square;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: corner-draw 3s ease-out forwards, corner-blink 4s ease-in-out infinite 3s;
}
.hl-corner-tl { animation-delay: 0.2s, 3.2s; }
.hl-corner-tr { animation-delay: 0.5s, 3.5s; }
.hl-corner-bl { animation-delay: 0.8s, 3.8s; }
.hl-corner-br { animation-delay: 1.1s, 4.1s; }

@keyframes corner-draw  { to { stroke-dashoffset: 0; } }
@keyframes corner-blink { 0%,100% { opacity: 0.18; } 50% { opacity: 0.08; } }

/* Diagonal traveling dash */
.hl-dash-travel {
  fill: none;
  stroke: rgba(212,160,23,0.0);
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 40 440;
  stroke-dashoffset: 480;
  animation: dash-run 3.5s linear infinite;
}
@keyframes dash-run {
  0%   { stroke-dashoffset: 480; stroke: rgba(212,160,23,0.0); }
  10%  { stroke: rgba(212,160,23,0.7); }
  90%  { stroke: rgba(212,160,23,0.4); }
  100% { stroke-dashoffset: 0;   stroke: rgba(212,160,23,0.0); }
}
.mockup-glow {
  position: absolute; width: 80%; height: 80%; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(212,160,23,0.18) 0%, rgba(30,64,128,0.25) 45%, transparent 75%);
  filter: blur(50px); border-radius: 50%; pointer-events: none;
}

/* Hero product image */
.hero-product-img-wrap {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  animation: float-y 5s ease-in-out infinite;
}
.hero-product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.55)) drop-shadow(0 8px 24px rgba(212,160,23,0.15));
}
.mock-terminal {
  background: linear-gradient(148deg, #254d6b, #254d6b);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; padding: 28px;
  box-shadow: 0 36px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative; overflow: hidden;
}
.mock-terminal::after { content: ''; position: absolute; top: 0; left: 16px; right: 16px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent); }
.mock-terminal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.mock-dots { display: flex; gap: 6px; }
.mock-dot  { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot--r { background: #FF5F57; }
.mock-dot--a { background: #FFBD2E; }
.mock-dot--g { background: #28CA41; }
.mock-badge { font-size: 9.5px; font-weight: 800; letter-spacing: 0.08em; color: var(--gold); background: rgba(212,160,23,0.12); border: 1px solid rgba(212,160,23,0.2); border-radius: var(--r-full); padding: 4px 11px; text-transform: uppercase; }
.mock-amount-display { text-align: center; padding: 18px 0 20px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 20px; }
.mock-amount-lbl { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.35); margin-bottom: 7px; }
.mock-amount-val { font-size: 2.6rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.mock-amount-sub { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 5px; }
.mock-methods { display: flex; gap: 8px; margin-bottom: 20px; }
.mock-method { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 10px 6px; text-align: center; font-size: 9.5px; font-weight: 600; color: rgba(255,255,255,0.45); transition: background var(--t), border-color var(--t); }
.mock-method svg { width: 18px; height: 18px; margin: 0 auto 4px; }
.mock-pay-btn {
  width: 100%; background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%);
  color: var(--navy); font-weight: 800; font-size: 0.9375rem; padding: 14px;
  border-radius: 12px; display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 22px rgba(212,160,23,0.38);
  animation: pay-breathe 3s ease-in-out infinite;
}
@keyframes pay-breathe { 0%, 100% { box-shadow: 0 8px 22px rgba(212,160,23,0.38); } 50% { box-shadow: 0 12px 32px rgba(212,160,23,0.52); } }
.mock-pay-btn svg { width: 17px; height: 17px; }

.mock-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.13); border-radius: var(--r-md);
  padding: 14px 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.3); min-width: 148px;
}
.mock-stat-card--savings { top: -18px; right: -28px; animation: float-y 4s ease-in-out infinite; }
.mock-stat-card--txn     { bottom: 24px; left: -38px; animation: float-y 4s ease-in-out infinite 1.8s; }
.mock-stat-card--rate    { top: 42%; right: -48px; animation: float-y 4s ease-in-out infinite 0.9s; }
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.mock-stat-icon { width: 30px; height: 30px; border-radius: 7px; background: rgba(212,160,23,0.14); display: flex; align-items: center; justify-content: center; margin-bottom: 7px; }
.mock-stat-icon svg { width: 14px; height: 14px; color: var(--gold); }
.mock-stat-val  { font-size: 1.3125rem; font-weight: 800; color: var(--white); letter-spacing: -0.025em; line-height: 1; }
.mock-stat-lbl  { font-size: 9.5px; color: rgba(255,255,255,0.42); margin-top: 3px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.mock-stat-trend { display: inline-flex; align-items: center; gap: 3px; font-size: 9.5px; font-weight: 700; color: #4ADE80; margin-top: 5px; }
.mock-stat-trend svg { width: 10px; height: 10px; }


/* ═══════════════════════════════════════════════════════════════
   LOCAL TRUST SECTION
   ═══════════════════════════════════════════════════════════════ */
.local-section { padding: 96px 0; background: var(--white); }
.local-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.local-title   { margin-bottom: 10px; }
.local-sub     { font-size: 1.125rem; font-weight: 600; color: var(--navy-mid); margin-bottom: 20px; font-style: italic; }
.local-body    { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.local-bullets { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.local-bullet  { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9375rem; font-weight: 500; color: var(--text-body); }
.local-check   { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; box-shadow: 0 4px 10px rgba(11,31,58,0.2); }
.local-check svg { width: 12px; height: 12px; color: var(--gold); }

.local-visual {
  background: linear-gradient(145deg, var(--off-white), var(--gray-50));
  border-radius: var(--r-xl); padding: 36px; border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md); position: relative; overflow: hidden;
  min-height: 440px; display: flex; flex-direction: column;
}
.local-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(11,31,58,0.05), transparent 60%); }
.local-visual-header { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; position: relative; }
.local-visual-icon { width: 42px; height: 42px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(11,31,58,0.2); }
.local-visual-icon svg { width: 20px; height: 20px; color: var(--gold); }
.local-visual-title { font-size: 1.0625rem; font-weight: 700; color: var(--charcoal); }
.local-visual-sub   { font-size: 0.8125rem; color: var(--text-muted); }

.service-areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: relative; flex: 1; }
.area-pin { background: var(--white); border-radius: var(--r-md); padding: 16px; display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.area-pin:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(212,160,23,0.25); }
.area-pin--main { grid-column: span 2; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-color: transparent; }
.area-pin--main:hover { border-color: rgba(212,160,23,0.3); }
.area-pin-icon { width: 38px; height: 38px; border-radius: var(--r-sm); background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.area-pin--main .area-pin-icon { background: rgba(212,160,23,0.18); }
.area-pin-icon svg { width: 16px; height: 16px; color: var(--gold); }
.area-pin-name { font-size: 0.9375rem; font-weight: 700; color: var(--charcoal); line-height: 1.2; }
.area-pin--main .area-pin-name { color: var(--white); }
.area-pin-sub  { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }
.area-pin--main .area-pin-sub { color: rgba(255,255,255,0.5); }

/* ═══════════════════════════════════════════════════════════════
   WHY SWITCH — Manifesto Row Layout
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   WHY ROEDER — Dark Statement Cards
   ═══════════════════════════════════════════════════════════════ */
.why-section { padding: 96px 0; background: #f4f7fc; }
.why-header { margin-bottom: 56px; }
.why-header-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; }
.why-header-cta-note { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; }

.why-steps { display: flex; flex-direction: column; }
.why-step {
  display: grid; grid-template-columns: 96px 1fr 300px; gap: 48px;
  align-items: start; padding: 48px 0;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t);
}
.why-step:first-child { border-top: 1px solid var(--gray-100); }
.why-step-num { font-size: 3.5rem; font-weight: 900; color: var(--gray-100); line-height: 1; letter-spacing: -0.04em; padding-top: 4px; }
.why-step-title { font-size: 1.1875rem; font-weight: 800; color: var(--charcoal); margin-bottom: 12px; line-height: 1.25; letter-spacing: -0.018em; }
.why-step-text { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.72; }
.why-step-callout { background: var(--off-white); border: 1px solid var(--gray-100); padding: 22px 24px; border-left: 3px solid var(--gold); }
.why-step-callout-lbl { font-size: 8px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 8px; }
.why-step-callout-text { font-size: 0.875rem; font-weight: 500; color: var(--text-body); line-height: 1.6; }

/* CTA row */
.why-footer-cta { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 52px; }
.why-footer-cta-line { display: none; }

/* ═══════════════════════════════════════════════════════════════
   PRICING MODELS
   ═══════════════════════════════════════════════════════════════ */
.pricing-section {
  padding: 100px 0; background: var(--navy); position: relative; overflow: hidden;
}
.pricing-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 55% at 85% 15%, rgba(30,64,128,0.55) 0%, transparent 65%), radial-gradient(ellipse 40% 30% at 15% 90%, rgba(212,160,23,0.05) 0%, transparent 55%); }
.pricing-header { text-align: center; max-width: 640px; margin: 0 auto 60px; position: relative; }
.pricing-header .section-title { color: var(--white); }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.pricing-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 36px 28px; position: relative; overflow: hidden; transition: transform var(--t), background var(--t), border-color var(--t); backdrop-filter: blur(12px); }
.pricing-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); }
.pricing-card--featured { background: linear-gradient(148deg, rgba(212,160,23,0.13), rgba(212,160,23,0.05)); border-color: rgba(212,160,23,0.38); transform: scale(1.02); }
.pricing-card--featured:hover { transform: scale(1.02) translateY(-5px); border-color: rgba(212,160,23,0.58); }
.pricing-pop-badge { position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--navy); font-size: 9.5px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-full); }
.pricing-icon { width: 52px; height: 52px; border-radius: var(--r-md); background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.2); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
.pricing-icon svg { width: 24px; height: 24px; color: var(--gold); }
.pricing-model-name { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 8px; }
.pricing-card-title { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 20px; line-height: 1.3; }
.pricing-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.73); }
.pricing-feature svg { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.pricing-best { font-size: 0.8125rem; color: rgba(255,255,255,0.42); line-height: 1.55; }
.pricing-best strong { color: rgba(255,255,255,0.65); }
.pricing-footer { text-align: center; margin-top: 56px; position: relative; }
.pricing-footer p { font-size: 0.9375rem; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.pricing-footer .btn { white-space: normal; text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   POS TECHNOLOGY — Product Showcase Cards
   ═══════════════════════════════════════════════════════════════ */
.pos-section { padding: 100px 0; background: #f1f4fb; }
.pos-header  { text-align: center; max-width: 640px; margin: 0 auto 60px; }

/* 3-column product card grid */
.pos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Card shell */
.pos-card {
  background: #ffffff;
  border: 1px solid rgba(11,31,58,0.08);
  box-shadow: 0 2px 16px rgba(11,31,58,0.055);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pos-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 52px rgba(11,31,58,0.13);
}

/* Gold brand accent line */
.pos-card-accent {
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  flex-shrink: 0;
}

/* Studio image zone */
.pos-card-img-zone {
  position: relative;
  min-height: 272px;
  padding: 32px 24px 26px;
  background: linear-gradient(148deg, #edf1fd 0%, #e3eaf9 55%, #edf1fd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Soft radial light source behind product */
.pos-card-img-zone::before {
  content: '';
  position: absolute;
  width: 190px; height: 190px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.95) 0%, transparent 68%);
  top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  pointer-events: none;
}
/* Ground shadow ellipse */
.pos-card-img-zone::after {
  content: '';
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 11px;
  background: radial-gradient(ellipse, rgba(11,31,58,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.pos-card-img {
  width: 70%;
  max-width: 195px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  display: block;
  position: relative; z-index: 1;
  transition: transform 0.45s var(--ease);
  filter: drop-shadow(0 14px 30px rgba(11,31,58,0.24));
}
.pos-card:hover .pos-card-img { transform: translateY(-11px) scale(1.04); }

/* Card body */
.pos-card-body {
  padding: 22px 26px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Meta: category + status */
.pos-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.pos-card-cat {
  display: inline-flex; align-items: center;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.20);
  color: var(--gold-dark);
  font-size: 7.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 11px;
}
.pos-card-status {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 8.5px; font-weight: 700; color: #15803d;
  letter-spacing: 0.03em;
}
.pos-card-status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: dot-pulse 2.4s ease infinite;
}

.pos-card-name {
  font-size: 1.25rem; font-weight: 800;
  color: var(--charcoal);
  line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 5px;
}
.pos-card-tagline {
  font-size: 0.8125rem; color: var(--text-muted);
  line-height: 1.5; margin-bottom: 18px;
}
.pos-card-divider { height: 1px; background: var(--gray-100); margin-bottom: 18px; }

/* Feature list */
.pos-card-feats {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  flex: 1; margin-bottom: 22px;
}
.pos-card-feat {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.8125rem; font-weight: 500; color: var(--text-body);
  line-height: 1.45;
}
.pos-card-feat-icon {
  width: 16px; height: 16px;
  background: rgba(11,31,58,0.07);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.pos-card-feat-icon svg { width: 9px; height: 9px; color: var(--navy); }

/* Text CTA link */
.pos-card-cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.8125rem; font-weight: 800;
  color: var(--navy); letter-spacing: 0.01em;
  border-bottom: 1.5px solid rgba(11,31,58,0.18);
  padding-bottom: 2px; width: fit-content;
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}
.pos-card-cta:hover { color: var(--gold-dark); border-color: var(--gold); gap: 11px; }
.pos-card-cta svg  { width: 12px; height: 12px; }

/* ═══════════════════════════════════════════════════════════════
   INDUSTRY SOLUTIONS — Full-Bleed Editorial Cards
   ═══════════════════════════════════════════════════════════════ */
.industry-section { padding: 96px 0; background: var(--white); }
.industry-header  { text-align: center; max-width: 640px; margin: 0 auto 64px; }

.industry-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 56px;
  background: #152d42;
  position: relative; z-index: 1;
}

/* Full-bleed editorial card */
.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
}

/* Photo zoom layer via ::before pseudo-element */
.industry-card::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}
.industry-card--retail::before { background-image: url('../img/9930.jpg'); }
.industry-card--qsr::before    { background-image: url('../img/9931.jpg'); }
.industry-card--dining::before { background-image: url('../img/9932.jpg'); }
.industry-card:hover::before   { transform: scale(1.07); }

/* Gradient scrim — deepens on hover */
.industry-card-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(7,17,31,0.18) 0%,
    rgba(7,17,31,0.50) 36%,
    rgba(7,17,31,0.88) 60%,
    rgba(7,17,31,0.99) 100%
  );
  transition: background 0.55s ease;
}
.industry-card:hover .industry-card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(7,17,31,0.28) 0%,
    rgba(7,17,31,0.62) 32%,
    rgba(7,17,31,0.93) 58%,
    rgba(7,17,31,1.00) 100%
  );
}

/* Gold accent bar sweeps in from left on hover */
.industry-card-accent {
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; z-index: 4;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.industry-card:hover .industry-card-accent { transform: scaleX(1); }

/* Category label — glassmorphism badge top-left */
.industry-card-tag {
  position: absolute; top: 24px; left: 24px; z-index: 3;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.90);
  font-size: 8px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 14px;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.industry-card:hover .industry-card-tag {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Card index number — decorative, top-right */
.industry-card-num {
  position: absolute; top: 22px; right: 24px; z-index: 3;
  font-size: 0.6875rem; font-weight: 900; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.14);
  transition: color 0.3s ease;
}
.industry-card:hover .industry-card-num { color: rgba(255,255,255,0.32); }

/* Content block anchored to bottom */
.industry-card-content {
  position: relative; z-index: 2;
  padding: 28px 30px 34px;
}

.industry-card-title {
  font-size: 1.5rem; font-weight: 800;
  color: #fff; line-height: 1.15;
  letter-spacing: -0.022em;
  margin-bottom: 8px;
}
.industry-card-tagline {
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.52);
  display: flex; align-items: center; gap: 10px;
  line-height: 1.5;
}
.industry-card-tagline::before {
  content: '';
  width: 22px; height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Features + CTA panel — always visible */
.industry-card-reveal {
  margin-top: 22px;
}

.industry-feats { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.industry-feat  {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.80);
}
.industry-feat svg { width: 13px; height: 13px; color: var(--gold); flex-shrink: 0; }

/* Gold CTA button inside card */
.industry-card-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 11px 22px;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease, gap 0.22s ease;
}
.industry-card-cta:hover { background: var(--gold-dark); color: var(--white); gap: 14px; }
.industry-card-cta svg  { width: 12px; height: 12px; }

.industry-cta-wrap { text-align: center; position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   SAVINGS CALCULATOR
   ═══════════════════════════════════════════════════════════════ */
.calc-section {
  padding: 100px 0;
  background: linear-gradient(138deg, #1D3B53 0%, #254d6b 55%, #1D3B53 100%);
  position: relative; overflow: hidden;
}
.calc-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 55% 75% at 100% 50%, rgba(212,160,23,0.055) 0%, transparent 55%), radial-gradient(ellipse 45% 55% at 0% 50%, rgba(30,64,128,0.45) 0%, transparent 55%); }
.calc-section::after  { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.calc-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; position: relative; }
.calc-title   { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 16px; }
.calc-title span { color: var(--gold); }
.calc-sub     { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.72; margin-bottom: 40px; }
.calc-benefits { display: flex; flex-direction: column; gap: 20px; }
.calc-benefit  { display: flex; align-items: flex-start; gap: 14px; }
.calc-benefit-icon { width: 38px; height: 38px; border-radius: 9px; background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.calc-benefit-icon svg { width: 17px; height: 17px; color: var(--gold); }
.calc-benefit-title { font-size: 0.9375rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.calc-benefit-desc  { font-size: 0.8125rem; color: rgba(255,255,255,0.45); line-height: 1.55; }
.calc-card {
  background: rgba(255,255,255,0.05); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-xl);
  padding: 40px 36px; box-shadow: 0 32px 80px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.1);
  position: relative; overflow: hidden;
}
.calc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent); }
.calc-card-title { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 5px; }
.calc-card-sub   { font-size: 0.8125rem; color: rgba(255,255,255,0.45); margin-bottom: 30px; line-height: 1.55; }
.form-field { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.65); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-input-wrap { position: relative; }
.form-prefix { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.35); pointer-events: none; }
.form-suffix { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.3); pointer-events: none; }
.form-input {
  width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm); padding: 13px 14px 13px 32px;
  font-size: 0.9375rem; font-weight: 600; color: var(--white); outline: none;
  transition: border-color var(--t), background var(--t), box-shadow var(--t);
}
.form-input::placeholder { color: rgba(255,255,255,0.22); font-weight: 400; }
.form-input:focus { border-color: rgba(212,160,23,0.5); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(212,160,23,0.1); }
.form-input--suf { padding-right: 50px; }
.form-hint { font-size: 0.6875rem; color: rgba(255,255,255,0.3); margin-top: 5px; }
.calc-btn { width: 100%; background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%); color: var(--navy); font-weight: 800; font-size: 1rem; padding: 16px; border-radius: var(--r-full); border: none; cursor: pointer; transition: transform var(--t), box-shadow var(--t); display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; box-shadow: 0 8px 24px rgba(212,160,23,0.28); }
.calc-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,160,23,0.44); }
.calc-btn svg { width: 18px; height: 18px; }
.calc-trust-note { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 14px; }
.calc-trust-note svg { width: 13px; height: 13px; }

/* ═══════════════════════════════════════════════════════════════
   TRUST / CREDIBILITY
   ═══════════════════════════════════════════════════════════════ */
.trust-section { padding: 100px 0 88px; background: #f4f7fc; position: relative; overflow: hidden; }
.trust-section--dark { background: var(--navy); }
.trust-section--dark .trust-header .eyebrow { color: var(--gold-light); }
.trust-section--dark .section-title { color: #fff; }
.trust-section--dark .trust-points-grid { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); box-shadow: 0 4px 32px rgba(0,0,0,0.22); }
.trust-section--dark .trust-point { border-right-color: rgba(255,255,255,0.1); }
.trust-section--dark .trust-point:hover { background: rgba(255,255,255,0.07); }
.trust-section--dark .trust-point-text { color: rgba(255,255,255,0.9); }
.trust-testimonial-section { padding: 80px 0 88px; background: #f4f7fc; }

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

/* ── 5 trust pillars — horizontal strip ── */
.trust-points-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  margin-bottom: 72px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 32px rgba(11,31,58,0.07);
}
.trust-point {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 40px 20px 34px;
  position: relative; overflow: hidden;
  border-right: 1px solid var(--gray-100);
  transition: background 0.3s ease;
}
.trust-point:last-child { border-right: none; }

/* Gold sweep bar on hover */
.trust-point::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.trust-point:hover { background: #fafbfd; }
.trust-point:hover::before { transform: scaleX(1); }

/* Icon square — navy bg */
.trust-point-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; flex-shrink: 0;
  transition: background 0.3s ease;
}
.trust-point:hover .trust-point-icon { background: var(--gold-dark); }
.trust-point-icon svg { width: 24px; height: 24px; color: var(--gold); }
.trust-point:hover .trust-point-icon svg { color: var(--white); }

.trust-point-text {
  font-size: 0.8125rem; font-weight: 700;
  color: var(--charcoal); line-height: 1.45;
}

/* ── Testimonial — split card ── */
.testimonial-block {
  margin-bottom: 64px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 32px rgba(11,31,58,0.07);
  overflow: hidden; position: relative;
}
.testimonial-block::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold));
}
.testimonial-left { padding: 44px 52px; display: flex; flex-direction: column; }

.testimonial-quote-wrap {
  display: flex; align-items: flex-start;
  background: none; border: none; border-radius: 0;
  width: auto; height: auto; margin: 0 0 20px 0;
  box-shadow: none; padding: 0;
}
.testimonial-quote-wrap svg { width: 36px; height: 36px; color: var(--gold); opacity: 0.30; }

.testimonial-stars { display: flex; justify-content: flex-start; gap: 4px; margin-bottom: 20px; }
.testimonial-stars svg { width: 15px; height: 15px; color: var(--gold); }

.testimonial-text {
  font-size: 1.0625rem; font-style: italic;
  color: var(--charcoal); line-height: 1.78;
  max-width: none; margin: 0 0 28px 0; font-weight: 500; flex: 1;
}
.testimonial-name { font-size: 0.9375rem; font-weight: 800; color: var(--navy); }
.testimonial-role { font-size: 0.8125rem; color: var(--text-muted); margin-top: 4px; }


/* ── Logo / client strip ── */
.logo-strip-lbl {
  text-align: center; font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 20px;
}
.logo-strip { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.logo-strip-pill {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 11px 22px; font-size: 0.8125rem; font-weight: 600;
  color: var(--text-muted); letter-spacing: 0.03em;
  box-shadow: 0 1px 4px rgba(11,31,58,0.05);
  transition: border-color var(--t), color var(--t), box-shadow var(--t);
}
.logo-strip-pill:hover {
  border-color: rgba(212,160,23,0.35);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(11,31,58,0.1);
}

/* ═══════════════════════════════════════════════════════════════
   EDUCATIONAL TRUST
   ═══════════════════════════════════════════════════════════════ */
.edu-section { padding: 96px 0; background: var(--gray-50); }
.edu-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.edu-title   { margin-bottom: 14px; }
.edu-body    { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.edu-compare-grid { display: flex; flex-direction: column; gap: 12px; }
.edu-compare-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.edu-compare-cell { border-radius: var(--r-md); padding: 18px; border: 1px solid var(--gray-200); background: var(--white); }
.edu-compare-cell--bad  { border-color: rgba(239,68,68,0.18); background: rgba(239,68,68,0.03); }
.edu-compare-cell--good { border-color: rgba(212,160,23,0.25); background: rgba(212,160,23,0.03); }
.edu-compare-lbl { display: flex; align-items: center; gap: 6px; font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.edu-compare-lbl--bad  { color: #EF4444; }
.edu-compare-lbl--good { color: var(--navy); }
.edu-compare-lbl svg { width: 12px; height: 12px; }
.edu-compare-text { font-size: 0.8125rem; color: var(--text-body); line-height: 1.55; font-weight: 500; }
.edu-card { background: linear-gradient(148deg, var(--navy), var(--navy-mid)); border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-xl); position: relative; overflow: hidden; }
.edu-card::before { content: ''; position: absolute; top: 0; left: 14px; right: 14px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent); }
.edu-card-title { font-size: 0.875rem; font-weight: 700; color: rgba(255,255,255,0.55); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 22px; }
.edu-model-list { display: flex; flex-direction: column; gap: 10px; }
.edu-model-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-md); padding: 16px; display: flex; align-items: center; gap: 14px; transition: background var(--t), border-color var(--t); }
.edu-model-item:hover { background: rgba(255,255,255,0.09); border-color: rgba(212,160,23,0.22); }
.edu-model-item-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(212,160,23,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.edu-model-item-icon svg { width: 16px; height: 16px; color: var(--gold); }
.edu-model-item-info { flex: 1; }
.edu-model-item-name { font-size: 0.9375rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.edu-model-item-desc { font-size: 0.75rem; color: rgba(255,255,255,0.42); }
.edu-model-item-fit  { font-size: 9.5px; font-weight: 700; padding: 4px 10px; border-radius: var(--r-full); background: rgba(74,222,128,0.1); color: #4ADE80; border: 1px solid rgba(74,222,128,0.15); white-space: nowrap; }

/* ═══════════════════════════════════════════════════════════════
   CLOSING CTA
   ═══════════════════════════════════════════════════════════════ */
/* ── Single-page Contact Section ── */
.sp-contact-section { padding: 100px 0; background: #f4f7fc; }
.sp-contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.sp-contact-sub { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; margin: 16px 0 36px; }

/* Contact info cards */
.sp-contact-cards { display: flex; flex-direction: column; gap: 3px; margin-bottom: 28px; }
.sp-contact-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--white); border: 1px solid var(--gray-100);
  padding: 22px 24px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.sp-contact-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, var(--gold-dark), var(--gold));
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sp-contact-card:hover { border-color: rgba(29,59,83,0.15); box-shadow: 0 8px 32px rgba(11,31,58,0.09); transform: translateX(4px); }
.sp-contact-card:hover::before { transform: scaleY(1); }

.sp-contact-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #254d6b 100%);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
}
.sp-contact-card:hover .sp-contact-card-icon { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%); }
.sp-contact-card-icon svg { width: 22px; height: 22px; color: var(--gold); transition: color 0.3s ease; }
.sp-contact-card:hover .sp-contact-card-icon svg { color: var(--white); }

.sp-contact-card-body { flex: 1; min-width: 0; }
.sp-contact-card-lbl { font-size: 0.625rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px; }
.sp-contact-card-val { font-size: 1rem; font-weight: 700; color: var(--charcoal); line-height: 1.25; margin-bottom: 3px; }
.sp-contact-card-note { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

.sp-contact-card-arrow { color: var(--gray-200); transition: color 0.3s ease, transform 0.3s ease; }
.sp-contact-card-arrow svg { width: 18px; height: 18px; display: block; }
.sp-contact-card:hover .sp-contact-card-arrow { color: var(--gold); transform: translateX(4px); }

/* Trust note */
.sp-contact-trust {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; font-weight: 600; color: var(--text-muted);
  padding: 16px 20px;
  background: rgba(29,59,83,0.04); border: 1px solid rgba(29,59,83,0.07);
}
.sp-contact-trust svg { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; }

.sp-contact-form-wrap { background: var(--white); border: 1px solid var(--gray-100); box-shadow: 0 4px 32px rgba(11,31,58,0.07); padding: 40px; }
.sp-contact-form { display: flex; flex-direction: column; gap: 20px; }
.sp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.sp-form-group { display: flex; flex-direction: column; gap: 6px; }
.sp-form-label { font-size: 0.8125rem; font-weight: 700; color: var(--charcoal); }
.sp-form-label span { color: var(--gold-dark); }
.sp-form-input { padding: 12px 16px; border: 1px solid var(--gray-200); background: var(--white); font-size: 0.9375rem; color: var(--charcoal); font-family: inherit; transition: border-color var(--t), box-shadow var(--t); outline: none; width: 100%; }
.sp-form-input:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(29,59,83,0.08); }
.sp-form-input.is-error { border-color: #EF4444; }
.sp-form-textarea { min-height: 130px; resize: vertical; }
.sp-form-error { font-size: 0.75rem; color: #EF4444; }
select.sp-form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%231D3B53'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m19.5 8.25-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }

@media (max-width: 900px) {
  .sp-contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .sp-form-row { grid-template-columns: 1fr; }
  .sp-contact-form-wrap { padding: 28px 20px; }
}

.closing-cta   { position: relative; background: linear-gradient(140deg, var(--navy) 0%, #254d6b 55%, #1D3B53 100%); padding: 120px 0; overflow: hidden; }
.closing-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 65% at 50% 100%, rgba(212,160,23,0.07) 0%, transparent 60%), radial-gradient(ellipse 50% 50% at 85% 15%, rgba(30,64,128,0.5) 0%, transparent 65%); }
.closing-stripe { position: absolute; top: 0; left: -120px; right: -120px; height: 360px; background: linear-gradient(158deg, rgba(212,160,23,0.035) 0%, transparent 55%); transform: skewY(-5deg); }
.closing-inner { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.closing-title { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; color: var(--white); line-height: 1.12; margin-bottom: 18px; }
.closing-title span { color: var(--gold); }
.closing-sub   { font-size: 1.0625rem; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 48px; }
.closing-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer       { background: var(--charcoal); padding: 76px 0 0; }
.footer-grid       { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 60px; }
.footer-logo-wrap  { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; text-decoration: none; }
.footer-logo-mark  { width: 34px; height: 34px; flex-shrink: 0; }
.footer-logo-name  { font-size: 1.0625rem; font-weight: 800; color: var(--white); letter-spacing: -0.025em; }
.footer-logo-sub   { font-size: 0.5rem; font-weight: 700; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; display: block; }
.footer-desc       { font-size: 0.875rem; color: rgba(255,255,255,0.42); line-height: 1.7; margin-bottom: 24px; }
.footer-social     { display: flex; gap: 9px; }
.footer-social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); transition: background var(--t), border-color var(--t), color var(--t); }
.footer-social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-social-link svg { width: 15px; height: 15px; display: block; }
.footer-col-title  { font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links      { display: flex; flex-direction: column; gap: 10px; }
.footer-links a    { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color var(--t); }
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.5; }
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact-item a { color: inherit; transition: color var(--t); }
.footer-contact-item a:hover { color: var(--white); }
.footer-area-tags  { display: flex; flex-wrap: wrap; gap: 7px; }
.footer-area-tag   { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--r-full); padding: 5px 13px; font-size: 0.75rem; color: rgba(255,255,255,0.45); font-weight: 500; transition: background var(--t), border-color var(--t), color var(--t); }
.footer-area-tag:hover { background: rgba(212,160,23,0.1); border-color: rgba(212,160,23,0.22); color: var(--gold-light); }
/* Footer support bar */
.footer-support-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px 28px;
  margin-bottom: 32px;
  flex-wrap: wrap; gap: 16px;
}
.footer-support-bar-left {
  display: flex; align-items: center; gap: 10px;
}
.footer-support-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
  flex-shrink: 0;
  animation: dot-pulse 2.4s ease infinite;
}
.footer-support-lbl {
  font-size: 0.8125rem; font-weight: 500;
  color: rgba(255,255,255,0.45);
}
.footer-support-num {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 900;
  color: var(--gold); letter-spacing: -0.02em;
  transition: color var(--t), gap var(--t);
}
.footer-support-num svg { width: 18px; height: 18px; flex-shrink: 0; }
.footer-support-num:hover { color: var(--gold-light); gap: 14px; }

.footer-divider    { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 24px; }
.footer-bottom     { display: flex; justify-content: space-between; align-items: center; padding-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.footer-copy       { font-size: 0.8125rem; color: rgba(255,255,255,0.28); }
.footer-legal      { display: flex; gap: 24px; }
.footer-legal a    { font-size: 0.8125rem; color: rgba(255,255,255,0.28); transition: color var(--t); }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* Back to top */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(212,160,23,0.38); opacity: 0; transform: translateY(14px); transition: opacity var(--t), transform var(--t); z-index: 500; cursor: pointer; border: none; }
.back-to-top.visible { opacity: 1; transform: none; }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }
.back-to-top svg { width: 18px; height: 18px; }

/* Mobile sticky CTA */
.sticky-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800; background: rgba(11,31,58,0.97); backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,0.08); padding: 12px 16px; gap: 10px; box-shadow: 0 -8px 32px rgba(0,0,0,0.2); }
.sticky-mobile-cta a { flex: 1; text-align: center; font-size: 0.875rem; font-weight: 700; padding: 13px; border-radius: var(--r-full); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner { gap: 52px; }
  .local-grid, .edu-grid { gap: 52px; }
  .pos-cards { gap: 16px; }
  .trust-points-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-step { grid-template-columns: 72px 1fr; gap: 24px 36px; }
  .why-step-callout { display: block; grid-column: 1 / -1; }
  .why-header-inner { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 900px) {
  :root { --header-h: 80px; }
  .header-nav, .nav-cta { display: none; }
  .header-hamburger { display: flex; }
  .header-inner { padding: 0 16px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 56px 0 72px; gap: 48px; }
  .hero-left  { padding-right: 0; max-width: 580px; margin: 0 auto; }
  .hero-bullets { align-items: flex-start; text-align: left; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-right { display: none; }
  .local-grid, .calc-grid, .edu-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-cards, .industry-cards { grid-template-columns: 1fr; }
  .industry-card { min-height: 420px; }
  .pricing-card--featured { transform: none; }
  .pos-cards { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .trust-points-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .sticky-mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .closing-actions { flex-direction: column; align-items: center; }
  .closing-actions .btn { width: 100%; max-width: 340px; }
  .why-step { grid-template-columns: 60px 1fr; gap: 20px 24px; padding: 36px 0; }
  .why-step-callout { display: block; grid-column: 1 / -1; }
  .why-footer-cta { flex-direction: column; align-items: center; gap: 16px; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }
  .service-areas-grid { grid-template-columns: 1fr; }
  .area-pin--main { grid-column: span 1; }
  .pos-cards { max-width: 100%; }
  .edu-compare-row { grid-template-columns: 1fr; }
  .trust-points-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .calc-card { padding: 28px 20px; }
  .testimonial-left { padding: 32px 28px 32px 34px; }
  .why-step-num { font-size: 2.8rem; }
  .industry-card { min-height: 380px; }
  .industry-card-title { font-size: 1.3125rem; }
}

/* ═══════════════════════════════════════════════════════════════
   SHARED INNER-PAGE UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.section-white { background: var(--white); }
.section-grey  { background: var(--gray-50); }
.section-dark  { background: var(--charcoal); }

/* Shared eyebrow / heading helpers used across inner pages */
.section-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-eyebrow::before { content: ''; width: 20px; height: 2.5px; background: var(--gold); border-radius: 2px; flex-shrink: 0; }
.section-eyebrow--light { color: var(--gold-light); }
.section-eyebrow--light::before { background: var(--gold-light); }
.section-title--light { color: var(--white); }
.section-subtitle { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.72; max-width: 600px; }
.section-subtitle--light { color: rgba(255,255,255,0.6); }
.section-divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 2px; margin: 16px 0 0; }
.section-divider--light { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }

/* hp- helpers used in inner pages */
.hp-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.hp-eyebrow::before { content: ''; width: 20px; height: 2.5px; background: var(--gold); border-radius: 2px; }
.hp-heading { font-size: clamp(1.75rem, 3.2vw, 2.75rem); font-weight: 800; color: var(--charcoal); line-height: 1.12; margin-bottom: 16px; letter-spacing: -0.025em; }
.hp-rule { width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold-dark), var(--gold)); border-radius: 2px; margin-bottom: 22px; }
.hp-btn-solid { display: inline-flex; align-items: center; gap: 9px; font-size: 0.9375rem; font-weight: 700; color: var(--white); background: var(--navy); padding: 15px 30px; border-radius: var(--r-full); box-shadow: var(--shadow-md); transition: background var(--t), transform var(--t), box-shadow var(--t); }
.hp-btn-solid:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hp-btn-solid svg { width: 18px; height: 18px; }
.hp-btn-outline-dark { display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-size: 0.9375rem; font-weight: 700; color: var(--navy); padding: 15px 30px; border-radius: var(--r-full); box-shadow: inset 0 0 0 1.5px var(--navy); transition: background var(--t), color var(--t), transform var(--t); }
.hp-btn-outline-dark:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.btn-outline { display: inline-flex; align-items: center; gap: 9px; font-size: 0.9375rem; font-weight: 700; padding: 13px 28px; border-radius: var(--r-full); transition: all var(--t); }
.btn-outline--light { color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.4); }
.btn-outline--light:hover { background: rgba(255,255,255,0.1); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.7); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════
   INNER PAGE HERO (iph)
   ═══════════════════════════════════════════════════════════════ */
.iph { position: relative; display: flex; align-items: flex-end; overflow: hidden; padding-top: var(--header-h); }
.iph--md { min-height: 420px; }
.iph--lg { min-height: 540px; }
.iph-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.iph-overlay-base { position: absolute; inset: 0; background: rgba(11,31,58,0.72); }
.iph-overlay-grad { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,31,58,0.3) 0%, rgba(11,31,58,0.85) 100%); }
.iph-noise { position: absolute; inset: 0; opacity: 0.025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 200px 200px; }
.iph-geo { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.iph-geo-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(212,160,23,0.1); }
.iph-geo-ring--1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.iph-geo-ring--2 { width: 300px; height: 300px; bottom: -100px; left: -60px; border-color: rgba(255,255,255,0.05); }
.iph-geo-line { position: absolute; background: rgba(255,255,255,0.04); }
.iph-geo-line--v { width: 1px; height: 100%; left: 30%; top: 0; }
.iph-geo-line--h { width: 100%; height: 1px; top: 45%; left: 0; }
.iph-content { position: relative; z-index: 2; padding: 56px 0 64px; width: 100%; max-width: var(--container); margin: 0 auto; }
.iph-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 10.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 18px; background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.2); border-radius: var(--r-full); padding: 7px 16px; }
.iph-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.iph-title { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.027em; margin-bottom: 18px; }
.iph-title--post { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.iph-subtitle { font-size: 1.05rem; color: rgba(255,255,255,0.68); line-height: 1.68; max-width: 600px; margin-bottom: 24px; }
.iph-breadcrumb { display: flex; align-items: center; gap: 6px; }
.iph-bc-link { font-size: 0.8125rem; color: rgba(255,255,255,0.5); transition: color var(--t); }
.iph-bc-link:hover { color: var(--gold-light); }
.iph-bc-sep svg { width: 14px; height: 14px; color: rgba(255,255,255,0.25); display: block; }
.iph-bc-current { font-size: 0.8125rem; color: var(--gold-light); font-weight: 600; }
.iph-bottom-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to top, var(--white), transparent); pointer-events: none; }

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION (shared across pages)
   ═══════════════════════════════════════════════════════════════ */
.cta-section { position: relative; padding: 120px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,31,58,0.95) 40%, rgba(11,31,58,0.82) 100%); }
.cta-content { position: relative; z-index: 2; max-width: 700px; }
.cta-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.hp-cta-solid { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.9375rem; font-weight: 800; color: var(--navy); background: var(--gold); padding: 16px 32px; border-radius: var(--r-full); box-shadow: var(--shadow-gold); transition: background var(--t), transform var(--t), box-shadow var(--t); }
.hp-cta-solid:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(212,160,23,0.5); }
.hp-cta-line { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9375rem; font-weight: 700; color: rgba(255,255,255,0.8); transition: color var(--t), gap var(--t); }
.hp-cta-line:hover { color: var(--white); gap: 12px; }
.hp-cta-line svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.ct-strip { background: var(--navy); padding: 0; }
.ct-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ct-strip-card { display: flex; align-items: center; gap: 16px; padding: 28px 24px; border-right: 1px solid rgba(255,255,255,0.07); text-decoration: none; transition: background var(--t); }
.ct-strip-card:last-child { border-right: none; }
.ct-strip-card:hover { background: rgba(255,255,255,0.04); }
.ct-strip-icon { width: 46px; height: 46px; border-radius: var(--r-md); background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ct-strip-icon svg { width: 22px; height: 22px; color: var(--gold); }
.ct-strip-body { flex: 1; min-width: 0; }
.ct-strip-label { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ct-strip-value { font-size: 0.9rem; font-weight: 700; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ct-strip-sub   { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
.ct-strip-arrow svg { width: 16px; height: 16px; color: var(--gold); }
.ct-main-section { padding: 96px 0; }
.ct-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 88px; align-items: start; }
.ct-info { }
.ct-info-list { display: flex; flex-direction: column; gap: 22px; margin-bottom: 32px; }
.ct-info-item { display: flex; align-items: flex-start; gap: 14px; }
.ct-info-icon { width: 42px; height: 42px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 12px rgba(11,31,58,0.18); }
.ct-info-icon svg { width: 18px; height: 18px; color: var(--gold); }
.ct-info-label { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.ct-info-value { font-size: 0.9375rem; font-weight: 600; color: var(--charcoal); }
.ct-socials { display: flex; gap: 9px; margin-top: 28px; }
.ct-social-btn { width: 40px; height: 40px; border-radius: 9px; background: var(--gray-50); border: 1px solid var(--gray-100); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: background var(--t), border-color var(--t), color var(--t); }
.ct-social-btn:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.ct-social-btn svg { width: 16px; height: 16px; }
.ct-form-wrap { background: var(--white); border-radius: var(--r-xl); padding: 44px 40px; box-shadow: var(--shadow-lg); border: 1px solid var(--gray-100); }
.ct-alert { display: flex; align-items: flex-start; gap: 12px; padding: 14px 18px; border-radius: var(--r-md); margin-bottom: 22px; font-size: 0.875rem; font-weight: 500; }
.ct-alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
.ct-alert--success { background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.2); color: #166534; }
.ct-alert--error   { background: rgba(239,68,68,0.07); border: 1px solid rgba(239,68,68,0.18); color: #991B1B; }
.ct-form { }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ct-field { display: flex; flex-direction: column; margin-bottom: 20px; }
.ct-label { font-size: 0.8rem; font-weight: 700; color: var(--text-body); margin-bottom: 8px; letter-spacing: 0.01em; }
.ct-required { color: var(--gold-dark); }
.ct-input { width: 100%; padding: 13px 16px; background: var(--gray-50); border: 1.5px solid var(--gray-200); border-radius: var(--r-sm); font-size: 0.9375rem; color: var(--charcoal); outline: none; transition: border-color var(--t), background var(--t), box-shadow var(--t); }
.ct-input:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px rgba(11,31,58,0.07); }
.ct-field--error .ct-input { border-color: #EF4444; }
.ct-textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.ct-select-wrap { position: relative; }
.ct-select { appearance: none; -webkit-appearance: none; }
.ct-select-arrow { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.ct-select-arrow svg { width: 16px; height: 16px; color: var(--text-muted); }
.ct-error-msg { font-size: 0.75rem; color: #EF4444; margin-top: 5px; font-weight: 500; }
.ct-submit-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px; font-size: 1rem; font-weight: 800; color: var(--navy); background: linear-gradient(135deg, var(--gold) 0%, #B8860B 100%); padding: 16px; border-radius: var(--r-full); border: none; cursor: pointer; transition: transform var(--t), box-shadow var(--t); box-shadow: 0 8px 24px rgba(212,160,23,0.28); margin-top: 4px; }
.ct-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,160,23,0.44); }
.ct-submit-btn svg { width: 18px; height: 18px; }
.ct-form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 14px; line-height: 1.5; }
.ct-form-note a { color: var(--navy); text-decoration: underline; }
.ct-map-section { background: var(--gray-50); padding: 80px 0; }
.ct-map-header { margin-bottom: 40px; }
.ct-map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); }
.ct-faq-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 88px; align-items: start; }
.ct-faq-header { position: sticky; top: 100px; }
.ct-faq-list { display: flex; flex-direction: column; gap: 10px; }
.ct-faq-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-md); overflow: hidden; transition: box-shadow var(--t), border-color var(--t); }
.ct-faq-item--open { border-color: rgba(212,160,23,0.28); box-shadow: var(--shadow-sm); }
.ct-faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-size: 0.9375rem; font-weight: 600; color: var(--charcoal); text-align: left; transition: background var(--t); }
.ct-faq-btn:hover { background: var(--gray-50); }
.ct-faq-chevron { width: 18px; height: 18px; flex-shrink: 0; color: var(--text-muted); transition: transform var(--t); }
.ct-faq-item--open .ct-faq-chevron { transform: rotate(180deg); }
.ct-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.ct-faq-answer p { padding: 0 24px 20px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.72; }

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */
.ab2-stats-bar { background: var(--navy); padding: 0; }
.ab2-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.ab2-stat { padding: 32px 24px; text-align: center; }
.ab2-stat-num { display: block; font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.ab2-stat-num sup { font-size: 0.55em; vertical-align: super; }
.ab2-stat-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; }
.ab2-stat-sep { width: 1px; background: rgba(255,255,255,0.07); }
.ab2-who-section { padding: 96px 0; }
.ab2-who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.ab2-who-visual { }
.ab2-img-frame { position: relative; }
.ab2-img-main { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-xl); }
.ab2-img-accent { position: absolute; width: 48%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 4px solid var(--white); bottom: -32px; right: -24px; }
.ab2-img-badge { position: absolute; top: 24px; left: -20px; background: var(--gold); border-radius: var(--r-lg); padding: 16px 20px; box-shadow: var(--shadow-gold); }
.ab2-img-badge-num { display: block; font-size: 1.75rem; font-weight: 800; color: var(--navy); line-height: 1; letter-spacing: -0.03em; }
.ab2-img-badge-num small { font-size: 0.6em; }
.ab2-img-badge-text { font-size: 0.6875rem; font-weight: 700; color: var(--navy); opacity: 0.75; line-height: 1.3; }
.ab2-dot-grid { position: absolute; width: 120px; height: 120px; bottom: -40px; left: -30px; background-image: radial-gradient(var(--navy-light) 1px, transparent 1px); background-size: 12px 12px; opacity: 0.25; pointer-events: none; }
.ab2-who-content { padding-top: 16px; }
.ab2-body { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.ab2-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.ab2-check-item { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; font-weight: 500; color: var(--text-body); }
.ab2-check-icon { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ab2-check-icon svg { width: 11px; height: 11px; color: var(--gold); }
.ab2-who-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ab2-values-section { padding: 96px 0; background: linear-gradient(138deg, var(--navy), var(--navy-mid)); }
.ab2-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.ab2-value-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 32px 24px; position: relative; overflow: hidden; transition: background var(--t), transform var(--t); }
.ab2-value-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); }
.ab2-value-num { font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.14em; color: rgba(212,160,23,0.5); text-transform: uppercase; margin-bottom: 18px; }
.ab2-value-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: rgba(212,160,23,0.12); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.ab2-value-icon svg { width: 22px; height: 22px; color: var(--gold); }
.ab2-value-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.ab2-value-text { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.ab2-value-line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity var(--t); }
.ab2-value-card:hover .ab2-value-line { opacity: 1; }
.ab2-timeline { position: relative; padding: 32px 0; margin-top: 32px; }
.ab2-tl-spine { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, var(--gray-200), transparent); transform: translateX(-50%); }
.ab2-tl-item { position: relative; display: grid; grid-template-columns: 1fr 60px 1fr; align-items: center; margin-bottom: 36px; }
.ab2-tl-item--left .ab2-tl-card { grid-column: 1; text-align: right; padding-right: 40px; }
.ab2-tl-item--right .ab2-tl-card { grid-column: 3; text-align: left; padding-left: 40px; }
.ab2-tl-node { grid-column: 2; display: flex; justify-content: center; }
.ab2-tl-node-inner { width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--gold); }
.ab2-tl-year { font-size: 10px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 6px; }
.ab2-tl-title { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.ab2-tl-text { font-size: 0.8375rem; color: var(--text-muted); line-height: 1.65; }
.ab2-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 52px; }
.ab2-team-card { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); border: 1px solid var(--gray-100); transition: box-shadow var(--t), transform var(--t); }
.ab2-team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.ab2-team-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.ab2-team-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.ab2-team-card:hover .ab2-team-img-wrap img { transform: scale(1.04); }
.ab2-team-hover { position: absolute; inset: 0; background: rgba(11,31,58,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--t); }
.ab2-team-card:hover .ab2-team-hover { opacity: 1; }
.ab2-team-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 700; color: var(--navy); background: var(--gold); padding: 11px 22px; border-radius: var(--r-full); transition: background var(--t); }
.ab2-team-btn svg { width: 16px; height: 16px; }
.ab2-team-btn:hover { background: var(--gold-light); }
.ab2-team-info { padding: 18px 20px; }
.ab2-team-name { font-size: 0.9375rem; font-weight: 700; color: var(--charcoal); }
.ab2-team-role { font-size: 0.8125rem; color: var(--text-muted); margin-top: 3px; }
.ab2-testi-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ab2-testi-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 32px; }
.ab2-testi-quote { font-size: 4rem; line-height: 1; color: var(--gold); opacity: 0.4; font-family: Georgia, serif; margin-bottom: -10px; }
.ab2-testi-text { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.ab2-testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.ab2-testi-author { display: flex; align-items: center; gap: 12px; }
.ab2-testi-av { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.ab2-testi-av--init { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: var(--navy); }
.ab2-testi-name { font-size: 0.875rem; font-weight: 700; color: var(--white); }
.ab2-testi-cap  { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.star-filled { color: var(--gold); }
.star-empty  { color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════════════════════ */
.sv-intro-section { padding: 96px 0; }
.sv-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.sv-intro-stats { display: flex; align-items: center; gap: 28px; margin-top: 36px; }
.sv-intro-stat-num { font-size: 1.75rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.sv-intro-stat-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-top: 3px; }
.sv-intro-stat-sep { width: 1px; height: 36px; background: var(--gray-200); }
.sv-intro-right { }
.sv-intro-img-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.sv-intro-img-wrap img { width: 100%; height: 360px; object-fit: cover; }
.sv-intro-img-tag { position: absolute; bottom: 20px; left: 20px; display: flex; align-items: center; gap: 8px; background: rgba(11,31,58,0.88); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-full); padding: 9px 18px; font-size: 0.8125rem; font-weight: 700; color: var(--white); }
.sv-intro-img-tag svg { width: 16px; height: 16px; color: #4ADE80; }
.sv-cards-section { padding: 96px 0; }
.sv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sv-card { background: var(--white); border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: transform var(--t), box-shadow var(--t), border-color var(--t); display: flex; flex-direction: column; }
.sv-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(212,160,23,0.18); }
.sv-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.sv-card-num { font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.14em; color: var(--gold); text-transform: uppercase; }
.sv-card-icon { width: 50px; height: 50px; border-radius: var(--r-md); background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(11,31,58,0.2); }
.sv-card-icon svg { width: 22px; height: 22px; color: var(--gold); }
.sv-card-title { font-size: 1.05rem; margin-bottom: 12px; }
.sv-card-text  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.sv-card-tags  { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.sv-card-tag   { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--r-full); padding: 5px 13px; font-size: 0.6875rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.04em; }
.sv-card-link  { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 700; color: var(--navy); transition: color var(--t), gap var(--t); margin-top: auto; }
.sv-card-link:hover { color: var(--gold-dark); gap: 12px; }
.sv-card-link svg { width: 16px; height: 16px; }
.sv-process-grid  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px 22px; }
.sv-process-step  { position: relative; }
.sv-process-num   { font-size: 3rem; font-weight: 800; color: var(--gray-100); letter-spacing: -0.04em; line-height: 1; margin-bottom: 12px; }
.sv-process-connector { position: absolute; top: 24px; left: calc(100% + 11px); width: calc(100% - 22px); height: 2px; background: linear-gradient(90deg, var(--gray-200), transparent); pointer-events: none; }
.sv-process-step:nth-child(3) .sv-process-connector,
.sv-process-step:nth-child(6) .sv-process-connector { display: none; }
.sv-process-title { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 9px; }
.sv-process-text  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
.sv-why-section { padding: 96px 0; background: linear-gradient(138deg, var(--navy), var(--navy-mid)); }
.sv-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.sv-why-content { }
.sv-why-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.sv-why-feature { display: flex; align-items: flex-start; gap: 14px; }
.sv-why-feature-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(212,160,23,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sv-why-feature-icon svg { width: 14px; height: 14px; color: var(--gold); }
.sv-why-feature-title { font-size: 0.9375rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.sv-why-feature-text  { font-size: 0.8375rem; color: rgba(255,255,255,0.5); line-height: 1.65; }
.sv-why-visual { }
.sv-why-img-frame { position: relative; }
.sv-why-img-main { width: 100%; border-radius: var(--r-xl); box-shadow: var(--shadow-xl); }
.sv-why-img-accent { position: absolute; width: 44%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); border: 3px solid rgba(255,255,255,0.12); bottom: -24px; right: -20px; }
.sv-why-badge { position: absolute; top: 20px; left: -20px; background: var(--gold); border-radius: var(--r-lg); padding: 16px 20px; box-shadow: var(--shadow-gold); text-align: center; }
.sv-why-badge-num { font-size: 1.5rem; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }
.sv-why-badge-text { font-size: 0.6875rem; font-weight: 700; color: var(--navy); opacity: 0.75; line-height: 1.3; }

/* ═══════════════════════════════════════════════════════════════
   PRODUCTS / SOLUTIONS PAGE
   ═══════════════════════════════════════════════════════════════ */
.pd-promise-bar { background: var(--navy); }
.pd-promise-row { display: flex; align-items: center; justify-content: center; padding: 0; }
.pd-promise-item { display: flex; align-items: center; gap: 12px; padding: 28px 32px; flex: 1; justify-content: center; }
.pd-promise-icon { width: 42px; height: 42px; border-radius: var(--r-md); background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pd-promise-icon svg { width: 20px; height: 20px; color: var(--gold); }
.pd-promise-label { font-size: 0.8125rem; font-weight: 700; color: var(--white); }
.pd-promise-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.07); }
.pd-grid-section { padding: 96px 0; }
.pd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pd-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: transform var(--t), box-shadow var(--t); display: flex; flex-direction: column; }
.pd-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.pd-card-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.pd-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.pd-card:hover .pd-card-img-wrap img { transform: scale(1.05); }
.pd-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,0.4), transparent); }
.pd-card-badge { position: absolute; top: 14px; right: 14px; background: var(--gold); color: var(--navy); font-size: 9px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 11px; border-radius: var(--r-full); }
.pd-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.pd-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.pd-card-tag   { font-size: 0.6875rem; font-weight: 700; color: var(--gold-dark); background: rgba(212,160,23,0.08); border: 1px solid rgba(212,160,23,0.18); border-radius: var(--r-full); padding: 4px 12px; letter-spacing: 0.05em; }
.pd-card-price { font-size: 0.9375rem; font-weight: 800; color: var(--navy); }
.pd-card-name  { font-size: 1.1rem; margin-bottom: 10px; }
.pd-card-desc  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; flex: 1; }
.pd-card-feats { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.pd-card-feats li { display: flex; align-items: center; gap: 9px; font-size: 0.8125rem; font-weight: 500; color: var(--text-body); }
.pd-card-feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.pd-card-cta { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 700; color: var(--navy); transition: color var(--t), gap var(--t); }
.pd-card-cta:hover { color: var(--gold-dark); gap: 13px; }
.pd-card-cta svg { width: 16px; height: 16px; }
.pd-grid-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 56px; padding: 28px 36px; background: var(--gray-50); border-radius: var(--r-lg); border: 1px solid var(--gray-100); }
.pd-grid-footer p { font-size: 0.9375rem; color: var(--text-muted); }
.pd-promise-section { background: var(--navy); padding: 96px 0; }
.pd-promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pd-promise-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-lg); padding: 32px 24px; transition: background var(--t), transform var(--t); }
.pd-promise-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-5px); }
.pd-promise-card-icon { width: 52px; height: 52px; border-radius: var(--r-md); background: rgba(212,160,23,0.1); border: 1px solid rgba(212,160,23,0.18); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.pd-promise-card-icon svg { width: 22px; height: 22px; color: var(--gold); }
.pd-promise-card-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.pd-promise-card-text  { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════ */
.bl-layout { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
.bl-main { }
.bl-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 96px; }
.bl-featured { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-100); margin-bottom: 48px; }
.bl-featured-img { display: block; position: relative; aspect-ratio: 16/9; overflow: hidden; }
.bl-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.bl-featured:hover .bl-featured-img img { transform: scale(1.03); }
.bl-featured-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,0.3), transparent); }
.bl-featured-badge { position: absolute; top: 18px; left: 18px; background: var(--gold); color: var(--navy); font-size: 9.5px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; padding: 5px 13px; border-radius: var(--r-full); }
.bl-featured-body { padding: 28px 32px; }
.bl-featured-title { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 12px; }
.bl-featured-title a { color: var(--charcoal); transition: color var(--t); }
.bl-featured-title a:hover { color: var(--navy); }
.bl-featured-excerpt { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.bl-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.bl-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.bl-meta-item svg { width: 14px; height: 14px; }
.bl-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-400); }
.bl-read-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 700; color: var(--navy); transition: color var(--t), gap var(--t); }
.bl-read-btn:hover { color: var(--gold-dark); gap: 13px; }
.bl-read-btn svg { width: 16px; height: 16px; }
.bl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.bl-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: transform var(--t), box-shadow var(--t); display: flex; flex-direction: column; }
.bl-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.bl-card-img { display: block; aspect-ratio: 16/9; overflow: hidden; position: relative; }
.bl-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.bl-card:hover .bl-card-img img { transform: scale(1.05); }
.bl-card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,0.25), transparent); }
.bl-card-body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.bl-card-title { font-size: 1rem; margin-bottom: 8px; flex: 1; }
.bl-card-title a { color: var(--charcoal); transition: color var(--t); }
.bl-card-title a:hover { color: var(--navy); }
.bl-card-excerpt { font-size: 0.8375rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.bl-card-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8125rem; font-weight: 700; color: var(--navy); transition: color var(--t), gap var(--t); }
.bl-card-link:hover { color: var(--gold-dark); gap: 11px; }
.bl-card-link svg { width: 14px; height: 14px; }
.bl-pagination { margin-top: 36px; }
.bl-empty { display: flex; flex-direction: column; align-items: center; padding: 72px 0; text-align: center; }
.bl-empty-icon svg { width: 56px; height: 56px; color: var(--gray-200); margin-bottom: 20px; }
.bl-empty-title { font-size: 1.25rem; margin-bottom: 10px; }
.bl-empty-text  { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
.bl-widget { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 28px 24px; box-shadow: var(--shadow-xs); }
.bl-widget--dark { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-color: transparent; }
.bl-widget-head { font-size: 0.6875rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-100); }
.bl-widget-head--light { color: var(--gold-light); border-color: rgba(255,255,255,0.08); }
.bl-widget-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.bl-widget-text--light { color: rgba(255,255,255,0.5); }
.bl-widget-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8125rem; font-weight: 700; color: var(--navy); transition: color var(--t), gap var(--t); }
.bl-widget-link:hover { color: var(--gold-dark); gap: 11px; }
.bl-widget-link svg { width: 14px; height: 14px; }
.bl-widget-cta { display: flex; align-items: center; justify-content: center; font-size: 0.875rem; font-weight: 700; color: var(--navy); background: var(--gold); padding: 12px 20px; border-radius: var(--r-full); transition: background var(--t); }
.bl-widget-cta:hover { background: var(--gold-light); }
.bl-recent-list { display: flex; flex-direction: column; gap: 14px; }
.bl-recent-item { display: flex; align-items: center; gap: 12px; }
.bl-recent-thumb { width: 58px; height: 44px; border-radius: var(--r-sm); overflow: hidden; flex-shrink: 0; }
.bl-recent-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bl-recent-info { flex: 1; min-width: 0; }
.bl-recent-title { font-size: 0.8125rem; font-weight: 600; color: var(--charcoal); line-height: 1.4; display: block; transition: color var(--t); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.bl-recent-title:hover { color: var(--navy); }
.bl-recent-date { font-size: 0.75rem; color: var(--text-muted); margin-top: 3px; display: block; }
.bl-hero-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.bl-hero-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.8125rem; font-weight: 600; color: rgba(255,255,255,0.6); }
.bl-hero-meta-item svg { width: 15px; height: 15px; }
.bl-hero-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.bl-post { }
.bl-post-lead { font-size: 1.125rem; color: var(--navy); font-weight: 500; line-height: 1.7; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--gray-100); }
.bl-post-body { font-size: 0.9375rem; color: var(--text-body); line-height: 1.8; margin-bottom: 32px; }
.bl-post-bullets { background: var(--gray-50); border-radius: var(--r-lg); padding: 28px 32px; margin-bottom: 32px; border: 1px solid var(--gray-100); }
.bl-post-bullets-title { font-size: 1rem; margin-bottom: 18px; color: var(--navy); }
.bl-post-bullets-list { display: flex; flex-direction: column; gap: 12px; }
.bl-post-bullets-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--text-body); }
.bl-post-bullet-icon { width: 22px; height: 22px; border-radius: 50%; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.bl-post-bullet-icon svg { width: 11px; height: 11px; color: var(--gold); }
.bl-post-gallery { margin-bottom: 32px; }
.bl-post-gallery-title { font-size: 1rem; margin-bottom: 16px; }
.bl-post-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bl-post-gallery-item { position: relative; aspect-ratio: 4/3; border-radius: var(--r-md); overflow: hidden; border: none; background: none; cursor: pointer; }
.bl-post-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.bl-post-gallery-item:hover img { transform: scale(1.05); }
.bl-post-gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(11,31,58,0.72); padding: 7px 10px; font-size: 0.75rem; color: rgba(255,255,255,0.8); }
.bl-post-gallery-overlay { position: absolute; inset: 0; background: rgba(11,31,58,0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--t); }
.bl-post-gallery-item:hover .bl-post-gallery-overlay { opacity: 1; }
.bl-post-gallery-overlay svg { width: 28px; height: 28px; color: var(--white); }
.bl-post-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--gray-100); }
.bl-post-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 700; color: var(--navy); transition: color var(--t), gap var(--t); }
.bl-post-back:hover { color: var(--gold-dark); gap: 12px; }
.bl-post-back svg { width: 16px; height: 16px; }
.bl-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bl-lightbox { position: fixed; inset: 0; z-index: 9000; display: flex; align-items: center; justify-content: center; pointer-events: none; opacity: 0; transition: opacity var(--t); }
.bl-lightbox.open { pointer-events: all; opacity: 1; }
.bl-lightbox-backdrop { position: absolute; inset: 0; background: rgba(7,15,28,0.92); }
.bl-lightbox-close { position: absolute; top: 20px; right: 20px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: var(--white); cursor: pointer; transition: background var(--t); }
.bl-lightbox-close:hover { background: rgba(255,255,255,0.2); }
.bl-lightbox-close svg { width: 20px; height: 20px; }
.bl-lightbox-inner { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; }
.bl-lightbox-inner img { max-width: 100%; max-height: 90vh; border-radius: var(--r-md); box-shadow: var(--shadow-xl); }

/* ═══════════════════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════════════════ */
.gl-section { padding: 80px 0 96px; }
.gl-filter-bar { display: flex; align-items: center; justify-content: space-between; margin: 40px 0; flex-wrap: wrap; gap: 12px; }
.gl-filter-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.gl-filter-btn { display: inline-flex; align-items: center; gap: 7px; font-size: 0.8125rem; font-weight: 700; color: var(--text-muted); padding: 8px 16px; border-radius: var(--r-full); background: var(--gray-50); border: 1px solid var(--gray-100); transition: background var(--t), color var(--t), border-color var(--t); cursor: pointer; }
.gl-filter-btn.active, .gl-filter-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.gl-filter-count { background: rgba(255,255,255,0.15); border-radius: var(--r-full); padding: 2px 7px; font-size: 0.6875rem; font-weight: 800; min-width: 20px; text-align: center; }
.gl-filter-btn:not(.active) .gl-filter-count { background: var(--gray-100); color: var(--text-muted); }
.gl-showing { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.gl-grid { columns: 3 280px; column-gap: 16px; }
.gl-item { break-inside: avoid; margin-bottom: 16px; border-radius: var(--r-md); overflow: hidden; cursor: pointer; position: relative; background: var(--gray-100); }
.gl-item img { width: 100%; display: block; transition: transform var(--t-slow); }
.gl-item:hover img { transform: scale(1.04); }
.gl-item--tall img { aspect-ratio: 3/4; object-fit: cover; }
.gl-item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,31,58,0.7) 0%, transparent 50%); opacity: 0; transition: opacity var(--t); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; }
.gl-item:hover .gl-item-overlay { opacity: 1; }
.gl-item-info { }
.gl-item-cat   { font-size: 9.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 4px; }
.gl-item-title { font-size: 0.9rem; font-weight: 700; color: var(--white); display: block; }
.gl-item-zoom  { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; background: rgba(255,255,255,0.12); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); opacity: 0; transition: opacity var(--t); }
.gl-item:hover .gl-item-zoom { opacity: 1; }
.gl-item-zoom svg { width: 16px; height: 16px; }
.gl-empty { display: none; flex-direction: column; align-items: center; padding: 64px 0; text-align: center; color: var(--text-muted); }
.gl-empty svg { width: 52px; height: 52px; color: var(--gray-200); margin-bottom: 16px; }
.gl-lightbox { position: fixed; inset: 0; z-index: 9000; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.gl-lightbox.open { opacity: 1; pointer-events: all; }
.gl-lightbox-backdrop { position: absolute; inset: 0; background: rgba(7,15,28,0.92); }
.gl-lightbox-inner { position: absolute; inset: 60px; display: flex; flex-direction: column; z-index: 1; }
.gl-lightbox-close, .gl-lightbox-arrow { position: absolute; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: var(--white); cursor: pointer; z-index: 2; transition: background var(--t); }
.gl-lightbox-close:hover, .gl-lightbox-arrow:hover { background: rgba(255,255,255,0.2); }
.gl-lightbox-close svg, .gl-lightbox-arrow svg { width: 20px; height: 20px; }
.gl-lightbox-close { top: -50px; right: 0; }
.gl-lightbox-arrow--prev { top: 50%; left: -52px; transform: translateY(-50%); }
.gl-lightbox-arrow--next { top: 50%; right: -52px; transform: translateY(-50%); }
.gl-lightbox-img-wrap { flex: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.gl-lightbox-img-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: var(--r-md); }
.gl-lightbox-footer { display: flex; align-items: center; justify-content: space-between; padding: 14px 0 0; }
.gl-lightbox-caption { display: flex; flex-direction: column; gap: 3px; }
.gl-lightbox-alt    { font-size: 0.9375rem; font-weight: 700; color: var(--white); }
.gl-lightbox-desc   { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }
.gl-lightbox-counter { font-size: 0.8125rem; color: rgba(255,255,255,0.35); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS PAGE
   ═══════════════════════════════════════════════════════════════ */
.tm-stats-bar { background: var(--navy); }
.tm-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.tm-stat { padding: 32px 24px; text-align: center; }
.tm-stat-num { display: block; font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; line-height: 1; margin-bottom: 6px; }
.tm-stat-plus { font-size: 0.55em; }
.tm-stat-label { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; text-transform: uppercase; }
.tm-stat-sep { width: 1px; background: rgba(255,255,255,0.07); }
.tm-stat-stars { font-size: 1.25rem; color: var(--gold); margin-bottom: 6px; }
.tm-featured-section { padding: 96px 0; }
.tm-featured { text-align: center; max-width: 760px; margin: 0 auto; background: linear-gradient(148deg, var(--navy), var(--navy-mid)); border-radius: var(--r-xl); padding: 64px 56px; position: relative; overflow: hidden; }
.tm-featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.tm-featured-quote { font-size: 6rem; line-height: 0.8; color: var(--gold); opacity: 0.25; font-family: Georgia, serif; margin-bottom: 16px; }
.tm-featured-stars { display: flex; justify-content: center; gap: 5px; margin-bottom: 24px; }
.tm-star-filled { color: var(--gold); font-size: 1.2rem; }
.tm-star-empty  { color: rgba(255,255,255,0.2); font-size: 1.2rem; }
.tm-featured-text { font-size: 1.15rem; font-style: italic; color: rgba(255,255,255,0.82); line-height: 1.75; margin-bottom: 32px; font-weight: 400; }
.tm-featured-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.tm-featured-avatar { width: 52px; height: 52px; border-radius: 50%; border: 3px solid rgba(255,255,255,0.15); }
.tm-avatar-img  { object-fit: cover; }
.tm-avatar-initial { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; font-weight: 800; color: var(--navy); }
.tm-featured-info { text-align: left; }
.tm-featured-name { font-size: 1rem; font-weight: 800; color: var(--white); display: block; }
.tm-featured-caption { font-size: 0.8125rem; color: rgba(255,255,255,0.45); margin-top: 3px; display: block; }
.tm-grid-section { padding: 0 0 96px; }
.tm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tm-card { background: var(--white); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: transform var(--t), box-shadow var(--t); }
.tm-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.tm-card-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.tm-card-text  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.tm-card-author { display: flex; align-items: center; gap: 12px; }
.tm-avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gray-100); }
.tm-card-info { }
.tm-card-name { font-size: 0.875rem; font-weight: 700; color: var(--charcoal); display: block; }
.tm-card-caption { font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; display: block; }
.tm-nudge { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 28px; background: var(--gray-50); border-radius: var(--r-xl); padding: 48px 52px; border: 1px solid var(--gray-100); }
.tm-nudge-stars { font-size: 1.5rem; color: var(--gold); margin-bottom: 10px; }
.tm-nudge-title { font-size: 1.375rem; margin-bottom: 8px; }
.tm-nudge-text  { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; max-width: 500px; }
.tm-nudge-btn svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — INNER PAGES
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ct-faq-layout { grid-template-columns: 1fr; gap: 48px; }
  .ct-faq-header { position: static; }
  .ab2-who-grid, .sv-intro-grid, .sv-why-grid { gap: 56px; }
  .ab2-values-grid { grid-template-columns: repeat(2, 1fr); }
  .ab2-team-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-promise-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .iph-content { padding: 40px 0 48px; }
  .iph--lg { min-height: 420px; }
  .ct-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-strip-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .ct-layout { grid-template-columns: 1fr; gap: 48px; }
  .ct-form-row { grid-template-columns: 1fr; }
  .ab2-stats-row { grid-template-columns: repeat(2, 1fr); }
  .ab2-who-grid, .ab2-tl-item, .sv-intro-grid, .sv-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .ab2-img-accent, .ab2-dot-grid { display: none; }
  .ab2-img-badge { top: 16px; left: 16px; }
  .ab2-values-grid { grid-template-columns: 1fr 1fr; }
  .ab2-timeline { padding: 0; }
  .ab2-tl-spine { display: none; }
  .ab2-tl-item { grid-template-columns: 1fr; }
  .ab2-tl-item--left .ab2-tl-card, .ab2-tl-item--right .ab2-tl-card { grid-column: 1; text-align: left; padding: 0; }
  .ab2-tl-node { display: none; }
  .ab2-testi-row { grid-template-columns: 1fr; }
  .sv-grid { grid-template-columns: 1fr 1fr; }
  .sv-process-grid { grid-template-columns: 1fr 1fr; }
  .sv-process-connector { display: none !important; }
  .sv-why-img-accent, .sv-why-badge { display: none; }
  .pd-promise-row { flex-direction: column; }
  .pd-promise-sep { display: none; }
  .pd-grid { grid-template-columns: 1fr 1fr; }
  .pd-promise-grid { grid-template-columns: repeat(2, 1fr); }
  .bl-layout { grid-template-columns: 1fr; }
  .bl-sidebar { position: static; }
  .bl-grid { grid-template-columns: 1fr 1fr; }
  .bl-related-grid { grid-template-columns: 1fr 1fr; }
  .gl-grid { columns: 2 220px; }
  .tm-stats-row { grid-template-columns: repeat(2, 1fr); }
  .tm-grid { grid-template-columns: 1fr 1fr; }
  .tm-featured { padding: 40px 28px; }
  .tm-nudge { flex-direction: column; padding: 36px 28px; }
  .cta-content { max-width: none; }
  .cta-actions { flex-direction: column; align-items: flex-start; }
  .ab2-tl-item { margin-bottom: 22px; }
}
@media (max-width: 600px) {
  .iph--md { min-height: 340px; }
  .iph--lg { min-height: 360px; }
  .ct-strip-grid { grid-template-columns: 1fr; }
  .ab2-values-grid, .ab2-team-grid { grid-template-columns: 1fr; }
  .sv-grid, .sv-process-grid { grid-template-columns: 1fr; }
  .pd-grid, .pd-promise-grid { grid-template-columns: 1fr; }
  .bl-grid, .bl-related-grid { grid-template-columns: 1fr; }
  .gl-grid { columns: 1; }
  .tm-grid { grid-template-columns: 1fr; }
  .ct-form-wrap { padding: 28px 20px; }
  .tm-featured { padding: 32px 20px; }
}
