/* ═══════════════════════════════════════════════════
   PETROLINK CLOUD — LANDING PAGE v3.0
   Premium SaaS Fuel Station ERP
   ═══════════════════════════════════════════════════ */

:root {
  --navy: #061B3D;
  --navy-light: #0F2B55;
  --gold: #D9A441;
  --gold-light: #F6E8C7;
  --gold-dark: #B8861E;
  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-700: #334155;
  --gray-900: #0F172A;
  --success: #16A34A;
  --whatsapp: #25D366;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12);
  --shadow-glow: 0 0 30px rgba(217,164,65,.25);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font); color: var(--gray-900); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── CONTAINER ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); color: var(--gold-dark);
  padding: 6px 16px; border-radius: 999px;
  font-size: .8125rem; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; margin-bottom: 16px;
}
.eyebrow i { font-size: 1rem; }

.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.75rem,4vw,2.5rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 12px; }
.section-head p { font-size: 1.0625rem; color: var(--gray-500); max-width: 640px; margin: 0 auto; line-height: 1.7; }
.section-head.light h2 { color: var(--white); }
.section-head.light p { color: rgba(255,255,255,.7); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }

/* ═══════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  transition: all .4s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(6,27,61,.96);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 1px 24px rgba(0,0,0,.18);
  padding: 8px 0;
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}

/* Header brand box */
.site-header .brand {
  display: flex; align-items: center; flex-shrink: 0;
  background: #fff;
  padding: 4px 11px;
  border-radius: 18px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.88);
  box-shadow: 0 10px 24px rgba(0,0,0,.16), 0 0 0 1px rgba(217,164,65,.16);
  transition: all .35s ease;
}
.site-header.scrolled .brand {
  background: #fff;
  border-color: rgba(217,164,65,.42);
}
.site-header .brand:hover {
  background: #fff;
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,.2), 0 0 0 3px rgba(217,164,65,.12);
}
.brand-logo-box {
  display: flex; align-items: center; justify-content: center;
  width: 168px; height: 58px; border-radius: 14px;
  background: var(--white); flex-shrink: 0;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.brand:hover .brand-logo-box { transform: scale(1.025); }
.brand-logo-box img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-size: .9375rem; font-weight: 800; color: var(--white); letter-spacing: .01em; }
.brand-tagline { font-size: .625rem; font-weight: 500; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }

/* Site Nav */
.site-nav { display: flex; align-items: center; gap: 0; }
.site-nav > a {
  position: relative; padding: 8px 9px;
  font-size: .78rem; font-weight: 500; color: rgba(255,255,255,.8);
  border-radius: 8px; transition: all .3s ease;
  white-space: nowrap;
}
.site-nav > a::after {
  content: ''; position: absolute; bottom: 1px; left: 50%; transform: translateX(-50%) scaleX(0);
  width: 55%; height: 2px; background: var(--gold);
  border-radius: 2px; transition: transform .3s ease;
}
.site-nav > a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.site-nav > a:hover::after { transform: translateX(-50%) scaleX(1); }
.site-header.scrolled .site-nav > a { color: rgba(255,255,255,.75); }
.site-header.scrolled .site-nav > a:hover { color: var(--white); }

/* Login Dropdown */
.login-menu { position: relative; }
.login-menu > button {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  font-size: .825rem; font-weight: 500; color: rgba(255,255,255,.8);
  border-radius: 8px; transition: all .3s ease;
  backdrop-filter: blur(4px);
}
.login-menu > button:hover { color: var(--white); background: rgba(255,255,255,.14); border-color: var(--gold); }
.login-menu > button i:last-child { font-size: .7rem; transition: transform .3s ease; }
.login-menu:hover > button i:last-child { transform: rotate(180deg); }
.login-menu > div {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 220px;
  background: var(--white); border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.2); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .25s ease;
  border: 1px solid rgba(255,255,255,.08);
}
.login-menu:hover > div,
.login-menu:focus-within > div { opacity: 1; visibility: visible; transform: translateY(0); }
.login-menu > div a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  font-size: .85rem; font-weight: 500; color: var(--gray-700);
  transition: all .2s ease;
}
.login-menu > div a i { font-size: 1.05rem; color: var(--gold); width: 20px; text-align: center; }
.login-menu > div a:hover { background: rgba(217,164,65,.08); color: var(--navy); }

/* Nav CTA */
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 22px !important; background: var(--gold) !important;
  color: var(--navy) !important; font-weight: 700 !important; font-size: .825rem !important;
  border-radius: 999px !important; transition: all .3s ease !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.nav-login {
  display:inline-flex; align-items:center; justify-content:center; gap:6px;
  margin-left:7px; padding:8px 14px!important; border:1px solid rgba(217,164,65,.78);
  border-radius:999px!important; background:rgba(255,255,255,.08); color:#fff!important;
  font-weight:700!important; transition:all .3s ease!important;
}
.nav-login::after { display:none!important; }
.nav-login:hover { background:#fff!important; color:var(--navy)!important; transform:translateY(-1px); box-shadow:0 10px 25px rgba(0,0,0,.14); }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none;
  font-size: 1.5rem; color: var(--white); padding: 8px; z-index: 1001;
  width: 44px; height: 44px; display: none; align-items: center; justify-content: center;
  border-radius: 10px; transition: background .3s;
}
.nav-toggle:hover { background: rgba(255,255,255,.08); }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed; inset: 0; z-index: 998;
  background: rgba(6,27,61,.55); backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: all .35s ease;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0a2a5a 50%, var(--navy) 100%);
  overflow: hidden; padding: 120px 0 80px;
}
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
}
.hero-glow.one { width: 500px; height: 500px; background: rgba(217,164,65,.12); top: -120px; right: -100px; animation: heroGlow 6s ease-in-out infinite alternate; }
.hero-glow.two { width: 400px; height: 400px; background: rgba(100,180,255,.08); bottom: -80px; left: -80px; animation: heroGlow 8s ease-in-out infinite alternate-reverse; }
@keyframes heroGlow { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(40px,-30px) scale(1.1); } }

