/* ----------
   VisaSlip Static Styles
   ---------- */
:root {
  --bg: #fafbfc;
  --surface: #ffffff;
  --ink: #2d3748;
  --muted: #718096;
  --blue: #4facdb;
  --coral: #ff8a65;
  --ink-strong: #1a202c;
  --ring: rgba(79, 172, 219, 0.3);
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

h1, h2, h3 { color: var(--ink-strong); line-height: 1.2; }
h1 { font-size: clamp(1.9rem, 1.2rem + 2vw, 3rem); margin: 0 0 0.5rem; }
h2 { font-size: clamp(1.35rem, 1rem + 1.2vw, 2rem); margin: 0 0 1.1rem; }
h3 { font-size: 1.15rem; margin: 0.2rem 0 0.3rem; }
.pricing h2 { text-align: center; }
.headline-secondary {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85em;
}

p { margin: 0.3rem 0 0.8rem; color: var(--ink); }
.sub { color: var(--muted); font-size: 1.05rem; }

.btn {
  appearance: none; border: 0; border-radius: 999px;
  padding: 0.85rem 1.2rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: var(--shadow);
}
.btn:focus { outline: 3px solid var(--ring); outline-offset: 2px; }

.btn-solid { background: var(--coral); color: #fff; }
.btn-ghost { background: transparent; border: 2px solid #e5e7eb; color: var(--ink); }
.btn-outline { background: transparent; border: 2px solid #e5e7eb; color: var(--ink); }
.small { padding: 0.6rem 0.9rem; font-size: 0.95rem; }

.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(246,251,254,0.8);
  backdrop-filter: saturate(140%) blur(6px); border-bottom: 1px solid #eef2f7;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-weight: 800;
  color: var(--ink-strong);
  font-size: 1.4rem;
  transition: transform 0.2s;
}
.logo:hover {
  transform: scale(1.02);
}
.logo img {
  width: 42px;
  height: 42px;
}
.logo span {
  color: var(--coral);
  letter-spacing: -0.5px;
}

.nav { display: flex; align-items: center; gap: 1rem; }
.nav a { text-decoration: none; color: var(--ink); font-weight: 500; }
.nav a:hover { color: var(--coral); }

.hamburger {
  display: none; background: transparent; border: 0; padding: 0.4rem; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }

/* Hero */
.hero {
  background: linear-gradient(180deg, rgba(108,207,246,0.12), rgba(246,251,254,0));
  padding: 3.5rem 0 2rem;
}
.hero-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 3rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(108, 207, 246, 0.15);
}
.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.hero-price {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0;
  text-align: center;
}
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.hero-features li {
  font-size: 0.875rem;
  color: var(--muted);
  position: relative;
  padding-left: 1.25rem;
}
.hero-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 600;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.gradient {
  background: linear-gradient(90deg, var(--blue), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.proof-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(79, 172, 219, 0.12) 0%, rgba(79, 172, 219, 0.06) 100%);
  border: 2px solid rgba(79, 172, 219, 0.3);
  color: var(--blue);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}
.clarity-notice-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}
.clarity-notice-top svg {
  flex-shrink: 0;
}
.clarity-notice-top strong {
  color: #1e40af;
}
.cta-row { display: flex; gap: 0.8rem; margin: 1rem 0 1.5rem; flex-wrap: wrap; align-items: center; }
.sample-link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s, text-decoration 0.2s;
}
.sample-link:hover {
  color: var(--blue);
  text-decoration: underline;
}
.btn svg {
  flex-shrink: 0;
}
.stats-row {
  display: flex;
  gap: 2rem;
  margin: 2rem 0 0;
  flex-wrap: wrap;
  justify-content: center;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.trust-badge-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, rgba(79, 172, 219, 0.08) 0%, rgba(79, 172, 219, 0.04) 100%);
  border-radius: 16px;
  flex-wrap: wrap;
}
.trust-row { display:flex; gap: .6rem; flex-wrap: wrap; }
.trust-badge {
  background: white;
  border: 1.5px solid rgba(79, 172, 219, 0.2);
  padding: .5rem .85rem;
  border-radius: 999px;
  font-size: .875rem;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}
