/* ================================================
   BARBERIUM — PUBLIC PAGES
   Light precision aesthetic · pages.css
   ================================================ */

:root {
  --bg-0:       #ffffff;
  --bg-1:       #f8fafc;
  --bg-2:       #f1f5f9;
  --border-0:   #e8edf3;
  --border-1:   #d4dce8;
  --border-acc: rgba(33,150,243,0.30);
  --text-0:     #0f172a;
  --text-1:     #475569;
  --text-2:     #64748b;
  --blue:       #2196F3;
  --blue-dark:  #1565C0;
  --blue-hi:    #1976D2;
  --blue-g1:    rgba(33,150,243,0.07);
  --blue-g2:    rgba(33,150,243,0.14);
  --green:      #16a34a;
  --green-g:    rgba(22,163,74,0.10);
  --r-s:  10px;
  --r-m:  14px;
  --r-l:  20px;
  --r-xl: 26px;
  --font-h: 'Outfit', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-acc: 0 4px 20px rgba(33,150,243,0.22);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  overflow-x: clip;
}

html, body {
  max-width: 100%;
}

/* ---- Body ---- */
body {
  font-family: var(--font-b);
  background-color: var(--bg-0);
  color: var(--text-0);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ================================================
   LAYOUT
   ================================================ */

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

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  max-width: 100%;
}

.site-main { flex: 1; }

/* ================================================
   HEADER
   ================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-0);
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  position: relative;
  min-width: 0;
}

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

.logo-img {
  height: 44px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

/* ---- Nav ---- */
.static-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.static-nav a {
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-1);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: var(--r-s);
  transition: color 0.16s, background 0.16s;
  letter-spacing: 0.005em;
}

.static-nav a:hover {
  color: var(--text-0);
  background: var(--bg-2);
}

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

.nav-get-started {
  font-family: var(--font-b);
  font-size: 0.875rem;
  color: var(--blue);
  background: var(--blue-g1);
  border: 1.5px solid var(--border-acc);
  font-weight: 600;
  padding: 6px 18px;
  margin-left: 8px;
  border-radius: var(--r-s);
  text-decoration: none;
  transition: background 0.16s, box-shadow 0.16s, color 0.16s;
  white-space: nowrap;
}

.nav-get-started:hover {
  background: var(--blue-g2);
  color: var(--blue-dark);
  box-shadow: var(--shadow-acc);
}

.nav-sign-in {
  font-family: var(--font-b);
  font-size: 0.875rem;
  color: var(--text-1);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-s);
  text-decoration: none;
  transition: color 0.16s, background 0.16s;
  white-space: nowrap;
}

.nav-sign-in:hover {
  color: var(--text-0);
  background: var(--bg-2);
}

.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: var(--r-s);
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
}

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

@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; }
}

/* ================================================
   BUTTONS
   ================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: var(--blue);
  border: none;
  padding: 0 28px;
  height: 52px;
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--blue-hi);
  box-shadow: var(--shadow-acc);
  transform: translateY(-1px);
}

.btn-large {
  height: 56px;
  padding: 0 36px;
  font-size: 1rem;
}

.btn-arrow {
  white-space: nowrap;
}

.btn-label--short {
  display: none;
}

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

.animated-button {
  background: linear-gradient(90deg, #1565C0, #2196F3, #1976D2, #42A5F5, #1565C0);
  background-size: 200% 100%;
  animation: glowing-gradient 5s linear infinite;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.btn-primary.animated-button,
.btn-primary.animated-button:hover {
  background: linear-gradient(90deg, #1565C0, #2196F3, #1976D2, #42A5F5, #1565C0);
  background-size: 200% 100%;
}

.animated-button:hover,
.btn-primary.animated-button:hover {
  box-shadow: 0 0 28px rgba(33,150,243,0.40), 0 4px 16px rgba(33,150,243,0.22);
  transform: translateY(-1px) translateZ(0);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-1);
  background: var(--bg-0);
  border: 1.5px solid var(--border-1);
  padding: 0 28px;
  height: 52px;
  border-radius: var(--r-xl);
  cursor: pointer;
  transition: all 0.18s ease;
}

.btn-secondary:hover {
  color: var(--blue);
  border-color: var(--blue);
  background: var(--blue-g1);
}

/* ================================================
   HOME — HERO
   ================================================ */