.hero-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.22fr); gap:42px; align-items:center; position:relative; z-index:2; max-width:1320px; }
.hero-copy .eyebrow { background: rgba(217,164,65,.15); color: var(--gold); }
.hero-copy h1 { font-size: clamp(2rem,5vw,3.25rem); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 20px; }
.hero-copy h1 span { color: var(--gold); }
.hero-copy p { font-size: 1.125rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 32px; max-width: 540px; }
.hero-copy .hero-slogan { margin-top:-17px; margin-bottom:23px; color:rgba(255,255,255,.86); font-size:.88rem; font-weight:700; letter-spacing:.01em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 999px; font-weight: 700; font-size: .9375rem;
  transition: all .3s ease; border: none; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-navy { background: var(--navy-light); color: var(--white); border: 1px solid rgba(255,255,255,.12); }
.btn-navy:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.1); color: var(--white); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.15); }
.btn-light:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn-tenant { background:#fff; color:var(--navy); border:1px solid rgba(217,164,65,.7); }
.btn-tenant:hover { transform:translateY(-2px); box-shadow:0 0 30px rgba(217,164,65,.22); }

.hero-trust { display:flex; flex-wrap:wrap; gap:9px; }
.hero-trust span { display:flex; align-items:center; gap:6px; padding:7px 10px; border:1px solid rgba(255,255,255,.12); border-radius:999px; background:rgba(255,255,255,.08); color:rgba(255,255,255,.82); font-size:.7rem; box-shadow:0 8px 18px rgba(0,0,0,.08); }
.hero-trust span i { color: var(--gold); }

/* Hero Image Stage */
.hero-image-stage { position: relative; }
.hero-image-frame {
  position: relative; aspect-ratio:16/9; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-frame img { width:100%; height:100%; object-fit:cover; display:block; }
.hero-slide { position:absolute; inset:0; opacity:0; transform:scale(1.035); transition:opacity .8s ease,transform 5.4s ease; }
.hero-slide.active { opacity:1; transform:scale(1); }
.hero-image-frame::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 0 1px rgba(255,255,255,.06);
  pointer-events: none;
}
.hero-slider-meta { display:flex; align-items:center; justify-content:space-between; gap:16px; margin:13px 4px 0; color:rgba(255,255,255,.8); font-size:.75rem; font-weight:700; }
.hero-slider-dots { display:flex; gap:7px; }
.hero-slider-dots button { width:8px; height:8px; padding:0; border:0; border-radius:999px; background:rgba(255,255,255,.32); transition:.3s ease; }
.hero-slider-dots button.active { width:24px; background:var(--gold); }

/* Floating Cards */
.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  padding: 12px 16px; border-radius: 12px; box-shadow: var(--shadow-lg);
  font-size: .8125rem; animation: float 4s ease-in-out infinite;
}
.float-card i { font-size: 1.25rem; color: var(--gold); }
.float-card small { display: block; color: var(--gray-500); font-size: .6875rem; font-weight: 500; }
.float-card b { color: var(--navy); font-size: .8125rem; }
.fc-one { top: 10%; right: -10%; animation-delay: 0s; }
.fc-two { bottom: 15%; left: -8%; animation-delay: 1.5s; }
.fc-three { bottom: 5%; right: 5%; animation-delay: .8s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── SECTION BASE ── */
.section { padding: 100px 0; }
.section:nth-child(even) { background: var(--gray-50); }

/* ── MULTI-BRANCH CONTROL ── */
.branch-control-section { position:relative; overflow:hidden; background:linear-gradient(180deg,#fff,#f5f8fc); }
.branch-control-grid { display:grid; grid-template-columns:1fr 1.05fr; gap:42px; align-items:center; }
.branch-copy>p { color:var(--gray-500); font-size:.95rem; line-height:1.8; margin-bottom:22px; }
.branch-feature-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.branch-feature-grid span { display:flex; align-items:center; gap:9px; min-height:54px; padding:10px 12px; border:1px solid var(--gray-100); border-radius:13px; background:#fff; color:var(--navy); font-size:.76rem; font-weight:700; box-shadow:var(--shadow-sm); }
.branch-feature-grid i { color:var(--gold-dark); font-size:1rem; }
.branch-network { position:relative; min-height:390px; border:1px solid rgba(217,164,65,.28); border-radius:28px; overflow:hidden; background:radial-gradient(circle at center,rgba(217,164,65,.14),transparent 34%),linear-gradient(145deg,#04152f,#0b3266); box-shadow:0 24px 54px rgba(6,27,61,.18); }
.branch-network::before { content:""; position:absolute; inset:0; opacity:.22; background-image:radial-gradient(rgba(255,255,255,.66) 1px,transparent 1px); background-size:20px 20px; }
.branch-line { position:absolute; left:50%; top:50%; width:160px; height:2px; transform-origin:left center; background:linear-gradient(90deg,var(--gold),rgba(217,164,65,.25)); }
.branch-line::after { content:""; position:absolute; right:0; top:-4px; width:10px; height:10px; border-radius:50%; background:var(--gold); box-shadow:0 0 0 6px rgba(217,164,65,.15),0 0 20px var(--gold); animation:branch-pulse 2.5s ease-in-out infinite; }
.line-one { transform:rotate(-35deg); }.line-two { transform:rotate(22deg); }.line-three { transform:rotate(145deg); }
.branch-node { position:absolute; display:flex; flex-direction:column; align-items:center; justify-content:center; width:152px; min-height:104px; padding:12px; border:1px solid rgba(255,255,255,.16); border-radius:18px; background:rgba(255,255,255,.1); color:#fff; text-align:center; backdrop-filter:blur(12px); box-shadow:0 12px 28px rgba(0,0,0,.14); }
.branch-node i { display:grid; place-items:center; width:34px; height:34px; margin-bottom:6px; border-radius:11px; background:rgba(217,164,65,.18); color:var(--gold); }
.branch-node b { font-size:.8rem; }.branch-node small { margin-top:3px; color:rgba(255,255,255,.64); font-size:.62rem; }
.branch-hq { left:50%; top:50%; width:170px; min-height:122px; transform:translate(-50%,-50%); border-color:rgba(217,164,65,.76); background:rgba(255,255,255,.16); }
.branch-one { right:5%; top:10%; }.branch-two { right:4%; bottom:8%; }.branch-three { left:5%; bottom:10%; }
.branch-slogan { margin:28px auto 0; color:var(--navy); text-align:center; font-size:1rem; font-weight:800; }
@keyframes branch-pulse { 50% { transform:scale(1.35); opacity:.7; } }

/* ── INFO CARDS (Features, Why) ── */
.overview-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; }
.info-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: all .3s ease; text-align: center;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.info-card i { font-size: 2rem; color: var(--gold); margin-bottom: 16px; display: block; }
.info-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.info-card p { font-size: .875rem; color: var(--gray-500); line-height: 1.6; }

/* ── OPERATIONAL CONTROL ECOSYSTEM ── */
.operational-section { background: var(--gray-50); position: relative; overflow: hidden; }
.ecosystem-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.ecosystem-copy p { font-size: 1rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }
.ecosystem-copy .btn { margin-top: 8px; }

.ecosystem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.eco-card {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); border-radius: var(--radius-sm); padding: 16px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: all .3s ease; cursor: default;
}
.eco-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.eco-card i {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--gold-light); color: var(--gold-dark); border-radius: 10px;
  font-size: 1.125rem; flex-shrink: 0;
}
.eco-card h4 { font-size: .8125rem; font-weight: 700; color: var(--navy); }
.eco-card span { font-size: .75rem; color: var(--gray-500); }

/* ── STORIES (Product Tour) ── */
.story-list { display: flex; flex-direction: column; gap: 60px; }
.story-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.story-row.reverse { direction: rtl; }
.story-row.reverse > * { direction: ltr; }
.story-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-light); color: var(--gold-dark);
  padding: 4px 14px; border-radius: 999px; font-size: .8125rem; font-weight: 700; margin-bottom: 12px;
}
.story-copy h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.story-copy p { font-size: .9375rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }
.story-points { display: flex; flex-direction: column; gap: 8px; }
.story-points span { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--gray-700); }
.story-points span i { color: var(--success); font-size: 1rem; }
.story-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.story-image img { width: 100%; height: auto; display: block; }
.story-image.dark { background: var(--navy); padding: 8px; }

/* ── WORKFLOW ── */
.workflow-section {
  background: var(--gray-50);
  position: relative;
}
.workflow-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3;
}
.workflow {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: nowrap; overflow-x: auto;
  padding: 8px 4px 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  position: relative;
}
.workflow::-webkit-scrollbar { height: 4px; }
.workflow::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.workflow::-webkit-scrollbar-track { background: transparent; }

