/* ============================================================
   STAKLOGIC — style.css
   Build. Customize. Implement. Empower.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,800&display=swap');

*  { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #475569;
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.6;
}

/* ── DESIGN TOKENS ── */
:root {
  --blue:   #2563eb;
  --blue2:  #1d4ed8;
  --teal:   #0891b2;
  --light:  #3b82f6;
  --xlight: #60a5fa;
  --indigo: #4f46e5;
  --violet: #7c3aed;
  --bg:     #ffffff;
  --bg2:    #f8fafc;
  --bg3:    #ffffff;
  --border: #e2e8f0;
  --border-active: #a5b4fc;
  --text1:  #0f172a;
  --text2:  #334155;
  --text3:  #64748b;
}

/* ── GRADIENT UTILITIES ── */
.gt {
  background: linear-gradient(90deg, var(--indigo), var(--teal), var(--blue), var(--indigo));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}
.g-line {
  height: 1px;
  background: linear-gradient(90deg, var(--bg), #c7d2fe, #a5f3fc, #bfdbfe, var(--bg));
  background-size: 300% auto;
  animation: shimmer 5s linear infinite;
}
.sec-divider { height: 1px; background: var(--border); }

/* ── KEYFRAMES ── */
@keyframes shimmer    { 0%{background-position:-300% center} 100%{background-position:300% center} }
@keyframes fadeUp     { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }
@keyframes reveal     { from{opacity:0;transform:translateY(105%)} to{opacity:1;transform:translateY(0)} }
@keyframes ticker     { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes pulse      { 0%,100%{opacity:.35} 50%{opacity:1} }
@keyframes cardIn     { from{opacity:0;transform:translateY(14px)} to{opacity:1;transform:translateY(0)} }
@keyframes orb        { 0%,100%{opacity:.2;transform:scale(1)} 50%{opacity:.5;transform:scale(1.06)} }
@keyframes lineGrow   { from{width:0} to{width:100%} }
@keyframes glitter    { 0%,100%{opacity:.2;transform:scale(.75)} 50%{opacity:.8;transform:scale(1.3)} }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(28px, calc(50% - 620px));
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  transition: padding .25s, box-shadow .25s, background .25s;
}
.nav.scrolled { 
  padding: 12px max(28px, calc(50% - 620px)); 
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  background: rgba(255, 255, 255, 0.95);
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.brand-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 2px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--text1);
  line-height: 1.1;
}
.brand-name span { color: var(--indigo); }
.brand-tag {
  font-size: 8px;
  font-weight: 600;
  color: var(--text3);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  color: var(--text2);
  text-decoration: none;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--indigo), var(--teal));
  transition: width .25s;
  border-radius: 1px;
}
.nav-links a:hover { color: var(--text1); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  color: #fff; border: none;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700;
  padding: 8px 18px; border-radius: 50px;
  cursor: pointer; letter-spacing: .08em; text-transform: uppercase;
  transition: all .25s;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3); }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--text2); border-radius: 1px; transition: all .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 5% 90px;
  min-height: 85vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-canvas { position: absolute; inset: 0; pointer-events: none; }

.hero-inner {
  max-width: 880px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.neb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: orb 12s ease-in-out infinite;
}
.neb1 { width: 900px; height: 500px; background: radial-gradient(ellipse, rgba(99, 102, 241, 0.05) 0%, transparent 65%); top: -120px; left: -250px; }
.neb2 { width: 800px;  height: 500px; background: radial-gradient(ellipse, rgba(8, 145, 178, 0.04) 0%, transparent 65%); top: 40px; right: -220px; animation-delay: 3s; }

.star { position: absolute; pointer-events: none; font-size: 8px; animation: glitter 2.5s ease-in-out infinite; color: #a5b4fc; }

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--indigo);
  padding: 7px 18px; border-radius: 50px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  margin-bottom: 32px;
  position: relative; z-index: 2;
  animation: fadeUp .6s .1s ease both; opacity: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.dot-live { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse 2.5s ease-in-out infinite; }

