/* ============================================================
   EESRA — Blue Frame Design System
   Reference: Codefix by Kris Anfalova (Dribbble)
   ============================================================ */

:root {
  /* Accent */
  --blue:         #3BC5FF;
  --blue-light:   #7DD9FF;
  --blue-mid:     #1A92CC;
  --blue-dim:     rgba(59, 197, 255, 0.07);
  --blue-glow:    rgba(59, 197, 255, 0.18);
  --blue-border:  rgba(59, 197, 255, 0.22);

  /* Backgrounds */
  --bg:           #040A15;
  --bg-frame:     #05101C;
  --bg-2:         #081626;
  --bg-3:         #0C1C32;
  --bg-4:         #10233E;

  /* Text */
  --text:         #D0E4F2;
  --text-muted:   rgba(208, 228, 242, 0.40);
  --white:        #FFFFFF;

  /* Borders */
  --border:       rgba(59, 197, 255, 0.09);
  --border-md:    rgba(59, 197, 255, 0.20);

  /* Status */
  --red:          #FF5A5A;

  /* Typography */
  --font-head:    'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Geometry */
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ══════════════════════════════════════
   RESET
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 2px; }

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 197, 255, 0.055) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
}

/* ── REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--blue);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-blue:hover {
  background: transparent;
  color: var(--blue);
  box-shadow: 0 0 30px var(--blue-glow);
  transform: translateY(-2px);
}
.btn-blue.btn-large { padding: 16px 42px; font-size: 0.95rem; }
.btn-blue.btn-full { width: 100%; }

.btn-outline-blue {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--blue-border);
  transition: var(--transition);
  width: 100%;
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--bg);
  border-color: var(--blue);
  transform: translateY(-2px);
}

/* Hero pill CTA (dark, frosted) */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 13px 22px 13px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.btn-hero:hover {
  background: rgba(59, 197, 255, 0.09);
  border-color: var(--blue-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59, 197, 255, 0.12);
}
.btn-hero-icon {
  width: 30px; height: 30px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bg);
  transition: box-shadow 0.3s;
}
.btn-hero:hover .btn-hero-icon {
  box-shadow: 0 0 12px var(--blue-glow);
}
.btn-hero-icon svg { width: 14px; height: 14px; }

/* ══════════════════════════════════════
   NAVIGATION
══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
#nav.scrolled {
  background: rgba(4, 10, 21, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.14em;
  color: var(--white);
  flex-shrink: 0;
}
.logo span { color: var(--blue); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-demo {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.nav-demo:hover { color: var(--blue); border-color: var(--blue-border); }
.nav-cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg) !important;
  background: var(--blue);
  padding: 8px 18px;
  border-radius: 50px;
  transition: var(--transition);
}
.nav-cta:hover { box-shadow: 0 0 20px var(--blue-glow); transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  width: 20px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 2rem 1.5rem;
  background: rgba(4, 10, 21, 0.97);
  backdrop-filter: blur(24px);
}
.mobile-menu a {
  padding: 0.85rem 0;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--blue); }
.mobile-menu.open { display: flex; }

/* ══════════════════════════════════════
   HERO — THE BLUE FRAME
══════════════════════════════════════ */
#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 72px - 20px);
  margin: 72px 20px 0;
  border-radius: var(--radius-xl);
  border: 1px solid var(--blue-border);
  background: var(--bg-frame);
  overflow: hidden;

  /* Multi-layer glow border */
  box-shadow:
    0 0 0 1px rgba(59, 197, 255, 0.05),
    0 0 60px rgba(59, 197, 255, 0.09),
    0 0 140px rgba(59, 197, 255, 0.04),
    inset 0 0 80px rgba(59, 197, 255, 0.025);
}

