:root {
  --bg: #F7F3ED;
  --fg: #1C1C1E;
  --fg-secondary: #6B6B6B;
  --accent: #C8522A;
  --accent-hover: #A8401E;
  --surface: #FFFFFF;
  --border: rgba(28,28,30,0.1);
  --green: #2E7D52;
  --amber: #B86D00;
  --radius: 8px;
}

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

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

/* ===== NAV ===== */
.nav { padding: 18px 48px; border-bottom: 1px solid var(--border); background: var(--bg); position: sticky; top: 0; z-index: 10; }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--fg); font-weight: 700; font-size: 18px; }
.nav-logo svg { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--fg-secondary); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }
.btn-nav-cta { display: inline-flex; align-items: center; padding: 9px 20px; background: var(--accent); color: white; font-size: 14px; font-weight: 600; text-decoration: none; border-radius: 6px; transition: background 0.2s; white-space: nowrap; }
.btn-nav-cta:hover { background: var(--accent-hover); }

/* ===== HERO ===== */
.hero { padding: 80px 48px; position: relative; overflow: hidden; background: var(--bg); }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(200,82,42,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,82,42,0.04) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.hero-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero-headline { font-family: 'Playfair Display', serif; font-size: clamp(40px, 4.5vw, 64px); font-weight: 700; line-height: 1.08; color: var(--fg); margin-bottom: 24px; }
.hero-lede { font-size: 18px; color: var(--fg-secondary); line-height: 1.65; max-width: 480px; margin-bottom: 36px; }
.hero-cta-group { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.btn-primary { display: inline-flex; align-items: center; padding: 14px 28px; background: var(--accent); color: white; font-size: 15px; font-weight: 600; text-decoration: none; border-radius: 6px; transition: background 0.2s; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary-lg { padding: 16px 36px; font-size: 16px; }
.btn-ghost { display: inline-flex; align-items: center; padding: 14px 28px; background: transparent; color: var(--fg); font-size: 15px; font-weight: 500; text-decoration: none; border-radius: 6px; border: 1px solid var(--border); transition: border-color 0.2s, background 0.2s; }
.btn-ghost:hover { border-color: var(--accent); }
.btn-ghost-lg { padding: 16px 36px; font-size: 16px; }
.hero-trust { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-secondary); }

/* Cost Dashboard Card */
.cost-dashboard-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 4px 24px rgba(28,28,30,0.08); overflow: hidden; }
.cost-dash-header { padding: 14px 20px; background: var(--fg); display: flex; align-items: center; justify-content: space-between; }
.cost-dash-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; }
.cost-dash-live { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--green); }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.cost-dash-row { padding: 14px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(28,28,30,0.06); }
.cost-dash-row:last-of-type { border-bottom: none; }
.cost-green { border-left: 3px solid var(--green); }
.cost-amber { border-left: 3px solid var(--amber); background: rgba(184,109,0,0.03); }
.cost-dash-info { display: flex; flex-direction: column; gap: 2px; }
.cost-dish { font-size: 14px; font-weight: 600; color: var(--fg); }
.cost-meta { font-size: 12px; color: var(--fg-secondary); }
.cost-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.cost-ok { background: rgba(46,125,82,0.1); color: var(--green); }
.cost-warn { background: rgba(184,109,0,0.12); color: var(--amber); }
.cost-dash-alert { padding: 12px 20px; background: rgba(200,82,42,0.06); border-top: 1px solid rgba(200,82,42,0.15); display: flex; align-items: flex-start; gap: 10px; font-size: 12px; color: var(--fg-secondary); line-height: 1.5; }

