:root {
      --orange: #F39A1E;
      --orange-dark: #D87F00;
      --yellow: #FFD447;

      --bg-0: #050608;
      --bg-1: #141720;
      --text-0: #f5f6fa;
      --text-1: rgba(245, 246, 250, 0.85);
      --text-2: rgba(245, 246, 250, 0.7);

      --surface-0: rgba(5, 6, 8, 0.95);
      --surface-1: #181b22;
      --surface-2: rgba(11, 13, 18, 0.96);

      --border-0: rgba(255, 255, 255, 0.06);
      --border-1: rgba(255, 255, 255, 0.12);
      --border-2: rgba(255, 255, 255, 0.2);

      --shadow-strong: rgba(0, 0, 0, 0.55);
      --field-bg: rgba(5, 6, 8, 0.95);
      --field-ph: rgba(245, 246, 250, 0.5);

      --success-bg: rgba(55, 190, 95, 0.14);
      --success-border: rgba(55, 190, 95, 0.35);
      --success-text: #8df0ad;

      --warn-bg: rgba(255, 212, 71, 0.14);
      --warn-border: rgba(255, 212, 71, 0.32);
      --warn-text: #ffd447;

      --danger-bg: rgba(255, 95, 95, 0.14);
      --danger-border: rgba(255, 95, 95, 0.32);
      --danger-text: #ff9c9c;
    }

    html[data-theme="light"] {
      --bg-0: #f7f8fb;
      --bg-1: #ffffff;

      --text-0: #111318;
      --text-1: rgba(17, 19, 24, 0.82);
      --text-2: rgba(17, 19, 24, 0.62);

      --surface-0: rgba(255, 255, 255, 0.92);
      --surface-1: #ffffff;
      --surface-2: #ffffff;

      --border-0: rgba(17, 19, 24, 0.08);
      --border-1: rgba(17, 19, 24, 0.14);
      --border-2: rgba(17, 19, 24, 0.2);

      --shadow-strong: rgba(17, 19, 24, 0.12);

      --field-bg: rgba(255, 255, 255, 0.95);
      --field-ph: rgba(17, 19, 24, 0.45);

      --success-bg: rgba(55, 190, 95, 0.12);
      --success-border: rgba(55, 190, 95, 0.28);
      --success-text: #168a43;

      --warn-bg: rgba(255, 212, 71, 0.18);
      --warn-border: rgba(243, 154, 30, 0.24);
      --warn-text: #b16a00;

      --danger-bg: rgba(255, 95, 95, 0.12);
      --danger-border: rgba(255, 95, 95, 0.28);
      --danger-text: #b63b3b;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 50%, var(--bg-0) 100%);
      color: var(--text-0);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--surface-0);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-0);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.7rem 0;
      gap: 1rem;
    }

    .logo { display: flex; align-items: center; }
    .logo-img { height: 42px; width: auto; }

    .header-actions {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
    }

    .theme-toggle {
      border: 1px solid var(--border-1);
      background: radial-gradient(circle at 0 0, rgba(255, 212, 71, 0.18), transparent),
                  radial-gradient(circle at 100% 100%, rgba(243, 154, 30, 0.16), transparent);
      color: var(--text-0);
      border-radius: 999px;
      padding: 0.45rem 0.75rem;
      cursor: pointer;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      line-height: 1;
      user-select: none;
    }

    .theme-toggle .dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--yellow), var(--orange));
      box-shadow: 0 0 12px rgba(243, 154, 30, 0.35);
    }

    nav {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      font-size: 0.95rem;
    }

    nav a {
      position: relative;
      padding-bottom: 0.1rem;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--orange), var(--yellow));
      transition: width 0.2s ease;
    }

    nav a:hover::after { width: 100%; }

    .nav-cta {
      padding: 0.45rem 0.9rem;
      border-radius: 999px;
      border: 1px solid var(--border-1);
      background: radial-gradient(circle at 0 0, rgba(255, 212, 71, 0.18), transparent),
                  radial-gradient(circle at 100% 100%, rgba(243, 154, 30, 0.16), transparent);
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .nav-cta:hover {
      transform: translateY(-2px);
      border-color: rgba(243, 154, 30, 0.45);
      background: radial-gradient(circle at 0 0, rgba(255, 212, 71, 0.24), transparent),
                  radial-gradient(circle at 100% 100%, rgba(243, 154, 30, 0.22), transparent);
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--text-0);
      font-size: 1.7rem;
      cursor: pointer;
      line-height: 1;
    }

    .nav-price {
      display: none;
      flex-direction: column;
      gap: 0.05rem;
      padding: 0.35rem 0.6rem;
      border-radius: 10px;
      border: 1px solid var(--border-1);
      background: radial-gradient(circle at 0 0, rgba(255,212,71,0.18), transparent), var(--surface-1);
      font-size: 0.7rem;
      line-height: 1.1;
    }

    .nav-price-label {
      color: var(--text-2);
      font-size: 0.65rem;
    }

    .nav-price-value {
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--orange);
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .container { padding: 0 1.1rem; }
      .logo-img { height: 34px; }

      nav {
        position: fixed;
        inset: 56px 0 auto 0;
        background: var(--surface-0);
        padding: 1rem 1.3rem 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        transform: translateY(-120%);
        transition: transform 0.25s ease;
        border-bottom: 1px solid var(--border-0);
      }

      nav.open { transform: translateY(0); }
      .nav-toggle { display: block; }
      .nav-cta { width: 100%; justify-content: center; margin-top: 0.5rem; }
      .nav-price { width: 100%; margin-bottom: 0.6rem; }
    }

    .hero { padding: 4.5rem 0 3.5rem; position: relative; overflow: clip; }

    .hero::before {
      content: "";
      position: absolute;
      inset: -10% auto auto 50%;
      width: min(78vw, 960px);
      height: 420px;
      transform: translateX(-50%);
      background:
        radial-gradient(circle at 50% 50%, rgba(243,154,30,0.24), transparent 48%),
        radial-gradient(circle at 35% 40%, rgba(255,212,71,0.14), transparent 34%),
        radial-gradient(circle at 70% 30%, rgba(255,140,0,0.12), transparent 28%);
      filter: blur(24px);
      pointer-events: none;
      animation: heroGlow 8s ease-in-out infinite;
      opacity: 0.95;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 22%, transparent 78%, rgba(255,255,255,0.02));
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
      gap: 2.5rem;
      align-items: center;
    }

    .hero-grid-single {
      grid-template-columns: minmax(0, 1fr);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.2rem 0.7rem;
      border-radius: 999px;
      font-size: 0.75rem;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border-0);
      margin-bottom: 1rem;
    }

    .badge-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: radial-gradient(circle, var(--yellow), var(--orange));
      box-shadow: 0 0 12px rgba(255, 180, 71, 0.55);
    }

    h1 {
      font-size: clamp(3rem, 6vw, 5.2rem);
      line-height: 1.02;
      margin-bottom: 1.1rem;
      max-width: 100%;
      letter-spacing: -0.04em;
    }

    h1 span {
      display: inline-block;
      background: linear-gradient(90deg, #ffe27a 0%, var(--yellow) 24%, #ffb648 50%, var(--orange) 76%, #ffdd6b 100%);
      background-size: 220% 100%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 18px rgba(243, 154, 30, 0.18);
      animation: flameFlicker 2.2s ease-in-out infinite, flameShift 6s linear infinite;
    }

    @keyframes flameFlicker {
      0%, 100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 8px rgba(243,154,30,0.24)); }
      25% { transform: translateY(-1px) scale(1.01); filter: drop-shadow(0 0 12px rgba(255,212,71,0.32)); }
      50% { transform: translateY(1px) scale(0.995); filter: drop-shadow(0 0 9px rgba(243,154,30,0.28)); }
      75% { transform: translateY(-0.5px) scale(1.008); filter: drop-shadow(0 0 14px rgba(255,186,72,0.34)); }
    }

    @keyframes flameShift {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }

    @keyframes heroGlow {
      0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.88; }
      50% { transform: translateX(-50%) scale(1.06); opacity: 1; }
    }

    .hero-text {
      font-size: 1.06rem;
      color: var(--text-1);
      max-width: 62rem;
      margin-bottom: 1.6rem;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem 1.2rem;
      margin-top: 1.4rem;
      font-size: 0.85rem;
      color: var(--text-2);
    }

    .hero-meta-item { display: inline-flex; align-items: center; gap: 0.35rem; }
    .hero-meta-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-top: 1.4rem;
    }

    .btn {
      border: none;
      cursor: pointer;
      font-size: 0.95rem;
      border-radius: 999px;
      padding: 0.75rem 1.4rem;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-weight: 500;
      transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--orange), var(--yellow));
      color: #1a1a1a;
      box-shadow: 0 14px 30px rgba(243, 154, 30, 0.30);
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(243, 154, 30, 0.38);
    }

    .btn-outline {
      background: transparent;
      color: var(--text-0);
      border: 1px solid var(--border-2);
    }

    .hero-card {
      background: radial-gradient(circle at 0 0, rgba(255, 212, 71, 0.12), transparent),
                  radial-gradient(circle at 100% 100%, rgba(243, 154, 30, 0.12), transparent),
                  var(--surface-1);
      border-radius: 24px;
      padding: 1.5rem 1.6rem;
      border: 1px solid var(--border-0);
      box-shadow: 0 20px 40px var(--shadow-strong);
      overflow: hidden;
    }

    .hero-card-title { font-size: 1rem; margin-bottom: 0.4rem; font-weight: 600; }
    .hero-card-sub { font-size: 0.8rem; color: var(--text-2); margin-bottom: 1rem; }

    .hero-card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.9rem;
      margin-bottom: 1.2rem;
    }

    .mini-card {
      padding: 0.7rem 0.8rem;
      border-radius: 14px;
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid var(--border-0);
      font-size: 0.8rem;
    }

    .mini-label { font-size: 0.7rem; color: var(--text-2); margin-bottom: 0.15rem; }
    .mini-main { font-weight: 600; }

    .gauge {
      margin-top: 0.6rem;
      height: 7px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.10);
      overflow: hidden;
    }

    .gauge-fill {
      width: 78%;
      height: 100%;
      background: linear-gradient(90deg, var(--yellow), var(--orange));
    }

    .hero-card-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.75rem;
      color: var(--text-2);
      gap: 1rem;
      flex-wrap: wrap;
    }

    .pill {
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      border: 1px solid var(--border-2);
      white-space: nowrap;
    }

    @media (max-width: 900px) {
      .hero { padding: 3.6rem 0 2.7rem; }
      .hero-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      .hero { padding-top: 3.2rem; }
      h1 { font-size: 2.45rem; }
      .hero-card { padding: 1.2rem 1.1rem; }
      .hero-card-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; align-items: flex-start; }
      .btn { width: 100%; justify-content: center; }
    }

    section {
      padding: 3.5rem 0;
      border-top: 1px solid var(--border-0);
    }

    .section-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 1rem;
      margin-bottom: 2.2rem;
    }

    .section-title { font-size: 1.4rem; font-weight: 600; }
    .section-title span { color: var(--orange); }
    .section-subtitle { font-size: 0.9rem; color: var(--text-2); max-width: 28rem; }

    @media (max-width: 768px) {
      section { padding: 2.7rem 0; }
      .section-header { flex-direction: column; align-items: flex-start; }
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.5rem;
    }

    .card {
      background: var(--surface-2);
      border-radius: 18px;
      padding: 1.4rem 1.3rem;
      border: 1px solid var(--border-0);
      font-size: 0.9rem;
      height: 100%;
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(243, 154, 30, 0.35);
      background: color-mix(in srgb, var(--surface-2) 90%, rgba(243, 154, 30, 0.14));
      box-shadow: 0 18px 36px rgba(0,0,0,0.18);
    }

    .card-icon {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      margin-bottom: 0.6rem;
      background: rgba(243, 154, 30, 0.15);
    }

    .card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
    .card p { color: var(--text-2); }

    @media (max-width: 1024px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; } }

    .benefits-grid {
      display: grid;
      grid-template-columns: 1.8fr 1.3fr;
      gap: 2rem;
      align-items: flex-start;
    }

    .benefit-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.1rem 1.6rem;
      font-size: 0.9rem;
    }

    .benefit-item { display: flex; gap: 0.6rem; }

    .benefit-icon {
      margin-top: 0.15rem;
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: rgba(243, 154, 30, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
    }

    .benefit-highlight {
      background: radial-gradient(circle at 0 0, rgba(255, 212, 71, 0.14), transparent), var(--surface-1);
      border-radius: 18px;
      padding: 1.2rem 1.3rem;
      border: 1px solid var(--border-0);
      font-size: 0.88rem;
    }

    .benefit-highlight h3 { font-size: 0.98rem; margin-bottom: 0.3rem; }
    .benefit-highlight ul { margin-top: 0.5rem; padding-left: 1rem; }

    @media (max-width: 900px) {
      .benefits-grid { grid-template-columns: 1fr; }
      .benefit-list { grid-template-columns: 1fr; }
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      font-size: 0.9rem;
    }

    .step-number {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      border: 1px solid var(--border-2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 0.9rem;
      margin-bottom: 0.4rem;
      background: radial-gradient(circle, rgba(255, 212, 71, 0.35), transparent);
    }

    .step h3 { font-size: 0.95rem; margin-bottom: 0.25rem; }
    .step p { color: var(--text-1); }

    @media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .steps { grid-template-columns: 1fr; } }

    .pricing {
      display: grid;
      grid-template-columns: 1.4fr 1.3fr;
      gap: 2rem;
      align-items: center;
    }

    .pricing-text { font-size: 0.9rem; color: var(--text-1); }

    .pricing-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-top: 1rem;
    }

    .pricing-badge {
      font-size: 0.8rem;
      padding: 0.25rem 0.7rem;
      border-radius: 999px;
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid var(--border-0);
    }

    .pricing-card {
      background: radial-gradient(circle at 0 0, rgba(255, 212, 71, 0.16), transparent), var(--surface-1);
      border-radius: 20px;
      padding: 1.5rem 1.4rem;
      border: 1px solid var(--border-0);
      font-size: 0.9rem;
    }

    .pricing-topline {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 0.6rem;
      gap: 0.7rem;
    }

    .pricing-topline span { font-size: 0.85rem; color: var(--text-2); }
    .pricing-price { font-size: 1.6rem; font-weight: 600; }
    .pricing-note { font-size: 0.75rem; color: var(--text-2); margin-top: 0.5rem; }


    .step,
    .pricing-card,
    .delivery-info,
    .faq-item {
      transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
    }

    .step:hover,
    .pricing-card:hover,
    .delivery-info:hover,
    .faq-item:hover {
      transform: translateY(-4px);
      border-color: rgba(243, 154, 30, 0.32);
      box-shadow: 0 18px 36px rgba(0,0,0,0.18);
      background: color-mix(in srgb, var(--surface-1) 92%, rgba(243, 154, 30, 0.10));
    }

    @media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }

    .delivery-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 1.4rem;
      align-items: start;
    }

    .delivery-info {
      background: var(--surface-2);
      border: 1px solid var(--border-0);
      border-radius: 22px;
      padding: 1.4rem;
    }

    .delivery-summary {
      text-align: center;
      max-width: 880px;
      margin: 0 auto 0.5rem;
    }

    .delivery-summary .section-title {
      width: 100%;
      justify-content: center;
    }

    .delivery-summary .section-subtitle {
      max-width: 760px;
      margin: 0.75rem auto 0;
    }

    .zone-cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .zone-card {
      width: 100%;
      display: flex;
      align-items: flex-start;
      gap: 0.9rem;
      padding: 1rem;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border-0);
      color: var(--text-0);
      cursor: pointer;
      text-align: left;
      transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    }

    .zone-card:hover,
    .zone-card.active {
      border-color: rgba(243, 154, 30, 0.55);
      background: rgba(243, 154, 30, 0.10);
      transform: translateY(-3px);
      box-shadow: 0 16px 32px rgba(0,0,0,0.16);
    }

    .zone-card p {
      margin-top: 0.2rem;
      color: var(--text-2);
      font-size: 0.84rem;
    }

    .zone-card strong {
      font-size: 0.96rem;
    }

    .quote-entry {
      display: grid;
      gap: 1rem;
    }

    .zone-badge {
      width: 16px;
      height: 16px;
      border-radius: 999px;
      margin-top: 0.2rem;
      flex: 0 0 16px;
    }

    .badge-1 { background: #F39A1E; }
    .badge-2 { background: #FFD447; }
    .badge-special { background: rgba(255,255,255,0.65); }

    .zone-panel {
      display: none;
      padding: 1.1rem 1rem;
      border-radius: 16px;
      background: rgba(0, 0, 0, 0.22);
      border: 1px solid var(--border-0);
    }

    .zone-panel.active { display: block; }

    .zone-panel h3 {
      margin-bottom: 0.5rem;
      font-size: 1.05rem;
    }

    .zone-status {
      display: inline-block;
      margin-bottom: 0.8rem;
      padding: 0.28rem 0.65rem;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 600;
    }

    .zone-status.available {
      background: rgba(243, 154, 30, 0.18);
      color: #FFD447;
      border: 1px solid rgba(243, 154, 30, 0.35);
    }

    .zone-status.request {
      background: rgba(255,255,255,0.08);
      color: #fff;
      border: 1px solid rgba(255,255,255,0.18);
    }

    .plz-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .plz-tags span {
      padding: 0.35rem 0.65rem;
      border-radius: 999px;
      background: rgba(243, 154, 30, 0.12);
      border: 1px solid rgba(243, 154, 30, 0.22);
      font-size: 0.85rem;
    }

    .plz-checker {
      margin-top: 1.2rem;
      padding: 1rem;
      border-radius: 16px;
      border: 1px solid var(--border-0);
      background: rgba(255,255,255,0.03);
    }

    .plz-checker-title {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .plz-checker-sub {
      font-size: 0.88rem;
      color: var(--text-2);
      margin-bottom: 0.9rem;
    }

    .plz-form {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 0.7rem;
      align-items: stretch;
    }

    .plz-input {
      width: 100%;
      padding: 0.8rem 0.9rem;
      border-radius: 12px;
      border: 1px solid var(--border-1);
      background: var(--field-bg);
      color: var(--text-0);
      font: inherit;
    }

    .plz-result {
      margin-top: 0.9rem;
      border-radius: 14px;
      padding: 0.9rem 1rem;
      border: 1px solid var(--border-0);
      display: none;
    }

    .plz-result.show { display: block; }
    .plz-result.success { background: var(--success-bg); border-color: var(--success-border); color: var(--success-text); }
    .plz-result.warn { background: var(--warn-bg); border-color: var(--warn-border); color: var(--warn-text); }
    .plz-result.danger { background: var(--danger-bg); border-color: var(--danger-border); color: var(--danger-text); }

    .plz-result strong {
      display: block;
      margin-bottom: 0.2rem;
      font-size: 0.96rem;
    }

    .delivery-note {
      margin-top: 1rem;
      font-size: 0.82rem;
      color: var(--text-2);
    }

    @media (max-width: 900px) {
    }

    @media (max-width: 600px) {
      .delivery-info { padding: 1rem; }
      .map-zone text { font-size: 12px; }
      .plz-form { grid-template-columns: 1fr; }
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }

    .faq-item {
      padding: 1rem 1.1rem;
      border-radius: 16px;
      background: var(--surface-0);
      border: 1px solid var(--border-0);
      font-size: 0.9rem;
    }

    .faq-question { font-weight: 500; margin-bottom: 0.4rem; }
    .faq-answer { color: var(--text-1); }

    @media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: flex-start;
    }

    form { display: grid; gap: 0.8rem; font-size: 0.9rem; }
    .form-status { display:none; padding:0.9rem 1rem; border-radius:14px; border:1px solid var(--border-1); font-size:0.9rem; }
    .form-status.show { display:block; }
    .form-status.success { background: var(--success-bg); border-color: var(--success-border); color: var(--success-text); }
    .form-status.error { background: var(--danger-bg); border-color: var(--danger-border); color: var(--danger-text); }
    .hp-field { position:absolute !important; left:-9999px !important; opacity:0 !important; pointer-events:none !important; }
    label { font-size: 0.8rem; margin-bottom: 0.1rem; display: block; }

    input, textarea, select {
      width: 100%;
      padding: 0.6rem 0.7rem;
      border-radius: 10px;
      border: 1px solid var(--border-1);
      background: var(--field-bg);
      color: var(--text-0);
      font: inherit;
    }

    textarea { min-height: 120px; resize: vertical; }

    .contact-info { font-size: 0.9rem; color: var(--text-1); }
    .contact-block { margin-bottom: 1.2rem; }
    .contact-label { font-size: 0.8rem; color: var(--text-2); margin-bottom: 0.2rem; }
    .contact-highlight { font-weight: 600; color: var(--orange); }

    @media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

    footer {
      border-top: 1px solid var(--border-0);
      padding: 1.5rem 0 2rem;
      font-size: 0.8rem;
      color: var(--text-2);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-links { display: flex; gap: 1rem; flex-wrap: wrap; }
    .footer-links a {
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    /* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1120px;
  margin: 0 auto;
  background:
    radial-gradient(circle at 0 0, rgba(255, 212, 71, 0.12), transparent),
    radial-gradient(circle at 100% 100%, rgba(243, 154, 30, 0.10), transparent),
    var(--surface-1);
  border: 1px solid var(--border-1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  border-radius: 20px;
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.cookie-banner-text {
  color: var(--text-1);
  font-size: 0.92rem;
}

.cookie-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-0);
  margin-bottom: 0.25rem;
}

.cookie-banner-text a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.cookie-btn {
  border: none;
  cursor: pointer;
  font: inherit;
  border-radius: 999px;
  padding: 0.78rem 1rem;
  transition: transform 0.12s ease, opacity 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: #1a1a1a;
  font-weight: 700;
}

.cookie-btn-outline {
  background: transparent;
  color: var(--text-0);
  border: 1px solid var(--border-2);
}

.cookie-btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text-0);
  border: 1px solid var(--border-0);
}

html[data-theme="light"] .cookie-btn-ghost {
  background: rgba(17,19,24,0.04);
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-backdrop.show {
  display: flex;
}

.cookie-modal {
  width: 100%;
  max-width: 760px;
  background:
    radial-gradient(circle at 0 0, rgba(255, 212, 71, 0.10), transparent),
    radial-gradient(circle at 100% 100%, rgba(243, 154, 30, 0.10), transparent),
    var(--surface-1);
  border: 1px solid var(--border-1);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  overflow: hidden;
}

.cookie-modal-header,
.cookie-modal-body,
.cookie-modal-footer {
  padding: 1.2rem 1.3rem;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--border-0);
}

.cookie-modal-header h3 {
  margin: 0;
  font-size: 1.2rem;
}

.cookie-modal-header p {
  margin-top: 0.25rem;
  color: var(--text-2);
  font-size: 0.92rem;
}

.cookie-close {
  border: 1px solid var(--border-1);
  background: transparent;
  color: var(--text-0);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.cookie-modal-body {
  display: grid;
  gap: 1rem;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-0);
}

html[data-theme="light"] .cookie-option {
  background: rgba(17,19,24,0.03);
}

.cookie-option-text strong {
  display: block;
  margin-bottom: 0.2rem;
}

.cookie-option-text p {
  color: var(--text-2);
  font-size: 0.9rem;
}

.cookie-modal-footer {
  border-top: 1px solid var(--border-0);
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* Switch */
.cookie-switch {
  position: relative;
  width: 54px;
  height: 30px;
  flex: 0 0 auto;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.14);
  border: 1px solid var(--border-1);
  border-radius: 999px;
  transition: 0.2s ease;
}

.cookie-slider::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  border-radius: 999px;
  background: #fff;
  transition: 0.2s ease;
}

.cookie-switch input:checked + .cookie-slider {
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  border-color: transparent;
}

.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(24px);
}

.cookie-switch-disabled {
  opacity: 0.75;
}

@media (max-width: 820px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .cookie-banner-actions .cookie-btn {
    flex: 1 1 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-banner-inner,
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding: 1rem;
  }

  .cookie-option {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-modal-footer .cookie-btn {
    width: 100%;
    justify-content: center;
  }
}
  

    .quote-calc {
      display: none;
      margin-top: 1.5rem;
      padding: 1.4rem;
      border-radius: 22px;
      border: 1px solid var(--border-1);
      background:
        radial-gradient(circle at top left, rgba(255,212,71,0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(243,154,30,0.12), transparent 34%),
        var(--surface-1);
      box-shadow: 0 18px 44px var(--shadow-strong);
    }
    .quote-calc.show { display: block; }
    .quote-calc-header { display:flex; justify-content:space-between; align-items:flex-start; gap:1rem; margin-bottom:1rem; flex-wrap:wrap; }
    .quote-calc-header h3 { font-size:1.25rem; margin-bottom:0.25rem; }
    .quote-zone-badge { padding:0.45rem 0.8rem; border-radius:999px; border:1px solid rgba(243,154,30,0.28); background:rgba(243,154,30,0.12); color:var(--text-0); font-size:0.88rem; white-space:nowrap; }
    .quote-grid { display:grid; grid-template-columns:1.15fr 0.85fr; gap:1.2rem; align-items:start; }
    .quote-form-grid { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:1rem; }
    .quote-form-grid .full-width { grid-column:1 / -1; }
    .delivery-mode { display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:0.8rem; }
    .mode-option { position:relative; border:1px solid var(--border-1); border-radius:18px; padding:0.95rem 1rem; background:var(--field-bg); cursor:pointer; transition:border-color .2s ease, transform .2s ease, background .2s ease; }
    .mode-option:hover { transform:translateY(-2px); border-color:rgba(243,154,30,0.32); background:rgba(243,154,30,0.08); }
    .mode-option input { position:absolute; inset:0; opacity:0; cursor:pointer; }
    .mode-option.active { border-color:rgba(243,154,30,0.42); box-shadow:0 0 0 1px rgba(243,154,30,0.16) inset; background:rgba(243,154,30,0.1); }
    .mode-option strong { display:block; margin-bottom:0.2rem; }
    .quote-side { display:grid; gap:1rem; }
    .quote-summary, .quote-hint { border-radius:20px; border:1px solid var(--border-1); background:rgba(255,255,255,0.03); padding:1.1rem; }
    .quote-summary h4, .quote-hint h4 { font-size:1rem; margin-bottom:0.55rem; }
    .quote-price { font-size:clamp(1.8rem, 3vw, 2.4rem); font-weight:800; line-height:1; margin:0.35rem 0 0.55rem; }
    .quote-meta { display:grid; gap:0.35rem; color:var(--text-1); font-size:0.96rem; }
    .quote-warning, .quote-success { display:none; border-radius:14px; padding:0.8rem 0.95rem; margin-bottom:0.85rem; font-size:0.92rem; }
    .quote-warning.show { display:block; background:var(--warn-bg); border:1px solid var(--warn-border); color:var(--warn-text); }
    .quote-success.show { display:block; background:var(--success-bg); border:1px solid var(--success-border); color:var(--success-text); }
    .quote-pill-row { display:flex; flex-wrap:wrap; gap:0.5rem; margin-top:0.75rem; }
    .quote-pill { padding:0.38rem 0.72rem; border-radius:999px; border:1px solid var(--border-1); font-size:0.82rem; color:var(--text-1); background:rgba(255,255,255,0.02); }
    .quote-action-row { display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); gap:0.8rem; }
    .quote-action-row .btn { width:100%; justify-content:center; min-height:52px; }
    .quote-form-grid input,
    .quote-form-grid select,
    .quote-form-grid textarea { min-height:52px; font-size:16px; }
    .quote-form-grid label { font-size:0.84rem; margin-bottom:0.28rem; }
    .admin-link-inline { font-size:0.82rem; color:var(--text-2); }
    @media (max-width: 860px) {
      .delivery-layout { gap:1rem; }
      .delivery-info { padding:1rem; border-radius:20px; }
      .zone-cards { display:flex; gap:0.7rem; overflow-x:auto; padding-bottom:0.2rem; scrollbar-width:none; }
      .zone-cards::-webkit-scrollbar { display:none; }
      .zone-card { min-width:180px; padding:0.8rem 0.9rem; }
      .zone-panel { padding:0.95rem 1rem; }
      .zone-panel p { font-size:0.88rem; }
      .quote-calc { padding:1rem; border-radius:20px; margin-top:1rem; }
      .quote-calc-header { margin-bottom:0.8rem; }
      .quote-calc-header h3 { font-size:1.1rem; }
      .quote-zone-badge { width:100%; text-align:center; }
      .quote-grid { grid-template-columns:1fr; gap:1rem; }
      .quote-form-grid { grid-template-columns:1fr; gap:0.85rem; }
      .delivery-mode { grid-template-columns:1fr; gap:0.65rem; }
      .mode-option { padding:0.85rem 0.9rem; }
      .quote-summary, .quote-hint { padding:1rem; border-radius:18px; }
      .quote-price { font-size:clamp(1.7rem, 8vw, 2.3rem); }
      .quote-meta { font-size:0.92rem; }
      .quote-action-row { grid-template-columns:1fr; }
    }
    @media (max-width: 560px) {
      .delivery-summary .section-title { text-align:center; }
      .delivery-summary .section-subtitle { text-align:center; font-size:0.94rem; }
      .plz-checker { padding:1rem; border-radius:18px; }
      .plz-checker-title { font-size:1.05rem; }
      .plz-input { min-height:52px; font-size:16px; }
      .plz-form .btn { width:100%; min-height:52px; }
      .quote-warning, .quote-success { font-size:0.88rem; padding:0.75rem 0.85rem; }
      .quote-pill-row { gap:0.45rem; }
      .quote-pill { font-size:0.78rem; }
    }
