/* ============================================
   SEOWiser Design System
   Font: Syne (display) + DM Sans (body)
   Theme: Light, minimal, editorial, premium
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --bg: #f8f7f4;
  --bg2: #f0ede8;
  --surface: #ffffff;
  --border: #e4e0d8;
  --text: #1a1714;
  --text-muted: #6b6560;
  --text-light: #9e9892;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-light: #eff6ff;
  --accent2: #7c3aed;
  --success: #059669;
  --warning: #d97706;
  --danger: #dc2626;

  --font-display: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);

  --nav-h: 68px;
  --max-w: 1160px;
  --max-w-text: 720px;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--text-muted); line-height: 1.75; }
a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-dark); }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: var(--max-w-text); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }

/* ---- Flex/Grid utils ---- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(248,247,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-logo span { color: var(--accent); }
.nav-logo-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg2); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  display: block;
}
.mobile-menu a:hover { background: var(--bg2); color: var(--text); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 12px 22px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  padding: 11px 20px;
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--text-muted);
  color: var(--text);
  background: var(--bg2);
}
.btn-ghost {
  background: transparent;
  color: var(--accent);
  padding: 10px 16px;
}
.btn-ghost:hover { background: var(--accent-light); }
.btn-lg { padding: 15px 28px; font-size: 0.95rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 14px; font-size: 0.82rem; }

/* ---- Badges / Labels ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}
.badge-blue { background: var(--accent-light); color: var(--accent); }
.badge-purple { background: #f5f3ff; color: var(--accent2); }
.badge-green { background: #ecfdf5; color: var(--success); }

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

/* ---- Section labels ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ---- Hero ---- */
.hero {
  padding: 52px 0 60px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(37,99,235,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-headline {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.35;
}
.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-trust {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-trust-text {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}
.trust-dots {
  display: flex;
  gap: 6px;
}
.trust-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: -8px;
}
.trust-dot:first-child { margin-left: 0; }

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-stat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.hs-blue { background: var(--accent-light); }
.hs-green { background: #ecfdf5; }
.hs-purple { background: #f5f3ff; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 2px; }

/* ---- Process Steps ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  z-index: 0;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 16px;
  transition: all 0.25s;
}
.step-item:hover .step-num {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.step-item h4 { font-size: 0.95rem; margin-bottom: 6px; }
.step-item p { font-size: 0.83rem; }

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--text);
  padding: 40px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.stat-accent { color: var(--accent); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  user-select: none;
  gap: 16px;
}
.faq-q:hover { background: var(--bg); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-a p { font-size: 0.9rem; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--text);
  border-radius: var(--radius-xl);
  padding: 56px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(37,99,235,0.15) 0%, transparent 70%);
}
.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p { color: rgba(255,255,255,0.6); position: relative; }
.cta-banner .btn-white {
  background: var(--white);
  color: var(--text);
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 700;
}
.cta-banner .btn-white:hover {
  background: var(--bg);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-sub { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 12px; }

/* ---- Case study / Results ---- */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.result-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.result-tag { font-size: 0.75rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.result-metric {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}
.result-metric span { color: var(--success); }
.result-desc { font-size: 0.85rem; color: var(--text-muted); }
.result-client { font-size: 0.78rem; color: var(--text-light); margin-top: 12px; font-weight: 600; }

/* ---- ROI Calculator ---- */
.calc-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.calc-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.calc-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.calc-field { margin-bottom: 24px; }
.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.calc-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}
.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  background: var(--border);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent);
  border: 2.5px solid var(--white);
  box-shadow: 0 0 0 2px rgba(37,99,235,0.2);
  cursor: pointer;
  transition: transform 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.calc-input:focus { border-color: var(--accent); }

.calc-results {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.result-panel {
  background: var(--text);
  border-radius: var(--radius-xl);
  padding: 36px;
  color: var(--white);
}
.result-panel-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.result-panel-val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.result-main-loss {
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  margin: 24px 0;
}
.loss-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.loss-amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: #fca5a5;
  line-height: 1;
}
.loss-period { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 4px; }
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.result-mini {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 14px;
}
.result-mini-val {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.result-mini-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.calc-cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); text-align: center; margin-top: 10px; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: var(--white);
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--border);
}
.page-hero .badge { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* ---- Service detail cards ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.service-detail h3 { margin-bottom: 12px; }
.service-detail p { margin-bottom: 16px; }
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.feature-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  background: #ecfdf5;
  color: var(--success);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- Service visual placeholder ---- */
.service-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sv-bar {
  height: 10px;
  border-radius: 10px;
  background: var(--border);
  overflow: hidden;
}
.sv-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: var(--accent);
  transition: width 0.5s ease;
}
.sv-row {
  display: flex;
  gap: 12px;
  align-items: center;
}
.sv-label { font-size: 0.78rem; font-weight: 500; color: var(--text-muted); min-width: 80px; }

/* ---- Contact form ---- */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input:focus, .form-textarea:focus { border-color: var(--accent); background: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.success-msg {
  display: none;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--success);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 16px;
}

/* ---- Footer ---- */
footer {
  background: var(--text);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-logo span { color: var(--accent); }
footer p { color: rgba(255,255,255,0.45); font-size: 0.85rem; }
.footer-heading {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.8rem; }

/* ---- About page ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.value-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.value-card h4 { margin-bottom: 8px; font-size: 1rem; }
.value-card p { font-size: 0.85rem; }

/* ---- Legal pages ---- */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 10px; color: var(--text); }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.legal-content p { font-size: 0.9rem; margin-bottom: 14px; }
.legal-content ul { margin: 10px 0 14px 20px; }
.legal-content li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 6px; }
.legal-date { font-size: 0.82rem; color: var(--text-light); margin-bottom: 32px; }