.hero {
  padding: 88px 0 72px;
  text-align: center;
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 60%);
  border-bottom: 1px solid var(--border-0);
}

.hero-container { position: relative; z-index: 1; }

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-g1);
  border: 1.5px solid var(--border-acc);
  color: var(--blue);
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-headline {
  font-family: var(--font-h);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-0);
  max-width: 820px;
  margin: 0 0 20px;
  text-align: left;
}

@media (min-width: 769px) {
  .hero-headline {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-1);
  margin: 0 0 36px;
  line-height: 1.72;
  text-align: left;
  padding-inline: clamp(16px, 6%, 80px);
}

@media (min-width: 769px) {
  .hero-description {
    text-align: center;
    padding-inline: clamp(32px, 14%, 200px);
  }
}

.hero-description strong {
  color: var(--text-0);
  font-weight: 600;
}

.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-trial-note {
  font-size: 0.78rem;
  color: var(--text-2);
  text-align: center;
  line-height: 1.65;
  padding-inline: clamp(24px, 12%, 180px);
}

.hero-trial-note a { color: var(--blue); text-decoration: none; }
.hero-trial-note a:hover { text-decoration: underline; }

/* ================================================
   HOME — FEATURES
   ================================================ */

.features-section {
  padding: 80px 0;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border-0);
}

.section-title {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
  text-align: center;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-1);
  text-align: center;
  margin-bottom: 48px;
  padding-inline: clamp(24px, 10%, 160px);
}

.features-grid:not(.features-grid--visual) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.features-grid.features-grid--visual {
  margin-bottom: 0;
}

.feature-card {
  background: var(--bg-0);
  border: 1px solid var(--border-0);
  border-radius: var(--r-l);
  padding: 22px 18px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.feature-card:hover {
  border-color: var(--border-acc);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-s);
  background: var(--blue-g1);
  border: 1px solid var(--border-acc);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
}

.feature-card h3 {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.79rem;
  color: var(--text-1);
  line-height: 1.55;
}

/* ================================================
   HOME — CLOSE (CTA + links combined)
   ================================================ */

.home-close-section {
  padding: 72px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
  border-top: 1px solid var(--border-0);
}

.home-close-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.home-close-cta {
  max-width: 560px;
}

.final-cta-founder {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-2);
}

.final-cta-founder a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

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

.home-close-links {
  width: 100%;
  max-width: 720px;
}

.home-close-links-title {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-2);
  margin-bottom: 16px;
}

.legal-links-grid--compact {
  margin-top: 0;
}

.legal-links-grid--compact .legal-link-card {
  padding: 16px 14px;
}

.legal-links-grid--compact .legal-link-card h3 {
  font-size: 0.82rem;
}

.legal-links-grid--compact .legal-link-card p {
  font-size: 0.75rem;
}

/* ================================================
   HOME — LEGAL LINKS SECTION (legacy)
   ================================================ */

.legal-links-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-0);
}

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