/* ===== PROBLEM SECTION ===== */
.problem-section { padding: 100px 48px; background: var(--surface); }
.problem-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.problem-left .section-tag { color: var(--accent); margin-bottom: 16px; display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.problem-left h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.problem-lede { font-size: 17px; color: var(--fg-secondary); line-height: 1.65; margin-bottom: 32px; }
.problem-lede strong { color: var(--fg); }
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.problem-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--fg-secondary); line-height: 1.5; }
.problem-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; margin-top: 7px; }
.solution-box { background: var(--fg); border-radius: 12px; padding: 36px; height: 100%; }
.solution-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 16px; }
.solution-box h3 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: white; margin-bottom: 16px; line-height: 1.2; }
.solution-box p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 32px; }
.solution-stats { display: flex; flex-direction: column; gap: 20px; }
.solution-stat { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.solution-stat:first-child { border-top: none; padding-top: 0; }
.stat-val { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--accent); }
.stat-desc { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ===== FEATURES ===== */
.features { padding: 100px 48px; background: var(--bg); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 60px; }
.features-header .section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.features-header h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; line-height: 1.15; }
.feature-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px; transition: border-color 0.2s, box-shadow 0.2s; }
.feature-card:hover { border-color: rgba(200,82,42,0.4); box-shadow: 0 4px 20px rgba(28,28,30,0.06); }
.feature-card-accent { background: var(--fg); }
.feature-card-accent h3, .feature-card-accent p { color: white; }
.feature-card-accent .feature-list li { color: rgba(255,255,255,0.7); }
.feature-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(200,82,42,0.08); color: var(--accent); border-radius: 10px; margin-bottom: 20px; }
.feature-card-accent .feature-icon { background: rgba(200,82,42,0.2); color: #E8835A; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--fg); }
.feature-card p { font-size: 14px; color: var(--fg-secondary); line-height: 1.65; margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--fg-secondary); line-height: 1.5; }
.feature-list li svg { flex-shrink: 0; margin-top: 1px; }

/* ===== SOCIAL PROOF ===== */
.social-proof { padding: 60px 48px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.social-proof-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.social-proof-label { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-secondary); margin-bottom: 32px; }
.social-proof-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; margin-bottom: 24px; }
.logo-placeholder { width: 120px; height: 44px; border: 1px dashed var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--fg-secondary); }
.social-proof-note { font-size: 14px; color: var(--fg-secondary); }

/* ===== PRICING PREVIEW ===== */
.pricing-preview { padding: 100px 48px; background: var(--bg); }
.pricing-inner { max-width: 900px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.pricing-header h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; line-height: 1.15; margin-bottom: 12px; }
.pricing-header p { font-size: 17px; color: var(--fg-secondary); }
.pricing-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px; position: relative; }
.pricing-card-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 4px 24px rgba(200,82,42,0.12); }
.pricing-popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.pricing-card-header { margin-bottom: 28px; }
.pricing-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--fg); }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 10px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: var(--fg); }
.price-period { font-size: 16px; color: var(--fg-secondary); }
.pricing-desc { font-size: 14px; color: var(--fg-secondary); line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg); line-height: 1.5; }
.pricing-features li svg { flex-shrink: 0; margin-top: 2px; }
.pricing-feature-muted { color: var(--fg-secondary) !important; }
.btn-pricing { display: block; text-align: center; padding: 12px 24px; border-radius: 6px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s; background: var(--bg); color: var(--fg); border: 1px solid var(--border); }
.btn-pricing:hover { border-color: var(--accent); color: var(--accent); }
.btn-pricing-accent { background: var(--accent); color: white; border-color: var(--accent); }
.btn-pricing-accent:hover { background: var(--accent-hover); }
.pricing-addon { background: rgba(200,82,42,0.06); border: 1px solid rgba(200,82,42,0.2); border-radius: 12px; padding: 24px; display: flex; align-items: flex-start; gap: 20px; margin-bottom: 24px; }
.addon-icon { width: 40px; height: 40px; background: rgba(200,82,42,0.1); color: var(--accent); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.addon-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--fg); }
.addon-content h4 strong { color: var(--accent); }
.addon-content p { font-size: 13px; color: var(--fg-secondary); line-height: 1.6; }
.pricing-full-link { text-align: center; }
.pricing-full-link a { font-size: 14px; color: var(--accent); font-weight: 500; text-decoration: none; }
.pricing-full-link a:hover { text-decoration: underline; }

