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

:root {
  --primary: #2b233a;
  --primary-light: #4a3f5c;
  --primary-lighter: #f0edf3;
  --coral: #e74c3c;
  --coral-light: #f07060;
  --coral-lighter: #fdf0ef;
  --sage: #72b78f;
  --sage-light: #a3d4b5;
  --sage-lighter: #f0f8f3;
  --amber: #e5a84e;
  --amber-light: #ffc56e;
  --amber-lighter: #fff8eb;
  --dark: #131313;
  --text: #131313;
  --text-muted: #6B7280;
  --bg: #fafafa;
  --bg-warm: #f7f4f0;
  --border: rgba(19, 19, 19, 0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 { line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 1.125rem; font-weight: 600; }
p { color: var(--text-muted); }
a { text-decoration: none; color: inherit; }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }

/* === Scroll animations === */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Gradient text === */
.gradient-text {
  background: linear-gradient(135deg, var(--coral), var(--amber));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.underline-accent {
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
}

/* === Buttons === */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 2px 12px rgba(231, 76, 60, 0.25);
}
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(231, 76, 60, 0.35);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-block { width: 100%; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--primary); background: var(--primary-lighter); }

/* === Nav === */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.logo-emoji {
  font-size: 1.5rem;
  line-height: 1;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 6px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 4px;
}
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 99;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 1rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-mobile a:last-child { border-bottom: none; margin-top: 8px; }
.btn-text {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-text:hover { color: #fff; background: rgba(255, 255, 255, 0.08); }

/* === Hero === */
.hero {
  padding: 140px 0 180px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary) 0%, #362d47 60%, #3d3450 100%);
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-blob { display: none; }
.hero .container {
  position: relative;
  z-index: 1;
}
.hero-content { text-align: center; max-width: 720px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}
.hero h1 { margin-bottom: 20px; color: #fff; }
.hero-sub {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.7);
}
.hero-cta { display: flex; gap: 16px; align-items: center; justify-content: center; margin-bottom: 28px; }
.btn-ghost {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 8px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: #fff; }
.hero .hero-note { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.5); }

/* Trust badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}
.trust-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
}

/* === Widget Showcase === */
.widget-showcase {
  padding: 0 0 80px;
  margin-top: -140px;
  position: relative;
  z-index: 10;
}

/* Showcase tabs */
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 24px;
  background: rgba(19, 19, 19, 0.04);
  border-radius: 12px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.showcase-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.showcase-tab:hover { color: var(--text); }
.showcase-tab.active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 1px 4px rgba(19, 19, 19, 0.08);
}

/* Showcase window */
.showcase-window {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.08);
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
}

