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

:root {
  --blue: #357598;
  --blue-light: #5cb8e0;
  --blue-glow: rgba(53,117,152,0.35);
  --blue-faint: rgba(53,117,152,0.12);
  --bg: #07090f;
  --bg2: #0d1117;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --border-blue: rgba(53,117,152,0.5);
  --text: #f0f3f8;
  --muted: #b0bdd0;
  --font: 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NOISE + GRADIENT BG */
body::before {
  content:'';
  position:fixed; inset:0; z-index:0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(53,117,152,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(53,117,152,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 10% 60%, rgba(53,117,152,0.08) 0%, transparent 55%);
  pointer-events:none;
}

.container { width:90%; max-width:1200px; margin:0 auto; position:relative; z-index:1; }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; width:100%;
  z-index:999;
  padding:1.4rem 0;
  transition:all .4s var(--ease);
}
nav.scrolled {
  background:rgba(7,9,15,0.7);
  backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border);
  padding:1rem 0;
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.logo-img { height: 76px; }
.nav-links { display:flex; gap:2.5rem; align-items:center; }
.nav-links a { color:var(--text); font-size:.9rem; font-weight:500; text-decoration:none; transition:color .3s; opacity:0.8; }
.nav-links a:hover { opacity:1; color:var(--blue-light); }
.nav-cta { padding: 0.7rem 1.5rem; font-size: 0.85rem; }

/* ── BUTTONS ── */
.btn {
  display:inline-flex; align-items:center; gap:.6rem;
  padding:1rem 2.2rem; border-radius:12px;
  font-family:var(--font); font-weight:700; font-size:.9rem;
  cursor:pointer; text-decoration:none; transition:all .35s var(--ease);
  border:none; position:relative; overflow:hidden;
}
.btn::after {
  content:''; position:absolute; top:0; left:-100%; width:60%; height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.15),transparent);
  transition:left .5s var(--ease);
}
.btn:hover::after { left:120%; }
.btn-glow {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color:#fff;
  box-shadow:0 8px 32px var(--blue-glow);
}
.btn-glow:hover { transform:translateY(-3px) scale(1.02); box-shadow:0 16px 48px rgba(53,117,152,0.45); }
.btn-ghost {
  background:var(--card);
  border:1px solid var(--border);
  color:var(--text);
  backdrop-filter:blur(8px);
}
.btn-ghost:hover { background:rgba(255,255,255,0.1); border-color:var(--border-blue); transform:translateY(-3px); }

/* ── SECTION HEADERS ── */
.section-tag {
  display:inline-block; padding:.45rem 1.4rem;
  background:var(--blue-faint); border:1px solid var(--border-blue);
  color:var(--blue-light); border-radius:100px;
  font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  margin-bottom:1.8rem;
}
.section-title {
  font-size:clamp(2rem,4vw,3.2rem); font-weight:800;
  letter-spacing:-.03em; line-height:1.15; margin-bottom:1.5rem;
}
.section-sub { font-size:1.05rem; color:var(--muted); max-width:640px; line-height:1.85; }

/* ── SECTION DIVIDER ── */
section + section::before {
  content:''; display:block; width:60%; max-width:600px; height:1px; margin:0 auto;
  background:linear-gradient(90deg, transparent, var(--border-blue), transparent);
}

/* ── GLASS CARD ── */
.glass {
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:24px;
  transition:all .45s var(--ease);
}
.glass:hover {
  border-color:var(--border-blue);
  background:rgba(255,255,255,0.09);
  transform:translateY(-6px);
  box-shadow:0 20px 60px rgba(0,0,0,0.25), 0 0 30px rgba(53,117,152,0.06);
}