/* ===== CLOSING ===== */
.closing { padding: 100px 48px; background: var(--surface); text-align: center; }
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing .section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.closing h2 { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.closing p { font-size: 18px; color: var(--fg-secondary); line-height: 1.65; margin-bottom: 40px; }
.closing-cta { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 16px; }
.closing-note { font-size: 13px; color: var(--fg-secondary); }

/* ===== FOOTER ===== */
.footer { background: var(--fg); color: white; padding: 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto auto; gap: 48px; align-items: start; }
.footer-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.5; max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-contact { text-align: right; }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ===== HERO IMAGE ===== */
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-img-wrap { position: relative; }
.hero-img { width: 100%; max-width: 520px; border-radius: 12px; box-shadow: 0 8px 40px rgba(28,28,30,0.15); border: 1px solid var(--border); }
.hero-img-caption { font-size: 12px; color: var(--fg-secondary); text-align: center; margin-top: 12px; }

/* ===== WHO IT'S FOR ===== */
.who-section { padding: 100px 48px; background: var(--surface); border-bottom: 1px solid var(--border); }
.who-inner { max-width: 1200px; margin: 0 auto; }
.who-header { text-align: center; margin-bottom: 56px; }
.who-header .section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.who-header h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; line-height: 1.15; margin-bottom: 16px; }
.who-sub { font-size: 17px; color: var(--fg-secondary); line-height: 1.65; max-width: 600px; margin: 0 auto; }
.who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.who-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 24px; transition: border-color 0.2s, box-shadow 0.2s; }
.who-card:hover { border-color: rgba(200,82,42,0.4); box-shadow: 0 4px 16px rgba(28,28,30,0.06); }
.who-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(200,82,42,0.08); color: var(--accent); border-radius: 10px; margin-bottom: 16px; }
.who-card h3 { font-size: 15px; font-weight: 700; color: var(--fg); margin-bottom: 8px; }
.who-card p { font-size: 13px; color: var(--fg-secondary); line-height: 1.55; }

/* ===== HOW IT WORKS ===== */
.how-section { padding: 80px 48px; background: var(--bg); border-bottom: 1px solid var(--border); }
.how-inner { max-width: 960px; margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 56px; }
.how-header .section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.how-header h2 { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; line-height: 1.15; }
.how-steps { display: flex; align-items: flex-start; gap: 32px; }
.how-step { flex: 1; text-align: center; }
.how-step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: white; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.how-step h3 { font-size: 17px; font-weight: 700; color: var(--fg); margin-bottom: 10px; }
.how-step p { font-size: 14px; color: var(--fg-secondary); line-height: 1.6; }
.how-step-arrow { font-size: 28px; color: var(--accent); flex-shrink: 0; margin-top: 14px; }

/* ===== PRICING PREVIEW ADDITIONS ===== */
.addon-cta-link { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; }
.addon-cta-link:hover { text-decoration: underline; }
.pricing-bundle { background: var(--fg); border-radius: 12px; padding: 32px; margin-top: 28px; }
.bundle-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.bundle-label { flex-shrink: 0; }
.bundle-tag { display: inline-block; background: var(--accent); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; }
.bundle-save { display: block; font-size: 12px; color: var(--green); margin-top: 8px; font-weight: 600; }
.bundle-content { display: flex; align-items: baseline; gap: 20px; }
.bundle-plans { display: flex; align-items: center; gap: 8px; }
.bundle-plan { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.1); padding: 4px 12px; border-radius: 20px; }
.bundle-plus { font-size: 14px; color: var(--accent); font-weight: 700; }
.bundle-price { display: flex; align-items: baseline; gap: 4px; }
.bundle-amount { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700; color: white; }
.bundle-period { font-size: 16px; color: rgba(255,255,255,0.5); }
.bundle-desc { font-size: 13px; color: rgba(255,255,255,0.5); flex: 1; min-width: 200px; line-height: 1.5; }

/* SETUP SECTION IN PREVIEW */
.pricing-setup { margin-top: 48px; border-top: 1px solid var(--border); padding-top: 48px; }
.setup-inner { }
.setup-header { margin-bottom: 32px; }
.setup-header h4 { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; margin-bottom: 6px; }
.setup-tagline { font-size: 14px; color: var(--fg-secondary); }
.setup-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.setup-tier { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.setup-tier-name { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-secondary); margin-bottom: 8px; }
.setup-tier-price { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; margin-bottom: 4px; }
.setup-tier-price .setup-per { font-size: 14px; color: var(--fg-secondary); font-family: 'DM Sans', sans-serif; font-weight: 400; }
.setup-tier-desc { font-size: 12px; color: var(--fg-secondary); line-height: 1.5; margin-bottom: 16px; }
.btn-setup { display: block; text-align: center; padding: 10px; background: var(--bg); color: var(--fg); border: 1px solid var(--border); border-radius: 6px; font-size: 13px; font-weight: 600; text-decoration: none; transition: border-color 0.2s; }
.btn-setup:hover { border-color: var(--accent); color: var(--accent); }
.setup-referral { display: flex; align-items: center; gap: 10px; margin-top: 20px; font-size: 13px; color: var(--fg-secondary); line-height: 1.5; }
.setup-referral strong { color: var(--fg); }

