:root{
  --navy-900:#050E2C;
  --navy-800:#07194B;
  --navy-700:#142C63;
  --navy-600:#223F82;
  --amber-500:#F9A01A;
  --amber-600:#DD8B0A;
  --paper:#F4F6F8;
  --paper-2:#ECEFF3;
  --ink:#10141C;
  --slate-600:#4A5468;
  --slate-500:#6B7686;
  --line:#DCE1E8;
  --line-dark:rgba(255,255,255,0.12);
  --radius:14px;
  --max:1180px;
  --shadow-lg:0 30px 60px -25px rgba(10,21,38,0.35);
  --shadow-sm:0 10px 25px -12px rgba(10,21,38,0.18);
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth; scroll-padding-top:90px;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}
body{
  margin:0;
  font-family:'Inter',sans-serif;
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Space Grotesk',sans-serif;
  margin:0;
  letter-spacing:-0.01em;
}
.mono{ font-family:'IBM Plex Mono',monospace; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.wrap{ max-width:var(--max); margin:0 auto; padding:0 28px; }
section{ position:relative; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'IBM Plex Mono',monospace; font-size:12.5px; letter-spacing:0.14em; text-transform:uppercase;
  color:var(--amber-600); font-weight:600; margin-bottom:18px;
}
.eyebrow::before{ content:""; width:18px; height:1px; background:var(--amber-600); display:inline-block; }
.eyebrow.light{ color:var(--amber-500); }
.eyebrow.light::before{ background:var(--amber-500); }

/* ---------- NAV ---------- */
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(10px);
  transition:box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom:1px solid transparent;
}
header.solid{
  box-shadow:0 6px 24px -14px rgba(7,25,75,0.18);
  border-bottom:1px solid var(--line);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:78px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{ width:38px; height:38px; flex-shrink:0; object-fit:contain; }
.brand-lockup{ height:46px; width:auto; object-fit:contain; display:block; }
.brand-text{ font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:19px; color:var(--navy-900); }
.brand-text b{ color:var(--amber-600); font-weight:700; }
.brand-text-wrap{ display:flex; flex-direction:column; gap:1px; line-height:1.15; }
.brand-tagline{ font-family:'IBM Plex Mono',monospace; font-size:10.5px; color:var(--slate-500); letter-spacing:0.03em; white-space:nowrap; }
.nav-links{ display:flex; align-items:center; gap:36px; }
.nav-links a{
  font-size:14.5px; font-weight:500; color:var(--slate-600);
  transition:color 0.2s ease;
}
.nav-links a:hover{ color:var(--navy-900); }
.nav-cta{
  background:var(--navy-800); color:#fff; font-weight:700; font-size:14px;
  padding:11px 22px; border-radius:999px; transition:background 0.2s ease, transform 0.2s ease;
  white-space:nowrap;
}
.nav-cta:hover{ background:var(--amber-500); color:var(--navy-900); transform:translateY(-1px); }
.nav-toggle{
  display:none; width:40px; height:40px; border-radius:10px; border:1px solid var(--line);
  background:var(--paper); cursor:pointer; align-items:center; justify-content:center;
  flex-direction:column; gap:5px; flex-shrink:0;
}
.nav-toggle span{ width:18px; height:2px; background:var(--navy-800); border-radius:2px; transition:transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-menu{
  display:none; flex-direction:column; gap:2px;
  max-height:0; overflow:hidden; opacity:0;
  background:#fff;
  border-top:1px solid var(--line);
  transition:max-height 0.35s ease, opacity 0.3s ease;
}
.mobile-menu.open{ max-height:420px; opacity:1; }
.mobile-menu a{
  padding:16px 28px; font-size:15.5px; font-weight:500; color:var(--navy-800);
  border-bottom:1px solid var(--line);
}
.mobile-menu a:active{ background:var(--paper); }
.mobile-menu .nav-cta{ margin:16px 28px 22px; text-align:center; color:#fff; }

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 28px; border-radius:999px; font-weight:700; font-size:15px;
  cursor:pointer; border:none; transition:transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary{ background:var(--amber-500); color:var(--navy-900); }
.btn-primary:hover{ background:var(--amber-600); transform:translateY(-2px); box-shadow:0 14px 30px -10px rgba(240,168,60,0.55); }
.btn-ghost{ background:transparent; color:var(--navy-800); border:1.5px solid var(--line); }
.btn-ghost:hover{ border-color:var(--navy-700); background:#fff; }
.btn-dark{ background:var(--navy-800); color:#fff; }
.btn-dark:hover{ background:var(--navy-700); transform:translateY(-2px); }
.btn-block{ width:100%; }

/* ---------- HERO ---------- */
.hero{
  background:radial-gradient(ellipse 80% 55% at 82% -8%, #FFEACB 0%, transparent 55%),
             radial-gradient(ellipse 60% 45% at -5% 15%, #E7ECF7 0%, transparent 60%),
             #FDFDFC;
  color:var(--ink); padding:168px 0 110px; overflow:hidden; position:relative;
}
.hero::before{
  content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(7,25,75,0.07) 1px, transparent 1px);
  background-size:26px 26px;
  mask-image:radial-gradient(ellipse 70% 70% at 60% 20%, black, transparent 75%);
  pointer-events:none;
}
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:start; position:relative; }
.hero h1{ font-size:48px; line-height:1.09; font-weight:700; color:var(--navy-900); margin-bottom:20px; }
.hero h1 em{ font-style:normal; color:var(--amber-600); }
.hero p.lead{ font-size:17.5px; line-height:1.65; color:var(--slate-600); max-width:520px; margin-bottom:28px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:34px; }
.hero-trust{ display:flex; flex-wrap:wrap; gap:22px; }
.hero-trust .item{ display:flex; align-items:center; gap:8px; font-size:13.5px; color:var(--slate-600); font-weight:500; }
.hero-trust .item .ck{ color:#22C55E; font-weight:700; }

/* ---------- HERO FORM (lead capture) ---------- */
.hero-form-card{
  background:#fff; border:1px solid var(--line); border-radius:20px;
  padding:30px 28px 26px; box-shadow:var(--shadow-lg); position:sticky; top:100px;
}
.hero-form-card .badge{
  display:inline-flex; align-items:center; gap:6px; background:#FFF4E2; color:var(--amber-600);
  font-family:'IBM Plex Mono',monospace; font-size:11.5px; font-weight:600; letter-spacing:0.04em;
  padding:6px 12px; border-radius:999px; margin-bottom:16px;
}
.hero-form-card h3{ font-size:22px; color:var(--navy-900); line-height:1.3; margin-bottom:8px; }
.hero-form-card .sub{ font-size:14px; color:var(--slate-500); margin-bottom:22px; line-height:1.5; }
.hero-form-card .field{ margin-bottom:14px; }
.hero-form-card .consent{ font-size:11.5px; margin:2px 0 18px; }
.hero-form-card .microcopy{ display:flex; align-items:center; justify-content:center; gap:6px; font-size:12.5px; color:var(--slate-500); margin-top:14px; }
.hero-form-card .microcopy .ck{ color:#22C55E; }

/* ---------- STICKY MOBILE CTA BAR ---------- */
.mobile-cta-bar{
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:99;
  background:#fff; border-top:1px solid var(--line); box-shadow:0 -8px 24px -12px rgba(10,21,38,0.2);
  padding:10px 16px; gap:10px;
}
.mobile-cta-bar a{
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 10px; border-radius:12px; font-weight:700; font-size:14px;
}
.mobile-cta-bar .call{ background:var(--navy-800); color:#fff; }
.mobile-cta-bar .whatsapp{ background:#25D366; color:#fff; }

/* ---------- FLOATING WHATSAPP BUTTON (desktop/tablet) ---------- */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:98;
  width:60px; height:60px; border-radius:50%; background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 24px -6px rgba(37,211,102,0.55), 0 4px 12px -2px rgba(10,21,38,0.25);
  transition:transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-float:hover{ transform:translateY(-3px) scale(1.05); box-shadow:0 14px 30px -6px rgba(37,211,102,0.65), 0 6px 16px -2px rgba(10,21,38,0.3); }
.wa-float svg{ width:30px; height:30px; }

/* ---------- SECTION HEADS ---------- */
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size:36px; line-height:1.18; font-weight:700; color:var(--navy-900); }
.section-head p{ font-size:16.5px; color:var(--slate-600); line-height:1.65; margin-top:14px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }

section.light{ background:#fff; padding:110px 0; }
section.tint{ background:var(--paper); padding:110px 0; }
section.dark{ background:var(--navy-900); color:#fff; padding:110px 0; }
section.showcase{ background:#fff; padding:110px 0; position:relative; }
section.showcase::before{
  content:""; position:absolute; inset:0;
  background-image:radial-gradient(rgba(7,25,75,0.05) 1px, transparent 1px);
  background-size:24px 24px;
  mask-image:radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent 80%);
  pointer-events:none;
}
section.showcase .wrap{ position:relative; }

/* ---------- CHALLENGE ---------- */
.challenge-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.challenge-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:20px; }
.challenge-list li{ display:flex; gap:16px; align-items:flex-start; font-size:16px; color:var(--slate-600); line-height:1.6; }
.challenge-list .ic{
  flex-shrink:0; width:34px; height:34px; border-radius:10px; background:#FFF4E2; color:var(--amber-600);
  display:flex; align-items:center; justify-content:center; font-weight:700; font-family:'IBM Plex Mono',monospace; font-size:15px;
}
.principle-box{
  background:var(--navy-800); color:#fff; border-radius:var(--radius); padding:34px;
  display:flex; flex-direction:column; gap:18px;
}
.principle-box .k{ font-family:'IBM Plex Mono',monospace; color:var(--amber-500); font-size:13px; letter-spacing:0.08em; text-transform:uppercase; }
.principle-box h3{ font-size:23px; color:#fff; line-height:1.35; }
.principle-box p{ color:rgba(255,255,255,0.68); font-size:15px; line-height:1.65; margin:0; }

/* ---------- SERVICES ---------- */
.service-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.service-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:30px 26px;
  transition:transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover{ transform:translateY(-5px); box-shadow:var(--shadow-sm); border-color:transparent; }
.service-card .icon{
  width:46px; height:46px; border-radius:12px; background:var(--navy-800); color:var(--amber-500);
  display:flex; align-items:center; justify-content:center; margin-bottom:20px; font-size:20px;
}
.service-card h3{ font-size:19px; margin-bottom:10px; color:var(--navy-900); }
.service-card p{ font-size:14.5px; color:var(--slate-600); line-height:1.6; margin:0 0 16px; }
.chip-row{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--navy-700);
  background:var(--paper-2); padding:5px 10px; border-radius:6px;
}

/* ---------- ADVANCED / DARK ---------- */
.adv-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:20px; }
.adv-card{
  background:#fff; border:1px solid var(--line); border-top:3px solid var(--navy-800); border-radius:var(--radius);
  padding:30px; box-shadow:var(--shadow-sm); transition:transform 0.25s ease, border-color 0.25s ease;
}
.adv-card:hover{ transform:translateY(-4px); border-top-color:var(--amber-500); }
.adv-card .tag{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--amber-600); letter-spacing:0.08em; margin-bottom:14px; display:block; }
.adv-card h3{ font-size:21px; color:var(--navy-900); margin-bottom:12px; }
.adv-card p{ color:var(--slate-600); font-size:14.5px; line-height:1.65; margin:0 0 16px; }
.adv-card ul{ margin:0; padding-left:18px; color:var(--slate-600); font-size:14px; line-height:1.9; }

/* ---------- PROCESS ---------- */
.process-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; border-top:1px solid var(--line); border-left:1px solid var(--line); }
.process-cell{ border-right:1px solid var(--line); border-bottom:1px solid var(--line); padding:34px 30px; }
.process-cell .num{ font-family:'IBM Plex Mono',monospace; font-size:13px; color:var(--amber-600); margin-bottom:14px; }
.process-cell h3{ font-size:19px; color:var(--navy-900); margin-bottom:8px; }
.process-cell p{ font-size:14.5px; color:var(--slate-600); line-height:1.6; margin:0; }

/* ---------- WHY US ---------- */
.why-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.why-item{ display:flex; flex-direction:column; gap:10px; }
.why-item .icon{ font-size:22px; }
.why-item h4{ font-size:17px; color:var(--navy-900); }
.why-item p{ font-size:14.5px; color:var(--slate-600); line-height:1.6; margin:0; }

/* honest-note strip */
.honest-strip{
  margin-top:60px; border:1px dashed var(--line); border-radius:var(--radius); padding:22px 26px;
  display:flex; gap:16px; align-items:flex-start; background:#fff;
}
.honest-strip .ic{ font-size:20px; }
.honest-strip p{ margin:0; font-size:14.5px; color:var(--slate-600); line-height:1.6; }
.honest-strip strong{ color:var(--navy-900); }

/* ---------- FOUNDER ---------- */
.founder-grid{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:40px; align-items:start; margin-top:10px; }
.founder-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:34px; box-shadow:var(--shadow-sm); }
.founder-avatar{
  width:64px; height:64px; border-radius:50%; background:var(--navy-800); color:var(--amber-500);
  display:flex; align-items:center; justify-content:center; font-family:'Space Grotesk',sans-serif;
  font-weight:700; font-size:22px; margin-bottom:18px; overflow:hidden;
}
.founder-avatar img{ width:100%; height:100%; object-fit:cover; }
.founder-card h3{ font-size:22px; color:var(--navy-900); margin-bottom:4px; }
.founder-role{ font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:var(--amber-600); letter-spacing:0.04em; margin:0 0 16px; }
.founder-bio{ font-size:14.5px; color:var(--slate-600); line-height:1.65; margin:0 0 20px; }
.founder-stats{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.founder-stat{
  background:#fff; border:1px solid var(--line); border-top:3px solid var(--navy-800); border-radius:var(--radius);
  padding:24px 20px; transition:transform 0.25s ease, border-color 0.25s ease;
}
.founder-stat:hover{ transform:translateY(-4px); border-top-color:var(--amber-500); }
.founder-stat .num{ display:block; font-family:'Space Grotesk',sans-serif; font-weight:700; font-size:30px; color:var(--navy-900); line-height:1; margin-bottom:8px; }
.founder-stat .lbl{ display:block; font-size:13px; color:var(--slate-600); line-height:1.5; }

/* ---------- CONTACT / FORM ---------- */
.contact-section{ background:var(--paper); padding:110px 0; }
.contact-grid{ display:grid; grid-template-columns:0.85fr 1.15fr; gap:60px; }
.contact-info h2{ font-size:34px; color:var(--navy-900); margin-bottom:16px; line-height:1.2; }
.contact-info p{ color:var(--slate-600); font-size:15.5px; line-height:1.7; margin-bottom:36px; }
.info-row{ display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.info-row .ic{
  width:38px; height:38px; border-radius:10px; background:#fff; border:1px solid var(--line); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:16px;
}
.info-row .lbl{ font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--slate-500); letter-spacing:0.06em; text-transform:uppercase; margin-bottom:3px; }
.info-row .val{ font-size:15px; color:var(--navy-900); line-height:1.55; }
.info-row a.val:hover{ color:var(--amber-600); }

.form-card{ background:#fff; border:1px solid var(--line); border-radius:20px; padding:38px; color:var(--ink); box-shadow:var(--shadow-lg); }
.form-card h3{ font-size:21px; color:var(--navy-900); margin-bottom:6px; }
.form-card .sub{ font-size:14px; color:var(--slate-500); margin-bottom:26px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field{ margin-bottom:16px; }
.field.full{ grid-column:1 / -1; }
label{ display:block; font-size:13px; font-weight:600; color:var(--navy-800); margin-bottom:7px; }
input, select, textarea{
  width:100%; border:1.5px solid var(--line); border-radius:10px; padding:12px 14px;
  font-family:'Inter',sans-serif; font-size:14.5px; color:var(--ink); background:#fbfbfc;
  transition:border-color 0.2s ease, box-shadow 0.2s ease;
}
input:focus, select:focus, textarea:focus{
  outline:none; border-color:var(--navy-700); box-shadow:0 0 0 4px rgba(27,53,99,0.1); background:#fff;
}
textarea{ resize:vertical; min-height:90px; }
.consent{ display:flex; gap:10px; align-items:flex-start; font-size:12.5px; color:var(--slate-500); margin:6px 0 22px; line-height:1.55; }
.consent input{ width:auto; margin-top:3px; }

.contact-cta-card{
  background:#fff; border:1px solid var(--line); border-radius:20px; padding:44px 38px;
  box-shadow:var(--shadow-lg); text-align:center; align-self:center;
}
.contact-cta-card .badge{
  display:inline-flex; align-items:center; gap:6px; background:#FFF4E2; color:var(--amber-600);
  font-family:'IBM Plex Mono',monospace; font-size:11.5px; font-weight:600; letter-spacing:0.04em;
  padding:6px 12px; border-radius:999px; margin-bottom:18px;
}
.contact-cta-card h3{ font-size:24px; color:var(--navy-900); line-height:1.3; margin-bottom:10px; }
.contact-cta-card .sub{ font-size:15px; color:var(--slate-500); margin-bottom:26px; line-height:1.6; }

/* ---------- FOOTER ---------- */
footer{ background:#070D19; color:rgba(255,255,255,0.6); padding:50px 0 26px; }
.footer-top{ display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:24px; padding-bottom:30px; }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.footer-logo-wrap{ display:inline-flex; align-items:center; background:#fff; border-radius:12px; padding:10px 18px; }
.footer-logo-img{ height:36px; width:auto; object-fit:contain; display:block; }
.footer-tagline{ font-size:14px; color:rgba(255,255,255,0.6); line-height:1.6; max-width:340px; margin:0; }
.footer-contact{ display:flex; flex-direction:column; gap:8px; align-items:flex-end; text-align:right; }
.footer-contact a, .footer-contact span{ font-size:14px; color:rgba(255,255,255,0.68); }
.footer-contact a:hover{ color:var(--amber-500); }
.footer-bottom{ border-top:1px solid rgba(255,255,255,0.1); padding-top:22px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
.footer-bottom p{ margin:0; font-size:13px; color:rgba(255,255,255,0.45); }
.footer-legal{ display:flex; gap:22px; }
.footer-legal a{ font-size:13px; color:rgba(255,255,255,0.45); }
.footer-legal a:hover{ color:#fff; }
.social-row{ display:flex; gap:10px; margin-top:18px; }
.social-row a{
  width:36px; height:36px; border-radius:50%; border:1px solid var(--line); color:var(--navy-800); background:#fff;
  display:flex; align-items:center; justify-content:center; font-size:14px; transition:background 0.2s ease, border-color 0.2s ease;
}
.social-row a:hover{ background:var(--amber-500); border-color:var(--amber-500); color:var(--navy-900); }

/* reveal animation */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px){
  .hero-grid, .challenge-grid, .contact-grid{ grid-template-columns:1fr; }
  .hero-form-card{ position:static; }
  .service-grid{ grid-template-columns:repeat(2,1fr); }
  .adv-grid{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:repeat(2,1fr); }
  .why-grid{ grid-template-columns:repeat(2,1fr); }
  .founder-grid{ grid-template-columns:1fr; }
  .footer-top{ flex-direction:column; }
  .footer-contact{ align-items:flex-start; text-align:left; }
  .hero h1{ font-size:38px; }
}
@media (max-width: 720px){
  .nav-links{ display:none; }
  .nav-toggle{ display:flex; }
  .nav-inner .nav-cta{ display:none; }
  .brand-tagline{ display:none; }
  .hero{ padding:120px 0 40px; }
  .hero h1{ font-size:31px; }
  section.light, section.tint, section.dark, .contact-section{ padding:70px 0; }
  .service-grid{ grid-template-columns:1fr; }
  .process-grid{ grid-template-columns:1fr; }
  .why-grid{ grid-template-columns:1fr; }
  .founder-stats{ grid-template-columns:1fr; }
  .form-row{ grid-template-columns:1fr; }
  .section-head h2{ font-size:28px; }
  body{ padding-bottom:74px; }
  .mobile-cta-bar{ display:flex; }
  .wa-float{ display:none; }
}
