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

:root {
  --blue:        #2196f3;
  --blue-dark:   #1565c0;
  --blue-deeper: #0d47a1;
  --navy:        #050821;
  --navy-mid:    #0a1230;
  --navy-light:  #111a3e;
  --white:       #ffffff;
  --off-white:   #f5f8ff;
  --text:        #1a1f36;
  --text-muted:  #64748b;
  --border:      #e2e8f0;
  --radius:      10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 8, 33, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.nav-logo-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 140px 2rem 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(33,150,243,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(33,150,243,0.15);
  border: 1px solid rgba(33,150,243,0.35);
  color: #90caf9;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}
.hero h1 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  max-width: 780px;
  margin: 0 auto 1.2rem;
}
.hero h1 span {
  background: linear-gradient(135deg, #64b5f6, #2196f3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn-primary {
  background: var(--blue);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(33,150,243,0.4);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.14); }

/* ── HERO PIPELINE ─────────────────────────────────────── */
.pipeline-wrap {
  max-width: 1000px;
  margin: 4rem auto 0;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.pipeline-frame {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
}
.pipeline-frame-bar {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pipeline-dot { width: 10px; height: 10px; border-radius: 50%; }
.pipeline-dot.r { background: #ff5f57; }
.pipeline-dot.y { background: #febc2e; }
.pipeline-dot.g { background: #28c840; }
.pipeline-title {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-family: monospace;
}
.pipeline-svg { width: 100%; height: auto; display: block; padding: 1.5rem 1rem 1rem; }
.pipeline-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  padding-bottom: 0.5rem;
}

/* ── LOGOS ─────────────────────────────────────────────── */
.logos-section {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.logos-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.logo-pill {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ── SECTIONS ──────────────────────────────────────────── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: rgba(33,150,243,0.1);
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.section-heading {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}
.section-header-centered {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header-centered .section-sub { margin: 0 auto; }

/* ── PAIN / FOR / WHEN / WHERE ─────────────────────────── */
.fww-section { background: var(--white); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2.5rem;
  max-width: 860px;
  margin: 0 auto 3.5rem;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.45;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.pain-item::before {
  content: '?';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(33,150,243,0.1);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.fww-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fww-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--off-white);
  position: relative;
}
.fww-label {
  position: absolute;
  top: -13px; left: 1.5rem;
  background: var(--blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 20px;
}
.fww-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.fww-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.fww-card ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}
.fww-card ul li::before {
  content: '—';
  color: var(--blue);
  flex-shrink: 0;
  padding-right: 0.5rem;
}

/* ── FEATURES ──────────────────────────────────────────── */
.features-section { background: var(--off-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(33,150,243,0.1);
}
.feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}
.feature-icon i { font-size: 1.5rem; color: white; }
.feature-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── HOW IT WORKS ──────────────────────────────────────── */
.how-section { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.step { text-align: center; padding: 0 1rem; }
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--blue-deeper));
  color: white;
  border-radius: 50%;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  box-shadow: 0 4px 16px rgba(33,150,243,0.35);
}
.step h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }

/* ── NO DEPS STRIP ─────────────────────────────────────── */
.nodeps-strip {
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}
.nodeps-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.nodeps-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2rem;
}
.nodeps-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.nodeps-item i { font-size: 1rem; color: #e53e3e; flex-shrink: 0; }

/* ── PIPELINE DEMO SECTION ─────────────────────────────── */
.pipeline-section { background: var(--off-white); padding: 6rem 0 4rem; }
.pipeline-demo-wrap {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 32px rgba(33,150,243,0.08), 0 1px 4px rgba(0,0,0,0.06);
  background: #fff;
  overflow: hidden;
}
.pipeline-demo-svg { width: 100%; height: auto; display: block; }
.pipeline-demo-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
}
.pipeline-demo-edge { fill: none; stroke-width: 2; opacity: 0.2; stroke-dasharray: 6,4; }

/* ── SECURITY ──────────────────────────────────────────── */
.security-section { background: var(--white); }
.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.security-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.security-icon { font-size: 1.5rem; color: var(--blue); margin-bottom: 0.25rem; }
.security-card h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}
.security-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── COMPARE ───────────────────────────────────────────── */
.compare-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.compare-section .section-tag { background: rgba(33,150,243,0.2); color: #90caf9; }
.compare-section .section-heading { color: white; }
.compare-section .section-sub { color: rgba(255,255,255,0.6); }
.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.compare-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: background 0.2s, border-color 0.2s;
}
.compare-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(33,150,243,0.3); }
.compare-vs-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.65rem;
}
.compare-opponent {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  margin-bottom: 0.5rem;
}
.compare-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); margin-bottom: 1.5rem; line-height: 1.55; }
.compare-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
}
.compare-section-label--bad  { color: rgba(252,129,129,0.75); }
.compare-section-label--good { color: rgba(100,181,246,0.85); }
.compare-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.compare-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; line-height: 1.5; }
.compare-list--bad li { color: rgba(255,255,255,0.5); }
.compare-list--bad li::before { content: '✗'; color: rgba(229,62,62,0.85); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.compare-list--good li { color: rgba(255,255,255,0.85); }
.compare-list--good li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* ── ENV SECTION ───────────────────────────────────────── */
.env-section { background: var(--navy); color: white; }
.env-section .section-heading { color: white; }
.env-section .section-sub { color: rgba(255,255,255,0.6); }
.env-section .section-tag { background: rgba(33,150,243,0.2); color: #90caf9; }
.env-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.env-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  transition: background 0.2s;
}
.env-card:hover { background: rgba(33,150,243,0.1); border-color: rgba(33,150,243,0.3); }
.env-card-icon { margin-bottom: 0.75rem; }
.env-card-icon i { font-size: 2rem; color: rgba(255,255,255,0.8); }
.env-card h3 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1rem; color: white; margin-bottom: 0.4rem; }
.env-card p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.55; }