/* Connecting line between items */
.workflow::after {
  content: ''; position: absolute; bottom: 50%; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
  opacity: .15; z-index: 0;
}
.workflow-item {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--white); border-radius: var(--radius); padding: 16px 18px;
  min-width: 100px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: all .35s ease; position: relative; z-index: 1;
  cursor: default;
}
.workflow-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.workflow-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: var(--gold-light); border-radius: 999px;
  transition: all .35s ease;
}
.workflow-item:hover .workflow-icon { background: var(--gold); }
.workflow-icon i { font-size: 1.2rem; color: var(--gold-dark); transition: color .35s ease; }
.workflow-item:hover .workflow-icon i { color: var(--navy); }
.workflow-item b {
  font-size: 1rem; font-weight: 800; color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 999px;
  background: rgba(217,164,65,.1); margin-top: 2px;
}
.workflow-item span { font-size: .6875rem; font-weight: 600; color: var(--gray-500); text-align: center; text-transform: uppercase; letter-spacing: .03em; }

/* Workflow arrow connector (visual only between items) */
.workflow-arrow { display: flex; align-items: center; color: var(--gold); font-size: .875rem; opacity: .4; flex-shrink: 0; }

/* ── MODULES ── */
.modules-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 16px; }
.module-card {
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
  background: var(--white); border-radius: var(--radius-sm); padding: 20px 16px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  transition: all .3s ease;
}
.module-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.module-card i { font-size: 1.5rem; color: var(--gold); }
.module-card h3 { font-size: .8125rem; font-weight: 700; color: var(--navy); }
.module-card p { font-size: .75rem; color: var(--gray-500); line-height: 1.4; }

/* ── VISUAL INTELLIGENCE ── */
.intelligence-section { background: var(--navy) !important; position: relative; }
.intel-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.intel-card {
  background: rgba(255,255,255,.06); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius);
  padding: 28px 24px; transition: all .3s ease;
  display: flex; align-items: flex-start; gap: 16px;
}
.intel-card:hover { background: rgba(255,255,255,.1); transform: translateY(-3px); }
.intel-icon i { font-size: 1.5rem; color: var(--gold); }
.intel-card > div:not(.intel-icon) { flex: 1; }
.intel-card small { font-size: .75rem; color: rgba(255,255,255,.5); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.intel-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin: 4px 0 8px; }
.intel-card p { font-size: .8125rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── HIGHLIGHT BAND ── */
.feature-band { background: var(--navy) !important; }
.highlight-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; }
.highlight { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.85); font-size: .9375rem; font-weight: 600; }
.highlight i { color: var(--gold); font-size: 1.25rem; }

/* ── VISUAL TOUR ── */
.tour-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tour-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; }
.tour-card img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.tour-card:hover img { transform: scale(1.03); }
.tour-card > div { padding: 16px 20px; background: var(--white); border: 1px solid var(--gray-100); border-top: 0; }
.tour-card b { display: block; font-size: .9375rem; color: var(--navy); }
.tour-card span { font-size: .8125rem; color: var(--gray-500); }
.tour-wide { grid-column: 1 / -1; }

/* ── PRICING ── */
.pricing-section {
  background: var(--gray-50);
  position: relative;
}
.pricing-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .2;
}
.pricing-grid {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap; align-items: stretch;
}

/* Card entrance animation */
@keyframes priceCardIn {
  0% { opacity: 0; transform: translateY(50px) scale(.95); }
  60% { transform: translateY(-6px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.price-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  text-align: center; transition: all .35s ease; position: relative;
  flex: 1 1 220px; max-width: 290px;
  display: flex; flex-direction: column;
}
.price-card.reveal { opacity: 0; transform: translateY(40px); transition: none; }
.price-card.reveal.visible {
  animation: priceCardIn .6s cubic-bezier(.22,1,.36,1) var(--d, 0s) forwards;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  border-color: var(--gold-light);
}
.price-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow);
  transform: scale(1.03);
  position: relative;
  overflow: hidden;
}
.price-card.featured::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}
.price-card.featured:hover { transform: scale(1.03) translateY(-8px); }
.popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy); padding: 4px 20px;
  border-radius: 999px; font-size: .6875rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; box-shadow: 0 2px 8px rgba(217,164,65,.3);
  white-space: nowrap;
}
.price-card h3 { font-size: 1.125rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; letter-spacing: -.01em; }
.price { font-size: 2.25rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; line-height: 1; }
.price small { font-size: .875rem; vertical-align: super; }
.price span { font-size: .875rem; font-weight: 500; color: var(--gray-500); }
.price-card > p { font-size: .75rem; color: var(--gray-400); margin-bottom: 16px; min-height: 2.2em; }
.price-card ul { list-style: none; text-align: left; margin-bottom: auto; padding: 0; }
.price-card ul li { display: flex; align-items: center; gap: 8px; padding: 5px 0; font-size: .8125rem; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.price-card ul li:last-child { border-bottom: none; }
.price-card ul li i { color: var(--success); font-size: .875rem; flex-shrink: 0; }
.price-card .btn { width: 100%; justify-content: center; margin-top: 16px; }
@keyframes slogan-drift { 50% { transform:translateY(-5px); box-shadow:0 16px 28px rgba(6,27,61,.1); } }

/* ── AI SECTION ── */
.ai-section { background: var(--navy) !important; position: relative; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ai-points { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.ai-points span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: .9375rem; }
.ai-points span i { color: var(--gold); }

.chat-preview {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.chat-head {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy); padding: 16px 20px; color: var(--white);
}
.chat-head i { font-size: 1.5rem; color: var(--gold); }
.chat-head b { display: block; font-size: .875rem; }
.chat-head small { font-size: .75rem; color: rgba(255,255,255,.5); }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.chat-body p { padding: 12px 16px; border-radius: 12px; font-size: .875rem; max-width: 85%; line-height: 1.5; }
.chat-body .bot { background: var(--gray-100); color: var(--gray-700); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-body .user { background: var(--navy); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }

/* ── WHY SECTION ── */
.why-section { background: var(--gray-50); }

/* ── DEMO / CONTACT SECTION ── */
.demo-section { background: var(--navy) !important; position: relative; }
.demo-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.demo-copy .eyebrow { background: rgba(217,164,65,.15); color: var(--gold); }
.demo-copy h2 { font-size: clamp(1.5rem,3vw,2rem); font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 16px; }
.demo-copy p { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 24px; }
.demo-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.demo-benefits span { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.8); font-size: .9375rem; }
.demo-benefits span i { color: var(--gold); }
.demo-visual { display: flex; flex-direction: column; gap: 16px; }
.demo-badge {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius);
  padding: 20px 24px;
}
.demo-badge i { font-size: 2rem; color: var(--gold); }
.demo-badge b { display: block; font-size: 1rem; color: var(--white); }
.demo-badge small { font-size: .8125rem; color: rgba(255,255,255,.5); }
.demo-step {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
}
.demo-step b { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; background: var(--gold); color: var(--navy); border-radius: 999px; font-size: .8125rem; flex-shrink: 0; }
.demo-step span { font-size: .9375rem; color: rgba(255,255,255,.8); }
.contact-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  padding: 10px 18px; border-radius: 999px; font-size: .875rem; color: rgba(255,255,255,.7); margin-right: 8px;
}
.contact-chip i { color: var(--gold); }