.h-wrap { overflow: hidden; position: relative; z-index: 2; margin-bottom: 8px; }
.h-line {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 6.5vw, 76px);
  font-weight: 800; letter-spacing: -0.035em; line-height: 1.1;
  color: var(--text1);
  display: block;
  animation: reveal .85s cubic-bezier(.16,1,.3,1) .28s both;
}
.h-line2 { animation-delay: .42s; }
.h-dim {
  font-size: clamp(20px, 3.2vw, 42px);
  font-weight: 400; letter-spacing: -0.015em;
  color: var(--text3);
  animation-delay: .56s;
  line-height: 1.2;
}

.h-sub {
  font-size: 16px; font-weight: 400; color: var(--text2);
  line-height: 1.7; max-width: 580px;
  margin: 24px auto 32px;
  position: relative; z-index: 2;
  animation: fadeUp .8s .68s ease both; opacity: 0;
}

.pill-row {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 32px;
  position: relative; z-index: 2;
  animation: fadeUp .7s .58s ease both; opacity: 0;
}
.p-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-size: 11px; font-weight: 500; color: var(--text2);
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.p-pill i  { font-size: 12px; color: var(--indigo); }

.btn-row {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 2;
  margin-bottom: 48px;
  animation: fadeUp .8s .82s ease both; opacity: 0;
}

.btn-p {
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  color: #fff; border: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  padding: 14px 32px; border-radius: 50px;
  cursor: pointer; letter-spacing: .05em; text-transform: uppercase;
  transition: all .25s;
  display: flex; align-items: center; gap: 8px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}
.btn-p::before {
  content: '';
  position: absolute; inset: 0; border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  opacity: 0; transition: opacity .25s;
}
.btn-p:hover::before { opacity: 1; }
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35); }
.btn-p i, .btn-p span { position: relative; z-index: 1; }

.btn-o {
  background: #ffffff; color: var(--text1);
  border: 1px solid #cbd5e1;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  padding: 14px 32px; border-radius: 50px;
  cursor: pointer; letter-spacing: .05em; text-transform: uppercase;
  transition: all .25s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.btn-o:hover { border-color: #94a3b8; background: #f8fafc; transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.04); }

.metrics {
  display: flex; width: 100%;
  position: relative; z-index: 2;
  border: 1px solid var(--border); border-radius: 16px;
  background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(16px);
  overflow: hidden;
  animation: fadeUp .8s .96s ease both; opacity: 0;
  box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
}
.met {
  flex: 1; padding: 22px 20px; text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.met:last-child { border-right: none; }
.met::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--indigo), var(--teal), transparent);
  transform: scaleX(0); transform-origin: center;
  transition: transform .4s;
}
.met:hover::after { transform: scaleX(1); }
.met-n { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; color: var(--text1); }
.met-l { font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin-top: 3px; }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  padding: 14px 0; overflow: hidden;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.ticker-track { display: flex; width: max-content; animation: ticker 32s linear infinite; }
.ti {
  display: flex; align-items: center; gap: 8px;
  padding: 0 24px;
  font-size: 10px; font-weight: 600; color: var(--text3);
  white-space: nowrap; letter-spacing: .12em; text-transform: uppercase;
}
.ticker-track:hover { animation-play-state: paused; }

/* ============================================================
   SECTIONS
   ============================================================ */
.sec { padding: 90px max(28px, calc(50% - 620px)); position: relative; }
.sec.alt { background: #f8fafc; }

/* Section header */
.sh { margin-bottom: 36px; }
.sh-label {
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--indigo);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.sh-label::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.15), transparent);
  animation: lineGrow 1.2s ease both; border-radius: 1px;
}
.sh-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800; letter-spacing: -0.02em;
  color: var(--text1); line-height: 1.25;
}
.sh-title .it { font-style: italic; font-weight: 500; color: var(--text3); }

/* ============================================================
   BENTO SERVICE GRID
   ============================================================ */
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bc {
  background: var(--bg3); padding: 28px 24px;
  border-radius: 16px; border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
}
.bc:hover { 
  border-color: var(--indigo); 
  transform: translateY(-4px); 
  box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.08), 0 8px 10px -6px rgba(79, 70, 229, 0.08);
}
.bc.tall { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.bc.wide { grid-column: span 2; }

.bc-ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transition: transform .25s;
}
.bc:hover .bc-ico { transform: scale(1.1) rotate(-3deg); }
.ic-b { background: rgba(79, 70, 229, 0.08); color: var(--indigo); }
.ic-t { background: rgba(8, 145, 178, 0.08); color: var(--teal); }
.ic-v { background: rgba(124, 58, 237, 0.08); color: var(--violet); }
.ic-g { background: rgba(22, 163, 74, 0.08); color: #16a34a; }

.bc h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text1); letter-spacing: -0.01em; }
.bc p  { font-size: 12.5px; font-weight: 400; color: var(--text2); line-height: 1.6; }

