/* ==========================================
   RESET + BASE
   ========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --accent: #007AFF;
  --accent-glow: rgba(0, 122, 255, 0.15);
  --white: #ffffff;
  --black: #000000;
  --off-black: #080808;
  --surface: rgba(255,255,255,0.03);
  --surface-2: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.07);
  --text-dim: rgba(255,255,255,0.38);
  --text-muted: rgba(255,255,255,0.6);
  --r: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 120px 0; }

/* ==========================================
   NAV
   ========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
}

.nav.scrolled {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-phone { display: block; flex-shrink: 0; }
.logo-text {
  font-size: 19px;
  letter-spacing: -0.3px;
  color: var(--white);
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}
.logo-thin  { font-weight: 200; opacity: 0.6; }
.logo-bold  { font-weight: 600; }
.logo-heavy { font-weight: 800; letter-spacing: -0.5px; }

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  background: var(--accent);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.drawer {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  transform: translateY(-10px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.drawer.open { transform: translateY(0); opacity: 1; }
.drawer ul { display: flex; flex-direction: column; gap: 20px; }
.drawer a { font-size: 18px; font-weight: 500; }

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,122,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(56px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.0;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 44px;
  font-weight: 400;
}
.br-desk { display: block; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,122,255,0.3);
}

.btn-ghost {
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

/* DEVICE MOCKUP */
.hero-device { position: relative; flex-shrink: 0; }

.device-frame {
  width: 200px;
  height: 400px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 36px;
  background: #0A0A0A;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}

.device-screen {
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  overflow: hidden;
  background: #0D0D0D;
}

.app-bar {
  height: 40px;
  background: rgba(0,122,255,0.12);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}
.app-bar::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.7;
}
.app-bar::after {
  content: '';
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
}

.app-hero-block {
  margin: 10px;
  height: 80px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,122,255,0.2) 0%, rgba(0,122,255,0.05) 100%);
  border: 1px solid rgba(0,122,255,0.2);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%,100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.app-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin: 6px 10px;
}
.app-card {
  height: 54px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.ac1 { background: rgba(0,122,255,0.08); }

.app-row {
  display: flex;
  gap: 6px;
  margin: 6px 10px;
}
.app-pill {
  height: 22px;
  border-radius: 100px;
  background: var(--accent);
  flex: 1;
  opacity: 0.85;
  animation: pill-pulse 2s ease-in-out infinite;
}
.ap2 { background: var(--surface-2); animation-delay: 0.3s; opacity: 0.5; }
.ap3 { background: var(--surface-2); animation-delay: 0.6s; opacity: 0.3; }

@keyframes pill-pulse {
  0%,100% { opacity: 0.85; }
  50% { opacity: 0.5; }
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 6px 10px;
}
.app-item {
  height: 32px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.app-item::before {
  content: '';
  position: absolute;
  left: 8px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  border-radius: 4px;
  background: rgba(0,122,255,0.3);
}
.app-item::after {
  content: '';
  position: absolute;
  left: 34px; top: 50%;
  transform: translateY(-50%);
  width: 60px; height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.1);
}
.ai2 { opacity: 0.7; }
.ai3 { opacity: 0.4; }

.app-fab {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 4px 16px rgba(0,122,255,0.4);
  animation: fab-glow 2s ease-in-out infinite;
}
@keyframes fab-glow {
  0%,100% { box-shadow: 0 4px 16px rgba(0,122,255,0.4); }
  50% { box-shadow: 0 4px 32px rgba(0,122,255,0.7); }
}

.device-home {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 4px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

/* TICKER */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.ticker {
  display: inline-flex;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  color: var(--text-dim);
  text-transform: uppercase;
  animation: tick 30s linear infinite;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SCROLL HINT */
.hero-scroll-hint {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: fadeUp 1s 1.2s ease both;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--text-dim));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}
.hero-scroll-hint span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ==========================================
   STATEMENT
   ========================================== */
.statement {
  background: var(--white);
  padding: 100px 0;
}
.statement-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.statement-text {
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 24px;
}
.statement-attr {
  font-size: 14px;
  color: rgba(0,0,0,0.45);
  font-style: italic;
}

/* ==========================================
   STATS
   ========================================== */
.stats-section { padding: 80px 0; border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.stat {
  background: var(--off-black);
  padding: 40px 28px;
  text-align: center;
}
.stat-num {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
  line-height: 1;
}
.stat-unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin: 6px 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ==========================================
   APPS SECTION
   ========================================== */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 64px;
}
.app-type-card {
  background: var(--off-black);
  padding: 36px 28px;
  transition: background 0.2s;
}
.app-type-card:hover { background: #0F0F0F; }
.atc-icon {
  margin-bottom: 20px;
}
.app-type-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.app-type-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.atc-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

/* ==========================================
   STACK
   ========================================== */
.stack { background: var(--off-black); }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 64px;
}
.stack-card {
  background: var(--black);
  padding: 28px 24px;
  transition: background 0.2s;
}
.stack-card:hover { background: #0A0A0A; }
.stack-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 14px 0 8px;
}
.stack-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}
.stack-featured {
  grid-column: span 2;
  background: rgba(0,122,255,0.04);
  border-right: 1px solid rgba(0,122,255,0.15);
}
.stack-featured h3 { font-size: 18px; }
.stack-featured p { font-size: 14px; color: var(--text-muted); }
.sc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sc-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,122,255,0.1);
  padding: 4px 10px;
  border-radius: 100px;
}