/* ---- Diff section (How we're different) ---- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.diff-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.diff-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.di-blue { background: var(--accent-light); }
.di-green { background: #ecfdf5; }
.di-purple { background: #f5f3ff; }
.di-orange { background: #fff7ed; }
.diff-card h4 { margin-bottom: 4px; font-size: 0.95rem; }
.diff-card p { font-size: 0.83rem; }

/* ---- Comparison table ---- */
.comparison {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.comparison-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--bg2);
  padding: 16px 24px;
}
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  align-items: center;
}
.comparison-row:hover { background: var(--bg); }
.ch-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.ch-us { color: var(--accent); }
.cr-feature { font-size: 0.88rem; color: var(--text); font-weight: 500; }
.cr-yes { color: var(--success); font-size: 1rem; text-align: center; }
.cr-no { color: var(--danger); font-size: 1rem; text-align: center; }
.cr-partial { color: var(--warning); font-size: 0.78rem; text-align: center; font-weight: 600; }

/* ---- Pricing teaser ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: all 0.25s;
}
.pricing-card.featured {
  background: var(--text);
  border-color: var(--text);
  transform: scale(1.03);
}
.pricing-card:hover:not(.featured) { box-shadow: var(--shadow-lg); }
.pricing-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 8px; }
.pricing-card.featured .pricing-tag { color: rgba(255,255,255,0.5); }
.pricing-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-card.featured p { color: rgba(255,255,255,0.55); }
.pricing-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent); margin: 16px 0; line-height: 1; }
.pricing-price sup { font-size: 1rem; vertical-align: top; margin-top: 6px; }
.pricing-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-muted); }
.pricing-card.featured .pricing-price span { color: rgba(255,255,255,0.4); }
.pricing-features { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 9px; }
.pricing-features li { display: flex; gap: 8px; font-size: 0.85rem; color: var(--text-muted); align-items: flex-start; }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.65); }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }

/* ---- Testimonial ---- */
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.testimonial-text { font-size: 1rem; color: var(--text); font-style: italic; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 24px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .calc-container { grid-template-columns: 1fr; }
  .calc-results { position: static; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .about-story { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .diff-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr 1fr; font-size: 0.85rem; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 56px 0; }
  .cta-banner { padding: 36px 24px; }
  .steps-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border: none; padding: 0; }
  .about-values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .comparison-header, .comparison-row { padding: 12px 16px; }
}
