/* DigitalToll – Hauptstylesheet */
:root {
  --red: #CC0000;
  --red-dark: #990000;
  --blue: #003399;
  --gold: #F5A623;
  --text: #1a1a2e;
  --muted: #555;
  --bg: #f8f9fa;
  --white: #fff;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Segoe UI',Arial,sans-serif;color:var(--text);background:var(--bg);line-height:1.65}
a{color:var(--red);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;height:auto;display:block}

/* HEADER */
.site-header{background:var(--white);box-shadow:0 2px 8px rgba(0,0,0,.1);position:sticky;top:0;z-index:100}
.header-inner{max-width:1200px;margin:0 auto;padding:0 20px;display:flex;align-items:center;justify-content:space-between;height:64px}
.logo{font-size:1.4rem;font-weight:700;color:var(--red);letter-spacing:-0.5px}
.logo span{color:var(--blue)}
nav a{margin-left:20px;font-size:.9rem;color:var(--text);font-weight:500}
nav a:hover{color:var(--red);text-decoration:none}
.nav-cta{background:var(--red);color:var(--white)!important;padding:8px 18px;border-radius:6px;font-weight:600}
.nav-cta:hover{background:var(--red-dark)}

/* HERO */
.hero{position:relative;min-height:520px;display:flex;align-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;background-size:cover;background-position:center;filter:brightness(.45)}
.hero-content{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:60px 20px;color:var(--white)}
.hero h1{font-size:clamp(1.8rem,4vw,3rem);font-weight:800;line-height:1.2;margin-bottom:16px;text-shadow:0 2px 8px rgba(0,0,0,.4)}
.hero p{font-size:1.15rem;max-width:600px;margin-bottom:32px;opacity:.92}
.badge-row{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:32px}
.badge{background:rgba(255,255,255,.18);border:1px solid rgba(255,255,255,.4);border-radius:20px;padding:6px 14px;font-size:.85rem;backdrop-filter:blur(4px)}

/* VIGNETTE SELECTOR */
.vignette-selector{background:rgba(255,255,255,.97);border-radius:var(--radius);padding:28px;max-width:760px;box-shadow:var(--shadow)}
.vignette-selector h2{font-size:1.2rem;color:var(--text);margin-bottom:18px;font-weight:700}
.options-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:12px;margin-bottom:20px}
.option-card{border:2px solid #ddd;border-radius:8px;padding:16px;text-align:center;cursor:pointer;transition:all .2s;background:var(--white)}
.option-card:hover,.option-card.active{border-color:var(--red);background:#fff5f5}
.option-card .duration{font-size:.85rem;color:var(--muted);margin-bottom:4px}
.option-card .price{font-size:1.5rem;font-weight:800;color:var(--red)}
.option-card .label{font-size:.8rem;color:var(--muted);margin-top:4px}
.btn{display:inline-block;padding:14px 28px;border-radius:8px;font-weight:700;font-size:1rem;cursor:pointer;border:none;transition:all .2s;text-align:center}
.btn-primary{background:var(--red);color:var(--white)}
.btn-primary:hover{background:var(--red-dark);text-decoration:none;color:var(--white)}
.btn-secondary{background:var(--blue);color:var(--white)}
.btn-secondary:hover{background:#002277;text-decoration:none;color:var(--white)}
.btn-outline{background:transparent;color:var(--red);border:2px solid var(--red)}
.btn-outline:hover{background:var(--red);color:var(--white);text-decoration:none}
.btn-full{width:100%}
.btn-lg{padding:16px 36px;font-size:1.1rem}

/* SECTIONS */
section{padding:64px 20px}
.container{max-width:1200px;margin:0 auto}
.section-title{font-size:clamp(1.4rem,3vw,2rem);font-weight:800;margin-bottom:12px;color:var(--text)}
.section-sub{color:var(--muted);font-size:1rem;margin-bottom:40px;max-width:600px}
.bg-white{background:var(--white)}
.bg-light{background:var(--bg)}
.bg-red{background:var(--red);color:var(--white)}
.bg-red .section-title,.bg-red p{color:var(--white)}

/* FEATURES */
.features-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:24px}
.feature-card{background:var(--white);border-radius:var(--radius);padding:28px;box-shadow:var(--shadow);border-top:4px solid var(--red)}
.feature-icon{font-size:2.2rem;margin-bottom:14px}
.feature-card h3{font-size:1.1rem;font-weight:700;margin-bottom:8px}
.feature-card p{color:var(--muted);font-size:.95rem}

/* PRICING TABLE */
.pricing-table{width:100%;border-collapse:collapse;margin-bottom:32px;background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow)}
.pricing-table th{background:var(--red);color:var(--white);padding:14px 18px;text-align:left;font-size:.95rem}
.pricing-table td{padding:14px 18px;border-bottom:1px solid #eee;font-size:.95rem}
.pricing-table tr:last-child td{border-bottom:none}
.pricing-table tr:hover td{background:#fff5f5}
.price-tag{font-weight:800;color:var(--red);font-size:1.1rem}

/* FAQ */
.faq-list{display:flex;flex-direction:column;gap:12px}
.faq-item{background:var(--white);border-radius:var(--radius);box-shadow:0 2px 8px rgba(0,0,0,.07);overflow:hidden}
.faq-q{padding:18px 22px;font-weight:700;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-size:.98rem}
.faq-q::after{content:"▼";font-size:.75rem;color:var(--muted);transition:transform .2s}
.faq-item.open .faq-q::after{transform:rotate(180deg)}
.faq-a{display:none;padding:0 22px 18px;color:var(--muted);font-size:.95rem;line-height:1.7}
.faq-item.open .faq-a{display:block}

/* PHOTOS GRID */
.photos-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:16px}
.photo-item{border-radius:var(--radius);overflow:hidden;height:200px}
.photo-item img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.photo-item:hover img{transform:scale(1.04)}

/* TRUST */
.trust-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:24px;text-align:center}
.trust-item .trust-icon{font-size:2.5rem;margin-bottom:10px}
.trust-item h4{font-weight:700;margin-bottom:6px}
.trust-item p{color:var(--muted);font-size:.9rem}

/* CONTACT */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px}
@media(max-width:700px){.contact-grid{grid-template-columns:1fr}}
.contact-info p{margin-bottom:10px;font-size:.95rem}
.contact-info strong{color:var(--text)}