.b-tag {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px; margin-top: 14px;
}
.tb { background: rgba(79, 70, 229, 0.06);  color: var(--indigo); border: 1px solid rgba(79, 70, 229, 0.12); }
.tt { background: rgba(8, 145, 178, 0.06); color: var(--teal);      border: 1px solid rgba(8, 145, 178, 0.12); }
.tv { background: rgba(124, 58, 237, 0.06); color: var(--violet);      border: 1px solid rgba(124, 58, 237, 0.12); }
.tg { background: rgba(22, 163, 74, 0.06); color: #16a34a;      border: 1px solid rgba(22, 163, 74, 0.12); }
.to { background: rgba(217, 119, 6, 0.06); color: #d97706;      border: 1px solid rgba(217, 119, 6, 0.12); }

/* ============================================================
   AUDIENCE GRID
   ============================================================ */
.aud-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ag {
  background: var(--bg3); padding: 24px;
  border-radius: 16px; border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
.ag:hover { 
  border-color: var(--indigo); 
  transform: translateY(-4px); 
  box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.08), 0 8px 10px -6px rgba(79, 70, 229, 0.08);
}
.ag-emo {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(79, 70, 229, 0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; line-height: 1;
}
.ag h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--text1); margin-bottom: 4px; }
.ag p  { font-size: 12px; font-weight: 400; color: var(--text2); line-height: 1.6; margin-bottom: 10px; }
.a-tag {
  display: inline-flex; align-items: center;
  font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 50px;
  background: rgba(79, 70, 229, 0.05); color: var(--indigo); border: 1px solid rgba(79, 70, 229, 0.12);
}

/* ============================================================
   WHY GRID
   ============================================================ */
.why-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wr { 
  background: var(--bg3); padding: 24px; 
  border-radius: 16px; border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
.wr:hover { 
  border-color: var(--indigo); 
  transform: translateY(-4px); 
  box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.08), 0 8px 10px -6px rgba(79, 70, 229, 0.08);
}
.wr-n { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.wr:nth-child(1) .wr-n { color: var(--indigo); }
.wr:nth-child(2) .wr-n { color: var(--teal); }
.wr:nth-child(3) .wr-n { color: var(--violet); }
.wr:nth-child(4) .wr-n { color: #16a34a; }
.wr h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 700; color: var(--text1); margin-bottom: 4px; }
.wr p  { font-size: 12px; font-weight: 400; color: var(--text2); line-height: 1.6; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-wrap { max-width: 100%; margin: 0 auto; }
.about-lead {
  font-size: 15px; font-weight: 400; color: var(--text2); line-height: 1.7;
  text-align: center; margin-bottom: 40px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.about-lead em { color: var(--text1); font-style: italic; }
.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-card {
  background: var(--bg3); padding: 28px 24px;
  border-radius: 16px; border: 1px solid var(--border);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
.about-card:hover { 
  border-color: var(--indigo); 
  transform: translateY(-4px); 
  box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.08), 0 8px 10px -6px rgba(79, 70, 229, 0.08);
}
.about-ico {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(79, 70, 229, 0.08); border: 1px solid rgba(79, 70, 229, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--indigo); margin-bottom: 16px;
}
.about-card h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: var(--text1); margin-bottom: 6px; }
.about-card p  { font-size: 12px; font-weight: 400; color: var(--text2); line-height: 1.6; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.steps { display: flex; flex-direction: column; gap: 12px; }
.step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 24px; border: 1px solid var(--border);
  cursor: default; border-radius: 16px; transition: all 0.3s ease;
  background: var(--bg);
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.step:hover { 
  border-color: var(--border-active); 
  background: #f8fafc;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}
.st-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 26px; font-weight: 800;
  opacity: .3; width: 36px; flex-shrink: 0; line-height: 1;
  transition: opacity .25s, color .25s; color: var(--text3);
}
.step:hover .st-num { opacity: 1; color: var(--indigo); }
.st-badge {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
  margin-top: 2px; transition: transform .25s;
}
.step:hover .st-badge { transform: scale(1.1) rotate(5deg); }
.step:nth-child(1) .st-badge { background: rgba(79, 70, 229, 0.08); color: var(--indigo); }
.step:nth-child(2) .st-badge { background: rgba(8, 145, 178, 0.08); color: var(--teal); }
.step:nth-child(3) .st-badge { background: rgba(124, 58, 237, 0.08); color: var(--violet); }
.st-body h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; color: var(--text1); margin-bottom: 4px; letter-spacing: .06em; text-transform: uppercase; }
.st-body p  { font-size: 13.5px; font-weight: 400; color: var(--text2); line-height: 1.6; }

/* ============================================================
   TECH PILLS
   ============================================================ */
.pill-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.tech-p {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  font-size: 11px; font-weight: 500; color: var(--text2);
  background: var(--bg);
  letter-spacing: .02em; border-radius: 50px;
  transition: all .25s; cursor: default;
  box-shadow: 0 1px 2px rgba(0,0,0,0.01);
}
.tech-p:hover { border-color: var(--indigo); color: var(--indigo); background: rgba(79, 70, 229, 0.05); transform: translateY(-2px); }
.tech-p i { font-size: 13px; color: var(--indigo); }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testi {
  padding: 80px max(28px, calc(50% - 500px)); text-align: center;
  background: var(--bg); position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.testi::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.03) 0%, transparent 65%);
  pointer-events: none;
}
.q-mark { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 56px; font-weight: 800; line-height: 1; margin-bottom: -10px; display: block; opacity: 0.15; color: var(--indigo); }
.q-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 600; font-style: italic;
  color: var(--text1);
  max-width: 520px; margin: 0 auto 20px; line-height: 1.7;
  position: relative; z-index: 1;
}
.q-line { width: 40px; height: 2px; background: linear-gradient(90deg, var(--indigo), var(--teal)); margin: 0 auto 12px; border-radius: 1px; }
.q-author { font-size: 10px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--text3); }