.clarity-notice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}
.clarity-notice svg {
  flex-shrink: 0;
}
.clarity-notice strong {
  color: #1e40af;
}

/* How */
.how {
  padding: 3.5rem 0 2rem;
  background: linear-gradient(180deg, rgba(246,251,254,0), rgba(79,172,219,0.04));
}
.how h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.step {
  background: var(--surface);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 2px solid #f0f4f8;
  transition: all 0.3s ease;
  position: relative;
}
.step:hover {
  border-color: rgba(79, 172, 219, 0.3);
  box-shadow: 0 8px 24px rgba(79, 172, 219, 0.12);
  transform: translateY(-4px);
}
.icon.circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), rgba(79, 172, 219, 0.8));
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(79, 172, 219, 0.25);
}
.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--ink-strong);
}
.step p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  font-size: 0.975rem;
}
.what-you-receive {
  background: linear-gradient(135deg, #ffffff 0%, rgba(108, 207, 246, 0.03) 100%);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 2px solid rgba(108, 207, 246, 0.15);
  max-width: 850px;
  margin: 0 auto;
}
.what-you-receive h3 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: var(--ink-strong);
  font-size: 1.35rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}
.what-you-receive h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--coral));
  border-radius: 2px;
}
.what-you-receive ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.what-you-receive li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  line-height: 1.7;
}
.what-you-receive li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 1.3rem;
}
.reminder-box {
  background: linear-gradient(135deg, rgba(255, 138, 101, 0.08) 0%, rgba(255, 138, 101, 0.04) 100%);
  border: 2px solid rgba(255, 138, 101, 0.2);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
}
.cta-center {
  text-align: center;
  margin-top: 2.5rem;
}
.btn-large {
  padding: 1.1rem 2rem;
  font-size: 1.1rem;
}

/* Pricing */
.pricing {
  padding: 3rem 0 3rem;
  background: linear-gradient(180deg, rgba(79,172,219,0.03), rgba(246,251,254,0));
}
.section-sub {
  color: var(--muted);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.1rem;
}
.pricing-disclaimer {
  color: #64748b;
  text-align: center;
  font-size: 0.875rem;
  margin: 0.75rem auto 2.5rem;
  max-width: 700px;
  padding: 0.75rem 1.5rem;
  background: #f8fafc;
  border-left: 3px solid #cbd5e1;
  border-radius: 6px;
  font-style: italic;
}
.option-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.option-tile {
  background: var(--surface);
  border-radius: 24px;
  padding: 3rem 2rem 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  border: 2px solid #f0f4f8;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.option-tile:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(79, 172, 219, 0.15);
  transform: translateY(-4px);
}
.option-tile.highlight {
  border-color: var(--coral);
  background: linear-gradient(135deg, #fff, rgba(255,138,101,0.04));
}
.option-tile.highlight:hover {
  box-shadow: 0 12px 40px rgba(255, 138, 101, 0.2);
}
.tile-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--coral);
  color: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.tile-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.tile-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-strong);
  margin: 0;
  line-height: 1.2;
}
.tile-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink-strong);
  margin: 0.25rem 0;
  letter-spacing: -0.5px;
}
.tile-desc {
  font-size: 1rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}
