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

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
  background-color: #ffffff;
  color: #111827;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

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

/* ---- HEADER ---- */
.header {
  padding: 0;
  border-bottom: 1px solid #f0f2f5;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(2px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
  height: 64px;
  position: relative;
}
.logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-cta-btn {
  background: linear-gradient(90deg, #1976D2, #2196F3, #0D47A1, #1565C0, #1976D2);
  background-size: 200% 100%;
  animation: glowing-gradient 5s linear infinite;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 48px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: inline-block;
  border: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.nav-cta-btn:hover {
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.6);
  transform: translateY(-1px) translateZ(0);
}

/* ---- HERO ---- */
.hero {
  padding: 64px 0 56px;
  text-align: center;
}
.hero-kicker {
  font-size: 0.95rem;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.5;
}

.hero-headline {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: #0f172a;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-br-mobile {
  display: none;
}
.hero-description {
  font-size: 1.2rem;
  color: #334155;
  margin-bottom: 28px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-block {
  margin-bottom: 32px;
}

.hero-jump-links {
  margin-top: 14px;
  font-size: 0.875rem;
  color: #64748b;
}

.hero-jump-links a {
  color: #1976D2;
  font-weight: 600;
  text-decoration: none;
}

.hero-jump-links a:hover {
  text-decoration: underline;
}

.hero-video-wrapper {
  max-width: 720px;
  margin: 0 auto 40px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.2);
}
.hero-video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
}
.hero-trial-note {
  font-size: 0.8rem;
  color: #6c757d;
  margin-top: 14px;
}

.hero-trial-note a {
  color: #1976D2;
  text-decoration: none;
}

.hero-trial-note a:hover {
  text-decoration: underline;
}

/* ---- CTA BUTTONS ---- */
.btn-primary {
  color: white;
  border: none;
  padding: 0 32px;
  border-radius: 48px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.btn-large {
  padding: 0 36px;
  font-size: 1.05rem;
}

@keyframes glowing-gradient {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.animated-button {
  background: linear-gradient(90deg, #1976D2, #2196F3, #0D47A1, #1565C0, #1976D2);
  background-size: 200% 100%;
  animation: glowing-gradient 5s linear infinite;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.animated-button:hover {
  box-shadow: 0 0 20px rgba(33, 150, 243, 0.6);
  transform: translateY(-1px) translateZ(0);
}

/* ---- SECTION SHARED ---- */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #475569;
  text-align: center;
  margin-bottom: 48px;
  padding-inline: clamp(24px, 10%, 160px);
}

/* ---- FEATURES ---- */
.features-section {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid #eef2f6;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.features-grid--visual .feature-card--visual {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e8edf3;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.features-grid--visual .feature-card--visual:hover {
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.feature-card-media {
  background: #f1f5f9;
  line-height: 0;
  aspect-ratio: 5 / 3;
  overflow: hidden;
}

.feature-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.feature-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.feature-card-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.feature-card-body p {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 20px;
  border: 1px solid #e8edf3;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  box-shadow: 0 6px 20px -4px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.compare-intro {
  text-align: center;
  font-size: 1rem;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

.compare--early {
  padding-top: 24px;
}
.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--icon-bg, #EFF6FF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--icon-color, #2563EB);
}
.feature-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}
.feature-card p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

/* ---- SETUP ---- */
.setup-section {
  padding: 80px 0;
  border-top: 1px solid #eef2f6;
}

.setup-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.setup-steps {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.setup-steps::after {
  content: '';
  position: absolute;
  top: 26px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  background: linear-gradient(90deg, #BFDBFE, #93C5FD, #BFDBFE);
  pointer-events: none;
}
.setup-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1976D2, #2196F3);
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(33, 150, 243, 0.35);
}
.setup-step h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 8px;
}
.setup-step p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
}
.setup-help-note {
  text-align: center;
  margin-top: 0;
  font-size: 0.95rem;
  color: #2196F3;
  font-weight: 500;
}

.setup-after-steps {
  text-align: center;
  margin-top: 40px;
  width: 100%;
}

/* ---- COMPARE ---- */
.compare-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  max-width: 900px;
  margin: 0 auto 20px auto;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.title-container {
  text-align: center;
}
#why {
  scroll-margin-top: 72px;
  padding-top: 60px;
}
.compare {
  padding: 20px 0 64px;
  border-top: 1px solid #eef2f6;
}
.compare--early {
  padding-top: 0;
  border-top: none;
}
.compare-claim {
  grid-column: 1 / -1;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
}
.compare-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eef2f6;
}
.compare-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.compare-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 20px;
}
.compare-problem .compare-label {
  color: #B91C1C;
  background: #FEF2F2;
}
.compare-solution .compare-label {
  color: #15803D;
  background: #F0FDF4;
}
.label-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}
.compare-problem p {
  font-size: 1rem;
  line-height: 1.5;
  color: #9e2a2a;
  background: #fef2f2;
  padding: 16px 20px;
  border-radius: 16px;
  margin-top: 4px;
}
.solution-list {
  list-style: none;
  padding: 16px 20px;
  margin: 4px 0 0 0;
  background: #f8fafc;
  border-radius: 16px;
}
.solution-list li {
  font-size: 1rem;
  line-height: 1.5;
  color: #1f2937;
  padding: 4px 0 4px 22px;
  position: relative;
}
.solution-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 4px;
  color: #22C55E;
  font-weight: 700;
  font-size: 0.9rem;
}
.compare-fact a {
  color: #1565c0;
  font-weight: 600;
}
.compare-fact a:hover {
  text-decoration: underline;
}
.compare-fact {
  margin-top: 14px;
  font-weight: 500;
  color: #2196F3;
  font-size: 0.9rem;
  padding-left: 4px;
}

