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

    :root {
      --clr-bg: #faf8f4;
      --clr-bg-warm: #f5f0e8;
      --clr-card: #ffffff;
      --clr-accent: #e8630e;
      --clr-accent-light: #ff7b2e;
      --clr-accent-soft: rgba(232,99,14,.08);
      --clr-accent-medium: rgba(232,99,14,.12);
      --clr-lime: #6ab04c;
      --clr-text: #2d3436;
      --clr-text-light: #636e72;
      --clr-white: #ffffff;
      --clr-dark: #1e272e;
      --clr-border: rgba(0,0,0,.07);
      --clr-shadow: rgba(60,40,10,.06);
      --clr-shadow-strong: rgba(60,40,10,.12);
      --font-body: 'DM Sans', sans-serif;
      --font-display: 'Anybody', sans-serif;
      --container: 1200px;
      --radius: 16px;
      --radius-sm: 10px;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--clr-text);
      background: var(--clr-bg);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    .container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

    /* ─── NAVIGATION ─── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 16px 0;
      transition: background .35s, padding .35s, box-shadow .35s;
    }
    .nav.scrolled {
      background: rgba(250, 248, 244, 0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      padding: 10px 0;
      box-shadow: 0 2px 40px var(--clr-shadow);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      max-width: var(--container); margin: 0 auto; padding: 0 24px;
    }
    .nav-logo { display: flex; align-items: center; }
    .nav-logo-img { height: 44px; width: auto; object-fit: contain; transition: height .35s; }
    .nav.scrolled .nav-logo-img { height: 36px; }
    .nav-links { display: flex; gap: 32px; align-items: center; list-style: none; }
    .nav-links a { font-size: .9rem; font-weight: 500; color: var(--clr-text); opacity: .65; transition: opacity .2s; }
    .nav-links a:hover { opacity: 1; }
    .nav-cta {
      background: var(--clr-accent); color: #fff;
      padding: 10px 24px; border-radius: 50px;
      font-weight: 600; font-size: .9rem;
      opacity: 1 !important;
      transition: background .2s, transform .15s;
    }
    .nav-cta:hover { background: var(--clr-accent-light); transform: translateY(-1px); }

    .burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
    .burger span { display: block; width: 26px; height: 2px; background: var(--clr-text); margin: 6px 0; transition: all .3s; border-radius: 2px; }

    .mobile-overlay {
      position: fixed; inset: 0; background: rgba(250,248,244,.97);
      backdrop-filter: blur(30px); z-index: 999;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; visibility: hidden; transition: all .35s;
    }
    .mobile-overlay.open { opacity: 1; visibility: visible; }
    .mobile-overlay nav { text-align: center; }
    .mobile-overlay a { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; padding: 16px 0; color: var(--clr-text); opacity: .7; transition: opacity .2s; }
    .mobile-overlay a:hover { opacity: 1; }
    .mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--clr-text); font-size: 2rem; cursor: pointer; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh; display: flex; align-items: center;
      position: relative; padding: 120px 0 80px; overflow: hidden;
      background: linear-gradient(170deg, var(--clr-bg) 0%, var(--clr-bg-warm) 50%, #fef5e7 100%);
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse at 20% 80%, rgba(232,99,14,.06) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(106,176,76,.04) 0%, transparent 50%);
      z-index: 1;
    }
    .hero::after {
      content: ''; position: absolute; top: 15%; right: 5%;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(232,99,14,.06) 1px, transparent 1px);
      background-size: 20px 20px; z-index: 1; opacity: .6;
    }
    .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--clr-accent-soft); border: 1px solid rgba(232,99,14,.15);
      padding: 8px 18px; border-radius: 50px;
      font-size: .85rem; font-weight: 500; color: var(--clr-accent); margin-bottom: 24px;
    }
    .hero-badge svg { width: 16px; height: 16px; }
    .hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 24px; color: var(--clr-dark); }
    .hero h1 .highlight { color: var(--clr-accent); position: relative; }
    .hero h1 .highlight::after { content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 6px; background: rgba(232,99,14,.15); border-radius: 3px; z-index: -1; }
    .hero-sub { font-size: 1.15rem; color: var(--clr-text-light); max-width: 480px; margin-bottom: 40px; line-height: 1.7; }
    .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px; border-radius: 50px; font-family: var(--font-body); font-size: 1rem; font-weight: 600; cursor: pointer; border: none; transition: all .25s; }
    .btn-primary { background: var(--clr-accent); color: #fff; box-shadow: 0 4px 20px rgba(232,99,14,.2); }
    .btn-primary:hover { background: var(--clr-accent-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(232,99,14,.25); }
    .btn-outline { background: var(--clr-white); color: var(--clr-text); border: 1.5px solid var(--clr-border); box-shadow: 0 2px 8px var(--clr-shadow); }
    .btn-outline:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
    .btn svg { width: 18px; height: 18px; }

    .hero-image { position: relative; border-radius: var(--radius); overflow: hidden; }
    .hero-image img { width: 100%; height: 520px; object-fit: cover; object-position: center 30%; border-radius: var(--radius); }
    .hero-image::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius); border: 1px solid rgba(0,0,0,.06); pointer-events: none; }
    .hero-float-card {
      position: absolute; top: 24px; right: 24px;
      background: rgba(255,255,255,.92); backdrop-filter: blur(20px);
      border: 1px solid var(--clr-border); padding: 18px 24px;
      border-radius: var(--radius-sm); display: flex; align-items: center; gap: 14px;
      box-shadow: 0 8px 32px var(--clr-shadow-strong);
    }
    .hero-float-card .icon-circle { width: 44px; height: 44px; background: var(--clr-accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .hero-float-card .icon-circle svg { width: 22px; height: 22px; color: #fff; }
    .hero-float-card span { font-size: .85rem; color: var(--clr-text-light); }
    .hero-float-card strong { display: block; font-size: 1rem; color: var(--clr-text); }

    /* ─── PERSONAL GREETING ─── */
    .greeting-strip { padding: 48px 0; text-align: center; background: var(--clr-bg); border-bottom: 1px solid var(--clr-border); position: relative; }
    .greeting-strip::before { content: '\01F44B'; font-size: 2.5rem; display: block; margin-bottom: 12px; }
    .greeting-text { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--clr-dark); max-width: 600px; margin: 0 auto; line-height: 1.5; }
    .greeting-text span { color: var(--clr-accent); }
    .greeting-sub { font-size: .95rem; color: var(--clr-text-light); margin-top: 8px; }

    /* ─── MARQUEE ─── */
    .marquee-section { padding: 40px 0; border-bottom: 1px solid var(--clr-border); overflow: hidden; background: var(--clr-bg); }
    .marquee-track { display: flex; gap: 48px; animation: marquee 25s linear infinite; width: max-content; }
    .marquee-item { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--clr-text); opacity: .18; white-space: nowrap; display: flex; align-items: center; gap: 12px; }
    .marquee-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--clr-accent); }
    @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* ─── SECTIONS ─── */
    .section { padding: 100px 0; }
    .section-warm { background: var(--clr-bg-warm); }
    .section-label { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: var(--clr-accent); margin-bottom: 16px; }
    .section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; color: var(--clr-dark); }
    .section-desc { font-size: 1.05rem; color: var(--clr-text-light); max-width: 560px; line-height: 1.75; }

    /* ─── ABOUT ─── */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
    .about-feature { padding: 24px; background: var(--clr-white); border-radius: var(--radius-sm); border: 1px solid var(--clr-border); box-shadow: 0 2px 12px var(--clr-shadow); transition: transform .2s, box-shadow .2s; }
    .about-feature:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--clr-shadow-strong); }
    .about-feature .num { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--clr-accent); line-height: 1; margin-bottom: 10px; }
    .about-feature h4 { font-size: .95rem; font-weight: 600; margin-bottom: 6px; color: var(--clr-dark); }
    .about-feature p { font-size: .85rem; color: var(--clr-text-light); line-height: 1.6; }
    .about-image-stack { position: relative; display: flex; flex-direction: column; gap: 16px; }
    .about-image-stack .main-img { width: 100%; height: 340px; object-fit: cover; object-position: center 40%; border-radius: var(--radius); border: 1px solid var(--clr-border); box-shadow: 0 8px 32px var(--clr-shadow-strong); }
    .about-img-secondary { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--clr-border); box-shadow: 0 4px 16px var(--clr-shadow); }

    /* ─── SERVICES ─── */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
    .service-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 40px 32px; transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; box-shadow: 0 2px 12px var(--clr-shadow); }
    .service-card:hover { transform: translateY(-4px); border-color: rgba(232,99,14,.2); box-shadow: 0 16px 48px var(--clr-shadow-strong); }
    .service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--clr-accent), var(--clr-lime)); opacity: 0; transition: opacity .3s; }
    .service-card:hover::before { opacity: 1; }
    .service-icon { width: 56px; height: 56px; background: var(--clr-accent-soft); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }
    .service-icon svg { width: 28px; height: 28px; color: var(--clr-accent); }
    .service-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--clr-dark); }
    .service-card p { font-size: .92rem; color: var(--clr-text-light); line-height: 1.7; }
    .service-card ul { list-style: none; margin-top: 16px; }
    .service-card ul li { font-size: .88rem; color: var(--clr-text-light); padding: 6px 0; display: flex; align-items: flex-start; gap: 10px; }
    .service-card ul li svg { width: 16px; height: 16px; color: var(--clr-lime); flex-shrink: 0; margin-top: 3px; }
    .bosch-badge { margin: 16px 0 4px; }
    .bosch-badge-img { height: 48px; width: auto; border-radius: 6px; object-fit: contain; }

    /* ─── STEPS ─── */
    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
    .step { text-align: center; padding: 32px 24px; background: var(--clr-white); border-radius: var(--radius); border: 1px solid var(--clr-border); box-shadow: 0 2px 12px var(--clr-shadow); }
    .step-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: rgba(232,99,14,.12); line-height: 1; margin-bottom: 20px; }
    .step h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--clr-dark); }
    .step p { font-size: .9rem; color: var(--clr-text-light); line-height: 1.65; }

    /* ─── PRICING ─── */
    .pricing-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; max-width: 800px; }
    .pricing-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 36px 32px; box-shadow: 0 4px 16px var(--clr-shadow); }
    .pricing-card.featured { border-color: var(--clr-accent); position: relative; box-shadow: 0 8px 32px rgba(232,99,14,.1); }
    .pricing-card.featured::before { content: 'E-Bike'; position: absolute; top: -12px; right: 24px; background: var(--clr-accent); color: #fff; font-size: .75rem; font-weight: 700; padding: 4px 14px; border-radius: 50px; }
    .pricing-card .label { font-size: .85rem; font-weight: 500; color: var(--clr-text-light); margin-bottom: 12px; }
    .pricing-card .price { font-family: var(--font-display); font-size: 2.8rem; font-weight: 900; line-height: 1; color: var(--clr-dark); }
    .pricing-card .price small { font-size: .4em; font-weight: 500; color: var(--clr-text-light); display: block; margin-top: 6px; }
    .pricing-card .detail { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--clr-border); font-size: .88rem; color: var(--clr-text-light); line-height: 1.7; }

    .pricing-extras .extra-row { display: flex; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--clr-border); font-size: .95rem; }
    .pricing-extras .extra-row:last-child { border-bottom: none; }

    /* ─── GALLERY ─── */
    .bike-gallery { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; margin-top: 40px; margin-bottom: 32px; }
    .bike-gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--clr-border); box-shadow: 0 4px 16px var(--clr-shadow); }
    .bike-gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform .5s ease; }
    .bike-gallery-item:hover img { transform: scale(1.05); }
    .bike-gallery-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 20px 16px; background: linear-gradient(to top, rgba(30,39,46,.8) 0%, transparent 100%); font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: #fff; }

    .bikes-flex { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
    .bike-tag { background: var(--clr-accent-soft); border: 1px solid rgba(232,99,14,.12); padding: 10px 22px; border-radius: 50px; font-size: .9rem; font-weight: 500; color: var(--clr-text); transition: all .2s; }
    .bike-tag:hover { background: var(--clr-accent-medium); border-color: var(--clr-accent); color: var(--clr-accent); }

    /* ─── PROMISE ─── */
    .promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
    .promise-item { text-align: center; padding: 32px 20px; }
    .promise-icon { width: 64px; height: 64px; margin: 0 auto 20px; background: var(--clr-accent-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .promise-icon svg { width: 28px; height: 28px; color: var(--clr-accent); }
    .promise-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--clr-dark); }
    .promise-item p { font-size: .88rem; color: var(--clr-text-light); line-height: 1.6; }

    /* ─── CTA ─── */
    .cta-section { padding: 100px 0; position: relative; overflow: hidden; background: linear-gradient(170deg, #fef5e7 0%, var(--clr-bg-warm) 100%); }
    .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(232,99,14,.06) 0%, transparent 70%); }
    .cta-inner { text-align: center; position: relative; z-index: 2; }
    .cta-inner .section-title { max-width: 700px; margin: 0 auto 20px; }
    .cta-inner .section-desc { max-width: 500px; margin: 0 auto 40px; }
    .cta-phone { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; color: var(--clr-accent); display: block; margin-bottom: 32px; transition: color .2s; }
    .cta-phone:hover { color: var(--clr-accent-light); }
    .cta-channels { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
    .cta-channel { display: flex; align-items: center; gap: 8px; background: var(--clr-white); border: 1px solid var(--clr-border); padding: 12px 24px; border-radius: 50px; font-size: .9rem; color: var(--clr-text-light); transition: all .2s; box-shadow: 0 2px 8px var(--clr-shadow); }
    .cta-channel:hover { border-color: var(--clr-accent); color: var(--clr-accent); }
    .cta-channel svg { width: 18px; height: 18px; }

    .cta-ub-icon { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 24px; display: block; filter: drop-shadow(0 4px 24px rgba(232,99,14,.2)); animation: ub-pulse 3s ease-in-out infinite; }
    @keyframes ub-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); filter: drop-shadow(0 6px 32px rgba(232,99,14,.3)); } }
    .mobile-nav-icon { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin: 0 auto 24px; display: block; }

    /* ─── CONTACT & FOOTER ─── */
    .contact-bar { padding: 60px 0; background: var(--clr-dark); color: #fff; }
    .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
    .contact-block h4 { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--clr-accent); margin-bottom: 14px; }
    .contact-block p { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.8; }
    .contact-block a { color: #fff; transition: color .2s; }
    .contact-block a:hover { color: var(--clr-accent); }

    .footer { padding: 40px 0; background: var(--clr-dark); border-top: 1px solid rgba(255,255,255,.08); }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color .2s; }
    .footer-links a:hover { color: #fff; }
    .footer-copy { font-size: .82rem; color: rgba(255,255,255,.4); }
    .footer-webdesign { width: 100%; text-align: center; font-size: .78rem; color: rgba(255,255,255,.3); margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); }
    .footer-webdesign a { color: rgba(232,99,14,.6); transition: color .2s; }
    .footer-webdesign a:hover { color: var(--clr-accent); }

    /* ─── LEGAL MODAL ─── */
    .legal-modal { position: fixed; inset: 0; z-index: 2000; background: rgba(250,248,244,.95); backdrop-filter: blur(20px); display: none; align-items: flex-start; justify-content: center; padding: 60px 24px; overflow-y: auto; }
    .legal-modal.open { display: flex; }
    .legal-content { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius); max-width: 800px; width: 100%; padding: 48px; position: relative; box-shadow: 0 16px 64px var(--clr-shadow-strong); }
    .legal-content h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin-bottom: 24px; color: var(--clr-dark); }
    .legal-content p, .legal-content li { font-size: .92rem; color: var(--clr-text-light); line-height: 1.8; margin-bottom: 12px; }
    .legal-content h3 { font-size: 1.1rem; font-weight: 700; margin: 28px 0 12px; color: var(--clr-dark); }
    .legal-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: var(--clr-text-light); font-size: 1.5rem; cursor: pointer; transition: color .2s; }
    .legal-close:hover { color: var(--clr-text); }

    /* ─── COOKIE ─── */
    .cookie-banner { position: fixed; bottom: -400px; left: 50%; transform: translateX(-50%); z-index: 3000; width: calc(100% - 32px); max-width: 680px; background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: 20px; box-shadow: 0 -8px 60px rgba(0,0,0,.12); overflow: hidden; transition: bottom .8s cubic-bezier(.34,1.56,.64,1); }
    .cookie-banner.show { bottom: 24px; }
    .cookie-banner.hiding { bottom: -400px; transition: bottom .5s cubic-bezier(.6,-.28,.74,.05); }
    .cookie-road { position: relative; height: 56px; background: linear-gradient(180deg, var(--clr-accent-soft) 0%, transparent 100%); overflow: hidden; }
    .cookie-road-line { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: repeating-linear-gradient(90deg, var(--clr-accent) 0, var(--clr-accent) 16px, transparent 16px, transparent 28px); opacity: .3; }
    .cookie-bike { position: absolute; bottom: 4px; animation: truck-ride-in 3s cubic-bezier(.25,.46,.45,.94) forwards; animation-delay: .8s; right: -120px; left: auto; }
    .cookie-bike img { width: 64px; height: auto; }
    @keyframes truck-ride-in { 0% { right: -120px; } 100% { right: calc(50% - 32px); } }
    @keyframes bike-ride-away { 0% { right: calc(50% - 32px); } 100% { right: calc(100% + 120px); } }
    .cookie-cyclist {
      position: absolute; bottom: 8px; font-size: 30px; line-height: 1;
      left: calc(50% - 80px);
    }
    .cookie-cyclist.riding-out {
      animation: cyclist-ride-out 1.2s cubic-bezier(.4,.0,.2,1) forwards;
    }
    @keyframes cyclist-ride-out { 0% { left: calc(50% - 80px); opacity: 1; } 100% { left: -80px; opacity: 0; } }
    .cookie-cyclist.riding-out::after {
      content: ''; position: absolute; top: 50%; right: -8px; transform: translateY(-50%);
      width: 40px; height: 4px; border-radius: 3px;
      background: linear-gradient(90deg, transparent, rgba(232,99,14,.5), rgba(255,200,50,.6), transparent);
      animation: streak-fade 1.2s ease-out forwards;
    }
    @keyframes streak-fade { 0% { opacity: 1; width: 10px; } 50% { opacity: .8; width: 80px; } 100% { opacity: 0; width: 140px; } }
    .cookie-content { padding: 24px 28px 28px; }
    .cookie-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; color: var(--clr-dark); }
    .cookie-desc { font-size: .88rem; color: var(--clr-text-light); line-height: 1.7; margin-bottom: 20px; }
    .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .cookie-btn { padding: 12px 22px; border-radius: 50px; font-family: var(--font-body); font-size: .88rem; font-weight: 600; cursor: pointer; border: none; transition: all .25s; }
    .cookie-btn-accept { background: var(--clr-accent); color: #fff; flex: 1; min-width: 200px; }
    .cookie-btn-accept:hover { background: var(--clr-accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,99,14,.2); }
    .cookie-btn-essential { background: var(--clr-bg-warm); color: var(--clr-text); border: 1px solid var(--clr-border); }
    .cookie-btn-essential:hover { background: var(--clr-bg); border-color: rgba(0,0,0,.15); }
    .cookie-btn-info { background: transparent; color: var(--clr-text-light); padding: 12px 16px; }
    .cookie-btn-info:hover { color: var(--clr-text); }

    /* ─── ANIMATIONS ─── */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-image img { height: 380px; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .bike-gallery { grid-template-columns: 1fr 1fr; }
      .bike-gallery-item.bike-gallery-wide { grid-column: span 2; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .promise-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr 1fr; }
      .pricing-layout { grid-template-columns: 1fr !important; gap: 40px !important; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .burger { display: block; }
      .hero { padding: 100px 0 60px; min-height: auto; }
      .hero h1 { font-size: 2.2rem; }
      .hero-image img { height: 300px; }
      .hero-float-card { position: static; margin-top: 16px; }
      .services-grid { grid-template-columns: 1fr; }
      .bike-gallery { grid-template-columns: 1fr; }
      .bike-gallery-item.bike-gallery-wide { grid-column: span 1; }
      .bike-gallery-item img { height: 220px; }
      .about-img-secondary { height: 180px; }
      .steps-grid { grid-template-columns: 1fr; gap: 16px; }
      .step { text-align: left; padding: 24px; display: flex; gap: 20px; align-items: flex-start; }
      .step-num { font-size: 2rem; margin-bottom: 0; flex-shrink: 0; width: 50px; }
      .promise-grid { grid-template-columns: 1fr; }
      .promise-item { text-align: left; display: flex; gap: 20px; align-items: flex-start; padding: 16px 0; }
      .promise-icon { margin: 0; flex-shrink: 0; }
      .about-features { grid-template-columns: 1fr; }
      .pricing-cards { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .contact-block p, .contact-block a { overflow-wrap: break-word; word-break: break-word; }
      .legal-content a { overflow-wrap: break-word; word-break: break-word; }
      .section { padding: 64px 0; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { overflow-wrap: break-word; word-break: break-word; }
      .legal-content { padding: 32px 24px; }
      .hero-buttons { flex-direction: column; }
      .btn { justify-content: center; }
      .greeting-strip { padding: 32px 0; }
      .cookie-content { padding: 20px 20px 24px; }
      .cookie-actions { flex-direction: column; }
      .cookie-btn { text-align: center; }
      .cookie-btn-accept { min-width: auto; }
      .cookie-bike img { width: 48px; }
      .cookie-cyclist { font-size: 24px; }
    }

    /* ═══ EINSATZGEBIET (Local SEO) ═══ */
    .area-intro { max-width: 640px; }
    .area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
    .area-card { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 28px 26px; box-shadow: 0 2px 12px var(--clr-shadow); transition: transform .25s, box-shadow .25s, border-color .25s; }
    .area-card:hover { transform: translateY(-3px); border-color: rgba(232,99,14,.2); box-shadow: 0 14px 40px var(--clr-shadow-strong); }
    .area-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--clr-dark); margin-bottom: 6px; }
    .area-card .area-dist { font-size: .8rem; font-weight: 600; color: var(--clr-accent); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; display: block; }
    .area-card p { font-size: .9rem; color: var(--clr-text-light); line-height: 1.7; margin-bottom: 14px; }
    .area-card a.area-link { font-size: .88rem; font-weight: 600; color: var(--clr-accent); display: inline-flex; align-items: center; gap: 6px; }
    .area-card a.area-link:hover { color: var(--clr-accent-light); }
    .area-card a.area-link svg { width: 14px; height: 14px; }
    .area-towns { margin-top: 40px; padding: 28px 30px; background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius); box-shadow: 0 2px 12px var(--clr-shadow); }
    .area-towns h4 { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--clr-accent); margin-bottom: 16px; }
    .area-towns ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 10px; }
    .area-towns li { font-size: .88rem; color: var(--clr-text-light); background: var(--clr-bg-warm); border: 1px solid var(--clr-border); padding: 6px 14px; border-radius: 50px; }
    .area-towns li b { color: var(--clr-text); font-weight: 600; }
    .area-note { margin-top: 18px; font-size: .88rem; color: var(--clr-text-light); line-height: 1.7; }

    /* ═══ FAQ (AEO) ═══ */
    .faq-list { margin-top: 44px; max-width: 860px; }
    .faq-item { background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: 0 2px 10px var(--clr-shadow); overflow: hidden; }
    .faq-item summary { cursor: pointer; list-style: none; padding: 20px 56px 20px 24px; font-family: var(--font-display); font-size: 1.02rem; font-weight: 700; color: var(--clr-dark); position: relative; transition: color .2s; }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary:hover { color: var(--clr-accent); }
    .faq-item summary::after { content: ''; position: absolute; right: 24px; top: 50%; width: 10px; height: 10px; border-right: 2px solid var(--clr-accent); border-bottom: 2px solid var(--clr-accent); transform: translateY(-70%) rotate(45deg); transition: transform .25s; }
    .faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
    .faq-item .faq-a { padding: 0 24px 22px; font-size: .95rem; color: var(--clr-text-light); line-height: 1.8; }
    .faq-item .faq-a p + p { margin-top: 12px; }
    .faq-item .faq-a a { color: var(--clr-accent); font-weight: 600; }

    /* ═══ RATGEBER ═══ */
    .ratgeber-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
    .ratgeber-card { display: block; background: var(--clr-white); border: 1px solid var(--clr-border); border-radius: var(--radius); padding: 30px 26px; box-shadow: 0 2px 12px var(--clr-shadow); transition: transform .25s, box-shadow .25s, border-color .25s; }
    .ratgeber-card:hover { transform: translateY(-3px); border-color: rgba(232,99,14,.2); box-shadow: 0 14px 40px var(--clr-shadow-strong); }
    .ratgeber-card .rg-tag { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--clr-accent); }
    .ratgeber-card h3 { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; color: var(--clr-dark); margin: 10px 0 8px; line-height: 1.35; }
    .ratgeber-card p { font-size: .88rem; color: var(--clr-text-light); line-height: 1.7; }

    @media (max-width: 1024px) {
      .area-grid { grid-template-columns: repeat(2, 1fr); }
      .ratgeber-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .area-grid { grid-template-columns: 1fr; }
      .ratgeber-grid { grid-template-columns: 1fr; }
      .area-towns { padding: 22px 20px; }
      .faq-item summary { font-size: .96rem; padding: 18px 48px 18px 20px; }
      .faq-item .faq-a { padding: 0 20px 20px; }
    }
  
    /* ═══ SUBPAGE ═══ */
    .page-hero { padding: 150px 0 60px; background: linear-gradient(170deg, var(--clr-bg) 0%, var(--clr-bg-warm) 60%, #fef5e7 100%); position: relative; overflow: hidden; }
    .page-hero::after { content:''; position:absolute; top:20%; right:4%; width:180px; height:180px; background: radial-gradient(circle, rgba(232,99,14,.06) 1px, transparent 1px); background-size:20px 20px; opacity:.6; }
    .page-hero .container { position: relative; z-index: 2; }
    .breadcrumb { font-size:.82rem; color: var(--clr-text-light); margin-bottom: 20px; }
    .breadcrumb a { color: var(--clr-accent); font-weight:500; }
    .breadcrumb a:hover { color: var(--clr-accent-light); }
    .breadcrumb span { opacity:.5; margin: 0 6px; }
    .page-hero h1 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 3rem); font-weight:900; line-height:1.1; letter-spacing:-.03em; color: var(--clr-dark); margin-bottom:18px; max-width: 860px; }
    .page-hero h1 .highlight { color: var(--clr-accent); }
    .page-lead { font-size:1.1rem; color: var(--clr-text-light); line-height:1.75; max-width: 680px; }
    .page-meta { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
    .page-meta span { font-size:.84rem; font-weight:500; background: var(--clr-white); border:1px solid var(--clr-border); padding:8px 16px; border-radius:50px; box-shadow:0 2px 8px var(--clr-shadow); }
    .prose { max-width: 760px; }
    .prose h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.6vw,1.9rem); font-weight:800; color: var(--clr-dark); line-height:1.25; margin: 48px 0 16px; letter-spacing:-.02em; }
    .prose h2:first-child { margin-top: 0; }
    .prose h3 { font-family: var(--font-display); font-size:1.15rem; font-weight:700; color: var(--clr-dark); margin: 32px 0 10px; }
    .prose p { font-size:1rem; color: var(--clr-text-light); line-height:1.85; margin-bottom:16px; }
    .prose strong { color: var(--clr-text); font-weight:600; }
    .prose a { color: var(--clr-accent); font-weight:600; }
    .prose a:hover { color: var(--clr-accent-light); }
    .prose ul, .prose ol { margin: 0 0 20px 0; padding-left: 0; list-style: none; }
    .prose ul li { position:relative; padding-left:28px; margin-bottom:10px; font-size:1rem; color: var(--clr-text-light); line-height:1.75; }
    .prose ul li::before { content:''; position:absolute; left:6px; top:11px; width:7px; height:7px; border-radius:50%; background: var(--clr-accent); }
    .prose ol { counter-reset: n; }
    .prose ol li { position:relative; padding-left:38px; margin-bottom:12px; font-size:1rem; color: var(--clr-text-light); line-height:1.75; counter-increment:n; }
    .prose ol li::before { content: counter(n); position:absolute; left:0; top:0; width:26px; height:26px; border-radius:50%; background: var(--clr-accent-soft); color: var(--clr-accent); font-family: var(--font-display); font-weight:800; font-size:.78rem; display:flex; align-items:center; justify-content:center; }
    .callout { background: var(--clr-white); border:1px solid var(--clr-border); border-left:4px solid var(--clr-accent); border-radius: var(--radius-sm); padding: 22px 26px; margin: 28px 0; box-shadow:0 2px 12px var(--clr-shadow); }
    .callout p { margin-bottom:0; font-size:.95rem; }
    .callout p + p { margin-top:10px; }
    .callout .callout-title { font-family: var(--font-display); font-weight:800; color: var(--clr-dark); font-size:1rem; margin-bottom:8px; display:block; }
    .price-table { width:100%; border-collapse:collapse; margin: 24px 0 28px; background: var(--clr-white); border:1px solid var(--clr-border); border-radius: var(--radius-sm); overflow:hidden; box-shadow:0 2px 12px var(--clr-shadow); }
    .price-table th { background: var(--clr-bg-warm); font-size:.78rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color: var(--clr-text); text-align:left; padding:14px 18px; }
    .price-table td { padding:14px 18px; font-size:.93rem; color: var(--clr-text-light); border-top:1px solid var(--clr-border); }
    .price-table td:last-child, .price-table th:last-child { text-align:right; white-space:nowrap; }
    .price-table td strong { color: var(--clr-text); }
    .inline-cta { background: linear-gradient(160deg, #fef5e7 0%, var(--clr-bg-warm) 100%); border:1px solid var(--clr-border); border-radius: var(--radius); padding: 36px 34px; margin: 44px 0 0; text-align:center; }
    .inline-cta h3 { font-family: var(--font-display); font-size:1.35rem; font-weight:800; color: var(--clr-dark); margin-bottom:10px; }
    .inline-cta p { font-size:.95rem; color: var(--clr-text-light); margin-bottom:22px; }
    .inline-cta .btn { box-shadow:0 4px 20px rgba(232,99,14,.2); }
    .related { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; margin-top:24px; }
    .related a { display:block; background: var(--clr-white); border:1px solid var(--clr-border); border-radius: var(--radius-sm); padding:20px 22px; box-shadow:0 2px 10px var(--clr-shadow); transition: transform .25s, box-shadow .25s, border-color .25s; }
    .related a:hover { transform:translateY(-3px); border-color: rgba(232,99,14,.2); box-shadow:0 12px 32px var(--clr-shadow-strong); }
    .related .r-tag { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color: var(--clr-accent); }
    .related h4 { font-family: var(--font-display); font-size:.98rem; font-weight:700; color: var(--clr-dark); margin-top:8px; line-height:1.35; }
    @media (max-width: 900px) { .related { grid-template-columns:1fr; } }
    @media (max-width: 768px) { .page-hero { padding: 120px 0 44px; } .inline-cta { padding: 28px 22px; } .price-table th, .price-table td { padding:11px 12px; font-size:.86rem; } }
