/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --blue:        #2e7dd3;
  --blue-dark:   #1a5faa;
  --blue-light:  #5a9ee0;
  --blue-pale:   #e8f2fc;
  --blue-pale2:  #ddeeff;
  --navy:        #07111f;
  --navy-mid:    #0d1d34;
  --navy-light:  #122340;
  --white:       #ffffff;
  --off-white:   #f6f9ff;
  --border:      #e4eaf3;
  --text:        #0f1f38;
  --muted:       #5a6a7e;
  --gray:        #94a3b8;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 6px rgba(15,31,56,.06), 0 4px 16px rgba(46,125,211,.07);
  --shadow-md:   0 4px 20px rgba(15,31,56,.10), 0 12px 40px rgba(46,125,211,.10);
  --shadow-lg:   0 8px 32px rgba(15,31,56,.14), 0 24px 64px rgba(15,31,56,.14);
  --shadow-dark: 0 24px 80px rgba(0,0,0,.5);
  --transition:  0.28s cubic-bezier(.4,0,.2,1);
  --nav-height:  70px;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font-family: inherit; }

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: 96px 0; }
.section-alt { background: var(--off-white); }
.section-dark {
  background: linear-gradient(160deg, #060d1c 0%, #0a1a32 45%, #0e2348 100%);
}
.text-center { text-align: center; }

/* =========================================================
   TYPOGRAPHY SYSTEM
   ========================================================= */





.specialbtn {
  --btn-glow: #2f8fff; /* blue glow, matches screenshot style */

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;

  font-weight: 600;
  font-size: 0.98rem;
  color: #fff;
  text-decoration: none;
 /*  background: #0b0b0d; */
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  transition: transform 0.3s ease;
}

/* glowing border ring (top-lit) */
.specialbtn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from 200deg at 50% -20%,
              transparent 0deg,
              var(--btn-glow) 90deg,
              transparent 180deg,
              transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -2;
}

/* soft blurred glow sitting behind the top edge */
.specialbtn::after {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, var(--btn-glow) 0%, transparent 70%);
  opacity: 0.55;
  filter: blur(6px);
  transition: opacity 0.3s ease;
  z-index: -3;
}

/* hover: same look, glow just gets a touch brighter/bigger */
.specialbtn:hover::after {
  opacity: 0.85;
}
.specialbtn:hover {
  transform: translateY(-1px);
}





.specialbtnwp {
  --btn-glow: #25d366; /* blue glow, matches screenshot style */

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  
  font-weight: 600;
  font-size: 0.98rem;
  color: #fff;
  text-decoration: none;
 /*  background: #0b0b0d; */
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  transition: transform 0.3s ease;
}

/* glowing border ring (top-lit) */
.specialbtnwp::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(from 200deg at 50% -20%,
              transparent 0deg,
              #25d366 90deg,
              transparent 180deg,
              transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -2;
}

/* soft blurred glow sitting behind the top edge */
.specialbtnwp::after {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, var(--btn-glow) 0%, transparent 70%);
  opacity: 0.55;
  filter: blur(6px);
  transition: opacity 0.3s ease;
  z-index: -3;
}

/* hover: same look, glow just gets a touch brighter/bigger */
.specialbtnwp:hover::after {
  opacity: 0.85;
}
.specialbtnwp:hover {
  transform: translateY(-1px);
}















.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}
.eyebrow-white {
  color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
}
.eyebrow-white .eyebrow-dot { background: #4ade80; }

.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.022em;
  color: var(--text);
}
.section-title .accent { color: var(--blue); }
.section-title-white { color: #fff; }
.section-title-white .accent { color: #60a5fa; }

.section-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-top: 12px;
}
.section-subtitle-white {
  color: rgba(255,255,255,.58);
}

/* Section header centered */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header .section-subtitle {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: .9rem;
  border-radius: 50px;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 18px rgba(46,125,211,.38);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,125,211,.5);
}
.btn-ghost-white {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
}
.btn-lg { padding: 10px 36px; font-size: .97rem; }
.btn svg { flex-shrink: 0; }