/* ── FAQ ── */
.faq-section {
  background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
  position: relative;
}
.faq-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .25;
}
.faq-section .section-head .eyebrow {
  background: var(--gold-light);
  color: var(--gold-dark);
}
@keyframes faqIn {
  0% { opacity: 0; transform: translateY(20px) scale(.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.faq {
  background: var(--white); border-radius: 14px;
  border: 1px solid var(--gray-100);
  overflow: hidden; transition: all .35s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,.03);
  height: fit-content;
  position: relative;
}
.faq.reveal { opacity: 0; transform: translateY(16px); transition: none; }
.faq.reveal.visible {
  animation: faqIn .5s cubic-bezier(.22,1,.36,1) var(--d, 0s) forwards;
}
.faq::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px;
  background: var(--gold); border-radius: 0 3px 3px 0;
  opacity: 0; transition: opacity .35s ease;
}
.faq[open]::before { opacity: 1; }
.faq[open] {
  border-color: rgba(217,164,65,.25);
  box-shadow: 0 4px 20px rgba(217,164,65,.08);
}
.faq:not([open]):hover { border-color: var(--gray-200); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 18px 16px 22px; cursor: pointer; list-style: none;
  font-size: .875rem; font-weight: 700; color: var(--navy);
  transition: color .3s ease; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i {
  font-size: .875rem; color: var(--gold); transition: transform .35s ease;
  flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center;
  background: var(--gold-light); border-radius: 999px;
}
.faq[open] summary i { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq summary:hover { color: var(--gold-dark); }
.faq p {
  padding: 0 22px 18px; font-size: .825rem; color: var(--gray-500);
  line-height: 1.7; margin: 0;
}
.faq[open] p { animation: faqSlide .35s ease; }
@keyframes faqSlide {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── ACCESS SECTION ── */
.access-section { background: var(--navy) !important; }
.access-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); padding: 40px 48px;
}
.access-wrap h2 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.access-wrap p { font-size: .9375rem; color: rgba(255,255,255,.6); }
.access-wrap > div:last-child { display: flex; gap: 12px; flex-shrink: 0; }
.access-wrap .btn-light { white-space: nowrap; }

/* ── FINAL CTA ── */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, #0a2a5a 100%); position: relative; overflow: hidden; }
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-inner h2 { font-size: clamp(1.75rem,3vw,2.25rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.cta-inner p { font-size: 1.0625rem; color: rgba(255,255,255,.6); max-width: 560px; margin: 0 auto 32px; }
.cta-inner .btn-gold { font-size: 1rem; padding: 16px 36px; }
.cta-inner .btn-light { font-size: 1rem; padding: 16px 36px; }
.cta-inner > div { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 32px;
  padding: 32px 0; background: var(--gray-50); border-top: 1px solid var(--gray-100);
}
.trust-strip span { display: flex; align-items: center; gap: 8px; font-size: .8125rem; font-weight: 600; color: var(--gray-500); }
.trust-strip span i { color: var(--gold); font-size: 1rem; }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-col .brand { margin-bottom: 16px; }
.footer-col .brand img { height: 36px; }
.footer-col p { font-size: .875rem; line-height: 1.7; margin-bottom: 20px; max-width: 300px; }

/* Footer brand column with logo box */
.footer-brand-col { min-width: 240px; }
.footer-brand {
  display: inline-flex !important;
  background: var(--white) !important;
  padding: 12px 20px !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.15) !important;
  transition: all .3s ease !important;
  border: 1px solid rgba(255,255,255,.15) !important;
}
.footer-brand:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.25) !important;
  border-color: var(--gold) !important;
}
.footer-logo-img {
  height: 52px !important;
  width: auto !important;
  display: block !important;
}
.footer-col h3 { font-size: .8125rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 16px; }
.footer-col a {
  display: block; padding: 6px 0; font-size: .875rem; color: rgba(255,255,255,.6);
  transition: all .2s ease;
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; }
.footer-contact a i { color: var(--gold); width: 18px; }
.footer-cta {
  margin-top: 32px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 24px; text-align: center;
}
.footer-cta p { font-size: .9375rem; color: rgba(255,255,255,.8); margin-bottom: 16px; font-weight: 600; }
.footer-cta .btn-gold { font-size: .875rem; padding: 12px 24px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding: 24px 0; font-size: .8125rem; color: rgba(255,255,255,.4);
}
.footer-bottom strong { color: var(--gold); }
.back-top {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; background: rgba(255,255,255,.08); border-radius: 999px;
  font-size: .8125rem; color: rgba(255,255,255,.6); transition: all .25s ease;
}
.back-top:hover { background: var(--gold); color: var(--navy); }

/* ═══════════════════════════════════════════════════
   REQUEST DEMO MODAL
   ═══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(6,27,61,.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s ease;
  padding: 20px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-panel {
  background: var(--white); border-radius: var(--radius-lg);
  width: 100%; max-width: 640px; max-height: 90vh; overflow-y: auto;
  padding: 40px; position: relative;
  transform: translateY(30px) scale(.96);
  transition: all .35s ease;
}
.modal-overlay.open .modal-panel { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: var(--gray-100); border: none; border-radius: 999px;
  font-size: 1rem; color: var(--gray-500); transition: all .2s ease;
}
.modal-close:hover { background: var(--gray-200); color: var(--gray-900); }
.modal-head { margin-bottom: 28px; }
.modal-head h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.modal-head p { font-size: .875rem; color: var(--gray-500); }
.demo-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.demo-form-grid .wide { grid-column: 1 / -1; }
.demo-form-grid label { display: flex; flex-direction: column; gap: 4px; font-size: .8125rem; font-weight: 600; color: var(--gray-700); }
.demo-form-grid input,
.demo-form-grid select,
.demo-form-grid textarea {
  padding: 10px 14px; border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  font-size: .875rem; transition: all .2s ease; background: var(--white);
}
.demo-form-grid input:focus,
.demo-form-grid select:focus,
.demo-form-grid textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,164,65,.15); }
.demo-form-grid textarea { resize: vertical; min-height: 80px; }
.form-success { grid-column: 1 / -1; background: #ECFDF5; color: #065F46; padding: 12px 16px; border-radius: var(--radius-sm); font-size: .875rem; display: flex; align-items: center; gap: 8px; }
.form-error { grid-column: 1 / -1; background: #FEF2F2; color: #991B1B; padding: 12px 16px; border-radius: var(--radius-sm); font-size: .875rem; }
.submit-btn {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; background: var(--gold); color: var(--navy); border: none;
  border-radius: 999px; font-size: .9375rem; font-weight: 700;
  transition: all .3s ease; cursor: pointer;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ═══════════════════════════════════════════════════
   CHATBOT
   ═══════════════════════════════════════════════════ */
.chatbot-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9995;
  width: 58px; height: 58px; border-radius: 999px;
  background: var(--navy); border: none; color: var(--white);
  font-size: 1.5rem; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); cursor: pointer;
  transition: all .3s ease;
}
.chatbot-btn::after {
  content: ''; position: absolute; inset: -4px; border-radius: 999px;
  border: 2px solid var(--gold); opacity: 0; animation: pulse-ring 2s infinite;
}
.chatbot-btn:hover { transform: scale(1.08); }
@keyframes pulse-ring { 0% { opacity: .6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.15); } }

