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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #374151;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e8e8ec;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-plan {
  font-weight: 300;
  color: #111827;
}

.logo-trip {
  font-weight: 600;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: #6b7280;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #111827;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 12px 28px;
  font-size: 0.9375rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background: #f3f4f6;
  color: #374151;
  padding: 12px 28px;
  font-size: 0.9375rem;
  border: 1px solid #d1d5db;
}

.btn-secondary:hover {
  background: #e5e7eb;
  border-color: #9ca3af;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8125rem;
  border-radius: 8px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.03) 40%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #667eea;
  background: rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: 3.75rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 720px;
  margin: 0 auto 24px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Section shared ── */
.section-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #667eea;
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: #6b7280;
  text-align: center;
  max-width: 480px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

/* ── Features ── */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e8e8ec;
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  border-color: #c7c7cc;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(102, 126, 234, 0.06);
  border: 1px solid rgba(102, 126, 234, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
}

/* ── Workflow ── */
.workflow {
  padding: 100px 0;
  background: #f7f7f8;
}

.workflow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 16px;
}

.workflow-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.workflow-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border: 1px solid rgba(102, 126, 234, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #667eea;
  margin: 0 auto 20px;
}

.workflow-connector {
  width: 60px;
  height: 1px;
  background: #d1d5db;
  flex-shrink: 0;
  margin-top: 24px;
}

.workflow-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.workflow-step p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ── CTA ── */
.cta {
  padding: 100px 0;
  text-align: center;
}

.cta-card {
  background: #ffffff;
  border: 1px solid #e8e8ec;
  border-radius: 24px;
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
  opacity: 0.6;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta p {
  color: #6b7280;
  font-size: 1.0625rem;
  margin-bottom: 36px;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid #e8e8ec;
  padding: 48px 0;
}

.footer .logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.8125rem;
  color: #9ca3af;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  text-align: left;
}

.footer-brand .logo {
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #111827;
}

/* ── Hero Reassurance ── */
.hero-reassurance {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-top: 16px;
  text-align: center;
}

/* ── Compare Section ── */
.compare {
  padding: 100px 0;
  background: #f7f7f8;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
}

.compare-col {
  background: #ffffff;
  border: 1px solid #e8e8ec;
  border-radius: 16px;
  padding: 36px;
}

.compare-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8ec;
}

.compare-heading-old {
  color: #9ca3af;
}

.compare-heading-new {
  color: #111827;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.compare-list li {
  font-size: 0.875rem;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}

.compare-old .compare-list li {
  color: #9ca3af;
}

.compare-old .compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.compare-new .compare-list li {
  color: #374151;
}

.compare-new .compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='3' 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;
  background-size: 8px;
}

/* ── Social Proof ── */
.proof {
  padding: 100px 0;
  background: #f7f7f8;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.proof-stat {
  text-align: center;
  padding: 32px 20px;
  background: #ffffff;
  border: 1px solid #e8e8ec;
  border-radius: 16px;
}

.proof-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.proof-label {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.6;
}

.proof-testimonial {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.proof-quote {
  font-size: 1.0625rem;
  color: #374151;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  padding: 0 24px;
}

.proof-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-author-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
}

.proof-author-role {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* ── Pricing Page ── */
.pricing-hero {
  padding: 160px 24px 80px;
  text-align: center;
}

/* Legacy 3-column grid — kept for reference, replaced by single-wrap on the pricing page */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Single-card layout for Early Access pricing */
.pricing-single-wrap {
  max-width: 520px;
  margin: 48px auto 0;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e8e8ec;
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
}

.pricing-card-featured {
  border-color: rgba(102, 126, 234, 0.4);
  position: relative;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.08);
}

.pricing-card-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Early Access badge inside the card */
.pricing-early-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #667eea;
  background: rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.pricing-name {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #9ca3af;
}

.pricing-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e8e8ec;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  font-size: 0.8125rem;
  color: #6b7280;
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(102, 126, 234, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23667eea' stroke-width='3' 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;
  background-size: 7px;
}

.pricing-features li.disabled {
  color: #c7c7cc;
}

.pricing-features li.disabled::before {
  background: rgba(0, 0, 0, 0.04);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23c7c7cc' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 6px;
}

/* Founder note below the card */
.pricing-founder-note {
  max-width: 560px;
  margin: 48px auto 0;
  background: #ffffff;
  border: 1px solid #e8e8ec;
  border-radius: 16px;
  padding: 28px 32px;
  text-align: left;
}

.pricing-founder-text {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 16px;
}

.pricing-founder-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #667eea;
  transition: color 0.2s;
}

.pricing-founder-link:hover {
  color: #5468d4;
}

/* ── FAQ on Pricing Page ── */
.faq {
  padding: 100px 0;
  background: #f7f7f8;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e8e8ec;
  border-radius: 12px;
  padding: 24px;
}