/* ── ICON WRAPPER ── */
.icon-wrap {
  width:56px; height:56px; border-radius:16px;
  background:linear-gradient(135deg, rgba(53,117,152,0.2), rgba(53,117,152,0.08));
  border:1px solid rgba(53,117,152,0.3);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.8rem;
  transition:all .4s var(--ease);
}
.icon-wrap i, .icon-wrap svg { width:24px; height:24px; stroke:var(--blue-light); stroke-width:1.8; }
.glass:hover .icon-wrap { background:linear-gradient(135deg, rgba(53,117,152,0.35), rgba(53,117,152,0.15)); transform:scale(1.08); }
.icon-wrap.sm { width:48px; height:48px; border-radius:14px; margin:0 auto 1.5rem; }
.icon-wrap.sm i, .icon-wrap.sm svg { width:20px; height:20px; }
.icon-wrap.glow { box-shadow:0 8px 24px rgba(53,117,152,0.25); border-color:var(--blue); }

/* ── REVEAL ANIMATION ── */
[data-reveal] { opacity:0; transform:translateY(40px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].visible { opacity:1; transform:translateY(0); }
[data-reveal]:nth-child(2) { transition-delay:.08s; }
[data-reveal]:nth-child(3) { transition-delay:.16s; }
[data-reveal]:nth-child(4) { transition-delay:.24s; }
[data-reveal]:nth-child(5) { transition-delay:.32s; }
[data-reveal]:nth-child(6) { transition-delay:.4s; }
[data-reveal]:nth-child(7) { transition-delay:.48s; }
[data-reveal]:nth-child(8) { transition-delay:.56s; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height:100vh;
  display:flex; align-items:center;
  padding: 140px 0 100px;
  position:relative;
  overflow:hidden;
}
.hero::after {
  content:'';
  position:absolute; bottom:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg, transparent, var(--border-blue), transparent);
}
.hero-grid {
  display:grid; grid-template-columns:1.1fr 0.9fr;
  gap:4rem; align-items:center;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:.6rem;
  padding:.5rem 1.2rem;
  background:var(--blue-faint); border:1px solid var(--border-blue);
  border-radius:100px; font-size:.8rem; font-weight:600;
  color:var(--blue-light); margin-bottom:2rem;
}
.hero-badge span { width:7px; height:7px; border-radius:50%; background:var(--blue-light); animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{ opacity:1; } 50%{ opacity:.3; } }