/* ============================================================
   CTA + FORM
   ============================================================ */
.cta {
  padding: 90px max(28px, calc(50% - 620px)); text-align: center;
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  border-top: 1px solid var(--border);
}
.c-o1 {
  position: absolute; width: 450px; height: 450px; border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.04) 0%, transparent 70%);
  top: -150px; left: -100px;
  animation: orb 12s ease-in-out infinite; pointer-events: none;
}
.c-o2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.03) 0%, transparent 70%);
  bottom: -100px; right: -80px;
  animation: orb 15s 3s ease-in-out infinite reverse; pointer-events: none;
}
.c-ey {
  font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: var(--indigo);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 12px; position: relative; z-index: 1;
}
.c-ey::before, .c-ey::after { content: ''; width: 24px; height: 1px; background: linear-gradient(90deg, var(--indigo), var(--teal)); border-radius: 1px; }
.c-h {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 4.5vw, 42px);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.15;
  color: var(--text1); position: relative; z-index: 1;
}
.c-h .it { font-style: italic; font-weight: 500; color: var(--text3); }
.c-sub {
  font-size: 13.5px; font-weight: 400; color: var(--text2);
  margin: 0 auto 30px; line-height: 1.7;
  position: relative; z-index: 1; max-width: 520px;
}
.form-box {
  background: #ffffff; border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  max-width: 580px; margin: 0 auto;
  position: relative; z-index: 1;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; text-align: left; }
