/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root { --bg: #0f0f0f; --surface: #1c1c1c; --text: #ffffff; --accent: #ff3b30; --text-muted: #999999; --radius: 12px; --font-heading: 'Barlow Condensed', sans-serif; --font-body: 'DM Sans', sans-serif; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; overflow-x: hidden; }
a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; text-transform: uppercase; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
.site-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: rgba(15,15,15,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: 0.08em; }
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.burger { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
main { padding-top: 72px; }
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; align-items: center; gap: 3rem; padding: 4rem 2rem; max-width: 1400px; margin: 0 auto; }
.hero-text { padding-right: 2rem; }
.hero-tag { display: inline-block; background: var(--accent); color: var(--text); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; padding: 0.4rem 1rem; border-radius: 2px; margin-bottom: 1.5rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lead { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }
.hero blockquote { border-left: 4px solid var(--accent); padding: 1rem 1.5rem; margin: 2rem 0; font-style: italic; color: var(--text-muted); font-size: 1.1rem; }
.hero-img { border-radius: var(--radius); overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }
.btn { display: inline-block; background: var(--accent); color: var(--text); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.9rem 2.2rem; border-radius: 4px; border: none; cursor: pointer; font-size: 0.9rem; transition: box-shadow 0.3s, transform 0.2s; }
.btn:hover { box-shadow: 0 0 24px rgba(255,59,48,0.5); transform: translateY(-1px); opacity: 1; }
.section-label { font-family: var(--font-heading); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent); margin-bottom: 0.8rem; font-weight: 700; display: block; }
.content-grid { max-width: 1400px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.card { background: var(--surface); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(255,255,255,0.05); transition: border-color 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform 0.4s; }
.card:hover::before { transform: scaleX(1); }
.card:hover { border-color: rgba(255,59,48,0.3); box-shadow: 0 0 30px rgba(255,59,48,0.08); }
.card-number { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; color: rgba(255,59,48,0.15); line-height: 1; margin-bottom: 0.8rem; }
.card h3 { margin-bottom: 0.8rem; }
.card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1rem; }
.card-link { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 90px; align-self: start; }
.sidebar-block { background: var(--surface); border-radius: var(--radius); padding: 1.8rem; border: 1px solid rgba(255,255,255,0.05); }
.sidebar-block h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 1.2rem; }
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.9rem; color: var(--text-muted); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list li strong { color: var(--text); display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.plan-section { max-width: 1400px; margin: 0 auto; padding: 4rem 2rem; }
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; counter-reset: plan; }
.plan-item { background: var(--surface); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(255,255,255,0.05); counter-increment: plan; }
.plan-item::before { content: counter(plan, decimal-leading-zero); font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: rgba(255,59,48,0.2); display: block; margin-bottom: 0.5rem; }
.plan-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.plan-item p { color: var(--text-muted); font-size: 0.9rem; }
.features-row { max-width: 1400px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card { background: var(--surface); border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; border: 1px solid rgba(255,255,255,0.05); transition: transform 0.3s, box-shadow 0.3s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.8rem; font-size: 1.2rem; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; }
.subscribe-section { max-width: 700px; margin: 4rem auto; padding: 3rem 2rem; text-align: center; }
.subscribe-section h2 { margin-bottom: 1rem; }
.subscribe-section p { color: var(--text-muted); margin-bottom: 2rem; }
.subscribe-form { display: flex; gap: 0.8rem; justify-content: center; }
.subscribe-form input[type="email"] { background: var(--surface); border: 1px solid rgba(255,255,255,0.1); color: var(--text); padding: 0.9rem 1.5rem; border-radius: 4px; font-size: 1rem; width: 320px; font-family: var(--font-body); }
.subscribe-form input[type="email"]::placeholder { color: var(--text-muted); }
.subscribe-form .btn { min-width: 44px; }
.article-page { max-width: 1400px; margin: 0 auto; padding: 4rem 2rem; display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.article-content { max-width: none; }
.article-content h1 { margin-bottom: 1rem; }
.article-meta { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.article-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.article-content h2 { margin: 2.5rem 0 1rem; }
.article-content h3 { margin: 2rem 0 0.8rem; color: var(--accent); }
.article-content ul, .article-content ol { color: var(--text-muted); padding-left: 1.5rem; margin-bottom: 1.5rem; }
.article-content li { margin-bottom: 0.6rem; font-size: 1rem; }
.article-content blockquote { border-left: 4px solid var(--accent); padding: 1.2rem 1.5rem; margin: 2rem 0; font-style: italic; color: var(--text-muted); background: rgba(255,59,48,0.04); border-radius: 0 var(--radius) var(--radius) 0; }
.article-content img { margin: 2rem 0; border-radius: var(--radius); }
.highlight-box { background: var(--surface); border: 1px solid rgba(255,59,48,0.2); border-radius: var(--radius); padding: 2rem; margin: 2rem 0; }
.highlight-box h3 { color: var(--accent); margin-bottom: 0.8rem; }
.disclaimer { background: rgba(255,255,255,0.03); border-radius: var(--radius); padding: 1.5rem; margin-top: 3rem; font-size: 0.82rem; color: var(--text-muted); border: 1px solid rgba(255,255,255,0.05); }
.legal-page { max-width: 800px; margin: 0 auto; padding: 4rem 2rem; }
.legal-page h1 { margin-bottom: 2rem; font-size: 2.2rem; }
.legal-page h2 { margin: 2rem 0 1rem; font-size: 1.4rem; }
.legal-page p { color: var(--text-muted); margin-bottom: 1rem; font-size: 0.95rem; line-height: 1.7; }
.success-page { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; }
.success-page h1 { margin-bottom: 1rem; }
.success-page p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.1rem; }
.error-page { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; }
.error-page h1 { font-size: clamp(5rem, 15vw, 12rem); color: var(--accent); margin-bottom: 1rem; }
.error-page p { color: var(--text-muted); margin-bottom: 2rem; }
.error-links { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 3rem 2rem; text-align: center; margin-top: 4rem; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-links { display: flex; gap: 2rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1rem; }
.footer-disclaimer { font-size: 0.75rem; color: #666; max-width: 700px; margin: 0 auto; line-height: 1.5; }
.cookie-banner { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; max-width: 380px; }
.cookie-toggle { display: none; }
.cookie-box { background: var(--surface); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.5); }
.cookie-toggle:checked ~ .cookie-box { display: none; }
.cookie-box p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
.cookie-actions { display: flex; gap: 0.6rem; align-items: center; }
.cookie-actions .btn { padding: 0.6rem 1.2rem; font-size: 0.75rem; }
.cookie-actions .btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: var(--text-muted); }
.cookie-actions a { font-size: 0.75rem; margin-left: auto; }
.extra-section { max-width: 1400px; margin: 0 auto; padding: 4rem 2rem; }
.extra-section h2 { margin-bottom: 2rem; }
.tip-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.tip-card { background: var(--surface); border-radius: var(--radius); padding: 2rem; border: 1px solid rgba(255,255,255,0.05); }
.tip-card h3 { color: var(--accent); margin-bottom: 0.5rem; font-size: 1rem; }
.tip-card p { color: var(--text-muted); font-size: 0.9rem; }
@media (max-width: 900px) { .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 2rem; } .hero-img img { min-height: 300px; } .content-grid, .article-page { grid-template-columns: 1fr; } .sidebar { position: static; } .articles-grid { grid-template-columns: 1fr; } .plan-grid { grid-template-columns: 1fr; } .features-row { grid-template-columns: 1fr; } .nav-links { display: none; } .burger { display: block; } .subscribe-form { flex-direction: column; align-items: center; } .subscribe-form input[type="email"] { width: 100%; } .tip-cards { grid-template-columns: 1fr; } }