.chatbot-window {
  position: fixed; bottom: 100px; right: 28px; z-index: 9996;
  width: 380px; max-width: calc(100vw - 56px);
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(20px) scale(.96);
  transition: all .35s ease; overflow: hidden;
  max-height: 580px;
}
.chatbot-window.open { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.chatbot-header {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy); padding: 16px 20px; color: var(--white);
}
.chatbot-header i:first-child { font-size: 1.5rem; color: var(--gold); }
.chatbot-header h4 { font-size: .9375rem; font-weight: 700; flex: 1; }
.chatbot-header h4 small { display: block; font-size: .6875rem; font-weight: 500; color: rgba(255,255,255,.5); }
.chatbot-close {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.1); border: none; border-radius: 999px;
  color: var(--white); font-size: .875rem; transition: background .2s;
}
.chatbot-close:hover { background: rgba(255,255,255,.2); }

.chatbot-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 200px; scroll-behavior: smooth; }
.chatbot-body .msg { padding: 12px 16px; border-radius: 12px; font-size: .875rem; line-height: 1.5; max-width: 88%; animation: msgIn .3s ease; }
.chatbot-body .msg.bot { background: var(--gray-100); color: var(--gray-700); align-self: flex-start; border-bottom-left-radius: 4px; }
.chatbot-body .msg.user { background: var(--navy); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.chatbot-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 16px 4px; }
.chatbot-suggestions button {
  padding: 6px 14px; background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 999px; font-size: .75rem; color: var(--gray-700);
  transition: all .2s ease; white-space: nowrap;
}
.chatbot-suggestions button:hover { background: var(--gold-light); border-color: var(--gold); color: var(--gold-dark); }

.chatbot-input { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-top: 1px solid var(--gray-100); }
.chatbot-input input {
  flex: 1; padding: 10px 14px; border: 1px solid var(--gray-200); border-radius: 999px;
  font-size: .875rem; transition: border-color .2s;
}
.chatbot-input input:focus { outline: none; border-color: var(--gold); }
.chatbot-send {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--gold); border: none; border-radius: 999px;
  color: var(--navy); font-size: 1rem; transition: all .2s;
}
.chatbot-send:hover { transform: scale(1.08); }

