/* ============ TOKENS ============ */
:root{
  --blue: #2563EB;
  --blue-light: #5B8DEF;
  --blue-pale: #DBEAFE;
  --navy: #0F172A;
  --navy-soft: #16213A;
  --white: #FAFBFD;       /* off-white base */
  --surface: #FFFFFF;     /* pure white for cards, popping off the base */
  --gray-bg: #F1F5F9;     /* alt section background, one step deeper than base */
  --border: #E5E7EB;
  --text-body: #475569;
  --text-body-dark: #94A3B8;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Roboto Mono', monospace;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,0.06);
  --shadow-md: 0 8px 24px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 50px rgba(15,23,42,0.16);
  --container: 1180px;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
h1,h2,h3{ font-family: var(--font-display); font-weight:800; line-height:1.15; letter-spacing:-0.02em; color: var(--navy); }
h2{ font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3{ font-size: 1.15rem; font-weight:700; }
p{ color: var(--text-body); }
.container{ max-width: var(--container); margin:0 auto; padding:0 24px; }

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}

/* ============ REVEAL ANIMATION ============ */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible{ opacity:1; transform: translateY(0); }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-weight:600; font-size:0.95rem; cursor:pointer; border:none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn-sm{ padding:10px 20px; font-size:0.875rem; }
.btn-primary{ background: var(--blue); color:#fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background:#1D4ED8; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline{ background:transparent; color:#fff; border:1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover{ background:rgba(255,255,255,0.1); border-color:#fff; }
.btn-outline-dark{ background:transparent; color:var(--navy); border:1.5px solid var(--border); }
.btn-outline-dark:hover{ border-color:var(--blue); color:var(--blue); }
.btn-white{ background:#fff; color:var(--blue); }
.btn-white:hover{ transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* ============ NAV ============ */
.nav{
  position: sticky; top:0; z-index:100; background: rgba(250,251,253,0.85);
  backdrop-filter: blur(10px); border-bottom:1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.nav.scrolled{ box-shadow: 0 2px 20px rgba(15,23,42,0.06); border-color: var(--border); }
.nav-inner{ display:flex; align-items:center; gap:24px; padding:14px 24px; }
.nav-logo{ display:flex; align-items:center; gap:10px; }
.nav-logo-icon{ height:32px; width:auto; }
.nav-logo-text{ display:flex; flex-direction:column; line-height:1.2; }
.nav-logo-name{ font-family:var(--font-display); font-weight:800; font-size:1.05rem; color:var(--navy); letter-spacing:-0.01em; }
.nav-logo-by{ font-size:0.68rem; color:#94A3B8; font-weight:500; white-space:nowrap; }
.nav-divider{ width:1px; height:28px; background:var(--border); margin:0 8px; flex-shrink:0; }
.nav-links{ display:flex; gap:28px; margin-right:auto; }
.nav-links a{ font-size:0.92rem; font-weight:600; color:var(--navy); opacity:0.75; transition: opacity .2s; }
.nav-links a:hover{ opacity:1; color:var(--blue); }
.nav-actions{ display:flex; align-items:center; gap:16px; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ width:22px; height:2px; background:var(--navy); border-radius:2px; transition:.25s; }

/* ============ HERO ============ */
.hero{ position:relative; background: var(--navy); overflow:hidden; padding: 56px 0 64px; }
.hero-glow{
  position:absolute; top:-200px; right:-160px; width:600px; height:600px; border-radius:50%;
  background: radial-gradient(circle, rgba(37,99,235,0.35), transparent 70%);
  filter: blur(10px); pointer-events:none;
}
.hero-inner{ position:relative; display:grid; grid-template-columns: 1.1fr 0.9fr; gap:56px; align-items:center; }
.eyebrow{
  display:inline-block; font-size:0.78rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase;
  color: var(--blue-light); background: rgba(37,99,235,0.14); border:1px solid rgba(91,141,239,0.3);
  padding:7px 14px; border-radius:100px; margin-bottom:22px;
}
.eyebrow-dark{ color: var(--blue); background: var(--blue-pale); border-color: transparent; }
.hero h1{ color:#fff; font-size: clamp(2.2rem, 4.4vw, 3.4rem); margin-bottom:20px; }
.text-accent{ color: var(--blue-light); }
.hero-sub{ color: var(--text-body-dark); font-size:1.05rem; max-width:520px; margin-bottom:32px; }
.hero-ctas{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom:48px; }
.hero-trust{ display:flex; gap:40px; flex-wrap:wrap; }
.hero-trust div{ display:flex; flex-direction:column; }
.hero-trust strong{ font-family:var(--font-display); font-size:1.5rem; color:#fff; font-weight:800; }
.hero-trust span{ font-size:0.82rem; color: var(--text-body-dark); }

/* Hero visual: mock ads dashboard */
.hero-visual{ position:relative; }
.dash-card{
  background: var(--surface); border-radius:16px; padding:24px; box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
}
.dash-head{ display:flex; align-items:center; gap:10px; margin-bottom:20px; }
.dash-dot{ width:9px; height:9px; border-radius:50%; background:#22C55E; box-shadow:0 0 0 4px rgba(34,197,94,0.15); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot{ 0%,100%{ opacity:1; } 50%{ opacity:0.4; } }
.dash-title{ font-weight:700; font-size:0.92rem; }
.dash-live{ margin-left:auto; font-size:0.7rem; font-weight:700; letter-spacing:0.05em; color:#22C55E; background:#ECFDF5; padding:4px 10px; border-radius:100px; }
.dash-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:20px; }
.dash-stat{ background: var(--gray-bg); border:1px solid var(--border); border-radius:10px; padding:14px 16px; }
.dash-label{ display:block; font-size:0.72rem; color:var(--text-body); margin-bottom:6px; }
.dash-value{ font-family: var(--font-mono); font-size:1.3rem; font-weight:700; color:var(--navy); transition: opacity .3s ease; }
.dash-value.accent{ color: var(--blue); }
.dash-chart{ background: var(--gray-bg); border:1px solid var(--border); border-radius:10px; padding:12px; margin-bottom:14px; }
.dash-chart svg{ width:100%; height:60px; }
.dash-chart polyline{ fill:none; stroke: var(--blue); stroke-width:2.5; stroke-linecap:round; stroke-linejoin:round; }
.dash-foot{ font-size:0.72rem; color:#94A3B8; text-align:center; }

/* ============ PARTNER BADGE BAR ============ */
.partner-bar{ background: var(--surface); padding:22px 0; border-bottom:1px solid var(--border); }
.partner-bar-inner{ display:flex; align-items:center; justify-content:center; gap:28px; flex-wrap:wrap; }
.partner-label{ font-size:0.72rem; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; color:#94A3B8; flex-shrink:0; }
.partner-logos{ display:flex; align-items:center; gap:32px; flex-wrap:wrap; }
.partner-logos img{ height:26px; width:auto; object-fit:contain; opacity:0.9; }

/* ============ TRUST BAR (industries) ============ */
.trustbar{ background: var(--gray-bg); padding:28px 0; border-bottom:1px solid var(--border); }
.trustbar-label{ text-align:center; font-size:0.78rem; letter-spacing:0.05em; text-transform:uppercase; color:#94A3B8; font-weight:600; margin-bottom:14px; }
.trustbar-row{ display:flex; flex-wrap:wrap; justify-content:center; gap:14px 36px; }
.trustbar-row span{ font-weight:700; color: var(--navy); opacity:0.55; font-size:0.95rem; }

/* ============ SECTIONS ============ */
.section{ padding: 76px 0; }
.section-alt{ background: var(--gray-bg); }
.section-head{ max-width:640px; margin:0 auto 44px; text-align:center; }
.section-head p{ margin-top:14px; font-size:1.02rem; }
.section-head .light{ color:#fff; }
.results .eyebrow{ color: var(--blue-light); }
.about-blurb{ max-width:680px; }

/* grids */
.grid{ display:grid; gap:28px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }

/* cards */
.card{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius); padding:32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon{
  width:46px; height:46px; border-radius:10px; background: var(--blue-pale);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px;
}
.card-icon svg{ width:22px; height:22px; fill:none; stroke: var(--blue); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.card h3{ margin-bottom:10px; }
.card p{ font-size:0.94rem; }

/* why us */
.why-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.section-lead{ font-size:1.05rem; margin-bottom:26px; }
.why-list{ display:flex; flex-direction:column; gap:16px; margin-bottom:32px; }
.why-list li{ padding-left:28px; position:relative; font-size:0.96rem; color:var(--text-body); }
.why-list li::before{ content:"✓"; position:absolute; left:0; top:0; color:var(--blue); font-weight:800; }
.why-list strong{ color:var(--navy); }
.why-visual{ display:flex; flex-direction:column; gap:18px; }
.stat-tile{ background: var(--surface); border:1px solid var(--border); border-radius: var(--radius); padding:26px 28px; box-shadow: var(--shadow-sm); }
.stat-tile-dark{ background: var(--navy); border-color: var(--navy); }
.stat-tile-dark .stat-num, .stat-tile-dark .stat-cap{ color:#fff; }
.stat-num{ display:block; font-family:var(--font-display); font-size:1.9rem; font-weight:800; color: var(--blue); margin-bottom:6px; }
.stat-cap{ font-size:0.9rem; color: var(--text-body); }

/* process */
.process-list{ max-width:760px; margin:0 auto; display:flex; flex-direction:column; }
.process-item{ display:flex; gap:28px; padding:28px 0; border-bottom:1px solid var(--border); }
.process-item:last-child{ border-bottom:none; }
.process-num{ font-family:var(--font-mono); font-size:0.95rem; font-weight:700; color: var(--blue); flex-shrink:0; width:40px; padding-top:2px; }
.process-item h3{ margin-bottom:6px; }
.process-item p{ font-size:0.94rem; }

/* results */
.results{ background: var(--navy); }
.results-grid{ text-align:center; }
.result-tile{ display:flex; flex-direction:column; gap:8px; }
.result-num{ font-family:var(--font-display); font-size:clamp(2.2rem,4vw,3rem); font-weight:800; color:#fff; transition: opacity .3s ease; }
.result-label{ font-size:0.88rem; color: var(--text-body-dark); }
.results-note{ text-align:center; margin-top:40px; font-size:0.8rem; color:#64748B; }

/* client logos */
.logo-grid{ display:grid; grid-template-columns: repeat(4, 1fr); gap:20px; margin-top:8px; }
.logo-tile{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius-sm);
  height:100px; display:flex; align-items:center; justify-content:center; padding:18px 20px;
  transition: box-shadow .2s ease, transform .2s ease;
}
.logo-tile:hover{ box-shadow: var(--shadow-md); transform: translateY(-3px); }
.logo-tile img{ max-height:56px; max-width:100%; width:auto; object-fit:contain; }
.logo-note{ text-align:center; font-size:0.8rem; color:#94A3B8; margin-top:24px; font-style:italic; }

/* testimonials slider */
.slider{ position:relative; max-width:760px; margin:0 auto; overflow:hidden; }
.slider-track{ display:flex; transition: transform .5s ease; }
.testi{
  flex:0 0 100%; background: var(--surface); border:1px solid var(--border); border-radius: var(--radius);
  padding:36px 40px; display:flex; flex-direction:column; gap:18px; min-height:180px;
}
.testi-stars{ color:#F59E0B; letter-spacing:2px; font-size:0.95rem; }
.testi p{ font-size:1rem; color: var(--navy); font-style:italic; }
.testi-who{ display:flex; align-items:center; gap:12px; margin-top:auto; }
.testi-avatar{ width:38px; height:38px; border-radius:50%; background: var(--blue-pale); color:var(--blue); font-weight:700; font-size:0.8rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.testi-who strong{ display:block; font-size:0.88rem; }
.testi-who span{ font-size:0.78rem; color:#94A3B8; }
.slider-arrow{
  position:absolute; top:50%; transform: translateY(-50%); width:40px; height:40px; border-radius:50%;
  background: var(--surface); border:1px solid var(--border); font-size:1.4rem; color:var(--navy); cursor:pointer;
  display:flex; align-items:center; justify-content:center; transition: .2s ease; box-shadow: var(--shadow-sm);
}
.slider-arrow:hover{ background: var(--blue); color:#fff; border-color:var(--blue); }
.slider-prev{ left:-52px; }
.slider-next{ right:-52px; }
.slider-dots{ display:flex; justify-content:center; gap:8px; margin-top:24px; }
.slider-dot{ width:8px; height:8px; border-radius:50%; background: var(--border); cursor:pointer; transition:.2s ease; border:none; padding:0; }
.slider-dot.active{ background: var(--blue); width:22px; border-radius:4px; }

/* pricing */
.pricing-grid{ align-items:stretch; }
.price-card{
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius); padding:36px 30px;
  display:flex; flex-direction:column; position:relative; transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-featured{ background: var(--navy); border-color: var(--navy); }
.price-featured h3, .price-featured .price-sub, .price-featured li{ color:#fff; }
.price-featured li{ color: var(--text-body-dark); }
.price-badge{ position:absolute; top:-13px; left:30px; background: var(--blue); color:#fff; font-size:0.72rem; font-weight:700; padding:5px 14px; border-radius:100px; letter-spacing:0.03em; }
.price-sub{ font-size:0.88rem; margin: 8px 0 22px; }
.price-card ul{ display:flex; flex-direction:column; gap:12px; margin-bottom:28px; flex-grow:1; }
.price-card li{ font-size:0.9rem; padding-left:24px; position:relative; color: var(--text-body); }
.price-card li::before{ content:"—"; position:absolute; left:0; color: var(--blue); }
.price-featured li::before{ color: var(--blue-light); }

/* faq */
.faq-wrap{ max-width:760px; }
.faq-list{ display:flex; flex-direction:column; gap:12px; }
.faq-item{ border:1px solid var(--border); border-radius: var(--radius-sm); overflow:hidden; background: var(--surface); }
.faq-q{
  width:100%; text-align:left; background:none; border:none; padding:20px 22px; font-family:var(--font-body);
  font-size:0.98rem; font-weight:600; color:var(--navy); cursor:pointer;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
}
.faq-q span{ font-size:1.3rem; color: var(--blue); font-weight:400; transition: transform .25s ease; flex-shrink:0; }
.faq-item.open .faq-q span{ transform: rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .3s ease; }
.faq-a p{ padding: 0 22px 20px; font-size:0.92rem; }
.faq-item.open .faq-a{ max-height:220px; }

/* final cta */
.final-cta{ background: linear-gradient(135deg, var(--blue) 0%, #1D4ED8 100%); padding:96px 0; }
.final-cta-inner{ max-width:620px; margin:0 auto; text-align:center; }
.final-cta h2{ color:#fff; margin-bottom:16px; }
.final-cta p{ color: rgba(255,255,255,0.85); margin-bottom:32px; font-size:1.02rem; }

/* footer */
.footer{ background: var(--navy); padding-top:36px; }
.footer-row{
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  padding-bottom:28px; border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-logo{ display:flex; align-items:center; gap:10px; }
.footer-logo-icon{ height:30px; width:auto; }
.footer-logo-text{ display:flex; flex-direction:column; line-height:1.2; }
.footer-logo-name{ font-family:var(--font-display); font-weight:800; font-size:1.05rem; color:#fff; }
.footer-by{ display:block; font-size:0.78rem; color:#64748B; }
.footer-mid{ color: var(--text-body-dark); font-size:0.88rem; }
.footer-side{ display:flex; align-items:center; gap:22px; }
.footer-email{ color: var(--blue-light); font-size:0.88rem; }
.footer-email:hover{ color:#fff; }
.footer-social-icon{ display:flex; align-items:center; justify-content:center; width:34px; height:34px; border:1px solid rgba(255,255,255,0.15); border-radius:8px; color: var(--text-body-dark); transition:.2s ease; }
.footer-social-icon:hover{ color:#fff; border-color:rgba(255,255,255,0.4); }
.footer-social-icon svg{ width:18px; height:18px; }
.footer-trust{
  display:flex; align-items:center; justify-content:center; gap:20px; flex-wrap:wrap;
  padding:24px 0; border-bottom:1px solid rgba(255,255,255,0.08);
}
.footer-trust img{
  height:34px; width:auto; object-fit:contain; background:#fff; border-radius:8px;
  padding:6px 12px;
}
.footer-bottom{ padding:18px 0; }
.footer-bottom-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; color:#64748B; font-size:0.8rem; }
.footer-address{ color:#475569; }

/* ============ ANNOUNCEMENT BAR ============ */
.announce-bar{ background: var(--navy); border-bottom:1px solid rgba(255,255,255,0.08); }
.announce-bar-inner{ display:flex; align-items:center; justify-content:center; gap:12px; padding:9px 24px; flex-wrap:wrap; text-align:center; }
.announce-stars{ color:#F59E0B; font-size:0.85rem; letter-spacing:1px; }
.announce-text{ color: var(--text-body-dark); font-size:0.85rem; }
.announce-text strong{ color:#fff; }
.announce-link{ color: var(--blue-light); font-size:0.85rem; font-weight:600; white-space:nowrap; }
.announce-link:hover{ color:#fff; }

/* ============ FLOATING ACTION BUTTONS ============ */
.fab{
  position: fixed; bottom:24px; width:54px; height:54px; border-radius:50%;
  background: var(--blue); display:flex; align-items:center; justify-content:center;
  box-shadow: 0 8px 24px rgba(37,99,235,0.35); z-index:200; transition: transform .2s ease, background .2s ease;
}
.fab:hover{ background:#1D4ED8; transform: translateY(-3px); }
.fab svg{ width:24px; height:24px; fill:#fff; stroke:none; }
.fab-call{ left:24px; }
.fab-whatsapp{ right:24px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr; gap:40px; }
  .grid-3{ grid-template-columns: 1fr 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .footer-row{ justify-content:flex-start; }
  .logo-grid{ grid-template-columns: repeat(3, 1fr); }
  .slider-prev{ left:8px; }
  .slider-next{ right:8px; }
}

@media (max-width: 720px){
  .nav-links{
    position:fixed; top:66px; left:0; right:0; background: var(--surface); flex-direction:column;
    padding:24px; gap:20px; border-bottom:1px solid var(--border); box-shadow: var(--shadow-md);
    transform: translateY(-130%); opacity:0; transition: transform .25s ease, opacity .25s ease; z-index:99;
  }
  .nav-links.open{ transform: translateY(0); opacity:1; }
  .nav-toggle{ display:flex; }
  .nav-actions .btn-sm{ display:none; }
  .grid-3, .grid-4{ grid-template-columns: 1fr; }
  .hero-ctas{ flex-direction:column; }
  .hero-ctas .btn{ width:100%; }
  .hero-trust{ gap:24px; }
  .footer-row{ flex-direction:column; align-items:flex-start; }
  .footer-side{ flex-wrap:wrap; gap:14px; }
  .footer-bottom-inner{ flex-direction:column; align-items:flex-start; gap:6px; }
  .section{ padding:64px 0; }
  .dash-card{ transform:none; }
  .logo-grid{ grid-template-columns: repeat(2, 1fr); }
  .testi{ padding:28px 24px; }
  .slider-arrow{ width:34px; height:34px; font-size:1.2rem; }
  .fab{ width:48px; height:48px; bottom:16px; }
  .fab-call{ left:16px; }
  .fab-whatsapp{ right:16px; }
  .nav-logo-by{ display:none; }
  .nav-divider{ display:none; }
  .partner-bar-inner{ justify-content:flex-start; }
}
