/* ===== Kowski Labs — Design Tokens ===== */
:root {
  --bg: #0b0b12;
  --bg-alt: #100f1a;
  --surface: #16151f;
  --surface-2: #1c1b28;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(168, 122, 255, 0.4);

  --purple-900: #2a1157;
  --purple-700: #5b21b6;
  --purple-600: #7c3aed;
  --purple-500: #9d5cff;
  --purple-400: #b98bff;

  --yellow-500: #f5c518;
  --yellow-400: #ffd93d;
  --yellow-300: #ffe783;

  --text-primary: #f5f4f8;
  --text-secondary: #a8a5b8;
  --text-muted: #8781a0;

  --font-display: 'Archivo', 'IBM Plex Sans', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-1: 0 1px 2px rgba(0, 0, 0, 0.3), 0 2px 6px rgba(0, 0, 0, 0.2);
  --shadow-2: 0 4px 12px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.2);
  --shadow-3: 0 12px 24px rgba(0, 0, 0, 0.35), 0 24px 48px rgba(0, 0, 0, 0.25);
  --shadow-soft: var(--shadow-2);
  --shadow-soft-sm: var(--shadow-1);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

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

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
h3, h4 {
  font-weight: 600;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow-500);
  color: #1a1300;
  box-shadow: var(--shadow-soft-sm);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--yellow-400);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--border-hover);
  background: rgba(124, 58, 237, 0.12);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

.btn-primary-purple {
  background: var(--purple-600);
  color: #fff;
  box-shadow: var(--shadow-soft-sm);
}
.btn-primary-purple:hover {
  transform: translateY(-2px);
  background: var(--purple-500);
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 11, 18, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--purple-600);
  color: #ffe98f;
}
.logo-dot { color: #ffe98f; }
.logo-text {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
}
.logo-text span { color: var(--purple-400); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  font-weight: 600;
  color: var(--text-secondary) !important;
}
.nav-cta:hover { color: var(--text-primary) !important; }

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}
.nav-phone svg { flex-shrink: 0; color: var(--yellow-400); }
.nav-phone:hover { color: var(--yellow-400); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 190px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.hero-glow { display: none; }

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

/* The one authored motion moment on the page: a staggered entrance for the
   hero's own children on load. Nothing else on the page animates in on scroll. */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner > * {
  animation: hero-in 0.7s var(--ease-out-expo) both;
}
.hero-inner > *:nth-child(1) { animation-delay: 0s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.08s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.16s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.24s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .hero-inner > * { animation: none; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow-400);
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow-400);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-facts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.hero-facts span { position: relative; padding-left: 18px; }
.hero-facts span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow-400);
}

/* ===== Trust Strip ===== */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
  padding: 28px 0;
  overflow: hidden;
}
.trust-label {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.trade-marquee {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-secondary);
  font-size: 1rem;
}
.trade-marquee span:nth-child(odd) { color: var(--purple-400); }
.trade-marquee span:last-child { display: none; }

/* ===== Sections ===== */
.section { padding: 120px 0; }
.section-alt { background: var(--bg-alt); }

.section-head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
}
.section-tag { display: none; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* ===== Grid & Cards ===== */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.3s var(--ease-out-expo);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-3);
}
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--text-secondary); font-size: 0.96rem; }

/* Feature list (Services / per-trade "why us"): de-boxed, editorial rhythm
   instead of uniform icon+heading+text cards. */
