/* Pricing page styles — clean, professional, human */

:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #EFF6FF;
  --blue-border: #BFDBFE;
  --bg: #0f172a;
  --bg2: #162032;
  --bg3: #1e2d42;
  --fg: #f1f5f9;
  --fg2: #94a3b8;
  --fg3: #64748b;
  --border: #1e3a5f;
  --green: #10B981;
  --green-bg: rgba(16, 185, 129, 0.08);
  --green-border: rgba(16, 185, 129, 0.25);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(15,23,42,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); padding: 16px 32px; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-left { display: flex; align-items: center; gap: 10px; }
.nav-logo { font-weight: 800; font-size: 20px; color: var(--blue); }
.nav-brand { font-weight: 700; font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--fg2); text-decoration: none; padding: 6px 12px; border-radius: 6px; transition: color 0.15s; }
.nav-link:hover { color: var(--fg); }
.nav-link.active { color: var(--blue); }
.nav-cta { font-size: 14px; font-weight: 600; color: #fff; background: var(--blue); text-decoration: none; padding: 8px 16px; border-radius: 8px; transition: background 0.15s; }
.nav-cta:hover { background: var(--blue-dark); }

/* Section tags */
.section-tag { display: inline-block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.section-title { font-size: clamp(28px, 3vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 48px; }

/* Hero */
.price-hero { padding: 72px 32px 80px; text-align: center; border-bottom: 1px solid var(--border); }
.price-hero-inner { max-width: 720px; margin: 0 auto; }
.price-badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); background: var(--blue-light); border: 1px solid var(--blue-border); padding: 5px 14px; border-radius: 100px; margin-bottom: 28px; }
.price-title { font-size: clamp(48px, 7vw, 80px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; margin-bottom: 32px; }
.price-tag { display: inline-flex; align-items: center; gap: 16px; background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 16px 28px; margin-bottom: 28px; }
.price-amount { font-size: 48px; font-weight: 800; color: var(--blue); letter-spacing: -0.03em; }
.price-sub { font-size: 16px; color: var(--fg2); font-weight: 500; }
.price-desc { font-size: 17px; color: var(--fg2); line-height: 1.75; max-width: 560px; margin: 0 auto 36px; }

/* Primary CTA */
.btn-primary { display: inline-block; background: var(--blue); color: #fff; font-weight: 700; font-size: 17px; text-decoration: none; padding: 14px 32px; border-radius: 10px; transition: background 0.15s, transform 0.1s; box-shadow: 0 4px 14px rgba(37,99,235,0.35); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-large { font-size: 18px; padding: 16px 40px; }
.price-note { font-size: 13px; color: var(--fg3); margin-top: 16px; }

/* Includes */
.includes-section { padding: 80px 32px; border-bottom: 1px solid var(--border); }
.includes-inner { max-width: 1200px; margin: 0 auto; }
.includes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.include-card { background: var(--bg2); border: 1px solid var(--border); padding: 28px 24px; display: flex; flex-direction: column; gap: 10px; }
.include-card--highlight { border-color: rgba(37,99,235,0.35); background: rgba(37,99,235,0.04); }
.include-icon { width: 40px; height: 40px; background: var(--blue-light); border: 1px solid var(--blue-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--blue); }
.include-card h3 { font-size: 15px; font-weight: 700; line-height: 1.3; }
.include-card p { font-size: 13px; color: var(--fg2); line-height: 1.65; }

/* Comparison */
.compare-section { padding: 80px 32px; border-bottom: 1px solid var(--border); background: var(--bg2); }
.compare-inner { max-width: 900px; margin: 0 auto; }
.compare-table { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 20px; }
.compare-header { display: grid; grid-template-columns: 1fr 160px 200px; background: var(--bg3); }
.compare-header > div { padding: 14px 20px; font-size: 13px; font-weight: 600; color: var(--fg2); border-right: 1px solid var(--border); }
.compare-header > div:last-child { border-right: none; }
.compare-col--majsterweb { color: var(--blue); text-align: center; }
.compare-col--other { text-align: right; }
.compare-row { display: grid; grid-template-columns: 1fr 160px 200px; border-bottom: 1px solid var(--border); }
.compare-row:last-child { border-bottom: none; }
.compare-item { padding: 14px 20px; font-size: 14px; color: var(--fg2); display: flex; align-items: center; }
.compare-val { padding: 14px 20px; font-size: 14px; font-weight: 600; color: var(--fg); display: flex; align-items: center; justify-content: center; border-left: 1px solid var(--border); }
.compare-val:last-child { justify-content: flex-end; border-left: 1px solid var(--border); }
.compare-val--good { color: var(--blue); }
.compare-row--total { background: var(--blue-light); }
.compare-row--total .compare-item { color: var(--fg); font-weight: 700; }
.compare-row--saving { background: rgba(16,185,129,0.05); }
.compare-row--saving .compare-val:last-child { color: var(--green); font-weight: 700; }
.compare-note { font-size: 13px; color: var(--fg3); text-align: center; line-height: 1.6; }

/* FAQ */
.faq-section { padding: 80px 32px; border-bottom: 1px solid var(--border); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-size: 15px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; transition: background 0.15s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg3); }
.faq-question::after { content: '+'; font-size: 22px; font-weight: 400; color: var(--blue); transition: transform 0.2s; }
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--fg2); line-height: 1.75; }