/* CLOSING NEWSLETTER */
.closing-newsletter { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.closing-newsletter p { font-size: 14px; color: var(--fg-secondary); }
@media (max-width: 900px) {
  .hero-content, .problem-inner, .feature-cards { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .hero, .problem-section, .features, .closing { padding: 60px 24px; }
  .social-proof, .pricing-preview { padding: 60px 24px; }
  .footer { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-contact { text-align: left; }
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 16px; }
}
/* ===== PRICING PAGE ===== */
.pricing-full { padding: 80px 48px; background: var(--bg); min-height: 80vh; }
.pricing-full-inner { max-width: 900px; margin: 0 auto; }
.pricing-full-header { text-align: center; margin-bottom: 60px; }
.back-link { display: inline-block; font-size: 14px; color: var(--fg-secondary); text-decoration: none; margin-bottom: 32px; }
.back-link:hover { color: var(--fg); }
.pricing-full-header .section-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.pricing-full-header h1 { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; line-height: 1.1; margin-bottom: 16px; }
.pricing-full-header p { font-size: 18px; color: var(--fg-secondary); }
.pricing-full-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 40px; }
.pricing-full-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 36px; position: relative; }
.pricing-full-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 4px 24px rgba(200,82,42,0.12); }
.pricing-full-card h2 { font-size: 22px; font-weight: 700; margin-bottom: 16px; color: var(--fg); }
.pricing-full-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.big-price { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: var(--fg); }
.big-price-period { font-size: 18px; color: var(--fg-secondary); }
.pricing-full-desc { font-size: 14px; color: var(--fg-secondary); line-height: 1.5; margin-bottom: 28px; }
.pricing-full-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.pricing-full-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--fg); line-height: 1.5; }
.pricing-full-features li svg { flex-shrink: 0; margin-top: 2px; }
.btn-pricing-full { display: block; text-align: center; padding: 14px 24px; border-radius: 6px; font-size: 15px; font-weight: 600; text-decoration: none; transition: background 0.2s; background: var(--bg); color: var(--fg); border: 1px solid var(--border); }
.btn-pricing-full:hover { border-color: var(--accent); color: var(--accent); }
.btn-pricing-full-accent { background: var(--accent); color: white; border-color: var(--accent); }
.btn-pricing-full-accent:hover { background: var(--accent-hover); }
.pricing-addon-full { background: rgba(200,82,42,0.06); border: 1px solid rgba(200,82,42,0.2); border-radius: 12px; padding: 32px; display: flex; align-items: flex-start; gap: 24px; margin-bottom: 60px; }
.addon-full-icon { width: 56px; height: 56px; background: rgba(200,82,42,0.1); color: var(--accent); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.addon-full-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--fg); }
.addon-full-content h3 strong { color: var(--accent); }
.addon-full-content p { font-size: 14px; color: var(--fg-secondary); line-height: 1.65; margin-bottom: 16px; }
.addon-full-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.addon-full-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--fg-secondary); }
.addon-full-list li::before { content: '→'; color: var(--accent); font-weight: 600; }
.pricing-faq h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; text-align: center; margin-bottom: 40px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.faq-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--fg); }
.faq-item p { font-size: 14px; color: var(--fg-secondary); line-height: 1.6; }

@media (max-width: 600px) {
  .hero-headline { font-size: 36px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .closing-cta { flex-direction: column; }
  .closing h2 { font-size: 32px; }
  .pricing-header h2, .features-header h2, .problem-left h2 { font-size: 32px; }
  .pricing-full-header h1 { font-size: 36px; }
  .pricing-full-cards { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-addon-full { flex-direction: column; }
  .pricing-full { padding: 60px 24px; }
}