.tile-sample-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  border: 1.5px solid rgba(79, 172, 219, 0.3);
  background: rgba(79, 172, 219, 0.05);
  transition: all 0.2s ease;
  z-index: 10;
  position: relative;
}
.tile-sample-link:hover {
  background-color: rgba(79, 172, 219, 0.15);
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(79, 172, 219, 0.2);
}
.tile-sample-link svg {
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

/* Comparison Table */
.comparison-section {
  max-width: 950px;
  margin: 4rem auto 0;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, #ffffff 0%, rgba(108, 207, 246, 0.02) 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
  border: 2px solid rgba(108, 207, 246, 0.15);
}
.comparison-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.comparison-lead {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-strong);
  margin: 0 0 1rem;
  line-height: 1.3;
}
.comparison-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}
.comparison-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink-strong);
  margin: 0 0 2rem;
  position: relative;
  padding-bottom: 1rem;
}
.comparison-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--coral));
  border-radius: 2px;
}
.comparison-table {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 0;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.comparison-header {
  display: contents;
}
.comparison-header .comparison-cell {
  background: #f9fafb;
  padding: 1.25rem 1rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #e5e7eb;
}
.comparison-header .tier-basic {
  background: linear-gradient(135deg, rgba(79, 172, 219, 0.1) 0%, rgba(79, 172, 219, 0.05) 100%);
}
.comparison-header .tier-premium {
  background: linear-gradient(135deg, rgba(255, 138, 101, 0.1) 0%, rgba(255, 138, 101, 0.05) 100%);
}
.tier-badge-table {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-strong);
  margin-bottom: 0.5rem;
}
.tier-price-table {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}
.comparison-row {
  display: contents;
}
.comparison-row .comparison-cell {
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.comparison-row .feature-name {
  font-weight: 600;
  color: var(--ink-strong);
  text-align: left;
  justify-content: flex-start;
  background: #fafbfc;
}
.comparison-row:last-of-type .comparison-cell {
  border-bottom: none;
}
.highlight-row .comparison-cell {
  background: #fef3c7;
  font-weight: 600;
}
.comparison-note {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.04) 100%);
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Testimonials */
.testimonials { padding: 2.5rem 0 1rem; }
.testimonial-list { position: relative; min-height: 110px; }
.testimonial { display:none; margin: 0; }
.testimonial.active { display:block; }
blockquote { margin: 0; font-size: 1.1rem; }
figcaption { color: var(--muted); margin-top: .35rem; }
.dots { display:flex; gap:.35rem; margin-top: .5rem; }
.dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; background: #d1d5db; cursor: pointer;
}
.dot.active { background: var(--coral); }