/* FOOTER */
footer{background:#111;color:#aaa;padding:48px 20px 24px}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:32px;margin-bottom:32px}
.footer-col h4{color:var(--white);font-size:1rem;margin-bottom:14px;font-weight:700}
.footer-col a{display:block;color:#aaa;margin-bottom:8px;font-size:.9rem}
.footer-col a:hover{color:var(--white)}
.footer-col p{font-size:.88rem;line-height:1.7}
.footer-bottom{border-top:1px solid #333;padding-top:20px;font-size:.82rem;display:flex;flex-wrap:wrap;justify-content:space-between;gap:10px}
.disclaimer-box{background:#1a1a1a;border:1px solid #333;border-radius:8px;padding:16px;margin-top:20px;font-size:.82rem;line-height:1.6;color:#888}

/* COOKIE BANNER */
#cookie-banner{position:fixed;bottom:0;left:0;right:0;background:#1a1a2e;color:#eee;padding:16px 24px;display:flex;flex-wrap:wrap;align-items:center;gap:16px;z-index:9999;box-shadow:0 -4px 20px rgba(0,0,0,.3)}
#cookie-banner p{flex:1;font-size:.88rem;min-width:200px}
#cookie-banner a{color:var(--gold)}
.cookie-btns{display:flex;gap:10px;flex-wrap:wrap}
.cookie-accept{background:var(--red);color:var(--white);border:none;padding:10px 22px;border-radius:6px;cursor:pointer;font-weight:600;font-size:.9rem}
.cookie-decline{background:transparent;color:#aaa;border:1px solid #555;padding:10px 18px;border-radius:6px;cursor:pointer;font-size:.9rem}

/* DISCLAIMER */
.disclaimer{background:#fff8e1;border:1px solid #f0c040;border-radius:8px;padding:16px 20px;font-size:.88rem;color:#7a6000;margin:20px 0;line-height:1.6}

/* BREADCRUMB */
.breadcrumb{background:var(--white);padding:12px 20px;border-bottom:1px solid #eee;font-size:.85rem;color:var(--muted)}
.breadcrumb a{color:var(--red)}

/* PAGE HERO (inner pages) */
.page-hero{background:linear-gradient(135deg,var(--red) 0%,var(--red-dark) 100%);color:var(--white);padding:60px 20px}
.page-hero h1{font-size:clamp(1.6rem,3vw,2.4rem);font-weight:800;margin-bottom:10px}
.page-hero p{opacity:.9;font-size:1.05rem;max-width:600px}

/* STEPS */
.steps{display:flex;flex-direction:column;gap:20px}
.step{display:flex;gap:20px;align-items:flex-start}
.step-num{background:var(--red);color:var(--white);width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:800;flex-shrink:0;font-size:1.1rem}
.step-content h3{font-weight:700;margin-bottom:6px}
.step-content p{color:var(--muted);font-size:.95rem}

/* INFO CARDS */
.info-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:20px}
.info-card{background:var(--white);border-radius:var(--radius);padding:24px;box-shadow:var(--shadow)}
.info-card h3{font-size:1rem;font-weight:700;margin-bottom:10px;color:var(--red)}
.info-card p,.info-card ul{color:var(--muted);font-size:.93rem;line-height:1.7}
.info-card ul{padding-left:18px}

/* RESPONSIVE */
@media(max-width:768px){
  nav{display:none}
  .hero{min-height:420px}
  .options-grid{grid-template-columns:1fr 1fr}
  section{padding:40px 16px}
  .contact-grid{grid-template-columns:1fr}
}
@media(max-width:480px){
  .options-grid{grid-template-columns:1fr 1fr}
  .hero h1{font-size:1.6rem}
}