.faq-question {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 8px;
}

.faq-answer {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.7;
}

/* ── Scroll Animation ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Solutions Page ── */

.nav-link-active {
  color: #111827;
}

.sol-hero {
  position: relative;
  padding: 160px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.sol-hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.sol-hero-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #667eea;
  background: rgba(102, 126, 234, 0.08);
  border: 1px solid rgba(102, 126, 234, 0.2);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.sol-hero-headline {
  font-size: 3.25rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 600px;
  margin: 0 auto 20px;
}

.sol-hero-subtitle {
  font-size: 1.0625rem;
  color: #6b7280;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.sol-nav-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.sol-pill {
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  background: #ffffff;
  color: #6b7280;
  transition: all 0.2s;
}

.sol-pill:hover {
  border-color: #9ca3af;
  color: #111827;
  transform: translateY(-2px);
}

.sol-pill-indigo:hover { border-color: rgba(102,126,234,0.5); background: rgba(102,126,234,0.06); color: #667eea; }
.sol-pill-emerald:hover { border-color: rgba(52,211,153,0.5); background: rgba(52,211,153,0.06); color: #059669; }
.sol-pill-amber:hover { border-color: rgba(245,158,11,0.5); background: rgba(245,158,11,0.06); color: #d97706; }
.sol-pill-violet:hover { border-color: rgba(129,140,248,0.5); background: rgba(129,140,248,0.06); color: #6366f1; }

.sol-persona {
  padding: 100px 0;
  position: relative;
}

.sol-persona-alt {
  background: #f7f7f8;
}

.sol-persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.sol-persona-grid-flip .sol-persona-content { order: 2; }
.sol-persona-grid-flip .sol-persona-visual { order: 1; }

.sol-persona-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.sol-persona-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-bg);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.sol-persona-title {
  font-size: 1.875rem;
  font-weight: 600;
  color: #111827;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.sol-persona-quote {
  font-size: 0.9375rem;
  color: #6b7280;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 2px solid #d1d5db;
}

.sol-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.sol-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.6;
}

.sol-benefits li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--check);
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' 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;
  background-size: 10px;
}

.sol-pain {
  background: #f9fafb;
  border: 1px solid #e8e8ec;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 28px;
}

.sol-pain h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.sol-pain p {
  font-size: 0.8125rem;
  color: #6b7280;
  line-height: 1.7;
}

.sol-card {
  background: #ffffff;
  border: 1px solid #e8e8ec;
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.sol-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--glow);
  opacity: 0.7;
}

.sol-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 120px;
  background: radial-gradient(ellipse, var(--glow), transparent 70%);
  opacity: 0.04;
  pointer-events: none;
}

.sol-card-icon {
  width: 60px;
  height: 60px;
  background: #f7f7f8;
  border: 1px solid #e8e8ec;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.sol-card-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.sol-card-desc {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-bottom: 24px;
}

.sol-card-metrics {
  display: flex;
  gap: 28px;
  margin-bottom: 24px;
}

.sol-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sol-metric-val {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
}

.sol-metric-lbl {
  font-size: 0.6875rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sol-card-bar {
  height: 4px;
  background: #e8e8ec;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.sol-card-bar-fill {
  height: 100%;
  background: var(--bar);
  border-radius: 4px;
  opacity: 0.7;
}

.sol-card-bar-label {
  font-size: 0.6875rem;
  color: #9ca3af;
}

/* ── Responsive: Tablet (768px) ── */
@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-single-wrap {
    max-width: 100%;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 1.75rem;
  }

  .workflow-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .workflow-step {
    padding: 0;
  }

  .workflow-connector {
    width: 1px;
    height: 32px;
    margin: 0;
  }

  .sol-hero-headline {
    font-size: 2.5rem;
  }

  .sol-persona-grid,
  .sol-persona-grid-flip {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sol-persona-grid-flip .sol-persona-content { order: 1; }
  .sol-persona-grid-flip .sol-persona-visual { order: 2; }

  .sol-persona-title {
    font-size: 1.5rem;
  }

  .sol-card-metrics {
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── Responsive: Mobile (480px) ── */
@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 60px;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 24px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .section-subtitle {
    margin-bottom: 40px;
  }

  .compare-col {
    padding: 24px;
  }

  .cta-card {
    padding: 48px 24px;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .sol-hero {
    padding: 120px 16px 60px;
  }

  .sol-hero-headline {
    font-size: 2rem;
  }

  .sol-nav-pills {
    flex-direction: column;
    align-items: center;
  }

  .sol-persona {
    padding: 60px 0;
  }

  .sol-card {
    padding: 24px;
  }

  .sol-card-metrics {
    flex-wrap: wrap;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pricing-founder-note {
    padding: 24px 20px;
  }
}