.legal-link-card {
  display: block;
  background: var(--bg-0);
  border: 1px solid var(--border-0);
  border-radius: var(--r-l);
  padding: 22px 18px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

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

.legal-link-card h3 {
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 6px;
}

.legal-link-card p {
  font-size: 0.79rem;
  color: var(--text-1);
  line-height: 1.5;
}

/* ================================================
   HOME — FINAL CTA
   ================================================ */

.final-cta {
  padding: 88px 0;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
  border-top: 1px solid var(--border-0);
}

.final-cta-container { position: relative; z-index: 1; }

.final-price {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
  margin-bottom: 12px;
}

.final-quote {
  font-size: 1.1rem;
  color: var(--text-1);
  margin-bottom: 36px;
  text-align: left;
}

/* ================================================
   PRICING — HERO
   ================================================ */

.pricing-hero {
  padding: 72px 0 28px;
  text-align: center;
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 70%);
  border-bottom: 1px solid var(--border-0);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  background: var(--blue-g1);
  border: 1.5px solid var(--border-acc);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.pricing-title {
  font-family: var(--font-h);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
  margin-bottom: 12px;
  text-align: left;
}

.pricing-subtitle {
  font-size: 1rem;
  color: var(--text-1);
  max-width: 500px;
  margin: 0;
  line-height: 1.68;
  text-align: left;
}

/* ================================================
   PRICING — PLANS
   ================================================ */

.pricing-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
  padding: 40px 28px 56px;
}

.price-card {
  background: var(--bg-0);
  border: 1.5px solid var(--border-0);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.price-card-featured {
  border-color: rgba(33,150,243,0.45);
  box-shadow: 0 0 0 1px rgba(33,150,243,0.15), var(--shadow-md), 0 0 40px rgba(33,150,243,0.08);
}

.price-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #1565C0, #2196F3);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(33,150,243,0.35);
}

.price-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-2);
  margin-bottom: 14px;
}

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

.price-currency {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-0);
  align-self: flex-start;
  margin-top: 8px;
}

.price-value {
  font-family: var(--font-h);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--text-0);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 0.88rem;
  color: var(--text-1);
}

.price-note {
  font-size: 0.78rem;
  color: var(--text-2);
  margin-bottom: 20px;
}

.price-divider {
  border: none;
  border-top: 1px solid var(--border-0);
  margin: 0 0 20px;
}

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

.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-1);
}

.price-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-g);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid rgba(22,163,74,0.20);
}

/* ================================================
   PRICING — ADDON
   ================================================ */

.pricing-addon {
  max-width: 880px;
  margin: 0 auto 60px;
  padding: 0 28px;
}

.addon-card {
  background: var(--bg-0);
  border: 1.5px solid var(--border-0);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.addon-card:hover {
  border-color: var(--border-1);
  box-shadow: var(--shadow-md);
}

.addon-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-s);
  background: var(--blue-g1);
  border: 1px solid var(--border-acc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.addon-content { flex: 1; }

.addon-content h3 {
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 4px;
}

.addon-content p {
  font-size: 0.82rem;
  color: var(--text-1);
  line-height: 1.5;
}

.addon-price {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-0);
  white-space: nowrap;
}

.addon-price span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-2);
}

/* ================================================
   PRICING — FAQ
   ================================================ */

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

.faq-item {
  border-bottom: 1px solid var(--border-0);
  padding: 20px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-family: var(--font-h);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-0);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.faq-a {
  font-size: 0.87rem;
  color: var(--text-1);
  line-height: 1.72;
}

.faq-a a { color: var(--blue); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

/* ================================================
   MOR NOTICE (shared)
   ================================================ */

.mor-notice {
  background: var(--blue-g1);
  border: 1px solid var(--border-acc);
  border-left: 4px solid var(--blue);
  border-radius: var(--r-m);
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 0.87rem;
  line-height: 1.68;
  color: var(--text-1);
}

.mor-notice strong { color: var(--text-0); }
.mor-notice a { color: var(--blue); text-decoration: none; }
.mor-notice a:hover { text-decoration: underline; }

/* ================================================
   DOC PAGES (privacy, terms, refund)
   ================================================ */

.doc-page { padding: 60px 0 88px; }

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

.doc-title {
  font-family: var(--font-h);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-0);
  margin-bottom: 8px;
}

.doc-updated {
  font-size: 0.82rem;
  color: var(--text-2);
}

.doc-content h2 {
  font-family: var(--font-h);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-0);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-0);
  letter-spacing: -0.005em;
}

.doc-content h2:first-child { margin-top: 0; }

.doc-content p {
  font-size: 0.91rem;
  line-height: 1.82;
  color: var(--text-1);
  margin: 0 0 12px;
}