/* ── PRICING ───────────────────────────────────────────── */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 16px 40px rgba(33,150,243,0.15);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 20px;
}
.pricing-card h3 { font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--text); margin-bottom: 0.4rem; }
.pricing-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-price { margin-bottom: 1.5rem; }
.pricing-amount { font-family: 'Quicksand', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--text); }
.pricing-amount sup { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.2rem; }
.pricing-features { list-style: none; margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li { font-size: 0.9rem; color: var(--text); display: flex; align-items: flex-start; gap: 0.6rem; }
.pricing-features li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }
.btn-pricing { display: block; text-align: center; padding: 0.8rem; border-radius: 8px; font-weight: 600; font-size: 0.95rem; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-pricing.primary { background: var(--blue); color: white; box-shadow: 0 4px 16px rgba(33,150,243,0.35); }
.btn-pricing.primary:hover { background: var(--blue-dark); }
.btn-pricing.outline { border: 1.5px solid var(--blue); color: var(--blue); background: transparent; }
.btn-pricing.outline:hover { background: rgba(33,150,243,0.06); }

/* ── CTA ───────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  text-align: center;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(33,150,243,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── CONTACT ───────────────────────────────────────────── */
.contact-section { background: var(--off-white); }
.contact-card {
  max-width: 680px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(33,150,243,0.15);
  background: white;
}
.form-group textarea { resize: vertical; }
.form-error { color: #e53e3e; font-size: 0.88rem; margin-bottom: 0.75rem; min-height: 1.2em; }
.form-consent { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.5; }
.contact-thanks-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: white;
}

/* ── FOOTER ────────────────────────────────────────────── */
footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 3rem 2rem; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo-mark { width: 32px; height: 32px; flex-shrink: 0; }
.footer-logo-mark img { width: 100%; height: 100%; object-fit: contain; }
.footer-logo-text { font-family: 'Quicksand', sans-serif; font-weight: 700; color: white; font-size: 1rem; }
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 860px) {
  .fww-grid { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 1.5rem; }
  .pain-grid { grid-template-columns: 1fr; }
}