.fg label { font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text2); }
.fi, .fsel, .fta {
  background: #f8fafc; border: 1px solid #cbd5e1;
  border-radius: 8px; padding: 11px 14px;
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 400;
  color: var(--text1); outline: none; transition: border-color .25s, box-shadow .25s; width: 100%;
}
.fi::placeholder, .fta::placeholder { color: #94a3b8; }
.fi:focus, .fsel:focus, .fta:focus { 
  border-color: var(--indigo); 
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08);
}
.fsel { color: var(--text2); cursor: pointer; }
.fsel option { background: #ffffff; color: var(--text1); }
.fta { resize: none; height: 90px; }
.fsub {
  width: 100%;
  background: linear-gradient(135deg, var(--indigo), var(--blue));
  color: #fff; border: none;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  padding: 14px; border-radius: 50px; cursor: pointer;
  letter-spacing: .12em; text-transform: uppercase;
  transition: all .25s; display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 10px; position: relative; overflow: hidden;
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}
.fsub::before { content: ''; position: absolute; inset: 0; border-radius: 50px; background: linear-gradient(135deg, var(--blue), var(--teal)); opacity: 0; transition: opacity .25s; }
.fsub:hover::before { opacity: 1; }
.fsub:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3); }
.fsub i, .fsub span { position: relative; z-index: 1; }
.or-div { display: flex; align-items: center; gap: 10px; margin: 16px 0 12px; }
.or-div::before, .or-div::after { content: ''; flex: 1; height: 1px; background: rgba(0, 0, 0, 0.05); }
.or-div span { font-size: 9px; font-weight: 600; color: var(--text3); letter-spacing: .08em; text-transform: uppercase; }
.ab { display: flex; gap: 10px; justify-content: center; }
.btn-alt {
  background: #ffffff; color: var(--text2);
  border: 1px solid #cbd5e1;
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600;
  padding: 9px 16px; border-radius: 50px; cursor: pointer;
  letter-spacing: .08em; text-transform: uppercase; transition: all .25s;
  display: flex; align-items: center; gap: 6px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.btn-alt:hover { background: #f8fafc; border-color: var(--text2); color: var(--text1); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 60px max(28px, calc(50% - 620px)) 30px; background: #f8fafc; border-top: 1px solid var(--border); }
.fg-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.fb { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }

.foot-logo-img {
  width: 28px; height: 28px;
  object-fit: contain; border-radius: 6px;
  background: #fff; padding: 2px; flex-shrink: 0;
  border: 1px solid var(--border);
}

.fn { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 800; letter-spacing: .5px; color: var(--text1); }
.fn span { color: var(--indigo); }
.f-tag { font-size: 7px; font-weight: 600; color: var(--text3); letter-spacing: .12em; text-transform: uppercase; margin-top: 1px; }
.f-desc { font-size: 12px; font-weight: 400; color: var(--text3); line-height: 1.6; max-width: 240px; }
.fc h5 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--text2); margin-bottom: 12px; }
.fc a  { display: block; font-size: 12.5px; font-weight: 400; color: var(--text3); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.fc a:hover { color: var(--text1); }
.f-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.f-bottom p { font-size: 11px; font-weight: 400; color: var(--text3); }
.socials { display: flex; gap: 8px; }
.soc {
  width: 28px; height: 28px; border-radius: 8px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s;
  color: var(--text3); font-size: 12px; text-decoration: none;
  background: #ffffff;
}
.soc:hover { border-color: var(--indigo); color: var(--indigo); background: rgba(79, 70, 229, 0.05); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bc.tall { grid-row: auto; }
  .bc.wide { grid-column: span 2; }
  .why-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 16px;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98); padding: 24px;
    border-bottom: 1px solid var(--border); z-index: 200;
  }
  .nav-toggle { display: flex; }
  .hero { padding: 80px 24px 60px; min-height: auto; }
  .h-line { font-size: clamp(34px, 7vw, 48px); }
  .h-dim  { font-size: 22px; }
  .metrics { flex-wrap: wrap; }
  .met { flex: 0 0 50%; padding: 16px; border-right: none; border-bottom: 1px solid var(--border); }
  .met:nth-child(odd)  { border-right: 1px solid var(--border); }
  .met:nth-child(3), .met:nth-child(4) { border-bottom: none; }
  
  .bento { grid-template-columns: 1fr; gap: 16px; }
  .bc.tall, .bc.wide { grid-row: auto; grid-column: auto; }
  
  .aud-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 16px; }
  .f-row { grid-template-columns: 1fr; gap: 16px; }
  .fg-grid { grid-template-columns: 1fr; gap: 24px; }
  .nav { padding: 14px 20px; }
  .nav.scrolled { padding: 10px 20px; }
  .sec { padding: 60px 20px; }
  .cta { padding: 60px 20px; }
  .testi { padding: 60px 20px; }
  .footer { padding: 40px 20px 24px; }
}

@media (max-width: 480px) {
  .pill-row { gap: 6px; }
  .p-pill { font-size: 10px; padding: 5px 12px; }
  .why-row { grid-template-columns: 1fr; }
  .metrics .met { padding: 12px 8px; }
  .met-n { font-size: 20px; }
}