/* Atmosphere layers */
.hero-atm {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow-main {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 680px;
  background: radial-gradient(ellipse at center bottom,
    rgba(59, 197, 255, 0.24) 0%,
    rgba(59, 197, 255, 0.10) 30%,
    rgba(26, 146, 204, 0.04) 58%,
    transparent 78%);
  filter: blur(18px);
}
.hero-glow-top {
  position: absolute;
  top: -15%;
  right: 8%;
  width: 520px; height: 420px;
  background: radial-gradient(ellipse at center,
    rgba(59, 120, 255, 0.07) 0%,
    transparent 65%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 197, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 197, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 25%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 25%, transparent 100%);
}

/* Hero content (flex center) */
.hero-inner {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 2rem 40px;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 197, 255, 0.06);
  border: 1px solid rgba(59, 197, 255, 0.22);
  color: var(--blue-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 2rem;
}
.badge-pulse {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(0.55); }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.4rem;
}
.hero-title-accent {
  background: linear-gradient(130deg, var(--blue-light) 0%, var(--blue) 55%, rgba(59, 197, 255, 0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.85;
  font-weight: 300;
}
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}
.hero-cta-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* Stats bar — bottom of frame */
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(5, 16, 28, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hstat {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1rem;
}
.hstat-num {
  font-family: var(--font-head);
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.02em;
}
.hstat-label {
  font-size: 0.67rem;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 400;
}
.hstat-sep {
  width: 1px;
  height: 34px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker {
  overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  margin-top: 20px;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: ticker 38s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.ticker-track .sep {
  color: var(--blue);
  font-size: 0.9rem;
  opacity: 0.45;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════
   SECTION COMMONS
══════════════════════════════════════ */
section { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 4rem; }
.s-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 4px 14px;
  border: 1px solid var(--blue-border);
  border-radius: 50px;
  background: var(--blue-dim);
  margin-bottom: 1.1rem;
}
.s-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.022em;
  color: var(--white);
}
.s-title span {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.svc-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(59, 197, 255, 0.08);
}
.svc-card:hover::before { opacity: 1; }
.svc-card.svc-featured {
  border-color: var(--blue-border);
  background: linear-gradient(160deg, var(--bg-3) 0%, rgba(59, 197, 255, 0.05) 100%);
}
.svc-num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--blue);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.svc-icon {
  width: 38px; height: 38px;
  color: var(--blue);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.svc-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.65rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.svc-card p {
  font-size: 0.845rem;
  color: var(--text-muted);
  line-height: 1.78;
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   WHY
══════════════════════════════════════ */
#why { padding: 0; }
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.why-col { padding: 100px 80px; }
.why-bad {
  background: var(--bg-2);
  border-right: 1px solid var(--border);
}
.why-good {
  background: linear-gradient(160deg, var(--bg-2) 0%, rgba(59, 197, 255, 0.04) 100%);
}
.why-col .s-tag { display: block; width: fit-content; margin-bottom: 1rem; }
.why-col h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin: 0 0 2rem;
  letter-spacing: -0.022em;
}
.why-col h2 span {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 11px 15px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
}
.ci {
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.bad .ci { color: var(--red); }
.good .ci { color: var(--blue); }

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
#how { background: var(--bg); }
.steps-row {
  display: flex;
  align-items: flex-start;
}
.step-item {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}
.step-conn {
  flex: 0 0 50px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue-border), var(--blue));
  margin-top: 30px;
  opacity: 0.5;
  position: relative;
  align-self: flex-start;
}
.step-conn::after {
  content: '›';
  position: absolute;
  right: -8px;
  top: -11px;
  color: var(--blue);
  font-size: 1.2rem;
  opacity: 0.6;
}
.step-n {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--blue) 0%, rgba(59, 197, 255, 0.08) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-item h3 {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.55rem;
}
.step-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials { background: var(--bg-2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testi:hover {
  border-color: var(--blue-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59, 197, 255, 0.07);
}
.testi-quote {
  font-family: Georgia, serif;
  font-size: 3.8rem;
  color: var(--blue);
  line-height: 0.7;
  margin-bottom: 1.25rem;
  opacity: 0.3;
}
.testi p {
  font-size: 0.865rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.who-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}
.testi-who strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--white);
}
.testi-who span {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   CTA BAND
══════════════════════════════════════ */
#cta {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 130px 2rem;
  position: relative;
  overflow: hidden;
}
.cta-atm {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 720px; height: 420px;
  background: radial-gradient(ellipse at center,
    rgba(59, 197, 255, 0.15) 0%,
    rgba(59, 197, 255, 0.04) 50%,
    transparent 70%);
  filter: blur(28px);
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.022em;
}
.cta-inner h2 span {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-inner p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
#contact { background: var(--bg); }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 5rem;
  align-items: start;
}
.contact-left .s-tag { display: block; width: fit-content; margin-bottom: 1rem; }
.contact-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: -0.022em;
}
.contact-left h2 span {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.contact-left > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.82;
  margin-bottom: 2rem;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-info a,
.contact-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.contact-info a:hover { color: var(--blue); }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.f-g { display: flex; flex-direction: column; gap: 6px; }
.f-g label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.f-g input,
.f-g select,
.f-g textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.f-g input:focus,
.f-g select:focus,
.f-g textarea:focus {
  border-color: var(--blue-border);
  box-shadow: 0 0 0 3px rgba(59, 197, 255, 0.07);
}
.f-g select { cursor: pointer; }
.f-g textarea { resize: vertical; min-height: 88px; }
.f-g input::placeholder,
.f-g textarea::placeholder { color: rgba(208, 228, 242, 0.22); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.foot-inner { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.foot-top {
  display: flex;
  gap: 4rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--border);
}
.foot-brand { flex: 1; }
.foot-brand .logo { margin-bottom: 1rem; }
.foot-brand p {
  font-size: 0.845rem;
  color: var(--text-muted);
  max-width: 280px;
  line-height: 1.72;
}
.foot-nav { display: flex; gap: 4rem; }
.fn-col { display: flex; flex-direction: column; gap: 0.7rem; }
.fn-col strong {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.fn-col a { font-size: 0.845rem; color: var(--text-muted); transition: color 0.2s; }
.fn-col a:hover { color: var(--blue); }
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-col { padding: 80px 50px; }
  .contact-split { gap: 3rem; }
}

@media (max-width: 768px) {
  #hero {
    margin: 64px 10px 0;
    padding: 0;
    border-radius: 20px;
  }
  .hero-inner { padding: 52px 1.5rem 36px; }
  .hero-stats { flex-wrap: wrap; }
  .hstat { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .hstat:nth-child(5), .hstat:nth-child(7) { border-bottom: none; }
  .hstat-sep { display: none; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }

  .why-split { grid-template-columns: 1fr; }
  .why-col { padding: 60px 2rem; }
  .why-bad { border-right: none; border-bottom: 1px solid var(--border); }

  .steps-row { flex-direction: column; align-items: center; gap: 0; }
  .step-item { width: 100%; max-width: 340px; }
  .step-conn {
    width: 1px; height: 36px;
    flex: 0 0 auto;
    margin: 0;
    background: linear-gradient(180deg, var(--blue-border), var(--blue));
  }
  .step-conn::after { display: none; }

  .testi-grid { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
  .f-row { grid-template-columns: 1fr; }
  .foot-top { flex-direction: column; gap: 2.5rem; }
  .foot-nav { flex-direction: column; gap: 2rem; }
  .foot-bot { flex-direction: column; gap: 0.5rem; text-align: center; }
  section { padding: 72px 0; }
  #cta { padding: 88px 2rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.35rem; }
  .why-col { padding: 48px 1.5rem; }
}