/* Showcase panels */
.showcase-panel {
  display: none;
  animation: panelIn 0.3s ease;
}
.showcase-panel.active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Widget header */
.widget-header-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  border-bottom: 1px solid #f0f0f0;
}
.widget-rating-big { font-size: 1.75rem; font-weight: 800; color: var(--text); }
.widget-stars-sm { color: var(--amber); font-size: 1rem; }
.widget-count { font-size: 0.8125rem; color: #999; margin-left: auto; }

/* Widget reviews */
.widget-review {
  padding: 20px 28px;
  border-bottom: 1px solid #f5f5f5;
}
.widget-review:last-of-type { border-bottom: none; }
.widget-review-single { border-bottom: none; }
.widget-review-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.widget-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.widget-avatar-sage { background: var(--sage); }
.widget-avatar-amber { background: var(--amber); }
.widget-avatar-coral { background: var(--coral); }
.widget-author { font-weight: 600; font-size: 0.9375rem; color: var(--text); flex: 1; }
.widget-check { color: var(--sage); font-size: 0.75rem; }
.widget-review-stars { color: var(--amber); font-size: 0.9375rem; flex-shrink: 0; }
.widget-review-stars .star-empty { color: #d1d5db; }
.widget-review-title { font-weight: 600; font-size: 1rem; color: var(--text); margin-bottom: 4px; }
.widget-review-text { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

/* Carousel nav */
.widget-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}
.widget-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  transition: background 0.2s;
}
.widget-dot-active { background: var(--coral); }
.widget-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: none;
  cursor: pointer;
  font-size: 1.125rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Widget powered */
.widget-powered {
  text-align: center;
  padding: 12px 28px;
  font-size: 0.75rem;
  color: #bbb;
  border-top: 1px solid #f3f4f6;
}
.widget-powered strong { color: var(--primary); }

/* === Social proof bar === */
.social-proof {
  padding: 24px 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.social-proof-text {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* === Section labels === */
.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

/* === Problem === */
.problem { padding: 100px 0; }
.problem-heading {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--primary);
}
.text-coral { color: var(--coral); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.problem-card {
  padding: 32px;
  border: 1px dashed rgba(19, 19, 19, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  background: #fff;
}
.problem-card:hover {
  border-color: var(--coral);
  box-shadow: 0 8px 30px rgba(19, 19, 19, 0.06);
}
.problem-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.problem-icon-coral { background: var(--coral-lighter); color: var(--coral); }
.problem-icon-amber { background: var(--amber-lighter); color: var(--amber); }
.problem-icon-sage { background: var(--sage-lighter); color: var(--sage); }
.problem-card h3 { margin-bottom: 8px; }
.problem-card p { font-size: 0.9375rem; }

/* === Solution === */
.solution {
  padding: 100px 0;
  background: var(--bg-warm);
}
.solution-card {
  background: var(--primary);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.solution-content { position: relative; z-index: 1; }
.solution-label { color: var(--coral); }
.solution-heading {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.solution-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.solution-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.solution-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}
.solution-badge .trust-check {
  background: var(--sage);
}
.solution-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.solution-widget {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(8px);
}
.solution-widget .widget-header-bar {
  border-color: rgba(255, 255, 255, 0.08);
}
.solution-review {
  border-color: rgba(255, 255, 255, 0.06) !important;
}

/* === How it works === */
.how-it-works {
  padding: 100px 0 0;
  background: #fff;
}
.how-it-works .section-header { margin-bottom: 72px; }

/* Feature rows */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 100px;
}
.feature-row-reverse .feature-row-content { order: -1; }
.feature-row-reverse .feature-row-visual { order: 1; }
.feature-row-heading {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--primary);
  margin-bottom: 12px;
}
.feature-row-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-row-content .section-label { margin-bottom: 8px; }

/* Feature mockups */
.feature-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(19, 19, 19, 0.06);
}
.feature-mockup-dark {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.08);
}

/* Review page mockup */
.mockup-review-page { padding: 24px; }
.mockup-company { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.mockup-company-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.mockup-company-name { font-weight: 700; font-size: 0.9375rem; }
.mockup-company-sub { font-size: 0.75rem; color: var(--text-muted); }
.mockup-stars-row { display: flex; gap: 4px; justify-content: center; margin-bottom: 16px; }
.mockup-star { font-size: 1.75rem; color: #d1d5db; }
.mockup-star.active { color: var(--amber); }
.mockup-input {
  padding: 10px 14px; border: 1px solid rgba(19,19,19,0.1);
  border-radius: 8px; font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 8px;
}
.mockup-input-tall { height: 56px; }
.mockup-btn {
  padding: 10px; background: var(--primary); color: #fff;
  border-radius: 8px; text-align: center; font-size: 0.8125rem; font-weight: 600; margin-top: 4px;
}
.mockup-url-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; background: var(--bg); border-top: 1px solid var(--border);
  font-size: 0.75rem; color: var(--text-muted);
}
.mockup-url-icons { display: flex; gap: 8px; color: var(--text-muted); }

/* Dashboard mockup */
.mockup-dashboard { padding: 20px; }
.mockup-dash-header {
  display: flex; gap: 20px; margin-bottom: 20px;
  padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mockup-dash-stat-value { font-size: 1.5rem; font-weight: 800; color: #fff; }
.mockup-dash-stat-label { font-size: 0.6875rem; color: rgba(255,255,255,0.5); }
.mockup-dash-review {
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-dash-review:last-child { border-bottom: none; }
.mockup-dash-review-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px;
}
.mockup-dash-name { font-weight: 600; font-size: 0.8125rem; color: #fff; }
.mockup-dash-stars { color: var(--amber); font-size: 0.75rem; }
.mockup-dash-text { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.mockup-dash-btn-respond {
  padding: 4px 12px; background: var(--coral); color: #fff;
  border-radius: 6px; font-size: 0.6875rem; font-weight: 600;
}

/* Getting started section */
.getting-started {
  background: var(--bg-warm);
  border-radius: 24px 24px 0 0;
  padding: 64px 0 80px;
  margin-top: 20px;
}
.getting-started-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px;
}
.getting-started-heading {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800; text-transform: uppercase; color: var(--primary); margin-top: 4px;
}
.getting-started-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.getting-started-mockup {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; padding: 24px; margin-bottom: 16px;
  min-height: 180px; display: flex; align-items: center; justify-content: center;
}
.getting-started-mockup-dark { background: var(--primary); border-color: transparent; }
.getting-started-step-label {
  font-size: 0.75rem; font-weight: 700; color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px;
}
.getting-started-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.getting-started-card p { font-size: 0.875rem; }

/* Getting started mockup contents */
.gs-mock-signup { width: 100%; }
.gs-mock-input {
  padding: 8px 12px; border: 1px solid rgba(19,19,19,0.1);
  border-radius: 6px; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px;
}
.gs-mock-btn {
  padding: 8px; background: var(--coral); color: #fff;
  border-radius: 6px; text-align: center; font-size: 0.75rem; font-weight: 600; margin-top: 2px;
}
.gs-mock-link { width: 100%; text-align: center; }
.gs-mock-link-url {
  padding: 10px 16px; background: rgba(255,255,255,0.08);
  border-radius: 8px; font-size: 0.8125rem; color: rgba(255,255,255,0.7);
  margin-bottom: 10px; font-family: monospace;
}
.gs-mock-link-btn {
  display: inline-block; padding: 6px 16px; background: var(--coral);
  color: #fff; border-radius: 6px; font-size: 0.75rem; font-weight: 600;
}
.gs-mock-widget { width: 100%; }
.gs-mock-widget-star { color: var(--amber); font-size: 1.125rem; font-weight: 700; margin-bottom: 12px; }
.gs-mock-widget-bar {
  height: 8px; background: rgba(19,19,19,0.06); border-radius: 4px; margin-bottom: 8px; width: 100%;
}
.gs-mock-widget-bar-short { width: 65%; }

/* === Features === */
.features { padding: 100px 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
  background: #fff;
}
.feature-card:hover {
  box-shadow: 0 8px 30px rgba(19, 19, 19, 0.08);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-icon-coral { background: var(--coral-lighter); color: var(--coral); }
.feature-icon-sage { background: var(--sage-lighter); color: var(--sage); }
.feature-icon-amber { background: var(--amber-lighter); color: var(--amber); }
.feature-icon-purple { background: var(--primary-lighter); color: var(--primary-light); }
.feature-card h3 { margin-bottom: 6px; }
.feature-card p { font-size: 0.875rem; }

/* === Wall of Love === */
.wall-of-love {
  padding: 100px 0;
  background: #fff;
}
.wall-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.wall-col { display: flex; flex-direction: column; gap: 24px; }
.wall-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.wall-card:hover {
  box-shadow: 0 8px 30px rgba(19, 19, 19, 0.06);
  transform: translateY(-2px);
}
.wall-card-featured {
  background: var(--primary);
  border-color: transparent;
  color: #fff;
}
.wall-card-featured p { color: rgba(255, 255, 255, 0.8); }
.wall-stars {
  color: var(--amber);
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.wall-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.wall-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.wall-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}
.wall-avatar-coral { background: var(--coral); }
.wall-avatar-sage { background: var(--sage); }
.wall-avatar-amber { background: var(--amber); }
.wall-card-featured .wall-avatar { background: rgba(255, 255, 255, 0.2); }
.wall-name { font-weight: 600; font-size: 0.8125rem; }
.wall-card-featured .wall-name { color: #fff; }
.wall-role { font-size: 0.75rem; color: var(--text-muted); }
.wall-card-featured .wall-role { color: rgba(255, 255, 255, 0.5); }

/* === Pricing === */
.pricing {
  padding: 100px 0;
  background: var(--bg-warm);
}
.pricing-sub { font-size: 1.125rem; margin-top: 8px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover { transform: translateY(-2px); }
.pricing-card-featured {
  border-color: var(--coral);
  border-width: 2px;
  box-shadow: 0 8px 40px rgba(231, 76, 60, 0.12);
}
.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name { font-size: 1.125rem; font-weight: 600; margin-bottom: 4px; }
.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 2px;
}
.pricing-card-featured .pricing-price { color: var(--coral); }
.pricing-period { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  padding: 6px 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sage-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2372b78f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* === FAQ === */
.faq { padding: 100px 0; background: #fff; }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: '−';
  color: var(--coral);
}
.faq-item p {
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  padding-right: 32px;
}

/* === CTA === */
.cta {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}
.cta .container { position: relative; z-index: 1; }
.cta h2 { margin-bottom: 12px; color: var(--text); }
.cta > .container > p { font-size: 1.125rem; margin-bottom: 32px; color: var(--text-muted); }
.cta-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto 12px;
}
.cta-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(19, 19, 19, 0.12);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s;
}
.cta-input::placeholder { color: var(--text-muted); }
.cta-input:focus { border-color: var(--coral); }
.cta .hero-note { display: block; text-align: center; color: var(--text-muted); font-size: 0.8125rem; }

/* === Footer === */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 60px 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand .nav-logo span { color: #fff; }
.footer-tagline { color: rgba(255, 255, 255, 0.5); font-size: 0.875rem; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-weight: 600; font-size: 0.875rem; margin-bottom: 8px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* === Responsive === */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-mobile-toggle { display: block; }

  /* Hero */
  .hero { padding: 110px 0 120px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 24px; }
  .hero-cta { flex-direction: column; align-items: center; gap: 12px; margin-bottom: 24px; }
  .btn-lg { padding: 12px 24px; font-size: 0.9375rem; }

  /* Trust badges */
  .trust-badges { flex-direction: column; gap: 8px; align-items: center; }
  .trust-badge { font-size: 0.75rem; }

  /* Widget showcase */
  .widget-showcase { margin-top: -80px; }
  .showcase-window { margin: 0 -8px; border-radius: 14px; }
  .showcase-tabs { padding: 3px; }
  .showcase-tab { padding: 6px 12px; font-size: 0.75rem; gap: 4px; }
  .showcase-tab svg { width: 14px; height: 14px; }
  .widget-header-bar { padding: 14px 18px; }
  .widget-rating-big { font-size: 1.25rem; }
  .widget-review { padding: 14px 18px; }
  .widget-avatar { width: 30px; height: 30px; font-size: 0.625rem; }
  .widget-author { font-size: 0.8125rem; }
  .widget-review-title { font-size: 0.8125rem; }
  .widget-review-text { font-size: 0.75rem; }

  /* Problem */
  .problem { padding: 72px 0; }
  .problem-heading { font-size: 1.5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-card { padding: 24px; }

  /* Solution */
  .solution { padding: 72px 0; }
  .solution-card { grid-template-columns: 1fr; padding: 32px 24px; }
  .solution-heading { font-size: 1.25rem; }
  .solution-visual { display: none; }
  .solution-badges { gap: 6px; }
  .solution-badge { font-size: 0.75rem; padding: 5px 12px; }

  /* How it works */
  .how-it-works { padding: 72px 0 0; }
  .how-it-works .section-header { margin-bottom: 48px; }
  .feature-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 64px; }
  .feature-row-reverse .feature-row-content { order: 0; }
  .feature-row-reverse .feature-row-visual { order: 0; }
  .feature-row-heading { font-size: 1.25rem; }
  .feature-mockup { border-radius: 14px; }
  .mockup-review-page { padding: 18px; }
  .mockup-star { font-size: 1.25rem; }

  /* Getting started */
  .getting-started { padding: 48px 0 64px; }
  .getting-started-grid { grid-template-columns: 1fr; }
  .getting-started-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .getting-started-heading { font-size: 1.25rem; }
  .getting-started-mockup { min-height: 140px; padding: 18px; }

  /* Wall of Love */
  .wall-of-love { padding: 72px 0; }
  .wall-grid { grid-template-columns: 1fr; }
  .wall-card { padding: 24px; }

  /* Pricing */
  .pricing { padding: 72px 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card { padding: 28px; }
  .pricing-price { font-size: 2.5rem; }

  /* FAQ */
  .faq { padding: 72px 0; }
  .faq-item summary { font-size: 0.9375rem; }
  .faq-item p { padding-right: 0; }

  /* CTA */
  .cta { padding: 72px 0; }
  .cta-form { flex-direction: column; }

  /* Footer */
  .footer { padding: 48px 0 0; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-direction: column; gap: 32px; }

  /* General section spacing */
  .section-header { margin-bottom: 40px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid .problem-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .solution-card { padding: 48px; }
  .feature-row { gap: 40px; }
}