/* ---- FINAL CTA ---- */
.final-cta {
  padding: 64px 0 80px;
  text-align: center;
  background: #fafbfc;
  border-top: 1px solid #eef2f6;
}
.final-price {
  font-size: 2rem;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 12px;
}
.final-quote {
  font-size: 1.2rem;
  color: #334155;
  margin-bottom: 32px;
}

/* ---- FOOTER ---- */
.footer {
  border-top: 1px solid #eef2f6;
  padding: 32px 0;
  text-align: center;
  font-size: 0.8rem;
  color: #5f6c80;
}
.micro-footer {
  margin-top: 8px;
  font-size: 0.7rem;
  opacity: 0.7;
}

.footer-legal {
  margin-top: 10px;
  font-size: 0.75rem;
}

.footer-legal a {
  color: #5f6c80;
  text-decoration: none;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .hero-headline { font-size: 1.8rem; }
  .hero-description { font-size: 1rem; }
  .compare-title { font-size: 2rem; margin: 40px auto 16px auto; }
  .compare-item { gap: 32px; margin-bottom: 48px; padding-bottom: 32px; }
  .section-title { font-size: 1.7rem; }
  .section-subtitle { font-size: 1rem; margin-bottom: 36px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header { padding: 16px 0; }
  .logo-img { height: 36px; }
  .nav-cta-btn { padding: 8px 18px; font-size: 0.85rem; }

  .hero { padding: 40px 0 32px; }
  .hero-headline { font-size: 1.5rem; line-height: 1.35; margin-bottom: 16px; }
  .hero-description { font-size: 0.95rem; margin-bottom: 28px; padding: 0 8px; }
  .hero-video-wrapper { margin-bottom: 28px; border-radius: 16px; }
  .btn-primary, .btn-large { width: 100%; justify-content: center; padding: 0 20px; font-size: 1rem; }
  .animated-button { width: 100%; }
  .hero-trial-note { font-size: 0.75rem; margin-top: 12px; }

  .compare-title { font-size: 1.6rem; margin: 0 auto 12px auto; line-height: 1.3; }
  #why { padding-top: 48px; }
  .compare { padding: 0 0 48px; }
  .compare-item { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; padding-bottom: 28px; }
  .compare-label { font-size: 0.7rem; margin-bottom: 8px; }
  .compare-problem p { font-size: 0.9rem; padding: 14px 16px; }
  .solution-list { padding: 14px 16px; }
  .solution-list li { font-size: 0.9rem; }
  .compare-fact { font-size: 0.8rem; margin-top: 10px; }

  .features-section { padding: 56px 0; }
  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.9rem; margin-bottom: 28px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card-body { padding: 14px 16px 18px; }
  .feature-card-media { aspect-ratio: 16 / 10; }

  .setup-section { padding: 56px 0; }
  .setup-steps { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
  .setup-steps::after { display: none; }
  .step-number { margin-bottom: 14px; }
  .setup-step h3 { font-size: 0.95rem; }
  .setup-step p { font-size: 0.85rem; }
  .setup-help-note { font-size: 0.85rem; }
  .setup-after-steps { margin-top: 28px; }

  .final-cta { padding: 48px 0 56px; }
  .final-price { font-size: 1.5rem; margin-bottom: 8px; }
  .final-quote { font-size: 1rem; margin-bottom: 24px; padding: 0 12px; }
  .footer { padding: 24px 0; }
  .footer-inner p { font-size: 0.75rem; }
  .micro-footer { font-size: 0.65rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero-headline { font-size: 1.25rem; line-height: 1.4; }
  .hero-br-mobile { display: block; }
  .hero-description { font-size: 0.85rem; }
  .compare-title { font-size: 1.4rem; }
  .compare-problem p { font-size: 0.85rem; padding: 12px 14px; }
  .solution-list li { font-size: 0.85rem; }
  .compare-fact { font-size: 0.75rem; }
  .section-title { font-size: 1.3rem; }
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .final-price { font-size: 1.3rem; }
  .final-quote { font-size: 0.9rem; }
  .btn-primary, .btn-large { height: 48px; font-size: 0.9rem; }
  .logo-img { height: 32px; }
  .nav-cta-btn { padding: 6px 16px; font-size: 0.8rem; }
}

@media (max-width: 900px) and (orientation: landscape) {
  .hero { padding: 32px 0 28px; }
  .hero-headline { font-size: 1.4rem; }
  .hero-video-wrapper { max-width: 80%; }
  .compare-item { gap: 24px; }
}

/* ---- SHARED STATIC PAGES (legal, pricing, home) ---- */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.logo-link {
  display: inline-flex;
  text-decoration: none;
}

.static-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.static-nav a {
  font-size: 0.88rem;
  color: #475569;
  text-decoration: none;
  font-weight: 500;
}

.static-nav a:hover {
  color: #2196F3;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  position: relative;
  flex-shrink: 0;
}

.nav-sign-in {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.875rem;
  color: #475569;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: color 0.16s, background 0.16s;
  white-space: nowrap;
}

.nav-sign-in:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.nav-get-started {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1976D2;
  background: rgba(33, 150, 243, 0.12);
  border: 1.5px solid rgba(33, 150, 243, 0.30);
  padding: 6px 18px;
  margin-left: 8px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.nav-get-started:hover {
  color: #1565C0;
  background: rgba(33, 150, 243, 0.2);
  box-shadow: 0 4px 20px rgba(33,150,243,0.22);
}

.static-nav .nav-cta-btn {
  margin-left: 4px;
}

.nav-toggle-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .header-end .static-nav { order: 1; }
  .header-end .nav-sign-in { order: 2; }
  .header-end .nav-get-started { order: 3; }
  .static-nav .nav-sign-in-mobile { display: none; }
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #0f172a;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-main {
  flex: 1;
}

.doc-page {
  padding: 48px 0 72px;
}

.doc-header {
  margin-bottom: 28px;
}

.doc-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.doc-updated {
  font-size: 0.85rem;
  color: #64748b;
}

.mor-notice {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid #2196F3;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 28px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #334155;
}

.mor-notice a {
  color: #1976D2;
  text-decoration: none;
}

.mor-notice a:hover {
  text-decoration: underline;
}

.doc-content h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #eef2f6;
}

.doc-content p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #334155;
  margin: 0 0 12px;
}

.doc-content ul {
  margin: 0 0 14px;
  padding-left: 20px;
}

.doc-content li {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 4px;
}

.doc-content a {
  color: #1976D2;
  text-decoration: none;
}

.doc-content a:hover {
  text-decoration: underline;
}

.support-box {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 8px;
}

.support-box p {
  margin-bottom: 8px;
}

.support-box p:last-child {
  margin-bottom: 0;
}

.mor-footer-notice {
  max-width: 720px;
  margin: 0 auto 12px;
  line-height: 1.6;
  font-size: 0.78rem;
  color: #64748b;
}

.footer-support {
  margin-top: 8px;
  font-size: 0.75rem;
}

.footer-support a {
  color: #475569;
  text-decoration: none;
}

.footer-support a:hover {
  text-decoration: underline;
}

.home-hero-badge {
  display: inline-block;
  background: #EFF6FF;
  color: #1976D2;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.home-trust-card {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 20px;
  text-align: left;
}

.home-trust-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.home-trust-card p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.55;
}

