/*
Theme Name: Custom Auto Theme
Author: System
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--gold:#F5B800;--gold-dark:#C99A00;--gold-light:#FFF3B0;--black:#111111;--white:#FFFFFF;--gray:#F5F5F5;--text:#222222;--radius:20px;--shadow:0 8px 32px rgba(245,184,0,0.18)}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:var(--text);background:var(--white);line-height:1.6}
header{background:var(--black);padding:1rem 2rem;position:sticky;top:0;z-index:100;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.logo{color:var(--gold);font-size:1.8rem;font-weight:900;text-decoration:none;letter-spacing:-1px}
nav{display:flex;gap:1.5rem;flex-wrap:wrap}
nav a{color:rgba(255,255,255,0.85);text-decoration:none;font-weight:600;transition:color 0.2s;font-size:0.95rem}
nav a:hover{color:var(--gold)}
.btn{display:inline-block;background:var(--gold);color:var(--black);padding:.9rem 2.2rem;border-radius:50px;font-weight:700;font-size:1rem;text-decoration:none;transition:transform .2s,box-shadow .2s;cursor:pointer;border:none;font-family:inherit}
.btn:hover{transform:translateY(-3px);box-shadow:0 10px 28px rgba(245,184,0,.45)}
.btn-outline{background:transparent;color:var(--black);border:2.5px solid var(--black)}
.btn-outline:hover{background:var(--black);color:var(--white)}
.btn-white{background:var(--white);color:var(--black)}
.btn-white:hover{background:var(--gold-light)}
.hero{background:var(--black);color:var(--white);padding:6rem 2rem 10rem;clip-path:polygon(0 0,100% 0,100% 85%,0 100%)}
.hero-inner{max-width:900px;margin:0 auto}
.hero .tag{display:inline-block;background:var(--gold);color:var(--black);padding:.3rem 1rem;border-radius:50px;font-size:.78rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;margin-bottom:1.5rem}
.hero h1{font-size:clamp(2.5rem,6vw,5rem);font-weight:900;line-height:1.05;margin-bottom:1.5rem}
.hero h1 span{color:var(--gold)}
.hero p{font-size:1.15rem;max-width:580px;margin-bottom:2.5rem;opacity:.82}
.container{max-width:1100px;margin:0 auto}
.section-label{font-size:.78rem;font-weight:700;letter-spacing:3px;text-transform:uppercase;color:var(--gold-dark);margin-bottom:.75rem;display:block}
.section-title{font-size:clamp(2rem,4vw,3rem);font-weight:900;line-height:1.08;margin-bottom:1rem}
.section-sub{font-size:1.05rem;opacity:.65;max-width:580px}
.articles-section{padding:7rem 2rem 5rem}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:2rem;margin-top:3rem}
.card{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;transition:transform .25s,box-shadow .25s;border:2px solid transparent}
.card:hover{transform:translateY(-8px);border-color:var(--gold);box-shadow:0 16px 48px rgba(245,184,0,.22)}
.card img{width:100%;height:210px;object-fit:cover;display:block}
.card-body{padding:1.75rem}
.card-tag{font-size:.72rem;font-weight:700;letter-spacing:2px;text-transform:uppercase;color:var(--gold-dark);margin-bottom:.6rem}
.card-title{font-size:1.3rem;font-weight:800;margin-bottom:.7rem;line-height:1.2}
.card-text{font-size:.95rem;opacity:.72;margin-bottom:1.2rem;line-height:1.6}
.card-link{color:var(--black);font-weight:700;text-decoration:none;display:inline-flex;align-items:center;gap:.4rem;font-size:.95rem}
.card-link::after{content:'→';transition:transform .2s}
.card-link:hover{color:var(--gold-dark)}
.card-link:hover::after{transform:translateX(4px)}
.about-section{background:var(--gold);clip-path:polygon(0 5%,100% 0,100% 95%,0 100%);padding:9rem 2rem;margin:2rem 0}
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;max-width:1100px;margin:0 auto}
.about-img{border-radius:var(--radius);width:100%;height:420px;object-fit:cover;box-shadow:0 16px 48px rgba(0,0,0,.15)}
.about-content .section-label{color:rgba(0,0,0,.55)}
.about-content .section-title{color:var(--black)}
.about-content p{color:rgba(0,0,0,.78);margin-bottom:1rem;font-size:1.02rem;line-height:1.7}
.subscribe-section{background:var(--black);color:var(--white);clip-path:polygon(0 0,100% 5%,100% 100%,0 95%);padding:9rem 2rem 8rem}
.subscribe-section .section-label{color:var(--gold)}
.subscribe-section .section-title{color:var(--white)}
.subscribe-section .section-sub{color:rgba(255,255,255,.65)}
.form-wrap{margin-top:2.5rem}
.form-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.2rem;margin-bottom:1.5rem}
.form-field{display:flex;flex-direction:column;gap:.4rem}
.form-field label{font-size:.83rem;font-weight:600;color:var(--gold)}
.form-field input{background:rgba(255,255,255,.07);border:1.5px solid rgba(255,255,255,.15);border-radius:14px;padding:.9rem 1.2rem;color:var(--white);font-size:1rem;outline:none;transition:border-color .2s;font-family:inherit}
.form-field input:focus{border-color:var(--gold);background:rgba(255,255,255,.1)}
.form-field input::placeholder{color:rgba(255,255,255,.35)}
footer{background:var(--black);color:var(--white);padding:5rem 2rem 2rem}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:3rem;max-width:1100px;margin:0 auto 3rem}
.footer-logo{color:var(--gold);font-size:1.8rem;font-weight:900;text-decoration:none;display:block;margin-bottom:1rem}
.footer-desc{opacity:.55;font-size:.93rem;line-height:1.65}
.footer-col h4{color:var(--gold);font-size:.75rem;letter-spacing:2.5px;text-transform:uppercase;margin-bottom:1.2rem;font-weight:700}
.footer-col a{display:block;color:rgba(255,255,255,.65);text-decoration:none;margin-bottom:.6rem;font-size:.92rem;transition:color .2s}
.footer-col a:hover{color:var(--gold)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding-top:1.8rem;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem;max-width:1100px;margin:0 auto}
.footer-bottom p{font-size:.83rem;opacity:.45}
#ck{display:none}
.cookie-banner{position:fixed;bottom:2rem;right:2rem;background:var(--black);color:var(--white);border-radius:var(--radius);padding:1.5rem 1.75rem;max-width:340px;box-shadow:0 10px 40px rgba(0,0,0,.35);z-index:9999;border:2px solid var(--gold)}
#ck:checked~.cookie-banner{display:none}
.cookie-banner p{font-size:.88rem;opacity:.82;margin-bottom:1.2rem;line-height:1.55}
.cookie-banner a{color:var(--gold)}
.cookie-accept{display:inline-block;background:var(--gold);color:var(--black);padding:.6rem 1.6rem;border-radius:50px;font-weight:700;cursor:pointer;font-size:.88rem;transition:opacity .2s}
.cookie-accept:hover{opacity:.85}
.article-hero{background:var(--black);color:var(--white);padding:5rem 2rem 8rem;clip-path:polygon(0 0,100% 0,100% 88%,0 100%)}
.breadcrumb{font-size:.82rem;opacity:.55;margin-bottom:1.2rem}
.breadcrumb a{color:var(--gold);text-decoration:none}
.article-hero h1{font-size:clamp(2rem,5vw,3.8rem);font-weight:900;line-height:1.08;max-width:800px;margin-bottom:1rem}
.article-meta{font-size:.88rem;opacity:.55}
.article-body{max-width:780px;margin:0 auto;padding:4rem 2rem 5rem}
.article-body h2{font-size:1.75rem;font-weight:800;margin:2.5rem 0 1rem;line-height:1.15}
.article-body h3{font-size:1.2rem;font-weight:700;margin:1.8rem 0 .75rem;color:var(--gold-dark)}
.article-body p{margin-bottom:1.25rem;line-height:1.78;font-size:1.04rem}
.article-body ul,.article-body ol{margin:.75rem 0 1.5rem 1.5rem}
.article-body li{margin-bottom:.55rem;line-height:1.65;font-size:1.02rem}
.highlight-box{background:var(--gold-light);border-left:5px solid var(--gold);border-radius:0 var(--radius) var(--radius) 0;padding:1.5rem 2rem;margin:2.5rem 0}
.highlight-box p{margin:0;font-weight:600;font-size:1.05rem}
.facts-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1.25rem;margin:2rem 0}
.fact-item{background:var(--gold-light);border-radius:var(--radius);padding:1.5rem}
.fact-num{font-size:2.2rem;font-weight:900;color:var(--gold-dark);line-height:1;display:block}
.fact-label{font-size:.88rem;font-weight:600;margin-top:.3rem;display:block}
.disclaimer{background:var(--gray);border:1.5px solid #DDD;border-radius:var(--radius);padding:1.5rem 2rem;margin-top:3rem}
.disclaimer p{font-size:.88rem;margin:0;line-height:1.65;opacity:.7}
.disclaimer strong{color:var(--gold-dark)}
.policy-hero{background:var(--gold);padding:5rem 2rem 5rem;clip-path:polygon(0 0,100% 0,100% 90%,0 100%)}
.policy-hero h1{font-size:clamp(2rem,4vw,3.2rem);font-weight:900;max-width:800px}
.policy-hero p{opacity:.7;margin-top:.5rem}
.policy-content{max-width:800px;margin:0 auto;padding:4rem 2rem 6rem}
.policy-content h2{font-size:1.4rem;font-weight:800;margin:2.5rem 0 .8rem}
.policy-content p{line-height:1.75;margin-bottom:1rem;font-size:1.02rem}
.policy-content ul{margin:.5rem 0 1rem 1.5rem}
.policy-content li{margin-bottom:.45rem;line-height:1.65}
.full-center{min-height:75vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:4rem 2rem;flex-direction:column}
.big-icon{font-size:5rem;margin-bottom:1.5rem;line-height:1}
.full-center h1{font-size:clamp(2rem,5vw,3.5rem);font-weight:900;margin-bottom:1rem}
.full-center p{opacity:.65;max-width:480px;margin:0 auto 2rem;font-size:1.05rem;line-height:1.7}
.not-found-num{font-size:clamp(6rem,20vw,14rem);font-weight:900;color:var(--gold);line-height:1;margin-bottom:0}
@media(max-width:768px){.about-grid{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr;gap:2rem}.hero{clip-path:polygon(0 0,100% 0,100% 92%,0 100%)}.about-section{clip-path:polygon(0 3%,100% 0,100% 97%,0 100%)}.cookie-banner{bottom:1rem;right:1rem;left:1rem;max-width:none}}
@media(max-width:480px){header{flex-direction:column;align-items:flex-start}}