/* =========================================================
   NAVBAR
   ========================================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  /* transition: background .3s, box-shadow .3s; */
}
.nav-inner {
  width: 100%;
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#navbar.scrolled {
  background: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.07), 0 4px 20px rgba(15,31,56,.06);
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
/* White logo: visible by default (hero is dark) */
.logo-for-dark  { display: block; height: 65px; width: auto; }
/* Dark logo: hidden until scrolled */
.logo-for-light { display: none;  height: 65px; width: auto; }
/* Fallback text logo */
.logo-text {
  display: none;
  align-items: center;
  gap: 9px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  transition: color .3s;
}
#navbar.scrolled .logo-text { color: var(--text); }
.logo-text-icon {
  width: 34px; height: 34px;
  background: var(--blue);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text-icon svg { fill: #fff; width: 18px; height: 18px; }

/* Swap logos on scroll */
#navbar.scrolled .logo-for-dark  { display: none; }
#navbar.scrolled .logo-for-light { display: block; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: .855rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.1); }
#navbar.scrolled .nav-links a { color: var(--muted); }
#navbar.scrolled .nav-links a:hover { color: var(--blue); background: var(--blue-pale); }

/* CTA */
.nav-cta { display: flex; align-items: center; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  cursor: pointer;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.12); }
#navbar.scrolled .hamburger:hover { background: var(--blue-pale); }
.hamburger-bar {
  display: block;
  width: 22px; height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.9);
  transition: transform .32s cubic-bezier(.4,0,.2,1), opacity .22s, background .3s;
  transform-origin: center;
}
#navbar.scrolled .hamburger-bar { background: var(--text); }
.hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(7,17,31,.55);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  transition: opacity .26s;
}
.drawer-overlay.is-open { display: block; opacity: 1; }

.drawer-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  z-index: 999;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(7,17,31,.18);
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
}
.drawer-panel.is-open { transform: translateX(0); }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 22px;
/*   border-bottom: 1px solid var(--border); */
  background: linear-gradient(155deg, #060d1c 0%, #0a1728 22%, #0e2248 55%, #183870 80%, #2260b4 100%);
}
#drawer-close {
  display: none;
}
.drawer-logo {
  display: flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: 1.1rem; color: var(--text);
}
.drawer-logo-icon {
  width: 50px;

  display: flex; align-items: center; justify-content: center;
}
.drawer-logo-icon svg { fill: #fff; width: 16px; height: 16px; }
.drawer-close {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform .22s;
  flex-shrink: 0;
}
.drawer-close:hover { background: var(--blue-pale); transform: rotate(90deg); }
.drawer-close svg {
  width: 16px; height: 16px;
  stroke: var(--text); fill: none;
  stroke-width: 2.2; stroke-linecap: round;
}

.drawer-body {
  flex: 1; overflow-y: auto;
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 3px;
  background: linear-gradient(155deg, #060d1c 0%, #0a1728 22%, #0e2248 55%, #183870 80%, #2260b4 100%);
}
.drawer-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    font-size: .92rem;
    font-weight: 500;
    color: #fff;
    padding: 13px 14px;
    transition: var(--transition);
    border-bottom: 1px solid #213862;
}
.drawer-link:hover { background: var(--blue-pale); color: var(--blue); }
.drawer-link:hover .drawer-link-icon { background: var(--blue-pale2); }
.drawer-link:hover .drawer-link-icon svg { stroke: var(--blue); }
.drawer-link-icon {
  width: 32px; height: 32px; border-radius: 8px;

  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--transition);
}
.drawer-link-icon svg {
      width: 25px;
    height: 25px;
    stroke: #618abd; fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.drawer-foot {
  padding: 18px 22px;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 10px;
}
.drawer-foot .btn { justify-content: center; width: 100%; }

/* =========================================================
   HERO
   ========================================================= */
#hero {
  min-height: 100svh;
  background: linear-gradient(155deg, #060d1c 0%, #0a1728 22%, #0e2248 55%, #183870 80%, #2260b4 100%);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 52px) 32px 80px;
  position: relative;
  overflow: hidden;
}
/* Grid lines */
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,125,211,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,125,211,.055) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 42%, black 30%, transparent 100%);
  pointer-events: none;
}
/* Glows */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-orb-1 {
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(46,125,211,.22), transparent 70%);
  top: -200px; right: -160px;
  animation: orb-float 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(26,95,170,.16), transparent 70%);
  bottom: -100px; left: -100px;
  animation: orb-float 12s ease-in-out infinite reverse 2s;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(90,158,224,.13), transparent 70%);
  top: 38%; left: 44%;
  animation: orb-float 7s ease-in-out infinite 1s;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(18px,-26px) scale(1.06); }
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