.home-trust-card a {
  color: #1976D2;
  text-decoration: none;
  font-weight: 600;
}

.home-trust-card a:hover {
  text-decoration: underline;
}

.legal-links-section {
  padding: 64px 0;
  background: #f8fafc;
  border-top: 1px solid #eef2f6;
}

.legal-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.legal-link-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 22px 18px;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.legal-link-card:hover {
  box-shadow: 0 8px 24px -8px rgba(33, 150, 243, 0.18);
  transform: translateY(-2px);
}

.legal-link-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.legal-link-card p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

.pricing-hero {
  padding: 56px 0 24px;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  background: #EFF6FF;
  color: #1976D2;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.pricing-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.pricing-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto;
}

.pricing-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px 48px;
}

.price-card {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
}

.price-card-featured {
  border-color: #93C5FD;
  box-shadow: 0 8px 28px -8px rgba(33, 150, 243, 0.22);
}

.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #1976D2, #2196F3);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}

.price-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 10px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 600;
}

.price-value {
  font-size: 2.8rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: #64748b;
}

.price-note {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 20px;
}

.price-divider {
  border: none;
  border-top: 1px solid #eef2f6;
  margin: 0 0 18px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #334155;
}

.price-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #EFF6FF;
  color: #1976D2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 56px;
  border-radius: 48px;
  border: 1.5px solid #cbd5e1;
  background: #ffffff;
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-secondary:hover {
  border-color: #2196F3;
  background: #f8fbff;
}

