/* ================================
   SCALING PILOTS — DESIGN SYSTEM
   Brand: #2563EB blue / #0F172A navy
   ================================ */

:root {
  --navy:       #0F172A;
  --navy-800:   #1E293B;
  --navy-700:   #2D3F55;
  --navy-600:   #475569;
  --blue:       #2563EB;
  --blue-500:   #3B82F6;
  --blue-400:   #60A5FA;
  --blue-light: #93C5FD;
  --white:      #F8FAFC;
  --off-white:  #CBD5E1;
  --muted:      #94A3B8;
  --border:     rgba(255,255,255,0.07);
  --border-blue:rgba(37,99,235,0.3);
  --glow:       rgba(37,99,235,0.28);
  --glow-sm:    rgba(37,99,235,0.14);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --font:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-head:  'Syne', sans-serif;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --trans:      0.25s var(--ease);
  --trans-med:  0.4s var(--ease);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--navy); color: var(--white); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 120px 0; }
.dark-section { background: var(--navy-800); }
.center { text-align: center; }

/* ---- TYPOGRAPHY ---- */
.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue-400);
  margin-bottom: 18px;
}
.label::before { content: ''; width: 20px; height: 2px; background: var(--blue); border-radius: 2px; }
.h1 { font-family: var(--font-head); font-size: clamp(36px, 5vw, 68px); font-weight: 800; line-height: 1.05; letter-spacing: -1px; }
.h2 { font-family: var(--font-head); font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -0.5px; }
.h3 { font-family: var(--font-head); font-size: clamp(20px, 2vw, 26px); font-weight: 700; line-height: 1.2; }
.section-head { margin-bottom: 72px; }
.section-head p.desc { font-size: 17px; color: var(--muted); max-width: 520px; margin-top: 16px; line-height: 1.7; }
.section-head.center .desc { margin-left: auto; margin-right: auto; }
.gradient-text {
  background: linear-gradient(120deg, var(--blue-light) 0%, var(--blue) 50%, #818CF8 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; border-radius: 50px; padding: 14px 28px; transition: var(--trans); cursor: pointer; }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-500); transform: translateY(-2px); box-shadow: 0 16px 48px var(--glow); }
.btn-ghost { border: 1.5px solid var(--border-blue); color: var(--blue-light); }
.btn-ghost:hover { background: var(--glow-sm); border-color: var(--blue); }
.btn-icon { font-size: 18px; transition: transform var(--trans); }
.btn:hover .btn-icon { transform: translateX(4px); }

/* ---- GLASS CARD ---- */
.glass {
  background: rgba(30,41,59,0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ================================
   NAVBAR
   ================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 0; transition: var(--trans-med);
}
.navbar.scrolled {
  background: rgba(15,23,42,0.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 8px 14px; border-radius: 8px; transition: var(--trans);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--white); }
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }
.nav-cta { padding: 10px 22px; font-size: 14px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); display: block; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ================================
   HERO — SPLIT LAYOUT
   ================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}
/* Radial background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(147,197,253,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 2;
  padding: 60px 0;
}

/* LEFT — Content */
.hero-content { order: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.35);
  padding: 8px 18px; border-radius: 50px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--blue-light);
  margin-bottom: 28px;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,99,235,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(37,99,235,0); }
}
.hero-title { margin-bottom: 22px; }
.hero-title .block { display: block; }
.hero-sub {
  font-size: 17px; color: var(--muted); max-width: 480px;
  margin-bottom: 40px; line-height: 1.75;
}
.hero-stats {
  display: flex; gap: 0;
  background: rgba(30,41,59,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
}
.hero-stat {
  flex: 1; padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.stat-val { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-lbl { font-size: 12px; color: var(--muted); margin-top: 5px; letter-spacing: 0.3px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* RIGHT — Video Frame */
.hero-visual { order: 2; position: relative; }
.hero-video-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 580px;
  background: var(--navy-800);
  box-shadow:
    0 0 0 1px var(--border-blue),
    0 40px 100px rgba(37,99,235,0.35),
    0 0 80px rgba(37,99,235,0.15) inset;
}
.hero-video-frame video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-video-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(15,23,42,0.6) 100%);
  pointer-events: none;
}
/* Floating badges on video */
.float-badge {
  position: absolute;
  z-index: 3;
  background: rgba(15,23,42,0.85);
  border: 1px solid var(--border-blue);
  backdrop-filter: blur(16px);
  padding: 10px 16px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.float-badge .val { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: var(--blue-light); }
.float-badge .lbl { font-size: 11px; color: var(--muted); letter-spacing: 0.5px; }
.float-badge-1 { top: 24px; left: -40px; animation: floatY 4s ease-in-out infinite; }
.float-badge-2 { bottom: 70px; right: -36px; animation: floatY 4s ease-in-out infinite 2s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
/* Glow ring behind frame */
.hero-visual::before {
  content: '';
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.2) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  z-index: 0;
}
.hero-video-frame { position: relative; z-index: 1; }

/* ================================
   MARQUEE
   ================================ */
.marquee-wrap {
  overflow: hidden;
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 40px;
  white-space: nowrap; width: max-content;
  animation: marqueeRoll 22s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.marquee-track .sep { color: rgba(255,255,255,0.4); font-size: 8px; }
@keyframes marqueeRoll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================
   ABOUT
   ================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-media { position: relative; }
.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy-800);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px var(--border);
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-stat-card {
  position: absolute;
  bottom: -24px; right: -32px;
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(37,99,235,0.45);
}
.about-stat-card .bnum { font-family: var(--font-head); font-size: 36px; font-weight: 800; line-height: 1; }
.about-stat-card .blbl { font-size: 12px; opacity: 0.8; margin-top: 4px; letter-spacing: 0.5px; }
.about-text .label { margin-bottom: 14px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.check-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--off-white);
}
.chk {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(37,99,235,0.15);
  border: 1.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  color: var(--blue-light); font-size: 12px; font-weight: 700;
}

/* ================================
   SERVICES
   ================================ */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.svc-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 32px 36px;
  position: relative; overflow: hidden;
  transition: var(--trans-med);
  cursor: default;
}
.svc-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  opacity: 0; transition: var(--trans);
}
.svc-card:hover { border-color: var(--border-blue); transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 0 1px var(--border-blue); }
.svc-card:hover::before { opacity: 1; }
.svc-card.featured {
  background: linear-gradient(135deg, rgba(37,99,235,0.14) 0%, var(--navy-800) 60%);
  border-color: var(--border-blue);
}
.svc-card.featured::before { opacity: 1; }
.svc-icon {
  width: 52px; height: 52px;
  background: rgba(37,99,235,0.12);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
}
.svc-card h3 { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.svc-card p { color: var(--muted); font-size: 14px; line-height: 1.75; margin-bottom: 24px; }
.svc-list { display: flex; flex-direction: column; gap: 9px; }
.svc-list li { font-size: 13px; color: var(--off-white); display: flex; align-items: center; gap: 8px; }
.svc-list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.svc-badge {
  position: absolute; top: 22px; right: 22px;
  background: var(--blue); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 50px;
}

/* ================================
   PROCESS
   ================================ */
.process-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.process-row::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(25% / 2);
  right: calc(25% / 2);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-blue) 20%, var(--border-blue) 80%, transparent);
  z-index: 0;
}
.p-step { padding: 0 20px; text-align: center; position: relative; z-index: 1; }
.p-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy-800);
  border: 1.5px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--blue-light);
  margin: 0 auto 28px;
  position: relative;
}
.p-num::after {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent);
}
.p-step h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.p-step p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ================================
   CASE STUDIES
   ================================ */