/* ==========================================
   SPEED COMPARISON
   ========================================== */
.speed-section { background: var(--off-black); }
.speed-inner { max-width: 900px; margin: 0 auto; }
.speed-head {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 64px;
  text-align: center;
}
.speed-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}
.speed-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 24px;
}
.speed-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.si {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.si-bar {
  height: 3px;
  background: var(--surface-2);
  border-radius: 2px;
  min-width: 4px;
  flex-shrink: 0;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.si-bar--us { background: var(--accent); }
.si span { color: var(--text-dim); flex: 1; }
.si strong { color: var(--text-muted); font-weight: 500; white-space: nowrap; }
.speed-col--us .si strong { color: var(--accent); }

/* Mirror left column */
.speed-col--them .si { flex-direction: row-reverse; }
.speed-col--them .si span { text-align: right; }
.speed-col--them .si strong { text-align: right; }
.speed-col--them .speed-total { text-align: right; }
.speed-col--them .speed-label { text-align: right; }

.speed-total {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.speed-total--bad { color: var(--text-dim); }
.speed-total--good { color: var(--accent); font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.speed-vs {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-dim);
  align-self: center;
}

/* ==========================================
   PROCESS
   ========================================== */
.proc-list {
  margin-top: 64px;
  position: relative;
  padding-left: 120px;
  border-left: 1px solid var(--border);
}
.proc-item {
  display: flex;
  gap: 0;
  margin-bottom: 56px;
  position: relative;
}
.proc-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.proc-time {
  position: absolute;
  left: -120px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent);
  text-transform: uppercase;
  padding-top: 6px;
  white-space: nowrap;
}
.proc-body { padding-left: 24px; }
.proc-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.proc-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}

/* ==========================================
   GUARANTEE
   ========================================== */
.guarantee { background: var(--off-black); }
.guarantee-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  border: 1px solid rgba(0,122,255,0.2);
  border-radius: 20px;
  background: rgba(0,122,255,0.03);
}
.guarantee-icon { margin-bottom: 24px; }
.guarantee-head {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.guarantee-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}
.guarantee-pillars {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
.gp { display: flex; flex-direction: column; gap: 4px; }
.gp strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}
.gp span {
  font-size: 12px;
  color: var(--text-dim);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 64px;
}
.testi-card {
  background: var(--off-black);
  padding: 32px 28px;
}
.tc-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,122,255,0.15);
  border: 1px solid rgba(0,122,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.tc-author strong { display: block; font-size: 13px; font-weight: 600; }
.tc-author span { font-size: 12px; color: var(--text-dim); }

.testi-featured {
  margin-top: 1px;
  background: var(--off-black);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  padding: 40px 48px;
}
.testi-featured p {
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.65;
  color: var(--white);
  font-style: italic;
  margin-bottom: 24px;
}
.tf-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tf-author strong { display: block; font-size: 14px; font-weight: 600; }
.tf-author span { font-size: 13px; color: var(--text-dim); }

/* ==========================================
   CONTACT
   ========================================== */
.contact { background: var(--off-black); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-head {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.contact-promise {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.fg label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.fg select option { background: #111; }

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  padding: 15px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0,122,255,0.3);
}
.submit-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 16px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 60px;
}
.fl-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fl-col strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.fl-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.fl-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

/* ==========================================
   TOAST
   ========================================== */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #111;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==========================================
   SECTION LABELS + HEADS
   ========================================== */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-head {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-body {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* ==========================================
   SCROLL REVEAL
   ========================================== */
.reveal-up, .reveal-line, .reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-line { transform: translateY(16px); }
.reveal-fade { transform: none; }
.revealed { opacity: 1 !important; transform: none !important; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px) translateX(-50%); }
  to { opacity: 1; transform: translateY(0) translateX(-50%); }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-device { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .apps-grid { grid-template-columns: repeat(2,1fr); }
  .stack-grid { grid-template-columns: repeat(2,1fr); }
  .stack-featured { grid-column: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .guarantee-pillars { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .drawer { display: block; }
  .proc-list { padding-left: 24px; }
  .proc-time { position: static; margin-bottom: 6px; }
  .proc-item { flex-direction: column; gap: 4px; }
  .speed-compare { grid-template-columns: 1fr; gap: 40px; }
  .speed-vs { text-align: center; }
  .speed-col--them .si { flex-direction: row; }
  .speed-col--them .si span { text-align: left; }
  .speed-col--them .si strong { text-align: left; }
  .speed-col--them .speed-total { text-align: left; }
  .speed-col--them .speed-label { text-align: left; }
  .br-desk { display: none; }
  .apps-grid { grid-template-columns: 1fr; }
  .testi-featured { padding: 28px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 480px) {
  .hero-headline { letter-spacing: -2px; }
  .contact-form { padding: 24px; }
  .guarantee-pillars { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