/* Left side */
.hero-tagline {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.88);
  margin-bottom: 22px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,.5);
  animation: pulse-dot 2s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.8vw, 3.7rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title .accent { color: #60a5fa; display: block; }

.hero-desc {
  font-size: 1rem;
  line-height: 1.82;
  color: rgba(255,255,255,.6);
  margin-bottom: 36px;
  max-width: 470px;
}
.hero-desc strong { color: rgba(255,255,255,.88); font-weight: 600; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,.09);
}
.hero-stat { padding: 18px 8px; border-right: 1px solid rgba(255,255,255,.07); }
.hero-stat:last-child { border-right: none; }
.hero-stat-number {
  font-size: 1.75rem; font-weight: 600;
  color: #fff; line-height: 1;
}
.hero-stat-label {
  font-size: .67rem; font-weight: 500;
  color: rgba(255,255,255,.38);
  margin-top: 5px;
}

/* Hero dashboard image */
.hero-visual { position: relative; }
.hero-img-tilt {
  transform: perspective(1400px) rotateY(-10deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.hero-img-tilt:hover {
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
}
.hero-img-frame {
  border-radius: 16px;
  overflow: hidden;
/*   box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 40px 80px rgba(0,0,0,.6),
    0 0 60px rgba(46,125,211,.14);
  background: #0a1628; */
}
/* Placeholder shown when no image */
.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  background: linear-gradient(160deg, #0a1628 0%, #122244 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.3);
  font-size: .82rem;
  font-weight: 500;
}
.hero-img-placeholder svg {
  width: 40px; height: 40px;
  stroke: rgba(255,255,255,.2); fill: none; stroke-width: 1.2;
}
.hero-img-frame img {
  width: 100%; display: block; border-radius: 16px;
}

/* Float cards */
.float-card {
  position: absolute;
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--shadow-dark);
  padding: 11px 15px;
  display: flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 700; color: var(--text);
  white-space: nowrap; z-index: 3;
}
.float-card-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.float-card-sub { font-size: .64rem; font-weight: 500; color: var(--muted); margin-top: 1px; }
.fc-1 { bottom: -14px; left: -22px; animation: card-float 3.5s ease-in-out infinite; }
.fc-2 { top: 20px; right: -22px; animation: card-float 4s ease-in-out infinite 1.5s; }
.fc-3 { bottom: 64px; right: -26px; animation: card-float 3s ease-in-out infinite .8s; }
@keyframes card-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* =========================================================
   TEXT MARQUEE BAND (right-to-left scrolling bold text)
   ========================================================= */
#trust {
  background: #07111f;
  padding: 30px 0;
  overflow: hidden;
}
.text-marquee-wrap {
  position: relative; overflow: hidden;
}
.text-marquee-wrap::before,
.text-marquee-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 2; pointer-events: none;
}
.text-marquee-wrap::before { left: 0; background: linear-gradient(90deg, #07111f, transparent); }
.text-marquee-wrap::after  { right: 0; background: linear-gradient(270deg, #07111f, transparent); }
.text-marquee-track {
  display: flex; align-items: center; gap: 0;
  width: max-content;
  animation: text-marquee 24s linear infinite;
}
.text-marquee-track:hover { animation-play-state: paused; }
@keyframes text-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tm-item {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding: 0 20px;
}
.tm-star {
  font-size: 1.2rem;
  padding: 0 20px;
  flex-shrink: 0;
  width: 70px;
}

/* =========================================================
   PROBLEM / SOLUTION
   ========================================================= */
#problem {
  background: #fff;
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}
.problem-pains { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.pain-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.pain-item:hover {
  border-color: rgba(46,125,211,.22);
  background: var(--blue-pale);
  transform: translateX(4px);
}
.pain-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pain-icon svg {
  width: 18px; height: 18px;
  stroke: var(--muted); fill: none; stroke-width: 1.8; stroke-linecap: round;
}
.pain-item:hover .pain-icon { background: rgba(46,125,211,.12); }
.pain-item:hover .pain-icon svg { stroke: var(--blue); }
.pain-item h4 { font-size: .88rem; font-weight: 700; margin-bottom: 3px; }
.pain-item p  { font-size: .79rem; color: var(--muted); line-height: 1.65; }

.solution-box {
  background: linear-gradient(155deg, #06101d 0%, #0e1e3c 55%, #112c58 100%);
  border-radius: var(--radius-xl);
  padding: 42px 36px;
  border: 1px solid rgba(46,125,211,.2);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.solution-box::before {
  content: '';
  position: absolute; top: -70px; right: -70px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(46,125,211,.2), transparent 70%);
  pointer-events: none;
}
.solution-box .eyebrow { background: rgba(46,125,211,.18); color: #60a5fa; }
.solution-box .eyebrow .eyebrow-dot { background: #60a5fa; }
.solution-title { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1.24; margin-bottom: 12px; }
.solution-title span { color: #60a5fa; }
.solution-desc { font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.72; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,.08); }
.solution-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.solution-item { display: flex; gap: 11px; align-items: center; font-size: .85rem; color: rgba(255,255,255,.8); }
.solution-check {
  width: 21px; height: 21px; border-radius: 50%;
  background: rgba(46,125,211,.2); border: 1px solid rgba(46,125,211,.4);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.solution-check svg { width: 11px; height: 11px; stroke: #60a5fa; fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* =========================================================
   MODULES
   ========================================================= */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}
/* Last 3 modules in a row of 3 (11 total: 4+4+3) */
.module-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: default;
}
.module-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.module-card:hover { transform: translateY(-5px); border-color: rgba(46,125,211,.2); }
.module-card:hover::after { transform: scaleX(1); }
.module-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.module-icon svg {
  width: 22px; height: 22px;
  stroke: var(--blue); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.module-name { font-size: .96rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.module-desc { font-size: .79rem; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }
.module-points { display: flex; flex-direction: column; gap: 5px; }
.module-point { display: flex; gap: 8px; align-items: center; font-size: .75rem; color: var(--muted); }
.mp-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.mp-dot svg { width: 8px; height: 8px; stroke: var(--blue); fill: none; stroke-width: 2.5; stroke-linecap: round; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(12.5% + 16px); right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(46,125,211,.25) 20%, rgba(46,125,211,.25) 80%, transparent);
  pointer-events: none;
}
.how-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 24px 14px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  transition: var(--transition);
}
.how-step:hover { background: var(--off-white); border-color: var(--border); }
.step-number {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 1.2rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(46,125,211,.42);
  margin-bottom: 18px; z-index: 2; position: relative;
  transition: var(--transition);
}
.how-step:hover .step-number { transform: scale(1.08); }
.how-step h4 { font-size: .93rem; font-weight: 700; margin-bottom: 7px; }
.how-step p  { font-size: .79rem; color: var(--muted); line-height: 1.65; }

/* =========================================================
   PLATFORM (Web + Mobile)
   ========================================================= */
.platform-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}
.platform-mockups { position: relative;}

/* Web frame */
.pweb {
  position: absolute; top: 0; left: 0; width: 83%;
  background: #0a1628; border-radius: 13px; overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255,255,255,.08);
}
.pweb-bar {
  background: #06101a; padding: 9px 14px;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.pweb-dots { display: flex; gap: 5px; }
.pweb-dot { width: 8px; height: 8px; border-radius: 50%; }
.pweb-url { flex: 1; height: 17px; background: rgba(255,255,255,.05); border-radius: 4px; margin: 0 7px; }
.pweb-body { padding: 14px; }
.pweb-row { height: 8px; background: rgba(255,255,255,.06); border-radius: 3px; margin-bottom: 7px; }
.pweb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 10px; }
.pweb-block { height: 50px; background: rgba(255,255,255,.04); border-radius: 7px; }
.pweb-block.blue { background: rgba(46,125,211,.2); }

/* App frame */
.papp {
  position: absolute; bottom: 0; right: 0; width: 31%;
  background: #060f1a; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 3px solid rgba(255,255,255,.08);
}
.papp-notch {
  background: #050d17; height: 26px;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.papp-notch-bar { width: 42px; height: 5px; background: rgba(255,255,255,.1); border-radius: 3px; }
.papp-body { padding: 11px; }
.papp-kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 6px; }
.papp-kpi { height: 36px; background: rgba(255,255,255,.05); border-radius: 7px; }
.papp-kpi.blue { background: rgba(46,125,211,.18); }
.papp-row { height: 23px; background: rgba(255,255,255,.04); border-radius: 5px; margin-bottom: 4px; }

.platform-tag {
  position: absolute;
  background: #fff; border-radius: 10px;
  box-shadow: var(--shadow-md);
  padding: 7px 13px;
  display: flex; align-items: center; gap: 7px;
  font-size: .73rem; font-weight: 700; color: var(--text);
}
.platform-tag:nth-of-type(1) { top: 12px; right: 0; }
.platform-tag:nth-of-type(2) { bottom: 52px; left: 30px; }
.platform-tag-icon {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
}
.platform-tag-icon svg {
  width: 13px; height: 13px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round;
}

.platform-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.platform-feat {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.platform-feat:hover { border-color: rgba(46,125,211,.2); }
.platform-feat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.platform-feat-icon svg {
  width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round;
}
.platform-feat h4 { font-size: .87rem; font-weight: 700; margin-bottom: 3px; }
.platform-feat p  { font-size: .79rem; color: var(--muted); line-height: 1.65; }

/* =========================================================
   MOBILE APP SHOWCASE
   ========================================================= */
.app-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative; z-index: 2;
}
/* Orbs */
.app-orb-1, .app-orb-2 {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.app-orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(46,125,211,.18), transparent 70%); top: -80px; right: -80px; }
.app-orb-2 { width: 320px; height: 320px; background: radial-gradient(circle, rgba(90,158,224,.1), transparent 70%); bottom: -60px; left: 8%; }

.app-features-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.app-feat-item {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 13px 15px;
  border-radius: 11px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  transition: background var(--transition);
}
.app-feat-item:hover { background: rgba(46,125,211,.1); border-color: rgba(46,125,211,.22); }
.app-feat-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.app-feat-icon svg {
  width: 18px; height: 18px; stroke: rgba(255,255,255,.7); fill: none; stroke-width: 1.8; stroke-linecap: round;
}
.app-feat-item h4 { font-size: .87rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.app-feat-item p  { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.6; }

.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: 11px; padding: 10px 18px;
  color: #fff; font-size: .82rem; font-weight: 600;
  transition: var(--transition);
}
.store-btn:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
.store-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.store-btn-text small { display: block; font-size: .6rem; font-weight: 400; opacity: .65; line-height: 1; }
.store-btn-text strong { font-size: .82rem; font-weight: 700; }

/* App visual (phone image placeholder) */
.app-visual {
  display: flex; justify-content: center;
  align-items: center;
  position: relative; height: 500px;
}
/* Placeholder phone frame — replace img src to get real screenshot */
.phone-frame {
  max-width: 370px;
  background: #060e1c;
  border-radius: 38px;
  border: 3px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 60px rgba(46,125,211,.15);
  overflow: hidden;
  position: relative; z-index: 2;
}
.phone-frame img {
  width: 100%; display: block; border-radius: 35px;
}
/* Shown when no image yet */
.phone-placeholder {
  width: 100%;
  aspect-ratio: 9/18;
  background: linear-gradient(160deg, #0a1628, #0d1e38);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.25);
  font-size: .75rem; font-weight: 500; text-align: center;
  padding: 20px;
}
.phone-placeholder svg {
  width: 32px; height: 32px;
  stroke: rgba(255,255,255,.15); fill: none; stroke-width: 1.2;
}

/* Float badges on app visual */
.app-badge {
  position: absolute;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  padding: 10px 13px;
  display: flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 700; color: var(--text);
  white-space: nowrap; z-index: 4;
}
.app-badge-icon { width: 29px; height: 29px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
.app-badge-sub  { font-size: .6rem; font-weight: 500; color: var(--muted); margin-top: 1px; }
.ab-1 { top: 32px; left: calc(50% - 270px); animation: card-float 3.5s ease-in-out infinite; }
.ab-2 { bottom: 60px; right: calc(50% - 262px); animation: card-float 4s ease-in-out infinite 1.5s; }

/* =========================================================
   APP FEATURE GRID
   ========================================================= */
.app-feat-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
}
.app-feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  position: relative; overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
  cursor: default;
}
.app-feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.app-feat-card:hover { transform: translateY(-4px); border-color: rgba(46,125,211,.18); }
.app-feat-card:hover::before { transform: scaleX(1); }
.afc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.afc-icon svg {
  width: 20px; height: 20px;
  stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.afc-title { font-size: .92rem; font-weight: 700; margin-bottom: 6px; }
.afc-desc  { font-size: .78rem; color: var(--muted); line-height: 1.68; }

/* =========================================================
   AD / PROMO BANNER (full width)
   ========================================================= */
#adbanner { padding: 0; background: var(--off-white); }
.ad-band {
  width: 100%;
  background: linear-gradient(135deg, #060d1c 0%, #0c1e3c 38%, #112e60 70%, #1e4a8a 100%);
  position: relative; overflow: hidden;
}
.ad-band-bg1 { position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(46,125,211,.2), transparent 70%); pointer-events: none; }
.ad-band-bg2 { position: absolute; bottom: -60px; left: 28%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(90,158,224,.1), transparent 70%); pointer-events: none; }
.ad-band-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(46,125,211,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(46,125,211,.05) 1px, transparent 1px); background-size: 38px 38px; pointer-events: none; }
.ad-band-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 32px;
}
.ad-flag {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px; padding: 6px 14px;
  font-size: .7rem; font-weight: 700;
  color: rgba(255,255,255,.88);
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.ad-flag span { color: #4ade80; }
.ad-title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 600; color: #fff;
  line-height: 1.14; letter-spacing: -.022em;
  margin-bottom: 16px;
}
.ad-title .ad-blue { color: #60a5fa; }
.ad-desc { font-size: .93rem; color: rgba(255,255,255,.58); line-height: 1.78; margin-bottom: 26px; }
.ad-bullets { display: flex; flex-direction: column; gap: 9px; margin-bottom: 30px; }
.ad-bullet { display: flex; gap: 10px; align-items: center; font-size: .85rem; color: rgba(255,255,255,.78); }
.ad-bullet-icon {
  width: 21px; height: 21px; border-radius: 50%;
  background: rgba(74,222,128,.14);
  border: 1px solid rgba(74,222,128,.28);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ad-bullet-icon svg { width: 10px; height: 10px; stroke: #4ade80; fill: none; stroke-width: 2.5; stroke-linecap: round; }
.ad-actions { display: flex; gap: 11px; flex-wrap: wrap; }

/* Ad right: dashboard placeholder image */
.ad-right { display: flex; flex-direction: column; gap: 16px; }
.ad-dash-frame {
  background: linear-gradient(160deg, #0a1628, #122244);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
/* When real image is available, replace .ad-dash-placeholder with <img> */
.ad-dash-placeholder {
  width: 100%; aspect-ratio: 16/10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.22);
  font-size: .78rem; font-weight: 500; text-align: center;
  padding: 24px;
}
.ad-dash-placeholder svg {
  width: 36px; height: 36px;
  stroke: rgba(255,255,255,.15); fill: none; stroke-width: 1.2;
}
.ad-dash-frame img { width: 100%; display: block; border-radius: var(--radius-lg); }

.ad-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.ad-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 14px 12px; text-align: center;
}
.ad-stat-number { font-size: 1.55rem; font-weight: 600; color: #fff; line-height: 1; }
.ad-stat-label  { font-size: .63rem; color: rgba(255,255,255,.42); margin-top: 4px; font-weight: 500; }

/* =========================================================
   METRICS BAND
   ========================================================= */
#metrics { background: linear-gradient(135deg, #0a1628, #1a3d7e); padding: 68px 32px; }
.metrics-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,.06);
   overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255,255,255,.07);
}
.metric-cell {
  background: #0a1628; padding: 32px 18px; text-align: center;
  transition: background var(--transition);
}
.metric-cell:hover { background: #0e1e3c; }
.metric-icon { font-size: 1.3rem; margin-bottom: 9px; }
.metric-number { font-size: 2.3rem; font-weight: 600; color: #fff; line-height: 1; margin-bottom: 5px; }
.metric-label  { font-size: .72rem; color: rgba(255,255,255,.42); font-weight: 500; }

/* =========================================================
   TESTIMONIALS (3 fixed)
   ========================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px 26px;
  display: flex; flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.review-card:hover { transform: translateY(-3px); border-color: rgba(46,125,211,.18); }
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-star  { color: #fbbf24; font-size: .9rem; }
.review-quote {
  font-size: 2rem; color: var(--blue);
  font-family: Georgia, serif;
  line-height: 1; margin-bottom: 8px; opacity: .45;
}
.review-text  { font-size: .88rem; color: var(--text); line-height: 1.78; flex: 1; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .88rem; color: #fff; flex-shrink: 0;
}
.review-name { font-size: .86rem; font-weight: 700; }
.review-role { font-size: .73rem; color: var(--muted); margin-top: 2px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 9px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.is-open { border-color: rgba(46,125,211,.28); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; cursor: pointer;
  font-size: .9rem; font-weight: 600;
  background: none; width: 100%; text-align: left;
  transition: background var(--transition), color var(--transition); gap: 12px;
}
.faq-item.is-open .faq-question { color: var(--blue); background: var(--blue-pale); }
.faq-question:hover { background: var(--off-white); }
.faq-item.is-open .faq-question:hover { background: var(--blue-pale); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background var(--transition), transform var(--transition);
}
.faq-item.is-open .faq-icon { background: var(--blue); transform: rotate(180deg); }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--muted); fill: none; stroke-width: 2.2; transition: stroke var(--transition); }
.faq-item.is-open .faq-icon svg { stroke: #fff; }
.faq-answer {
  font-size: .84rem; color: var(--muted); line-height: 1.75;
  max-height: 0; overflow: hidden; padding: 0 20px;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .35s;
}
.faq-item.is-open .faq-answer { max-height: 220px; padding: 14px 20px 20px; }

/* =========================================================
   CTA
   ========================================================= */
#cta {
  background: linear-gradient(155deg, #060f1e 0%, #0d1e3a 40%, #122e60 80%, #1a4080 100%);
  padding: 96px 32px; position: relative; overflow: hidden;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(46,125,211,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(46,125,211,.04) 1px, transparent 1px);
  background-size: 38px 38px; pointer-events: none;
}
.cta-orb-1, .cta-orb-2 { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(46,125,211,.14), transparent 70%); top: -100px; right: -100px; }
.cta-orb-2 { width: 330px; height: 330px; background: radial-gradient(circle, rgba(90,158,224,.1), transparent 70%); bottom: -70px; left: -70px; }
.cta-inner {
  max-width: 640px; margin: 0 auto; text-align: center;
  position: relative; z-index: 2;
}
.cta-title { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; color: #fff; line-height: 1.18; letter-spacing: -.026em; margin-bottom: 14px; }
.cta-title span { color: #60a5fa; }
.cta-desc { font-size: .97rem; color: rgba(255,255,255,.56); line-height: 1.75; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 11px; justify-content: center; flex-wrap: wrap; }
.cta-perks { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.cta-perk { font-size: .73rem; color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 5px; }
.cta-perk::before { content: '✓'; color: #4ade80; font-weight: 700; }

/* =========================================================
   WHATSAPP FAB
   ========================================================= */
#wa-fab {
  position: fixed; bottom: 26px; right: 26px; z-index: 1100;
}
.wa-button {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.46);
  transition: var(--transition); position: relative;
}
.wa-button:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.56); }
.wa-button svg { width: 27px; height: 27px; fill: #fff; }
.wa-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: wa-pulse 2.2s ease-out infinite 3s;
}
@keyframes wa-pulse { 0%{transform:scale(1);opacity:.6} 100%{transform:scale(1.5);opacity:0} }
.wa-tip {
  position: absolute; right: 66px; top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #fff; color: var(--text);
  font-size: .73rem; font-weight: 700;
  padding: 7px 13px; border-radius: 9px;
  box-shadow: var(--shadow-md); white-space: nowrap;
  pointer-events: none; opacity: 0;
  transition: opacity .2s, transform .2s;
}
#wa-fab:hover .wa-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.wa-tip::after { content: ''; position: absolute; right: -5px; top: 50%; transform: translateY(-50%); border: 5px solid transparent; border-left-color: #fff; border-right: none; }











/* =========================================================
   FOOTER
   ========================================================= */
#footer { background: var(--navy); padding: 64px 32px 26px; }
.footer-grid {
      max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 44px;
   border-bottom: 1px solid rgb(255 255 255 / 18%);
    text-align: center;
}
.footer-bottom .govicons {
  display: flex;
  align-items: center;
}
.footer-bottom .govicons img {
  padding-left: 10px;
}
.footer-brand { display: flex; align-items: center; margin-bottom: 14px; justify-content: center;}
.footer-brand img { height: 80px; width: auto; }
.footer-brand-fallback {
  display: none; align-items: center; gap: 8px;
  font-size: 1.15rem; font-weight: 800; color: #fff;
}
.footer-brand-icon { width: 28px; height: 28px; background: var(--blue); border-radius: 7px; display: flex; align-items: center; justify-content: center; }
.footer-brand-icon svg { fill: #fff; width: 15px; height: 15px; }
.footer-desc { font-size: .79rem; color: rgba(255,255,255,.44); line-height: 1.72; margin-bottom: 18px;     max-width: 450px;
    margin: auto; }
.footer-socials { display: flex; gap: 8px; }
.social-link {
  width: 33px; height: 33px; border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.social-link:hover { background: var(--blue); }
.social-link svg { width: 14px; height: 14px; fill: rgba(255,255,255,.46); }
.social-link:hover svg { fill: #fff; }
.footer-col h5 { font-size: 14px;
    font-weight: 600;
    color: #baddff;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 15px;}
.footer-col a { display: block; font-size: .79rem; color: rgb(255 255 255 / 54%); margin-bottom: 8px; transition: color var(--transition); }
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom {
max-width: 1180px;
    margin: 18px auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: .73rem;
    color: rgba(255, 255, 255, .32);
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.32); }
.footer-bottom a:hover { color: var(--blue-light); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

/* =========================================================
   RESPONSIVE — TABLET 1024
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; text-align: center; gap: 52px; }
  .hero-desc     { margin: 0 auto 36px; }
  .hero-actions  { justify-content: center; }
  .hero-visual   { display: none; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .modules-grid  { grid-template-columns: repeat(3,1fr); }
  .how-steps     { grid-template-columns: repeat(2,1fr); }
  .how-steps::before { display: none; }
  .platform-inner { grid-template-columns: 1fr; gap: 52px; padding: 0 24px; }
  
  .papp { width: 33%; }
  .app-showcase-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; padding: 0 24px; }
  .app-features-list  { text-align: left; }
  .store-buttons { justify-content: center; }
  .app-visual { height: 380px; }
  .ab-1, .ab-2 { display: none; }
  .app-feat-grid { grid-template-columns: repeat(3,1fr); }
  .ad-band-inner { grid-template-columns: 1fr; padding: 48px 28px; gap: 36px; }
  .metrics-grid  { grid-template-columns: repeat(2,1fr); }
  .reviews-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* =========================================================
   RESPONSIVE — MOBILE 768
   ========================================================= */
@media (max-width: 768px) {
  .phone-frame {
    max-width: 200px;
}
  .logo-for-dark {
    height: 50px;
}
  .logo-for-light {
    height: 50px;
}
#trust {
    padding: 20px 0;
}
.tm-item {
    font-size: 20px;
}
  :root { --nav-height: 62px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 68px 0; }
  .container { padding: 0 15px; }
  .problem-inner { padding: 0 15px; }
  .platform-inner { padding: 0 15px; }
  .app-showcase-inner { padding: 0 15px; }
  .ad-band-inner { padding: 40px 15px; }
  #metrics { padding: 60px 15px; }
  #footer { padding: 56px 15px 22px; }
  .nav-inner { padding: 0 15px; }
  #hero   { padding: calc(var(--nav-height) + 50px) 15px 60px;      background: linear-gradient(155deg, #000000 0%, #0a1728 22%, #0e2248 55%, #183870 80%, #2260b4 100%);}
  #cta    { padding: 72px 15px; }
  .hero-stats { max-width: 100%; }
  .hero-stat-number { font-size: 1.55rem; }
  .modules-grid  { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .how-steps     { grid-template-columns: 1fr; }
 
  .pweb { width: 86%; }
  .papp { width: 36%; bottom: 0; }
  .app-feat-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =========================================================
   RESPONSIVE — SMALL 480
   ========================================================= */
@media (max-width: 480px) {
  
  section { padding: 56px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .modules-grid { grid-template-columns: 1fr; }
  .app-feat-grid { grid-template-columns: 100%; }
  .metrics-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; width: 100%; }
  .ad-band-inner { padding: 36px 15px; }
  #wa-fab { bottom: 16px; right: 16px; }
}