.cases-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.case-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--trans-med);
}
.case-card:hover { border-color: var(--border-blue); transform: translateY(-5px); box-shadow: 0 30px 70px rgba(0,0,0,0.35); }
.case-thumb { position: relative; height: 220px; background: var(--navy); overflow: hidden; }
.case-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.case-card:hover .case-thumb img { transform: scale(1.05); }
.case-chip {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 14px; border-radius: 50px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; backdrop-filter: blur(8px);
}
.chip-meta { background: rgba(24,100,242,0.85); color: #fff; }
.chip-shopify { background: rgba(95,158,46,0.85); color: #fff; }
.case-body { padding: 28px 28px 32px; }
.case-niche { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-400); margin-bottom: 8px; }
.case-body h3 { font-family: var(--font-head); font-size: 21px; font-weight: 700; margin-bottom: 18px; }
.case-metrics { display: flex; gap: 28px; padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.m-val { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--blue-light); }
.m-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; }
.case-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ================================
   VIDEO SHOWCASE
   ================================ */
.video-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 540px;
}
.vid-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--navy-800); cursor: pointer; }
.vid-item.main { grid-row: span 2; }
.vid-item video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.vid-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.75) 0%, transparent 50%);
  transition: var(--trans);
}
.vid-item:hover .vid-overlay { background: linear-gradient(to top, rgba(15,23,42,0.55) 0%, transparent 50%); }
.vid-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(37,99,235,0.85);
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.vid-item.main .vid-play { width: 70px; height: 70px; }
.vid-item:hover .vid-play { background: var(--blue); transform: translate(-50%,-50%) scale(1.1); box-shadow: 0 8px 30px var(--glow); }
.vid-play svg { fill: white; }
.vid-label {
  position: absolute; bottom: 16px; left: 16px;
  font-size: 13px; font-weight: 600; color: var(--white);
  z-index: 2; text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.vid-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--blue-light);
  background: rgba(37,99,235,0.25);
  border: 1px solid rgba(37,99,235,0.4);
  padding: 4px 10px; border-radius: 50px; z-index: 2;
  backdrop-filter: blur(8px);
}