/* ── MOBILE STICKY CTA BAR ── */
.mobile-sticky {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9990;
  background: var(--navy); padding: 12px 20px; gap: 10px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-sticky a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 999px; font-size: .8125rem; font-weight: 700;
  transition: all .2s;
}
.mobile-sticky .ms-cta { background: var(--gold); color: var(--navy); }
.mobile-sticky .ms-login { background: rgba(255,255,255,.1); color: var(--white); border: 1px solid rgba(255,255,255,.15); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-copy p { margin: 0 auto 32px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .fc-one { right: 0; }
  .fc-two { left: 0; }
  .ecosystem-wrap { grid-template-columns: 1fr; gap: 40px; }
  .demo-showcase { grid-template-columns: 1fr; gap: 40px; }
  .ai-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .story-row { grid-template-columns: 1fr; gap: 24px; }
  .story-row.reverse { direction: ltr; }
  .branch-control-grid { grid-template-columns:1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: 300px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy); padding: 80px 24px 24px;
    transform: translateX(100%); transition: transform .35s ease;
    overflow-y: auto; z-index: 999;
  }
  .site-nav.open { transform: translateX(0); }
  .site-nav > a { padding: 10px 16px; border-radius: 10px; font-size: .9375rem; width: 100%; }
  .site-nav > a::after { display: none; }
  .site-nav { gap: 3px; padding: 80px 24px 24px; }
  .nav-cta { justify-content: center; margin-top: 8px; width: 100%; }
  .nav-login { justify-content:center; margin:5px 0 0; width:100%; }

  .hero { padding: 100px 0 60px; min-height: auto; }
  .float-card { display: none; }
  .hero-slider-meta { margin-left:0; margin-right:0; }

  .section { padding: 60px 0; }
  .section-head { margin-bottom: 36px; }

  .ecosystem-grid { grid-template-columns: 1fr; }
  .branch-feature-grid { grid-template-columns:1fr; }
  .branch-network { min-height:auto; padding:18px; display:grid; gap:10px; }
  .branch-line { display:none; }
  .branch-node,.branch-hq { position:relative; inset:auto; width:100%; min-height:84px; transform:none; }

  .tour-grid { grid-template-columns: 1fr; }

  .pricing-grid { flex-direction: column; align-items: center; }
  .price-card.featured { transform: scale(1); }
  .price-card.featured:hover { transform: translateY(-8px); }
  .price-card { flex: 1 1 100%; max-width: 420px; }

  .demo-form-grid { grid-template-columns: 1fr; }

  .access-wrap { flex-direction: column; text-align: center; padding: 28px 24px; }
  .access-wrap > div:last-child { flex-direction: column; width: 100%; }
  .access-wrap .btn-light { width: 100%; justify-content: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .modal-panel { padding: 28px 20px; }
  .chatbot-window { width: calc(100vw - 32px); right: 16px; bottom: 90px; max-height: 460px; }
  .chatbot-btn { bottom: 80px; right: 16px; width: 52px; height: 52px; font-size: 1.25rem; }

  .mobile-sticky { display: flex; }
  .chatbot-btn { bottom: 80px; }
  .chatbot-window { bottom: 148px; }

  .trust-strip { gap: 16px; }

  .site-header.scrolled { padding: 8px 0; }
}

/* ── SMALL PHONES (≤480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .site-header .brand { padding: 3px 8px; border-radius: 14px; }
  .brand-logo-box { width: 132px; height: 46px; border-radius: 10px; }
  .brand-name { font-size: .8125rem; }
  .brand-tagline { display: none; }

  .hero { padding: 80px 0 40px; }
  .hero-copy h1 { font-size: clamp(1.5rem,7vw,2rem); }
  .hero-copy p { font-size: .9375rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: 12px; }
  .hero-trust span { font-size: .75rem; }

  .section { padding: 40px 0; }
  .section-head h2 { font-size: clamp(1.25rem,5vw,1.5rem); }
  .section-head p { font-size: .875rem; }

  .overview-grid { grid-template-columns: 1fr; }
  .info-card { padding: 24px 16px; }

  .ecosystem-grid { grid-template-columns: 1fr; }
  .eco-card { padding: 12px; }
  .eco-card i { width: 36px; height: 36px; font-size: 1rem; }

  .modules-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .module-card { padding: 14px 10px; }
  .module-card i { font-size: 1.25rem; }
  .module-card h3 { font-size: .75rem; }
  .module-card p { font-size: .6875rem; }

  .intel-grid { grid-template-columns: 1fr; }
  .intel-card { padding: 20px 16px; }

  .price-card { padding: 24px 18px; }
  .price-card ul li { font-size: .8125rem; padding: 5px 0; }
  .price-card h3 { font-size: 1rem; }
  .price { font-size: 2rem; }

  .story-copy h3 { font-size: 1.125rem; }
  .story-points span { font-size: .8125rem; }

  .faq summary { padding: 14px 16px; font-size: .875rem; }
  .faq p { padding: 0 16px 16px; font-size: .8125rem; }

  .footer-grid { gap: 20px; }
  .footer-brand { padding: 10px 16px !important; }
  .footer-logo-img { height: 42px !important; }
  .footer-col h3 { font-size: .75rem; margin-bottom: 12px; }
  .footer-col a { font-size: .8125rem; padding: 5px 0; }
  .footer-cta { padding: 16px; }
  .footer-bottom { font-size: .75rem; }

  .chatbot-suggestions button { font-size: .6875rem; padding: 8px 12px; white-space: normal; }
  .chatbot-window { max-height: 380px; bottom: 140px; }
  .chatbot-btn { bottom: 76px; width: 48px; height: 48px; font-size: 1.125rem; }

  .modal-panel { padding: 20px 16px; }
  .modal-head h2 { font-size: 1.125rem; }

  .mobile-sticky { padding: 8px 12px; gap: 8px; }
  .mobile-sticky a { padding: 10px; font-size: .75rem; }

  .trust-strip { gap: 10px; padding: 20px 0; }
  .trust-strip span { font-size: .6875rem; gap: 4px; }
  .trust-strip span i { font-size: .8125rem; }

  .workflow-item { padding: 12px 12px; min-width: 80px; }
  .workflow-item b { font-size: .875rem; width: 20px; height: 20px; }
  .workflow-item span { font-size: .625rem; }
  .workflow-icon { width: 36px; height: 36px; }
  .workflow-icon i { font-size: 1rem; }
  .workflow { gap: 8px; }

  .ai-grid { gap: 24px; }
  .chat-preview { border-radius: var(--radius); }

  .cta-inner h2 { font-size: clamp(1.25rem,5vw,1.5rem); }
  .cta-inner .btn-gold,
  .cta-inner .btn-light { width: 100%; justify-content: center; }
  .cta-inner > div { flex-direction: column; }
}

/* ── LOADING SPINNER ── */
.spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 999px; animation: spin .6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ═══════════════════════════════════════════════════
   WHY US SECTION
   ═══════════════════════════════════════════════════ */
.why-us-section { background: var(--gray-50); }
.why-us-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(250px,1fr)); gap: 20px; }
.why-us-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 20px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  text-align: center; transition: all .3s ease;
}
.why-us-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.why-us-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--gold-light); border-radius: 14px; margin: 0 auto 16px; }
.why-us-icon i { font-size: 1.5rem; color: var(--gold-dark); }
.why-us-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-us-card p { font-size: .85rem; color: var(--gray-500); line-height: 1.6; }

/* ═══════════════════════════════════════════════════
   ROI SECTION
   ═══════════════════════════════════════════════════ */
.roi-section { background: var(--white); }
.roi-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; }
.roi-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--gray-50); border-radius: var(--radius); padding: 28px 20px;
  border: 1px solid var(--gray-100); transition: all .3s ease;
}
.roi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold-light); }
.roi-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--gold-light); border-radius: 999px; margin-bottom: 16px; }
.roi-icon i { font-size: 1.5rem; color: var(--gold-dark); }
.roi-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.roi-card p { font-size: .85rem; color: var(--gray-500); line-height: 1.6; max-width: 280px; }

/* ═══════════════════════════════════════════════════
   BILLING TOGGLE
   ═══════════════════════════════════════════════════ */