/* Final CTA */
.final-cta { padding: 80px 32px; background: var(--bg2); text-align: center; }
.final-cta-inner { max-width: 600px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.final-cta p { font-size: 17px; color: var(--fg2); margin-bottom: 36px; line-height: 1.7; }
.final-trust { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 20px; font-size: 13px; color: var(--fg3); }
.trust-dot { color: var(--border); }

/* Thank you page */
.thanks-section { padding: 80px 32px; }
.thanks-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.thanks-icon { width: 80px; height: 80px; background: rgba(16,185,129,0.1); border: 1px solid var(--green-border); border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: var(--green); }
.thanks-title { font-size: clamp(32px, 5vw, 48px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 12px; }
.thanks-desc { font-size: 18px; color: var(--fg2); margin-bottom: 56px; }
.thanks-next { background: var(--bg2); border: 1px solid var(--border); border-radius: 16px; padding: 36px; text-align: left; margin-bottom: 36px; }
.thanks-next h2 { font-size: 18px; font-weight: 700; margin-bottom: 24px; }
.thanks-steps { list-style: none; display: flex; flex-direction: column; gap: 24px; }
.thanks-steps li { display: flex; flex-direction: column; gap: 4px; }
.thanks-steps li strong { font-size: 15px; font-weight: 600; }
.thanks-steps li span { font-size: 13px; color: var(--fg2); }
.btn-secondary { display: inline-block; color: var(--fg2); font-weight: 500; font-size: 14px; text-decoration: none; padding: 10px 20px; border: 1px solid var(--border); border-radius: 8px; transition: border-color 0.15s, color 0.15s; }
.btn-secondary:hover { border-color: var(--fg2); color: var(--fg); }

/* Footer */
.footer { padding: 40px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { font-weight: 800; font-size: 28px; color: var(--blue); width: 48px; height: 48px; background: var(--blue-light); border: 1px solid var(--blue-border); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.footer-name { font-weight: 700; font-size: 16px; }
.footer-tagline { font-size: 12px; color: var(--fg2); margin-top: 2px; }
.footer-copy { font-size: 13px; color: var(--fg2); text-align: right; line-height: 1.6; }

/* Responsive */
@media (max-width: 1024px) {
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: inline-block; }
  .includes-grid { grid-template-columns: 1fr; }
  .compare-header > div, .compare-row > div { font-size: 12px; padding: 12px 14px; }
  .price-hero { padding: 56px 24px 64px; }
  .includes-section, .compare-section, .faq-section, .final-cta { padding: 60px 24px; }
  .thanks-section { padding: 56px 24px; }
}

@media (max-width: 480px) {
  .price-tag { flex-direction: column; gap: 4px; text-align: center; }
  .price-amount { font-size: 40px; }
}