/* FAQ */
.faq {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(180deg, rgba(246,251,254,0), rgba(108,207,246,0.04));
}
.faq h2 {
  text-align: center;
  margin-bottom: 3rem;
}
.accordion {
  background: var(--surface);
  border-radius: 16px;
  margin-bottom: 1rem;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 2px solid #f0f4f8;
  transition: all 0.25s ease;
  overflow: hidden;
}
.accordion:hover {
  border-color: rgba(79, 172, 219, 0.3);
  box-shadow: 0 4px 16px rgba(79, 172, 219, 0.1);
}
.accordion[open] {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(79, 172, 219, 0.15);
}
.accordion summary {
  cursor: pointer;
  padding: 1.5rem 1.75rem;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  color: var(--ink-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  position: relative;
}
.accordion summary:hover {
  color: var(--blue);
}
.accordion summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
  transition: transform 0.3s ease, color 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion .content {
  padding: 0 1.75rem 1.75rem 1.75rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.975rem;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
.site-footer { background: #e9f6fc; border-top: 1px solid #dbeafe; }
.footer-inner {
  padding: 1.6rem 0; display:grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 1rem; align-items: start;
}
.footer-inner .brand { display:flex; gap:.7rem; }
.footer-inner .brand img { width: 30px; height: 30px; margin-top: .15rem; }
.footer-inner .links { display:flex; flex-direction:column; gap:.25rem; }
.footer-inner .links a { color: var(--ink); text-decoration: none; }
.footer-inner .links a:hover { color: var(--coral); }
.footer-inner .support { display:flex; flex-direction:column; gap:.25rem; }
.footer-inner .support .btn {
  padding: 0.4rem 0.8rem;
  font-size: 0.9rem;
  border-radius: 6px;
  align-self: flex-start;
}
.footer-inner .label { font-weight:700; margin: 0 0 0.25rem 0; }
.footer-inner .muted { color: var(--muted); font-size:.95rem; margin: 0; }
.bottomline { border-top: 1px solid #cfeaf7; background:#def3fb; }
.smallprint {
  display:flex; justify-content:space-between; align-items:center; gap:.8rem; padding:.6rem 0; color: var(--muted);
  font-size:.95rem;
}
.smallprint a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.smallprint a:hover {
  color: var(--coral);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
  .container { width: min(100%, 90vw); }
  .hero { padding: 2.5rem 0 1.5rem; }
  .hero-card {
    padding: 2rem 1.5rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-image {
    display: none;
  }
  .trust-badge-bar {
    padding: 1rem 1.25rem;
    gap: 0.75rem;
  }
  .trust-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.7rem;
  }
  h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  h2 { font-size: clamp(1.25rem, 4vw, 1.75rem); }
  .sub { font-size: 1rem; }

  /* Hero stats */
  .stats-row {
    gap: 1.5rem;
    justify-content: center;
  }
  .stat-number {
    font-size: 1.35rem;
  }
  .stat-label {
    font-size: 0.8rem;
  }

  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 1rem; }
  .step { padding: 1.5rem; }

  /* Pricing tiles - better mobile spacing */
  .pricing { padding: 2.5rem 0 2rem; }
  .option-tiles {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 420px;
  }
  .option-tile {
    padding: 2.5rem 2rem;
  }
  .tile-icon {
    font-size: 3.5rem;
  }
  .tile-title {
    font-size: 1.35rem;
  }
  .tile-price {
    font-size: 1.85rem;
  }
  .tile-desc {
    font-size: 0.95rem;
  }

  /* Comparison table mobile */
  .comparison-section {
    padding: 1.5rem;
  }
  .comparison-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .comparison-table {
    grid-template-columns: 1.2fr 1fr 1fr;
    font-size: 0.9rem;
  }
  .comparison-header .comparison-cell {
    padding: 0.9rem 0.5rem;
  }
  .comparison-row .comparison-cell {
    padding: 0.75rem 0.5rem;
  }
  .tier-badge-table {
    font-size: 0.9rem;
  }
  .tier-price-table {
    font-size: 0.8rem;
  }

  /* Better touch targets */
  .btn { padding: 0.9rem 1.3rem; min-height: 44px; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; }

  /* Navigation */
  .hide-on-mobile { display: none; }
  .hamburger { display: inline-block; }
  .nav {
    position: fixed; inset: 64px 0 auto 0; background: rgba(255,255,255,.98); padding: 1rem 1.2rem;
    display: none; flex-direction: column; gap: .6rem; border-bottom: 1px solid #eee; z-index: 40;
  }
  .nav.open { display: flex; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .smallprint {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
}

/* Referral CTA Section */
.referral-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.referral-card {
  background: white;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.referral-content h2 {
  font-size: 36px;
  margin: 0 0 12px 0;
  color: #1a1a1a;
}

.referral-subtitle {
  font-size: 18px;
  color: #666;
  margin: 0 0 40px 0;
}

.referral-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
  text-align: left;
}

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-text strong {
  font-size: 18px;
  color: #1a1a1a;
}

.benefit-text span {
  font-size: 14px;
  color: #666;
}

.referral-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.referral-cta-buttons .btn {
  min-width: 200px;
}

@media (max-width: 768px) {
  .referral-card {
    padding: 40px 24px;
  }
  
  .referral-content h2 {
    font-size: 28px;
  }
  
  .referral-benefits {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .referral-cta-buttons {
    flex-direction: column;
  }
  
  .referral-cta-buttons .btn {
    width: 100%;
  }
}