.billing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-bottom: 36px;
}
.toggle-label { font-size: .9375rem; font-weight: 600; color: var(--gray-500); transition: color .3s; cursor: pointer; }
.toggle-label.active { color: var(--navy); }
.toggle-badge {
  display: inline-block; background: #ECFDF5; color: #065F46;
  font-size: .6875rem; font-weight: 700; padding: 2px 10px; border-radius: 999px;
  margin-left: 4px; vertical-align: middle;
}
.toggle-switch { position: relative; display: inline-block; width: 56px; height: 30px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; cursor: pointer; inset: 0;
  background: var(--gray-200); border-radius: 999px;
  transition: all .3s ease;
}
.toggle-slider::before {
  content: ''; position: absolute; left: 3px; bottom: 3px;
  width: 24px; height: 24px; background: var(--white);
  border-radius: 999px; transition: all .3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.toggle-switch input:checked + .toggle-slider { background: var(--gold); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(26px); }

/* ═══════════════════════════════════════════════════
   PRICING SAVINGS BADGE
   ═══════════════════════════════════════════════════ */
.price-desc { font-size: .8125rem; color: var(--gray-400); margin-bottom: 12px; min-height: 2.4em; }
.savings-badge {
  display: inline-block; background: #ECFDF5; color: #065F46;
  font-size: .75rem; font-weight: 700; padding: 4px 14px; border-radius: 999px;
  margin: 8px 0 4px;
}

/* Custom Package Card */
.price-card-custom {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2a5a 100%) !important;
  color: var(--white) !important; border-color: rgba(255,255,255,.12) !important;
}
.price-card-custom h3 { color: var(--white) !important; }
.price-card-custom .price { color: var(--white) !important; }
.price-card-custom ul li { color: rgba(255,255,255,.7) !important; border-bottom-color: rgba(255,255,255,.08) !important; }
.price-card-custom ul li i { color: var(--gold) !important; }
.price-card-custom .btn-gold { background: var(--gold); color: var(--navy); }
.price-card-custom .btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); }