/* Video Modal */
.vmodal {
  position: fixed; inset: 0; z-index: 900;
  display: none; align-items: center; justify-content: center;
}
.vmodal.open { display: flex; }
.vmodal-bg { position: absolute; inset: 0; background: rgba(5,8,16,0.92); backdrop-filter: blur(12px); }
.vmodal-box {
  position: relative; z-index: 2;
  width: min(900px,92vw);
}
.vmodal-box video { width: 100%; border-radius: var(--radius-lg); background: #000; display: block; }
.vmodal-close {
  position: absolute; top: -48px; right: 0;
  color: var(--muted); font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  transition: var(--trans);
}
.vmodal-close:hover { color: var(--white); }

/* ================================
   TEAM
   ================================ */
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; max-width: 860px; margin: 0 auto; }
.team-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--trans-med);
}
.team-card:hover { border-color: var(--border-blue); transform: translateY(-5px); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.team-photo {
  height: 300px; position: relative;
  background: linear-gradient(135deg, #0f1f3d 0%, #1e3a5f 100%);
  display: flex; align-items: center; justify-content: center;
}
.team-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-photo .placeholder-icon {
  font-size: 72px; opacity: 0.3;
  position: relative; z-index: 0;
}
.team-socials {
  position: absolute; top: 14px; right: 14px;
  display: flex; gap: 8px; z-index: 2;
}
.team-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(15,23,42,0.7); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--off-white); font-size: 14px;
  border: 1px solid var(--border); transition: var(--trans);
}
.team-socials a:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
.team-body { padding: 26px 28px 30px; }
.team-body h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.team-role { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-400); margin-bottom: 14px; display: block; }
.team-body p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 18px; }
.team-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.team-chips span {
  font-size: 12px; font-weight: 500;
  padding: 5px 12px; border-radius: 50px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  color: var(--blue-light);
}

/* ================================
   TESTIMONIALS
   ================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: var(--trans-med);
}
.testi-card:hover { border-color: var(--border-blue); transform: translateY(-3px); }
.testi-stars { color: #FBBF24; font-size: 15px; letter-spacing: 2px; margin-bottom: 18px; }
.testi-quote { color: var(--off-white); font-size: 15px; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.testi-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-brand { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ================================
   CONTACT
   ================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-left h2 { margin-bottom: 18px; }
.contact-left p { color: var(--muted); font-size: 16px; line-height: 1.8; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.c-item { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--off-white); }
.c-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(37,99,235,0.12); border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.c-socials { display: flex; gap: 10px; }
.c-soc {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--navy-800); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: var(--trans);
}
.c-soc:hover { background: var(--blue); border-color: var(--blue); }

/* Form */
.contact-form {
  background: var(--navy-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group:last-child { margin-bottom: 0; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--off-white); letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font); font-size: 14px;
  transition: var(--trans); outline: none;
  -webkit-appearance: none;
}
.form-group select option { background: var(--navy-800); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: rgba(37,99,235,0.07);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; font-size: 15px; border-radius: var(--radius); margin-top: 4px; }

/* ================================
   FOOTER
   ================================ */
.footer {
  background: #070C17;
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .nav-logo img { height: 38px; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--off-white); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: var(--muted); transition: var(--trans); }
.footer-col ul a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: var(--blue-400); }

/* ================================
   SCROLL ANIMATIONS
   ================================ */
[data-anim] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-anim].in-view { opacity: 1; transform: translateY(0); }
[data-anim-delay="1"] { transition-delay: 0.1s; }
[data-anim-delay="2"] { transition-delay: 0.2s; }
[data-anim-delay="3"] { transition-delay: 0.3s; }
[data-anim-delay="4"] { transition-delay: 0.4s; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; padding: 40px 0 60px; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; max-width: 380px; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .float-badge-1 { left: -16px; }
  .float-badge-2 { right: -16px; }
  .about-grid { grid-template-columns: 1fr; gap: 52px; }
  .about-stat-card { right: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-row { grid-template-columns: 1fr 1fr; gap: 48px; }
  .process-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 80px 0; }
  .section-head { margin-bottom: 48px; }

  /* Navbar mobile */
  .nav-links {
    display: none; flex-direction: column; align-items: flex-start;
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(10,15,28,0.98);
    backdrop-filter: blur(24px);
    padding: 88px 28px 40px;
    gap: 6px; z-index: 199;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; padding: 12px 16px; width: 100%; border-radius: 10px; }
  .nav-cta-wrap .btn { display: none; }
  .hamburger { display: flex; z-index: 200; }

  /* Hero */
  .hero-video-frame { max-height: 420px; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }

  /* Grids */
  .services-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; }
  .vid-item.main { grid-row: span 1; height: 300px; }
  .vid-item { height: 220px; }
  .testi-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .process-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
}