.hero h1 {
  font-size:clamp(2.4rem,4.5vw,4.2rem);
  font-weight:900; letter-spacing:-.04em; line-height:1.08;
  margin-bottom:2rem;
}
.hero h1 .grad {
  background:linear-gradient(135deg,#fff 20%,var(--blue-light) 80%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.hero-sub { font-size:1.1rem; color:#c5d0e0; line-height:1.85; margin-bottom:3rem; max-width:560px; }
.hero-ctas { display:flex; gap:1rem; flex-wrap:wrap; }
.hero-trust {
  display:flex; gap:2rem; margin-top:3.5rem;
  padding-top:2.5rem; border-top:1px solid var(--border);
}
.trust-stat strong { display:block; font-size:1.5rem; font-weight:800; color:var(--text); }
.trust-stat span { font-size:.8rem; color:#9aacbf; }

/* HERO RIGHT — CSS Dashboard Mockup */
.hero-visual { position:relative; }
.dash-mock {
  border-radius:20px; overflow:hidden;
  border:1px solid var(--border-blue);
  background:rgba(13,17,23,0.95);
  box-shadow:0 40px 100px rgba(0,0,0,0.5), 0 0 60px rgba(53,117,152,0.08);
  animation:float 8s ease-in-out infinite;
}
@keyframes float { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-12px); } }

/* Browser top bar */
.dash-topbar {
  display:flex; align-items:center; gap:1rem; padding:.8rem 1.2rem;
  background:rgba(255,255,255,0.04); border-bottom:1px solid rgba(255,255,255,0.08);
}
.dash-dots { display:flex; gap:6px; }
.dash-dots span { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.15); }
.dash-dots span:first-child { background:#ff5f57; }
.dash-dots span:nth-child(2) { background:#ffbd2e; }
.dash-dots span:last-child { background:#28c840; }
.dash-url { font-size:.7rem; color:rgba(255,255,255,0.35); background:rgba(255,255,255,0.05); padding:.3rem 1rem; border-radius:6px; flex:1; text-align:center; }

/* Dashboard body */
.dash-body { display:flex; min-height:280px; }
.dash-sidebar { width:48px; background:rgba(255,255,255,0.02); border-right:1px solid rgba(255,255,255,0.06); padding:1rem .6rem; display:flex; flex-direction:column; gap:.6rem; }
.dash-nav-item { width:100%; aspect-ratio:1; border-radius:8px; background:rgba(255,255,255,0.06); }
.dash-nav-item.active { background:linear-gradient(135deg,var(--blue),var(--blue-light)); box-shadow:0 4px 12px var(--blue-glow); }

/* Main content area */
.dash-main { flex:1; padding:1.2rem; display:flex; flex-direction:column; gap:1rem; }
.dash-row { display:grid; grid-template-columns:1fr 1fr 1fr; gap:.8rem; }
.dash-stat-card { padding:1rem; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06); border-radius:10px; }
.dash-stat-num { font-size:1.1rem; font-weight:800; color:var(--text); margin-bottom:.2rem; }
.dash-stat-label { font-size:.6rem; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:.08em; margin-bottom:.6rem; }
.dash-bar { height:4px; background:rgba(255,255,255,0.08); border-radius:4px; overflow:hidden; }
.dash-bar-fill { height:100%; background:linear-gradient(90deg,var(--blue),var(--blue-light)); border-radius:4px; }
.dash-bar-fill.green { background:linear-gradient(90deg,#28c840,#51cf66); }

/* Chart */
.dash-chart { flex:1; padding:1rem; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); border-radius:10px; display:flex; flex-direction:column; }
.dash-chart-title { font-size:.65rem; color:rgba(255,255,255,0.4); text-transform:uppercase; letter-spacing:.1em; margin-bottom:.8rem; }
.dash-chart-bars { flex:1; display:flex; align-items:flex-end; gap:6px; min-height:80px; }
.dash-cbar { flex:1; background:rgba(53,117,152,0.25); border-radius:4px 4px 0 0; transition:background .3s; }
.dash-cbar.active { background:linear-gradient(180deg,var(--blue-light),var(--blue)); box-shadow:0 -4px 16px var(--blue-glow); }

.floating-badge {
  position:absolute; padding:.8rem 1.3rem;
  background:rgba(7,9,15,0.9); backdrop-filter:blur(16px);
  border:1px solid var(--border-blue); border-radius:12px;
  font-size:.8rem; font-weight:600; white-space:nowrap;
}
.fb1 { top:-16px; right:-10px; }
.fb2 { bottom:30px; left:-20px; }
.fb-dot { width:8px; height:8px; border-radius:50%; background:#28c840; display:inline-block; margin-right:.5rem; }
.fb-dot.orange { background:#ffbd2e; }

/* ══════════════════════════════════════
   TRUST BAR
══════════════════════════════════════ */
.trust-bar {
  padding:3.5rem 0;
  background:rgba(255,255,255,0.02);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.trust-bar::before { display:none; }
.trust-bar-inner {
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:2rem;
}
.trust-item { text-align:center; flex:1; min-width:120px; }
.trust-item strong { display:block; font-size:2.4rem; font-weight:900; color:var(--blue-light); line-height:1; }
.trust-item span { font-size:.82rem; color:#9aacbf; font-weight:600; margin-top:.5rem; display:block; }
.trust-divider { width:1px; height:50px; background:rgba(255,255,255,0.1); }

/* ══════════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════════ */
.problem { padding:120px 0; }
.problem-wrap { display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:stretch; margin-top:4rem; }
.problem-card { padding:3rem; }
.problem-card .ph { font-size:.78rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; margin-bottom:2rem; padding-bottom:1rem; border-bottom:1px solid var(--border); }
.problem-card.bad .ph { color:#ff6b6b; }
.problem-card.good .ph { color:#51cf66; }
.problem-card.bad { border-color:rgba(255,107,107,0.15) !important; }
.problem-card.good { border-color:rgba(81,207,102,0.15) !important; }
.plist { list-style:none; }
.plist li { display:flex; align-items:flex-start; gap:1rem; padding:.85rem 0; border-bottom:1px solid rgba(255,255,255,0.06); font-size:.92rem; color:var(--text); }
.plist li:last-child { border-bottom:none; }
.plist li .pi { width:24px; height:24px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.7rem; flex-shrink:0; margin-top:2px; }
.pi.x { background:rgba(255,107,107,.12); color:#ff6b6b; }
.pi.c { background:rgba(81,207,102,.12); color:#51cf66; }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services { padding:100px 0; }
.services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.2rem; margin-top:3.5rem; }
.svc-card { padding:2.5rem 2rem; position:relative; }
.svc-card h3 { font-size:1.05rem; font-weight:700; margin-bottom:.7rem; transition:color .3s; }
.svc-card:hover h3 { color:var(--blue-light); }
.svc-card p { font-size:.85rem; color:var(--muted); line-height:1.75; }

/* ══════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════ */
.industries { padding:100px 0; }
.ind-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; margin-top:3.5rem; }
.ind-card { padding:2.5rem 2rem; }
.ind-card h3 { font-size:1.1rem; font-weight:700; margin-bottom:.7rem; transition:color .3s; }
.ind-card:hover h3 { color:var(--blue-light); }
.ind-card p { font-size:.85rem; color:var(--muted); line-height:1.7; }

/* ══════════════════════════════════════
   HOW WE WORK
══════════════════════════════════════ */
.process { padding:100px 0; }
.process-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:1rem; margin-top:4rem; position:relative; }
.process-grid::before {
  content:''; position:absolute; top:32px; left:12%; right:12%;
  height:2px; background:linear-gradient(90deg,transparent,var(--border-blue),transparent);
}
.step-card { text-align:center; padding:2rem 1.2rem; position:relative; z-index:1; }
.step-num {
  width:52px; height:52px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--blue-light));
  display:flex; align-items:center; justify-content:center;
  font-size:1rem; font-weight:900; margin:0 auto 1.5rem;
  box-shadow:0 6px 20px var(--blue-glow);
  transition:transform .4s var(--ease), box-shadow .4s;
}
.step-card:hover .step-num { transform:scale(1.12); box-shadow:0 10px 32px var(--blue-glow); }
.step-card h3 { font-size:.95rem; font-weight:700; margin-bottom:.5rem; }
.step-card p { font-size:.8rem; color:var(--muted); line-height:1.7; }

.process-quote {
  margin-top:4rem; padding:3rem 3.5rem;
  background:linear-gradient(135deg, rgba(53,117,152,0.08), rgba(53,117,152,0.02));
  border:1px solid var(--border-blue); border-radius:20px; text-align:center;
}
.process-quote p { font-size:1.2rem; font-weight:600; line-height:1.65; font-style:italic; color:#dce4f0; }
.process-quote cite { display:block; margin-top:1.2rem; font-size:.82rem; color:#8a9ab0; font-style:normal; }

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why { padding:100px 0; }
.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; margin-top:3.5rem; }
.why-card { padding:2.5rem; }
.why-card h3 { font-size:1.05rem; font-weight:700; margin-bottom:.7rem; transition:color .3s; }
.why-card:hover h3 { color:var(--blue-light); }
.why-card p { font-size:.85rem; color:var(--muted); line-height:1.7; }
.why-card:nth-child(4),.why-card:nth-child(5) { grid-column:span 1; }

/* ══════════════════════════════════════
   PRICING
══════════════════════════════════════ */
.pricing { padding:100px 0; }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3.5rem; align-items:start; }
.price-card { padding:3rem 2.5rem; display:flex; flex-direction:column; }
.price-card.featured {
  border-color:var(--blue) !important;
  background:linear-gradient(160deg, rgba(53,117,152,0.15), rgba(53,117,152,0.03)) !important;
  transform:scale(1.04);
}
.price-card.featured:hover { transform:scale(1.06) translateY(-6px); }
.price-badge {
  display:inline-block; padding:.35rem 1rem;
  background:linear-gradient(135deg,var(--blue),var(--blue-light)); color:#fff; border-radius:100px;
  font-size:.68rem; font-weight:700; letter-spacing:.08em;
  margin-bottom:1.5rem; width:fit-content; text-transform:uppercase;
}
.price-card h3 { font-size:1.35rem; font-weight:800; margin-bottom:.5rem; }
.price-timeline { font-size:.82rem; color:var(--blue-light); font-weight:600; margin-bottom:1.2rem; }
.price-card > p { font-size:.88rem; color:var(--muted); margin-bottom:1.8rem; line-height:1.7; }
.price-list { list-style:none; margin-bottom:2rem; flex:1; }
.price-list li { padding:.65rem 0; border-bottom:1px solid rgba(255,255,255,0.06); font-size:.88rem; color:var(--text); display:flex; align-items:center; gap:.8rem; }
.price-list li::before { content:'✓'; color:var(--blue-light); font-weight:700; flex-shrink:0; }
.price-list li:last-child { border-bottom:none; }

/* ══════════════════════════════════════
   QUOTES
══════════════════════════════════════ */
.quotes { padding:100px 0; overflow:hidden; background:#07090f; position:relative; z-index:1; }
.marquee-wrap { margin-top:3rem; position:relative; }
.marquee-track { display:flex; gap:1.2rem; width:max-content; animation:marquee 45s linear infinite; }
.marquee-track:hover { animation-play-state:paused; }
@keyframes marquee { 0%{ transform:translateX(0); } 100%{ transform:translateX(-50%); } }
.quotes-cta { text-align:center; margin-top:3.5rem; }
.quotes-cta p { color:var(--text); margin-bottom:1.8rem; font-size:1.1rem; }

/* ══════════════════════════════════════
   PROOF / CASE STUDIES
══════════════════════════════════════ */
.proof { padding:100px 0; }
.case-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.2rem; margin-top:3.5rem; }
.case-card { padding:2.5rem; }
.case-tag { font-size:.72rem; font-weight:700; color:var(--blue-light); text-transform:uppercase; letter-spacing:.1em; margin-bottom:.8rem; display:block; }
.case-card h3 { font-size:1.15rem; font-weight:700; margin-bottom:.8rem; transition:color .3s; }
.case-card:hover h3 { color:var(--blue-light); }
.case-card p { font-size:.85rem; color:var(--muted); line-height:1.7; }

/* ══════════════════════════════════════
   COMPARISON
══════════════════════════════════════ */
.compare { padding:100px 0; }
.compare-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-top:3.5rem; }
.cmp-card { padding:2.2rem 1.8rem; text-align:center; }
.cmp-card.skylinx { border-color:var(--blue) !important; background:linear-gradient(160deg,rgba(53,117,152,0.12),rgba(255,255,255,0.02)) !important; }
.cmp-card.skylinx:hover { box-shadow:0 20px 60px rgba(53,117,152,0.15); }
.cmp-card h3 { font-size:1rem; font-weight:700; margin-bottom:.8rem; }
.cmp-card p { font-size:.85rem; color:var(--muted); line-height:1.7; }

/* ══════════════════════════════════════
   QUOTES FIX
══════════════════════════════════════ */
.q-card {
  padding:2rem 2.5rem; min-width:320px; max-width:400px; flex-shrink:0;
  background:rgba(255,255,255,0.05); border:1px solid var(--border); border-radius:20px;
  font-size:.95rem; color:var(--text); line-height:1.8;
}
.q-card::before {
  content:'\201C'; font-size:3rem; line-height:1; color:var(--blue-light);
  display:block; margin-bottom:.5rem; font-style:normal; font-family:Georgia,serif;
}

/* ══════════════════════════════════════
   FINAL CTA + FORM
══════════════════════════════════════ */
.final-cta { padding:120px 0; position:relative; }
.final-cta::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 70% at 50% 50%, rgba(53,117,152,0.12), transparent 70%);
  pointer-events:none;
}
.final-cta-box {
  display:grid; grid-template-columns:1fr 1.1fr; gap:5rem; align-items:start;
  padding:5rem; background:rgba(255,255,255,0.03); backdrop-filter:blur(24px);
  border:1px solid var(--border-blue); border-radius:48px; position:relative;
}
.cta-left { text-align:left; }
.cta-left h2 { font-size:clamp(2rem,4vw,3rem); font-weight:900; margin:1.2rem 0 1.5rem; }
.cta-left > p { color:#c5d0e0; font-size:1rem; line-height:1.8; margin-bottom:2rem; }
.cta-perks { display:flex; flex-direction:column; gap:.8rem; margin-bottom:2.5rem; }
.cta-perk { display:flex; align-items:center; gap:.8rem; font-size:.9rem; color:var(--text); font-weight:500; }
.cta-perk span { color:var(--blue-light); font-weight:700; font-size:1rem; }
.cta-support { font-size:.8rem; color:var(--muted); }

/* Form */
.contact-form {
  background:rgba(255,255,255,0.04); border:1px solid var(--border);
  border-radius:28px; padding:3rem; backdrop-filter:blur(12px);
}
.contact-form h3 { font-size:1.4rem; font-weight:800; margin-bottom:2rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-group { display:flex; flex-direction:column; margin-bottom:1.2rem; }
.form-group label { font-size:.78rem; font-weight:700; color:var(--text); letter-spacing:.06em; text-transform:uppercase; margin-bottom:.6rem; opacity:0.8; }
.form-group input,
.form-group select,
.form-group textarea {
  background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.15);
  border-radius:12px; padding:1rem 1.2rem;
  color:var(--text); font-family:var(--font); font-size:.92rem;
  outline:none; transition:border-color .3s, box-shadow .3s;
  -webkit-appearance:none; appearance:none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(255,255,255,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color:var(--blue); box-shadow:0 0 0 4px var(--blue-glow);
}
.form-group select option { background:var(--bg2); color:var(--text); }
.form-group textarea { resize:vertical; min-height:100px; }
.form-note { font-size:.78rem; color:#9aacbf; text-align:center; margin-top:1rem; }

@media(max-width:900px) {
  .final-cta-box { grid-template-columns:1fr; padding:3rem 2rem; }
  .form-row { grid-template-columns:1fr; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  padding:80px 0 40px;
  border-top:1px solid var(--border);
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:4rem; margin-bottom:4rem; }
.footer-logo { height: 72px; margin-bottom:1.5rem; }
.footer-desc { font-size:.9rem; color:#9aacbf; line-height:1.7; margin-bottom:2rem; }
footer h5 { font-size:.8rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; margin-bottom:1.5rem; color:var(--text); }
footer ul { list-style:none; }
footer ul li { margin-bottom:.8rem; }
footer ul li a { color:#9aacbf; text-decoration:none; font-size:.88rem; transition:all .3s; }
footer ul li a:hover { color:var(--blue-light); padding-left:4px; }
.social-row { display:flex; gap:.8rem; }
.social-btn {
  width:38px; height:38px; border-radius:10px;
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1);
  display:flex; align-items:center; justify-content:center;
  font-size:.8rem; text-decoration:none; color:var(--muted);
  transition:all .35s var(--ease);
}
.social-btn:hover { border-color:var(--blue); color:var(--blue-light); background:rgba(53,117,152,0.12); transform:translateY(-3px); }
.footer-bottom {
  padding-top:2rem; border-top:1px solid var(--border);
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:1rem; font-size:.8rem; color:#9aacbf;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media(max-width:1100px) {
  .hero { padding: 120px 0 60px; }
  .hero-grid { grid-template-columns:1fr; text-align:center; gap: 4rem; }
  .hero h1,.hero-sub,.hero-badge { text-align:center; margin-left:auto; margin-right:auto; }
  .hero-ctas { justify-content:center; }
  .hero-visual { max-width: 600px; margin: 0 auto; display: block; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(3,1fr); }
  .process-grid::before { display:none; }
  .compare-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .q-card { min-width:280px; max-width:340px; }
}

@media(max-width:768px) {
  nav { padding: 1rem 0; background:rgba(7,9,15,0.9); backdrop-filter:blur(10px); border-bottom:1px solid var(--border); }
  .nav-links { display:none; }
  .services-grid { grid-template-columns:1fr; }
  .ind-grid,.compare-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; gap: 2rem; }
  .price-card.featured { transform:none; }
  .price-card.featured:hover { transform: translateY(-6px); }
  .case-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .problem-wrap { grid-template-columns:1fr; }
  .trust-divider { display:none; }
  .trust-bar-inner { justify-content:center; text-align:center; gap:2.5rem; }
  .trust-item { flex: none; width: 45%; }
  .final-cta-box { grid-template-columns:1fr !important; padding:2.5rem 1.5rem !important; gap:3rem !important; }
  .form-row { grid-template-columns:1fr !important; }
  .footer-grid { grid-template-columns:1fr; gap: 3rem; }
  .q-card { min-width:260px; max-width:300px; padding:1.5rem 2rem; font-size:.88rem; }
  .marquee-track { animation-duration:30s; gap:1rem; }
  .process-grid { grid-template-columns:1fr 1fr; }
  .process-quote { padding:2.5rem 2rem; }
  .process-quote p { font-size:1.1rem; }
  .section-title { font-size: 2rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  section, .problem, .services, .industries, .process, .why, .pricing, .quotes, .proof, .compare { padding:60px 0; }
  
  /* Dashboard adjustments */
  .dash-sidebar { display: none; }
  .dash-row { grid-template-columns: 1fr; }
}

@media(max-width:480px) {
  .container { width:92%; }
  .hero { padding-top: 100px; }
  .hero-badge { font-size: 0.7rem; padding: 0.4rem 1rem; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; }
  .trust-item { width: 100%; }
  .trust-item strong { font-size: 2rem; }
  .q-card { min-width:240px; max-width:280px; padding:1.2rem 1.5rem; font-size:.85rem; }
  .final-cta-box { padding:2rem 1.2rem !important; border-radius: 24px; }
  .contact-form { padding:2rem 1.2rem; border-radius: 20px; }
  .process-grid { grid-template-columns:1fr; }
  .cta-left h2 { font-size:1.6rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1.5rem; }
  .nav-cta { padding: 0.6rem 1.2rem; font-size: 0.75rem; }
  .dash-mock { font-size: 0.6rem; }
  .dash-stat-num { font-size: 0.9rem; }
}

/* Form submission additions */
.spinner {
  animation: rotate 2s linear infinite;
}
.spinner .path {
  stroke: currentColor;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% { transform: rotate(360deg); }
}
@keyframes dash {
  0% { stroke-dasharray: 1, 150; stroke-dashoffset: 0; }
  50% { stroke-dasharray: 90, 150; stroke-dashoffset: -35; }
  100% { stroke-dasharray: 90, 150; stroke-dashoffset: -124; }
}
@keyframes scaleUp {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.success-message {
  animation: fadeIn 0.6s ease-out forwards;
}

.form-error-msg {
  color: #ff6b6b;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 1rem;
  text-align: center;
  animation: fadeIn 0.3s ease-out forwards;
}