/* ═══════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════ */
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: .875rem; min-width: 640px; }
.comparison-table thead th {
  background: var(--navy); color: var(--white); padding: 16px 12px; font-weight: 700; text-align: center;
  font-size: .8125rem; text-transform: uppercase; letter-spacing: .03em;
}
.comparison-table thead th:first-child { text-align: left; padding-left: 20px; border-radius: 16px 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 16px 0 0; }
.comparison-table thead th.featured { background: linear-gradient(135deg, #D9A441, #B8861E); }
.comparison-table tbody td { padding: 12px; text-align: center; border-bottom: 1px solid var(--gray-100); color: var(--gray-700); }
.comparison-table tbody td:first-child { text-align: left; padding-left: 20px; font-weight: 600; color: var(--navy); background: var(--gray-50); }
.comparison-table tbody tr:nth-child(even) td { background: var(--gray-50); }
.comparison-table tbody tr:nth-child(even) td:first-child { background: var(--gray-100); }
.comparison-table tbody td i.bi-check-lg { color: var(--success); font-size: 1.125rem; }
.comparison-table tbody tr:hover td { background: var(--gold-light); }
.comparison-table tbody tr:hover td:first-child { background: var(--gold-light); }
.comparison-table tfoot td { padding: 16px 12px; text-align: center; border-top: 2px solid var(--gray-200); background: var(--gray-50); }
.comparison-table tfoot .btn { width: 100%; justify-content: center; font-size: .8125rem; padding: 10px 16px; }
.module-compare { margin-top:52px; overflow:hidden; border:1px solid rgba(6,27,61,.08); border-radius:28px; background:#fff; box-shadow:0 20px 48px rgba(6,27,61,.1); }
.compact-plan-strip { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; margin:0 auto 22px; max-width:1080px; }
.compact-plan-card { position:relative; padding:20px; border:1px solid var(--gray-100); border-radius:20px; background:#fff; box-shadow:var(--shadow-sm); }
.compact-plan-card.featured { border-color:rgba(217,164,65,.72); box-shadow:0 14px 30px rgba(217,164,65,.16); }
.compact-plan-card.custom { background:linear-gradient(145deg,#061b3d,#0b356e); border-color:rgba(217,164,65,.34); }
.compact-plan-card h3 { margin-bottom:8px; color:var(--navy); font-size:.94rem; font-weight:800; }
.compact-plan-card.custom h3,.compact-plan-card.custom .compact-plan-price,.compact-plan-card.custom a { color:#fff; }
.compact-plan-price { color:var(--navy); font-size:1.55rem; font-weight:900; line-height:1.1; }
.compact-plan-price span { color:var(--gray-400); font-size:.72rem; font-weight:600; }
.compact-plan-card p { margin:8px 0 13px; color:var(--gray-500); font-size:.74rem; }
.compact-plan-card a { display:inline-flex; align-items:center; gap:5px; color:var(--gold-dark); font-size:.76rem; font-weight:800; }
.compact-plan-badge { position:absolute; top:12px; right:12px; padding:3px 8px; border-radius:999px; background:var(--gold-light); color:var(--gold-dark); font-size:.58rem; font-weight:900; letter-spacing:.05em; text-transform:uppercase; }
.compact-module-compare { margin-top:0; }
.module-compare-head { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:24px 26px; background:linear-gradient(135deg,#061b3d,#0b356e); color:#fff; }
.module-compare-head span { display:block; margin-bottom:5px; color:var(--gold); font-size:.68rem; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.module-compare-head h3 { color:#fff; font-size:1.3rem; }.module-compare-head p { max-width:620px; margin-top:5px; color:rgba(255,255,255,.64); font-size:.8rem; }
.module-compare-head strong { display:flex; align-items:center; gap:8px; flex:0 0 auto; max-width:230px; padding:10px 13px; border:1px solid rgba(217,164,65,.34); border-radius:14px; background:rgba(255,255,255,.08); color:#fff; font-size:.73rem; line-height:1.45; }
.module-compare-head i,.compare-slogan i { color:var(--gold); }
.comparison-table-wrap.compact { border:0; border-radius:0; box-shadow:none; }
.module-table tbody td { padding:10px 12px; font-size:.8rem; }
.module-table thead th { padding:13px 12px; font-size:.74rem; }
.module-table tfoot td { padding:13px 10px; }
.compare-slogan { display:flex; align-items:center; justify-content:center; gap:8px; padding:14px 20px; border-top:1px solid var(--gray-100); color:var(--navy); font-size:.78rem; font-weight:800; text-align:center; background:linear-gradient(90deg,#fff8e9,#fff); }

/* ═══════════════════════════════════════════════════
   FOOTER BRAND BLOCK
   ═══════════════════════════════════════════════════ */
.footer-accent { height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold)); }
.footer-brand-block {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: 16px;
  padding: 12px 18px; margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  transition: all .3s ease;
}
.footer-brand-block:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.25); }
.footer-brand-logo-box {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--white); flex-shrink: 0;
}
.footer-logo-img { height: 42px !important; width: auto !important; display: block !important; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.footer-brand-name { font-size: .9375rem; font-weight: 800; color: var(--navy); }
.footer-brand-tagline { font-size: .625rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; }

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 96px; right: 28px; z-index: 9994;
  width: 52px; height: 52px; border-radius: 999px;
  background: var(--whatsapp); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 4px 16px rgba(37,211,102,.35);
  transition: all .3s ease; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.45); color: var(--white); }
@keyframes whatsapp-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); } 100% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } }
.whatsapp-float { animation: whatsapp-pulse 2s infinite; }

@media (max-width: 768px) {
  .whatsapp-float { bottom: 148px; right: 16px; width: 44px; height: 44px; font-size: 1.25rem; }
  .billing-toggle { gap: 10px; }
  .toggle-label { font-size: .8125rem; }
  .toggle-badge { font-size: .625rem; padding: 1px 8px; }
}
@media (max-width: 480px) {
  .whatsapp-float { bottom: 140px; right: 12px; width: 40px; height: 40px; font-size: 1.125rem; }
  .why-us-grid, .roi-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   CONNECTED CONTROL HUB
   ═══════════════════════════════════════════════════ */
.control-hub {
  position: relative; min-height: 620px; max-width: 1080px; margin: 12px auto 0;
  border-radius: 44px; overflow: hidden;
  background: radial-gradient(circle at center,rgba(217,164,65,.16),transparent 31%),linear-gradient(145deg,#04152f,#082958);
  border: 1px solid rgba(217,164,65,.28); box-shadow: 0 28px 70px rgba(6,27,61,.22);
}
.control-hub::before,.control-hub::after {
  content:""; position:absolute; width:220px; height:220px; border-radius:50%;
  background:radial-gradient(circle,rgba(217,164,65,.2),transparent 67%); filter:blur(6px);
}
.control-hub::before { left:-70px; top:-80px; }.control-hub::after { right:-70px; bottom:-90px; }
.hub-orbit { position:absolute; inset:72px 170px; border:1px dashed rgba(217,164,65,.43); border-radius:50%; animation:orbit-turn 28s linear infinite; }
.hub-orbit-two { inset:138px 270px; border-color:rgba(255,255,255,.2); animation-direction:reverse; animation-duration:19s; }
.hub-core {
  position:absolute; inset:0; margin:auto; display:flex; flex-direction:column; align-items:center; justify-content:center;
  width:232px; height:232px; padding:22px; border-radius:50%; text-align:center;
  background:linear-gradient(145deg,#fff,#edf4fb); border:8px solid rgba(217,164,65,.28);
  box-shadow:0 0 0 13px rgba(255,255,255,.06),0 18px 44px rgba(0,0,0,.3); animation:hub-breathe 4s ease-in-out infinite;
}
.hub-logo { display:grid; place-items:center; width:168px; height:126px; padding:5px 9px; border-radius:22px; background:#fff; box-shadow:0 8px 20px rgba(6,27,61,.13); }
.hub-logo img { width:100%; height:100%; object-fit:contain; }
.hub-card {
  position:absolute; display:flex; align-items:center; gap:12px; width:255px; min-height:92px; padding:15px;
  border:1px solid rgba(255,255,255,.14); border-radius:18px; background:rgba(255,255,255,.1); color:#fff;
  box-shadow:0 14px 32px rgba(0,0,0,.16); backdrop-filter:blur(12px); transition:.32s ease; animation:hub-card-float 5s ease-in-out infinite;
}
.hub-card:hover { transform:translateY(-8px) scale(1.03); background:rgba(255,255,255,.17); border-color:rgba(217,164,65,.76); box-shadow:0 22px 42px rgba(0,0,0,.23),0 0 28px rgba(217,164,65,.18); }
.hub-card>i { display:grid; flex:0 0 46px; height:46px; place-items:center; border-radius:14px; background:rgba(217,164,65,.16); color:var(--gold); font-size:1.25rem; }
.hub-card h4 { margin-bottom:3px; color:#fff; font-size:.88rem; font-weight:800; }
.hub-card span { display:block; color:rgba(255,255,255,.62); font-size:.7rem; line-height:1.45; }
.hub-card-1 { top:62px; left:58px; }.hub-card-2 { top:62px; right:58px; animation-delay:.7s; }
.hub-card-3 { top:264px; left:24px; animation-delay:1.2s; }.hub-card-4 { top:264px; right:24px; animation-delay:1.8s; }
.hub-card-5 { bottom:58px; left:86px; animation-delay:2.3s; }.hub-card-6 { right:86px; bottom:58px; animation-delay:2.8s; }
@keyframes orbit-turn { to { transform:rotate(360deg); } }
@keyframes hub-breathe { 50% { transform:scale(1.035); box-shadow:0 0 0 18px rgba(255,255,255,.045),0 22px 52px rgba(0,0,0,.34); } }
@keyframes hub-card-float { 50% { transform:translateY(-8px); } }
.faq-list { max-width:1080px; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; margin:0 auto; }
.faq-cta { display:flex; align-items:center; justify-content:space-between; gap:18px; max-width:1080px; margin:26px auto 0; padding:20px 24px; border:1px solid var(--gold-light); border-radius:var(--radius); background:#fff; box-shadow:var(--shadow-sm); }
.faq-cta>div { display:flex; align-items:center; gap:13px; }.faq-cta i { color:var(--gold-dark); font-size:1.6rem; }.faq-cta strong,.faq-cta small { display:block; }.faq-cta strong { color:var(--navy); }.faq-cta small { color:var(--gray-500); margin-top:3px; }

@media(max-width:1100px) { .hub-orbit { inset:80px 135px; }.hub-card { width:225px; }.hub-card-1,.hub-card-5 { left:4%; }.hub-card-2,.hub-card-6 { right:4%; } }
@media(max-width:768px) {
  .compact-plan-strip { grid-template-columns:1fr 1fr; }
  .control-hub { display:grid; grid-template-columns:1fr; gap:10px; min-height:0; padding:20px; border-radius:28px; }
  .hub-orbit { display:none; }.hub-core { position:relative; width:200px; height:200px; margin:0 auto 8px; }
  .hub-logo { width:146px; height:109px; }
  .hub-card { position:relative; inset:auto!important; width:100%; min-height:76px; animation:none; }.hub-card:hover { transform:translateY(-3px); }
  .pricing-slogan-strip { grid-template-columns:1fr 1fr; margin-top:-12px; }.pricing-slogan-strip span { border-radius:16px; animation:none; }
  .module-compare-head { align-items:flex-start; flex-direction:column; padding:20px; }.module-compare-head strong { max-width:none; }
  .faq-list { grid-template-columns:1fr; }.faq-cta { align-items:flex-start; flex-direction:column; }.faq-cta .btn { width:100%; justify-content:center; }
}
@media(max-width:560px) { .compact-plan-strip { grid-template-columns:1fr; } }
@media(max-width:560px) { .pricing-grid { flex-direction:column; align-items:center; }.price-card.featured { transform:none; }.price-card.featured:hover { transform:translateY(-8px); }.price-card { flex:1 1 100%; max-width:420px; } }
@media(prefers-reduced-motion:reduce) { .hub-orbit,.hub-core,.hub-card,.pricing-slogan-strip span { animation:none!important; } }