.pricing-addon {
  max-width: 920px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.addon-card {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.addon-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.addon-content {
  flex: 1;
}

.addon-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.addon-content p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
}

.addon-price {
  font-size: 1.25rem;
  font-weight: 700;
  white-space: nowrap;
}

.addon-price span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
}

.faq-section {
  max-width: 680px;
  margin: 0 auto 72px;
  padding: 0 24px;
}

.faq-item {
  border-bottom: 1px solid #eef2f6;
  padding: 18px 0;
}

.faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.faq-a {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
}

.faq-a a {
  color: #1976D2;
  text-decoration: none;
}

/* Cold-email outreach landing */
.landing-outreach .hero-kicker {
  color: #1976D2;
  font-weight: 600;
}

.final-cta-founder {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #64748b;
}

.final-cta-founder a {
  color: #1976D2;
  font-weight: 600;
  text-decoration: none;
}

.final-cta-founder a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header-end { gap: 6px; }

  .header-end .nav-sign-in {
    display: none;
  }

  .header-end .nav-get-started {
    order: 1;
    margin-left: 0;
    padding: 5px 11px;
    font-size: 0.75rem;
  }

  .header-end .nav-toggle {
    order: 2;
    display: flex;
    z-index: 102;
  }

  .header-end .static-nav {
    order: 3;
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    min-width: 220px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #e8edf3;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  }

  .static-nav a {
    display: block;
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .nav-toggle-input:checked ~ .static-nav { display: flex; }

  .nav-toggle-input:checked + .nav-toggle .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle-input:checked + .nav-toggle .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-input:checked + .nav-toggle .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-flex { height: 56px; flex-wrap: nowrap; }
  .logo-img { height: 30px; }

  .doc-title {
    font-size: 1.6rem;
  }

  .home-trust-grid,
  .legal-links-grid,
  .pricing-plans {
    grid-template-columns: 1fr;
  }

  .addon-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
