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

    :root {
      --cyan:    #00aeff;
      --cyan-d:  #0088cc;
      --black:   #0a0a0a;
      --dark:    #111418;
      --card:    #161b22;
      --border:  #1e2630;
      --text:    #e8edf2;
      --muted:   #7a8a9a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--black);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }
    body.modal-open { overflow: hidden; }

    .skip-link {
      position: absolute;
      left: 16px;
      top: -44px;
      background: var(--cyan);
      color: #000;
      padding: 10px 14px;
      border-radius: 6px;
      font-weight: 700;
      text-decoration: none;
      z-index: 10000;
      transition: top .2s ease;
    }
    .skip-link:focus { top: 12px; }

    /* ── TOPBAR ── */
    .topbar {
      background: #060a0d;
      border-bottom: 1px solid var(--border);
      padding: 8px 0;
      font-size: 13px;
      color: var(--muted);
    }
    .topbar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      gap: 32px;
      flex-wrap: wrap;
    }
    .topbar a { color: var(--muted); text-decoration: none; }
    .topbar a:hover { color: var(--cyan); }
    .topbar-item { display: flex; align-items: center; gap: 6px; }
    .topbar-item svg { width: 14px; height: 14px; fill: var(--cyan); flex-shrink: 0; }

    /* ── NAVBAR ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(10, 10, 10, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: var(--text);
    }
    .logo svg {
      height: 22px;
      width: auto;
    }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a {
      text-decoration: none;
      color: var(--muted);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--cyan); }
    .nav-cta {
      background: var(--cyan);
      color: #000 !important;
      padding: 8px 20px;
      border-radius: 4px;
      font-weight: 600 !important;
      transition: background .2s, transform .15s !important;
    }
    .nav-cta:hover { background: #fff !important; transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 96vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, #060a0d 0%, #0d1520 60%, #091520 100%);
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(0,200,240,.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,200,240,.05) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(0,200,240,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,200,240,.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(0,200,240,.1);
      border: 1px solid rgba(0,200,240,.25);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 24px;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--cyan);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .5; transform: scale(1.4); }
    }
    .hero h1 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(48px, 7vw, 84px);
      font-weight: 800;
      line-height: 1.0;
      letter-spacing: -1px;
      margin-bottom: 8px;
    }
    .hero h1 .model {
      color: var(--cyan);
      display: block;
    }
    .hero h1 .year {
      font-size: .55em;
      color: var(--muted);
      font-weight: 600;
      letter-spacing: 3px;
      display: block;
      margin-top: 4px;
    }
    .hero-sub {
      font-size: 18px;
      color: var(--muted);
      margin: 24px 0 36px;
      max-width: 460px;
      font-weight: 300;
    }
    .hero-sub strong { color: var(--text); font-weight: 600; }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--cyan);
      color: #000;
      text-decoration: none;
      padding: 14px 32px;
      border-radius: 4px;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: background .2s, transform .15s, box-shadow .2s;
      box-shadow: 0 4px 24px rgba(0,200,240,.3);
    }
    .btn-primary:hover {
      background: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,200,240,.4);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--border);
      color: var(--text);
      text-decoration: none;
      padding: 14px 32px;
      border-radius: 4px;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: border-color .2s, color .2s;
    }
    .btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }
    .hero-specs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      margin-top: 48px;
    }
    .hero-spec {
      background: var(--dark);
      padding: 20px;
      text-align: center;
    }
    .hero-spec .val {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 36px;
      font-weight: 800;
      color: var(--cyan);
      line-height: 1;
    }
    .hero-spec .unit {
      font-size: 14px;
      color: var(--muted);
      margin-top: 2px;
    }

    /* Bike visual */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .bike-frame {
      position: relative;
      width: 100%;
      max-width: 460px;
    }
    .bike-glow {
      position: absolute;
      inset: -15%;
      background: radial-gradient(ellipse at center, rgba(0,174,255,.18) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }
    .bike-photo {
      position: relative;
      z-index: 1;
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
      display: block;
      filter: drop-shadow(0 20px 60px rgba(0,174,255,.25));
    }

    /* ── SECTION BASE ── */
    section { padding: 100px 0; }
    .section-black { background: var(--black); }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section-label {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--cyan);
      margin-bottom: 16px;
    }
    .section-label::after {
      content: '';
      flex: 1;
      max-width: 60px;
      height: 1px;
      background: var(--cyan);
      opacity: .4;
    }
    .section-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .section-title span { color: var(--cyan); }
    .section-desc {
      color: var(--muted);
      max-width: 560px;
      font-size: 16px;
    }

    /* ── ABOUT ── */
    .about { background: var(--dark); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-img {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      background: var(--card);
      border: 1px solid var(--border);
    }
    .about-img-inner {
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px;
    }
    .about-visual-svg { width: 100%; }
    .about-accent {
      position: absolute;
      top: -1px; left: 32px;
      width: 80px; height: 3px;
      background: var(--cyan);
      border-radius: 0 0 4px 4px;
    }
    .about-list { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
    .about-list li {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .check {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: rgba(0,200,240,.12);
      border: 1px solid rgba(0,200,240,.3);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .check svg { width: 12px; height: 12px; stroke: var(--cyan); fill: none; stroke-width: 2.5; }
    .about-list strong { display: block; font-size: 15px; margin-bottom: 2px; }
    .about-list span { font-size: 13px; color: var(--muted); }

    /* ── TECH SPECS ── */
    .specs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1px;
      background: var(--border);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border);
      margin-top: 60px;
    }
    .spec-card {
      background: var(--card);
      padding: 28px;
      transition: background .2s;
    }
    .spec-card:hover { background: #1a2030; }
    .spec-card .label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
    .spec-card .value {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      font-weight: 700;
      color: var(--text);
      line-height: 1;
    }
    .spec-card .value.value-sm { font-size: 18px; }
    .spec-card .value.value-md { font-size: 20px; }
    .spec-card .value span { font-size: 14px; color: var(--muted); font-weight: 400; }
    .spec-card .icon-wrap {
      width: 36px; height: 36px;
      background: rgba(0,200,240,.1);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 16px;
    }
    .spec-card .icon-wrap svg { width: 18px; height: 18px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }

    /* ── PRICING ── */
    .pricing { background: var(--dark); }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }
    .price-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 36px 32px;
      position: relative;
      transition: border-color .2s, transform .2s;
    }
    .price-card:hover { border-color: rgba(0,200,240,.3); transform: translateY(-4px); }
    .price-card.featured {
      border-color: var(--cyan);
      background: linear-gradient(160deg, rgba(0,200,240,.06) 0%, var(--card) 60%);
    }
    .price-card.featured::before {
      content: 'NAJOBĽÚBENEJŠÍ';
      position: absolute;
      top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--cyan);
      color: #000;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 1.5px;
      padding: 4px 16px;
      border-radius: 100px;
    }
    .price-name { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
    .price-amount {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 52px;
      font-weight: 800;
      color: var(--text);
      line-height: 1;
      margin-bottom: 4px;
    }
    .price-amount span { font-size: 20px; color: var(--muted); font-weight: 400; }
    .price-period { font-size: 13px; color: var(--muted); margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
    .price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
    .price-features li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
    .price-features li::before {
      content: '✓';
      color: var(--cyan);
      font-weight: 700;
      flex-shrink: 0;
      line-height: 1.4;
    }
    .price-note { font-size: 12px; color: var(--muted); margin-top: 16px; text-align: center; }

    .btn-price {
      display: block;
      text-align: center;
      text-decoration: none;
      padding: 12px;
      border-radius: 4px;
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all .2s;
    }
    .btn-price-outline {
      border: 1px solid var(--border);
      color: var(--text);
    }
    .btn-price-outline:hover { border-color: var(--cyan); color: var(--cyan); }
    .btn-price-filled {
      background: var(--cyan);
      color: #000;
    }
    .btn-price-filled:hover { background: #fff; }

    /* ── CONDITIONS ── */
    .conditions-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 60px;
    }
    .cond-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 32px;
      display: flex;
      gap: 20px;
    }
    .cond-icon {
      width: 48px; height: 48px;
      background: rgba(0,200,240,.1);
      border: 1px solid rgba(0,200,240,.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .cond-icon svg { width: 22px; height: 22px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }
    .cond-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .cond-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

    /* ── COMPANY ── */
    .company { background: var(--dark); }
    .company-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .company-left {
      padding: 56px;
      border-right: 1px solid var(--border);
    }
    .company-right {
      padding: 56px;
    }
    .company-logo-block {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }
    .company-logo-icon svg {
      height: 28px;
      width: auto;
    }
    .company-name { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; line-height: 1.1; }
    .company-name small { display: block; font-size: 13px; color: var(--muted); font-family: 'Barlow', sans-serif; font-weight: 400; letter-spacing: 0; }
    .company-desc { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
    .section-desc-spaced { margin-bottom: 48px; }
    .company-data-title {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 24px;
    }
    .link-cyan {
      color: var(--cyan);
      text-decoration: none;
    }
    .link-cyan:hover,
    .link-cyan:focus-visible { text-decoration: underline; }
    .tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag {
      background: rgba(0,200,240,.08);
      border: 1px solid rgba(0,200,240,.2);
      color: var(--cyan);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .5px;
      padding: 5px 12px;
      border-radius: 4px;
    }
    .info-table { width: 100%; border-collapse: collapse; }
    .info-table tr { border-bottom: 1px solid var(--border); }
    .info-table tr:last-child { border-bottom: none; }
    .info-table td { padding: 14px 0; font-size: 14px; vertical-align: top; }
    .info-table td:first-child { color: var(--muted); width: 40%; font-size: 12px; letter-spacing: .5px; text-transform: uppercase; padding-right: 16px; padding-top: 16px; }
    .info-table td:last-child { color: var(--text); font-weight: 500; }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
      margin-top: 60px;
    }
    .contact-form {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 40px;
    }
    .contact-form-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
    .form-note {
      font-size: 12px;
      color: var(--muted);
      margin-bottom: 16px;
    }
    .form-feedback {
      border-radius: 8px;
      border: 1px solid var(--border);
      padding: 12px 14px;
      margin-bottom: 16px;
      font-size: 14px;
      line-height: 1.5;
    }
    .form-feedback-success {
      border-color: rgba(0, 200, 140, .45);
      background: rgba(0, 120, 80, .16);
      color: #baf7da;
    }
    .form-feedback-validation_error,
    .form-feedback-spam_blocked,
    .form-feedback-send_error {
      border-color: rgba(255, 120, 120, .4);
      background: rgba(130, 20, 20, .2);
      color: #ffd1d1;
    }
    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      background: var(--dark);
      border: 1px solid var(--border);
      color: var(--text);
      padding: 12px 16px;
      border-radius: 6px;
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      transition: border-color .2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--cyan); }
    .form-group input:focus-visible,
    .form-group select:focus-visible,
    .form-group textarea:focus-visible,
    .btn-primary:focus-visible,
    .btn-outline:focus-visible,
    .btn-price:focus-visible,
    .footer-legal a:focus-visible,
    .cookie-btn:focus-visible,
    .modal-close:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 2px;
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-group select option { background: var(--dark); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }
    .btn-submit {
      border: none;
      cursor: pointer;
      width: 100%;
      justify-content: center;
      font-size: 14px;
    }
    .contact-cta-box {
      background: linear-gradient(135deg, rgba(0,200,240,.1), rgba(0,200,240,.05));
      border: 1px solid rgba(0,200,240,.25);
      border-radius: 12px;
      padding: 28px;
      margin-top: 8px;
    }
    .contact-cta-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .contact-cta-text {
      font-size: 14px;
      color: var(--muted);
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .contact-cta-link { display: inline-flex; }

    .contact-info { display: flex; flex-direction: column; gap: 24px; }
    .contact-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .contact-icon {
      width: 44px; height: 44px;
      background: rgba(0,200,240,.1);
      border: 1px solid rgba(0,200,240,.2);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .contact-icon svg { width: 20px; height: 20px; stroke: var(--cyan); fill: none; stroke-width: 1.8; }
    .contact-item h4 { font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
    .contact-item p { font-size: 15px; color: var(--text); }
    .contact-item a { color: var(--cyan); text-decoration: none; }
    .contact-item a:hover { text-decoration: underline; }

    /* ── FOOTER ── */
    footer {
      background: #060a0d;
      border-top: 1px solid var(--border);
      padding: 60px 0 32px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 60px;
      padding-bottom: 48px;
      border-bottom: 1px solid var(--border);
      margin-bottom: 32px;
    }
    .footer-brand p { font-size: 14px; color: var(--muted); margin-top: 16px; max-width: 320px; line-height: 1.7; }
    .footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
    .footer-col ul li a:hover { color: var(--cyan); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: var(--muted);
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-bottom a { color: var(--muted); text-decoration: none; }
    .footer-bottom a:hover { color: var(--cyan); }
    .footer-logo { margin-bottom: 0; }
    .footer-separator { color: var(--border); }

    /* ── MODALS ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.75);
      backdrop-filter: blur(6px);
      z-index: 9999;
      padding: 24px 16px;
      overflow-y: auto;
    }
    .modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }
    .modal-box {
      background: #111418;
      border: 1px solid var(--border);
      border-radius: 16px;
      width: 100%;
      max-width: 740px;
      margin: auto;
      padding: 48px;
      position: relative;
    }
    .modal-box:focus {
      outline: 2px solid var(--cyan);
      outline-offset: 2px;
    }
    .modal-close {
      position: absolute;
      top: 20px; right: 20px;
      background: rgba(255,255,255,.07);
      border: 1px solid var(--border);
      border-radius: 8px;
      color: var(--muted);
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
      transition: background .2s, color .2s;
    }
    .modal-close:hover { background: rgba(255,255,255,.12); color: var(--text); }
    .modal-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .modal-subtitle {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 32px;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }
    .modal-body h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: .5px;
      text-transform: uppercase;
      color: var(--cyan);
      margin: 28px 0 10px;
    }
    .modal-body h3:first-child { margin-top: 0; }
    .modal-body p { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 8px; }
    .modal-body ul { padding-left: 20px; margin-bottom: 8px; }
    .modal-body ul li { font-size: 14px; color: var(--muted); line-height: 1.75; }
    .modal-body strong { color: var(--text); }

    /* ── COOKIE BANNER ── */
    .cookie-banner {
      display: none;
      position: fixed;
      bottom: 24px; left: 24px; right: 24px;
      max-width: 680px;
      margin: 0 auto;
      background: #161b22;
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 22px 28px;
      z-index: 8888;
      box-shadow: 0 8px 40px rgba(0,0,0,.5);
      gap: 20px;
      align-items: center;
      flex-wrap: wrap;
    }
    .cookie-banner.visible { display: flex; }
    .cookie-banner.hidden { display: none !important; }
    .cookie-text { flex: 1; min-width: 220px; font-size: 13px; color: var(--muted); line-height: 1.6; }
    .cookie-text a { color: var(--cyan); text-decoration: none; }
    .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
    .cookie-btn {
      padding: 9px 20px;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: opacity .2s;
    }
    .cookie-btn:hover { opacity: .85; }
    .cookie-btn-accept { background: var(--cyan); color: #000; }
    .cookie-btn-reject { background: rgba(255,255,255,.08); color: var(--muted); }

    /* ── GDPR CHECKBOX ── */
    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 4px;
      margin-bottom: 16px;
    }
    .form-check input[type="checkbox"] {
      width: 16px; height: 16px;
      margin-top: 2px;
      accent-color: var(--cyan);
      flex-shrink: 0;
      cursor: pointer;
    }
    .form-check label {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.5;
      cursor: pointer;
    }
    .form-check label a { color: var(--cyan); text-decoration: none; }
    .form-check label a:hover { text-decoration: underline; }

    /* ── LEGAL LINKS ── */
    .footer-legal {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      border-top: 1px solid var(--border);
      margin-top: 24px;
      padding-top: 20px;
      font-size: 12px;
    }
    .footer-legal a {
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
    }
    .footer-legal a:hover { color: var(--cyan); }
    .text-link-cyan { color: var(--cyan); text-decoration: none; }
    .text-link-cyan:hover,
    .text-link-cyan:focus-visible { text-decoration: underline; }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ── DIVIDER ── */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; text-align: center; }
      .hero-sub { margin-left: auto; margin-right: auto; }
      .hero-actions { justify-content: center; }
      .hero-visual { display: none; }
      .hero-specs { max-width: 480px; margin-left: auto; margin-right: auto; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-img { display: none; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
      .conditions-grid { grid-template-columns: 1fr; }
      .company-card { grid-template-columns: 1fr; }
      .company-left { border-right: none; border-bottom: 1px solid var(--border); }
      .contact-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
      .section-label::after { display: none; }
    }
    @media (max-width: 600px) {
      nav .nav-links { display: none; }
      .hero h1 { font-size: 56px; }
      .form-row { grid-template-columns: 1fr; }
      .company-left, .company-right { padding: 32px; }
      .contact-form { padding: 28px; }
    }