.doc-content p strong { color: var(--text-0); font-weight: 600; }

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

.doc-content li {
  font-size: 0.91rem;
  line-height: 1.82;
  color: var(--text-1);
  margin-bottom: 4px;
}

.doc-content li strong { color: var(--text-0); font-weight: 600; }

.doc-content a { color: var(--blue); text-decoration: none; }
.doc-content a:hover { text-decoration: underline; }

.support-box {
  background: var(--bg-1);
  border: 1px solid var(--border-0);
  border-radius: var(--r-m);
  padding: 18px 20px;
  margin-top: 8px;
}

.support-box p {
  font-size: 0.88rem;
  color: var(--text-1);
  margin-bottom: 8px;
}

.support-box p:last-child { margin-bottom: 0; }
.support-box p strong { color: var(--text-0); }
.support-box a { color: var(--blue); text-decoration: none; }
.support-box a:hover { text-decoration: underline; }

/* ================================================
   FOOTER
   ================================================ */

.footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border-0);
  padding: 32px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mor-footer-notice {
  max-width: 700px;
  line-height: 1.65;
  font-size: 0.75rem;
  color: var(--text-2);
}

.mor-footer-notice strong { color: var(--text-1); }

.footer-legal {
  font-size: 0.75rem;
  color: var(--text-2);
  overflow-wrap: anywhere;
}

.footer-legal a {
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: var(--text-1);
  text-decoration: underline;
}

.footer-support {
  font-size: 0.73rem;
  color: var(--text-2);
}

.footer-support a { color: var(--text-1); text-decoration: none; }
.footer-support a:hover { text-decoration: underline; }

.micro-footer {
  font-size: 0.69rem;
  color: var(--text-2);
  opacity: 0.75;
}

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

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .hero-headline { font-size: 2.4rem; }
  .pricing-title { font-size: 2.2rem; }
  .final-price { font-size: 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .legal-links-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 1.7rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .header-flex { height: 56px; gap: 10px; }
  .logo-img { height: 32px; }
  .logo-link { min-width: 0; flex: 1 1 auto; }

  .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 var(--border-0);
    border-radius: var(--r-m);
    box-shadow: var(--shadow-md);
  }

  .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);
  }

  .hero { padding: 56px 0 44px; }
  .hero-headline { font-size: 1.9rem; }
  .hero-description { font-size: 0.98rem; }

  .features-section { padding: 56px 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .feature-card { padding: 18px 14px; }

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

  .legal-links-section { padding: 56px 0; }
  .final-cta { padding: 60px 0; }
  .final-price { font-size: 1.7rem; }
  .final-quote { font-size: 0.98rem; }

  .btn-primary,
  .btn-large { width: 100%; justify-content: center; }

  .btn-primary.btn-large {
    font-size: 0.88rem;
    padding: 0 18px;
    height: 52px;
  }

  .pricing-plans {
    grid-template-columns: 1fr;
    padding: 24px 16px 48px;
  }

  .pricing-title { font-size: 1.8rem; }
  .pricing-hero { padding: 52px 0 20px; }

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

  .faq-section { padding: 0 16px; }
  .pricing-addon { padding: 0 16px; }

  .doc-title { font-size: 1.8rem; }
  .doc-page { padding: 44px 0 64px; }

  .section-title { font-size: 1.5rem; }
  .section-subtitle { font-size: 0.92rem; margin-bottom: 36px; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero-headline { font-size: 1.55rem; }
  .hero-description { font-size: 0.92rem; }
  .legal-links-grid { grid-template-columns: 1fr; }
  .features-grid { gap: 8px; }
  .feature-card { padding: 14px 12px; }
  .doc-title { font-size: 1.5rem; }
  .pricing-title { font-size: 1.5rem; }
  .final-price { font-size: 1.5rem; }
  .section-title { font-size: 1.3rem; }

  .btn-primary.btn-large { font-size: 0.82rem; }

  .btn-label--long { display: none; }
  .btn-label--short { display: inline; }
}
