
:root {
  --accent: #e85d3a;
  --accent-hover: #d14e2d;
  --accent-bg: rgba(232,93,58,0.08);
  --accent-border: rgba(232,93,58,0.2);
  --bg: #faf8f5;
  --bg-card: #ffffff;
  --bg-dark: #1a1a2e;
  --text: #3d3d4e;
  --text-heading: #1a1a2e;
  --text-muted: #7a7a8c;
  --border: #e8e6e1;
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1100px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-size: 17px; line-height: 1.7; color: var(--text); background: var(--bg); overflow-x: hidden; }
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
.text-center { text-align: center; }
h1, h2, h3, h4 { color: var(--text-heading); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); letter-spacing: -0.02em; margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); margin-bottom: 0.5rem; }
h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--accent); margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; } p:last-child { margin-bottom: 0; }
.small-note { font-size: 0.85rem; color: var(--text-muted); margin-top: 1rem; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 600; font-size: 0.95rem; text-decoration: none; cursor: pointer; transition: all var(--transition); border: 2px solid transparent; line-height: 1.4; }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,93,58,0.3); }
.btn-outline { background: transparent; color: var(--text-heading); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-header { background: var(--accent); color: #fff; border-color: var(--accent); padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-header:hover { background: var(--accent-hover); color: #fff; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,248,245,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; gap: 2rem; height: 68px; }
.logo { display: flex; align-items: center; gap: 0.4rem; font-size: 1.3rem; font-weight: 800; color: var(--text-heading); text-decoration: none; flex-shrink: 0; letter-spacing: -0.02em; }
.logo:hover { color: var(--text-heading); }
.logo-icon { font-size: 1.4rem; }
.main-nav { display: flex; gap: 0.25rem; margin-left: auto; }
.nav-link { padding: 0.5rem 0.85rem; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; border-radius: 8px; transition: all var(--transition); }
.nav-link:hover { color: var(--text-heading); background: rgba(0,0,0,0.04); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--text-heading); transition: all var(--transition); border-radius: 2px; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; background: var(--bg); border-bottom: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; }
.mobile-menu.active { display: block; }
.mobile-nav-link { display: block; padding: 0.75rem 0; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }
.mobile-nav-link:hover { color: var(--accent); }
.mobile-cta { margin-top: 1rem; text-align: center; justify-content: center; width: 100%; }
.hero { padding: 5rem 0 4rem; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1rem; background: var(--accent-bg); border: 1px solid var(--accent-border); border-radius: 50px; font-size: 0.85rem; font-weight: 600; color: var(--accent); margin-bottom: 1.5rem; }
.pulse { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; display: inline-block; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(232,93,58,0.4); } 50% { box-shadow: 0 0 0 8px rgba(232,93,58,0); } }
.hero h1 { margin-bottom: 1.25rem; }
.hero-accent { color: var(--accent); }
.hero-sub { font-size: 1.15rem; color: var(--text); max-width: 620px; margin: 0 auto 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; color: var(--text-muted); font-weight: 500; background: var(--bg-card); padding: 0.5rem 1rem; border-radius: 50px; border: 1px solid var(--border); }
.section { padding: 4.5rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); transition: all var(--transition); }
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.step-num { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--accent); color: #fff; font-weight: 800; font-size: 1.1rem; border-radius: 12px; margin-bottom: 1.25rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.benefit-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); transition: all var(--transition); }
.benefit-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.benefit-icon { font-size: 2rem; margin-bottom: 1rem; }
.pricecap-section { padding: 3rem 0; }
.pricecap-card { background: var(--accent-bg); border: 1px solid var(--accent-border); border-radius: var(--radius-lg); padding: 3rem; text-align: center; }
.pricecap-label { display: inline-block; padding: 0.3rem 0.9rem; background: var(--accent); color: #fff; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; border-radius: 50px; margin-bottom: 1rem; }
.pricecap-card h2 { margin-bottom: 1rem; }
.pricecap-card p { max-width: 620px; margin: 0 auto 1.5rem; }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; cursor: pointer; font-weight: 600; color: var(--text-heading); font-size: 1.05rem; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--text-muted); transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--accent); }
.faq-item summary:hover { color: var(--accent); }
.faq-answer { padding-bottom: 1.25rem; }
.final-cta { padding: 5rem 0; }
.final-cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.final-cta p { font-size: 1.1rem; max-width: 520px; margin: 0 auto 2rem; }
.page-hero { padding: 4rem 0 2rem; text-align: center; }
.page-hero h1 { margin-bottom: 0.75rem; }
.page-hero .hero-sub { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.content-wrap { max-width: 740px; margin: 0 auto; }
.content-wrap h2 { margin-top: 2.5rem; margin-bottom: 1rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.content-wrap h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.content-wrap h3 { margin-top: 1.5rem; }
.content-wrap hr { border: none; height: 1px; background: var(--border); margin: 2.5rem 0; }
.content-wrap strong { color: var(--text-heading); }
.content-wrap .btn { margin: 1.5rem 0; }
.site-footer { padding: 4rem 0 2rem; border-top: 1px solid var(--border); margin-bottom: 70px; background: var(--bg-card); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { margin-bottom: 0.75rem; }
.footer-desc { color: var(--text-muted); font-size: 0.9rem; max-width: 300px; }
.footer-links h4 { margin-bottom: 1rem; color: var(--text-heading); }
.footer-links a { display: block; color: var(--text-muted); font-size: 0.9rem; padding: 0.3rem 0; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--border); text-align: center; }
.footer-affiliate { font-size: 0.85rem; color: var(--text-muted); max-width: 620px; margin: 0 auto 0.75rem; padding: 1rem; background: var(--bg); border-radius: var(--radius); }
.footer-copy { font-size: 0.8rem; color: var(--text-muted); }
.footer-updated { font-size: 0.75rem; color: var(--text-muted); opacity: 0.6; margin-top: 0.25rem; }
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: rgba(255,255,255,0.95); backdrop-filter: blur(16px); border-top: 1px solid var(--accent-border); padding: 0.75rem 0; transform: translateY(100%); transition: transform 0.4s ease; }
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner { display: flex; align-items: center; justify-content: space-between; }
.sticky-cta-text strong { color: var(--text-heading); display: block; font-size: 0.95rem; }
.sticky-cta-text span { color: var(--text-muted); font-size: 0.82rem; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: 1fr; } .benefits-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 768px) { .main-nav, .btn-header { display: none; } .mobile-toggle { display: flex; } .hero { padding: 3.5rem 0 3rem; } .hero-trust { flex-direction: column; align-items: center; gap: 0.75rem; } .section { padding: 3rem 0; } .pricecap-card { padding: 2rem 1.5rem; } .sticky-cta-text span { display: none; } }
@media (max-width: 480px) { body { font-size: 16px; } .hero-actions { flex-direction: column; align-items: center; } .btn-lg { width: 100%; justify-content: center; } .btn-outline.btn-lg { width: auto; } }