.grid-3 .card {
  background: transparent;
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--border);
  padding: 28px 0 0;
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s ease;
}
.grid-3 .card:hover {
  border-color: var(--border-hover);
  box-shadow: none;
  transform: translateX(6px);
}
.grid-3 .card h3 { font-size: 1.15rem; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 22px;
  background: var(--purple-600);
  position: relative;
}
.grid-3 .card-icon { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 18px; }
.card-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 22px;
  height: 22px;
  background: var(--yellow-400);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.card-icon[data-icon="design"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 19l7-7 3 3-7 7-3-3z'/%3E%3Cpath d='M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z'/%3E%3Cpath d='M2 2l7.586 7.586'/%3E%3Ccircle cx='11' cy='11' r='2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 19l7-7 3 3-7 7-3-3z'/%3E%3Cpath d='M18 13l-1.5-7.5L2 2l3.5 14.5L13 18l5-5z'/%3E%3Cpath d='M2 2l7.586 7.586'/%3E%3Ccircle cx='11' cy='11' r='2'/%3E%3C/svg%3E"); }
.card-icon[data-icon="mobile"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cline x1='11' y1='18' x2='13' y2='18'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='7' y='2' width='10' height='20' rx='2'/%3E%3Cline x1='11' y1='18' x2='13' y2='18'/%3E%3C/svg%3E"); }
.card-icon[data-icon="hosting"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E"); }
.card-icon[data-icon="lead"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.127.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.card-icon[data-icon="speed"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpolygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/%3E%3C/svg%3E"); }
.card-icon[data-icon="support"]::after { -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9'/%3E%3Cpath d='M13.73 21a2 2 0 0 1-3.46 0'/%3E%3C/svg%3E"); mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M18 8A6 6 0 0 0 6 8c0 7-3 9-3 9h18s-3-2-3-9'/%3E%3Cpath d='M13.73 21a2 2 0 0 1-3.46 0'/%3E%3C/svg%3E"); }

/* ===== Portfolio ===== */
.portfolio-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.portfolio-thumb {
  height: 180px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.portfolio-thumb--1 { background: var(--purple-700); }
.portfolio-thumb--2 { background: var(--purple-500); }
.portfolio-thumb--3 { background: var(--yellow-500); }
.portfolio-badge {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  color: var(--yellow-300);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.portfolio-badge--demo {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11,11,18,0.75);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.portfolio-info { padding: 22px 24px 26px; }
.portfolio-info h3 { font-size: 1.05rem; margin-bottom: 8px; }
.portfolio-info p { color: var(--text-secondary); font-size: 0.92rem; }
.portfolio-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--purple-400);
}
.portfolio-card:hover .portfolio-link { color: var(--yellow-400); }
.portfolio-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 36px;
}

/* ===== Process ===== */
.process-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.process-item {
  display: flex;
  gap: 28px;
  padding: 32px 8px;
  border-bottom: 1px solid var(--border);
}
.process-item:last-child { border-bottom: none; }
.process-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--purple-500);
  min-width: 60px;
}
.process-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.process-body p { color: var(--text-secondary); }

/* ===== Pricing ===== */
.pricing-grid { align-items: stretch; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-1);
  transition: transform 0.3s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.3s var(--ease-out-expo);
}
.price-card:hover { transform: translateY(-6px); }
.price-card--featured {
  background: var(--surface-2);
  border-color: var(--purple-500);
  box-shadow: var(--shadow-soft);
}
.price-tag {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--yellow-500);
  color: #1a1300;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.price-desc { color: var(--text-secondary); font-size: 0.94rem; margin-bottom: 24px; min-height: 44px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--yellow-400);
}
.price-period {
  font-size: 1.1rem;
  font-weight: 600;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  padding-left: 26px;
  position: relative;
  color: var(--text-secondary);
  font-size: 0.92rem;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--purple-500);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  border-radius: 4px;
}

/* ===== CTA / Contact ===== */
.cta-section { padding-top: 40px; }
.cta-box {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  overflow: hidden;
}
.cta-glow { display: none; }
.cta-content { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; text-align: center; }
.cta-content .section-head { margin-bottom: 40px; }

.contact-form { text-align: left; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple-500);
}
.form-field textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--yellow-400);
  min-height: 20px;
}
.form-reassurance {
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand p {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 0.92rem;
  max-width: 280px;
}
.footer-col h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--purple-400); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: rgba(11,11,18,0.98);
    backdrop-filter: blur(14px);
    padding: 20px 24px 30px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 12px 0; width: 100%; }
  .nav-cta { margin-top: 10px; text-align: center; }
  .nav-toggle { display: flex; }

  .hero { padding: 150px 0 80px; }
  .hero-facts { gap: 18px; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 36px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .nav-phone-text { display: none; }
  .nav-phone { padding: 8px; }
}
