
    :root {
      --bg: #fdfdfb;
      --bg-alt: #f3f4f0;
      --line: #d1d5db;
      --accent: #2563eb;
      --accent-soft: #eff6ff;
      --accent-muted: #93c5fd;
      --text: #111827;
      --muted: #6b7280;
      --danger: #b91c1c;
      --radius: 18px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top left, #e5f0ff 0, transparent 55%), var(--bg);
      color: var(--text);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img { max-width: 100%; display: block; }

    /* SHELL: SIDEBAR + MAIN */

    .shell {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      border-left: 1px solid var(--line);
      border-right: 1px solid var(--line);
      max-width: 1180px;
      margin: 0 auto;
      background: #ffffff;
    }

    /* SIDEBAR */

    .sidebar {
      border-right: 1px solid var(--line);
      padding: 20px 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: sticky;
      top: 0;
      height: 100vh;
      background: linear-gradient(to bottom, #f9fafb, #f3f4f0);
    }

    .brand {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .brand-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-mark {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid #1d4ed8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 16px;
      color: #1d4ed8;
      background:
        radial-gradient(circle at 0 0, #eff6ff 0, transparent 60%),
        #ffffff;
    }

    .brand-text-main {
      font-weight: 700;
      letter-spacing: 0.16em;
      font-size: 11px;
      text-transform: uppercase;
    }

    .brand-text-sub {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .sidebar-note {
      font-size: 11px;
      color: var(--muted);
    }

    .nav-block {
      margin-top: 6px;
    }

    .nav-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 13px;
    }

    .nav-list a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 8px;
      border-radius: 999px;
      color: #374151;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .nav-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      border: 1px solid #9ca3af;
      background: transparent;
    }

    .nav-list a:hover {
      background: var(--accent-soft);
      color: #1d4ed8;
    }

    .nav-list a:hover .nav-dot {
      background: #1d4ed8;
      border-color: #1d4ed8;
    }

    .sidebar-cta {
      margin-top: auto;
      border-top: 1px solid var(--line);
      padding-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 12px;
    }

    .btn-main {
      border-radius: 999px;
      border: 1px solid #1d4ed8;
      background: #1d4ed8;
      color: #eff6ff;
      padding: 9px 14px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
    }

    .btn-main span {
      font-size: 15px;
    }

    .sidebar-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 11px;
    }

    .sidebar-links a {
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-style: dotted;
      color: var(--muted);
    }

    .sidebar-links a:hover {
      color: #1d4ed8;
    }

    /* MAIN CONTENT */

    .main {
      padding: 24px 26px 28px;
    }

    .section {
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
    }

    .section:last-of-type {
      border-bottom: none;
      padding-bottom: 10px;
    }

    .section-header {
      margin-bottom: 12px;
    }

    .section-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .section-title {
      font-size: 22px;
      margin: 0;
      font-weight: 600;
    }

    .section-subtitle {
      font-size: 14px;
      color: var(--muted);
      max-width: 640px;
      margin-top: 6px;
    }

    /* HERO SECTION */

    .hero-title {
      font-size: 28px;
      line-height: 1.2;
      margin: 0 0 8px;
    }

    .hero-tagline {
      font-size: 14px;
      color: var(--muted);
      max-width: 520px;
      margin-bottom: 14px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
      gap: 20px;
      align-items: flex-start;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
    }

    .hero-pill {
      font-size: 11px;
      padding: 4px 9px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: #1d4ed8;
      border: 1px solid #bfdbfe;
    }

    .hero-note {
      font-size: 12px;
      color: var(--muted);
    }

    .hero-block {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      padding: 10px 12px;
      background: #f9fafb;
      font-size: 12px;
    }

    .hero-block-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-top: 6px;
    }

    .hero-stat-label {
      font-size: 11px;
      color: var(--muted);
      margin-bottom: 2px;
    }

    .hero-stat-value {
      font-size: 12px;
      font-weight: 600;
    }

    /* ABOUT ROUTES */

    .cols {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 20px;
    }

    .text-sm { font-size: 14px; color: var(--muted); }

    .list-inline {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 10px;
    }

    .chip {
      font-size: 11px;
      padding: 3px 7px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #ffffff;
      color: #374151;
    }

    .card-outline {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #ffffff;
      padding: 10px 12px;
      font-size: 13px;
    }

    .card-outline h3 {
      font-size: 14px;
      margin: 0 0 4px;
    }

    .card-outline ul {
      margin: 6px 0 0 18px;
      padding: 0;
      font-size: 12px;
      color: var(--muted);
    }

    .card-outline li {
      margin-bottom: 3px;
    }

    /* ROUTES LIST */

    .routes-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 4px;
    }

    .route-item {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 12px;
      padding: 10px 12px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #ffffff;
    }

    .route-meta {
      font-size: 11px;
      color: var(--muted);
      margin-top: 2px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .route-title {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .route-km {
      font-size: 24px;
      font-weight: 600;
      color: #1d4ed8;
      min-width: 70px;
    }

    .route-km span {
      font-size: 11px;
      color: var(--muted);
      display: block;
      font-weight: 400;
    }

    .route-note {
      font-size: 12px;
      color: var(--muted);
      margin-top: 4px;
    }

    /* HOW IT WORKS */

    .steps-timeline {
      border-left: 1px solid var(--line);
      padding-left: 12px;
      margin-top: 6px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .step-item {
      position: relative;
      padding-left: 4px;
    }

    .step-item::before {
      content: "";
      position: absolute;
      left: -13.5px;
      top: 4px;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: 2px solid #1d4ed8;
      background: #ffffff;
    }

    .step-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--muted);
      margin-bottom: 2px;
    }

    .step-title {
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .step-text {
      font-size: 12px;
      color: var(--muted);
    }

    /* FAQ */

    .faq-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
      gap: 20px;
      font-size: 13px;
    }

    .faq-item {
      border-bottom: 1px dashed var(--line);
      padding: 7px 0;
    }

    .faq-item:last-child {
      border-bottom: none;
    }

    .faq-q {
      font-weight: 600;
      font-size: 13px;
      margin-bottom: 2px;
    }

    .faq-a {
      font-size: 12px;
      color: var(--muted);
    }

    .faq-note {
      font-size: 12px;
      border-radius: var(--radius);
      border: 1px dashed var(--line);
      background: #f9fafb;
      padding: 10px 12px;
      color: var(--muted);
    }

    /* CONTACT FORM */

    .form-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
      gap: 20px;
      align-items: flex-start;
    }

    form {
      font-size: 13px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      padding: 12px 12px 14px;
      background: #ffffff;
    }

    .field {
      margin-bottom: 10px;
    }

    .field label {
      display: block;
      font-size: 12px;
      margin-bottom: 4px;
    }

    .field span {
      color: var(--danger);
    }

    input, select, textarea {
      width: 100%;
      border-radius: 10px;
      border: 1px solid #d4d4d8;
      background: #f9fafb;
      font-family: inherit;
      font-size: 13px;
      padding: 7px 9px;
      outline: none;
      color: var(--text);
    }

    textarea {
      min-height: 80px;
      resize: vertical;
    }

    input:focus, select:focus, textarea:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
      background: #ffffff;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
    }

    .btn-submit {
      margin-top: 6px;
      width: 100%;
      border-radius: 999px;
      border: 1px solid #1d4ed8;
      background: #1d4ed8;
      color: #eff6ff;
      padding: 9px 14px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }

    .form-note {
      font-size: 11px;
      color: var(--muted);
      margin-top: 6px;
    }

    .checkbox-row {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      font-size: 11px;
      margin-top: 6px;
      color: var(--muted);
    }

    .checkbox-row input {
      margin-top: 2px;
      width: 14px;
      height: 14px;
    }

    .contact-side {
      font-size: 13px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #f9fafb;
      padding: 12px 12px 10px;
    }

    .contact-side h3 {
      font-size: 14px;
      margin: 0 0 6px;
    }

    .contact-list {
      list-style: none;
      margin: 4px 0 8px;
      padding: 0;
      font-size: 13px;
      color: var(--muted);
    }

    .contact-list li { margin-bottom: 4px; }

    .contact-hl {
      font-size: 12px;
      border-radius: 10px;
      border: 1px dashed var(--line);
      padding: 8px 9px;
      background: #ffffff;
      color: var(--muted);
    }

    /* FOOTER */

    footer {
      border-top: 1px solid var(--line);
      padding: 10px 26px 16px;
      font-size: 11px;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-style: dotted;
    }

    /* COOKIE BANNER */

    .cookie-banner {
      position: fixed;
      inset-inline: 0;
      bottom: 0;
      z-index: 50;
      background: #111827;
      color: #e5e7eb;
      font-size: 12px;
      border-top: 1px solid #4b5563;
      padding: 8px 14px;
      display: none;
    }

    .cookie-banner.visible { display: block; }

    .cookie-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
    }

    .cookie-text {
      flex: 1 1 220px;
    }

    .cookie-text a {
      color: #93c5fd;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cookie-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: flex-end;
    }

    .cookie-btn {
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 11px;
      border: 1px solid #6b7280;
      background: transparent;
      color: #e5e7eb;
      cursor: pointer;
    }

    .cookie-btn-primary {
      border-color: #2563eb;
      background: #2563eb;
      color: #eff6ff;
    }

    /* RESPONSIVE */

    @media (max-width: 960px) {
      .shell {
        grid-template-columns: minmax(0, 1fr);
        border-left: none;
        border-right: none;
      }

      .sidebar {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        gap: 10px;
      }

      .nav-block {
        border-top: 1px solid var(--line);
        padding-top: 8px;
      }

      .nav-list {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .nav-list a {
        padding-inline: 10px;
      }

      .hero-grid,
      .cols,
      .faq-grid,
      .form-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      .main {
        padding-inline: 18px;
      }

      footer {
        padding-inline: 18px;
      }
    }

    @media (max-width: 640px) {
      .form-row {
        grid-template-columns: minmax(0, 1fr);
      }

      .hero-title {
        font-size: 24px;
      }
    }


    .shell {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      border-left: 1px solid var(--line);
      border-right: 1px solid var(--line);
      max-width: 1180px;
      margin: 0 auto;
      background: #ffffff;
    }

    /* SIDEBAR */

    .sidebar {
      border-right: 1px solid var(--line);
      padding: 20px 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: sticky;
      top: 0;
      height: 100vh;
      background: linear-gradient(to bottom, #f9fafb, #f3f4f0);
    }

    .brand {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .brand-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-mark {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid #1d4ed8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 16px;
      color: #1d4ed8;
      background:
        radial-gradient(circle at 0 0, #eff6ff 0, transparent 60%),
        #ffffff;
    }

    .brand-text-main {
      font-weight: 700;
      letter-spacing: 0.16em;
      font-size: 11px;
      text-transform: uppercase;
    }

    .brand-text-sub {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .sidebar-note {
      font-size: 11px;
      color: var(--muted);
    }

    .nav-block {
      margin-top: 6px;
    }

    .nav-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 13px;
    }

    .nav-list a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 8px;
      border-radius: 999px;
      color: #374151;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .nav-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      border: 1px solid #9ca3af;
      background: transparent;
    }

    .nav-list a:hover {
      background: var(--accent-soft);
      color: #1d4ed8;
    }

    .nav-list a:hover .nav-dot {
      background: #1d4ed8;
      border-color: #1d4ed8;
    }

    .sidebar-cta {
      margin-top: auto;
      border-top: 1px solid var(--line);
      padding-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 12px;
    }

    .btn-main {
      border-radius: 999px;
      border: 1px solid #1d4ed8;
      background: #1d4ed8;
      color: #eff6ff;
      padding: 9px 14px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      gap: 6px;
    }

    .btn-main span {
      font-size: 15px;
    }

    .sidebar-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 11px;
    }

    .sidebar-links a {
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-style: dotted;
      color: var(--muted);
    }

    .sidebar-links a:hover {
      color: #1d4ed8;
    }

    /* MAIN */

    .main {
      padding: 24px 26px 28px;
    }

    .section {
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
    }

    .section:last-of-type {
      border-bottom: none;
      padding-bottom: 10px;
    }

    .section-header {
      margin-bottom: 12px;
    }

    .section-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .section-title {
      font-size: 22px;
      margin: 0;
      font-weight: 600;
    }

    .section-subtitle {
      font-size: 14px;
      color: var(--muted);
      max-width: 620px;
      margin-top: 6px;
    }

    .text-sm {
      font-size: 14px;
      color: var(--muted);
    }

    /* CONTACT LAYOUT */

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: 20px;
      margin-top: 10px;
    }

    .card-block {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #ffffff;
      padding: 12px 12px 14px;
      font-size: 13px;
    }

    .card-block h2,
    .card-block h3 {
      margin: 0 0 6px;
      font-size: 16px;
    }

    .card-block h3 {
      font-size: 15px;
    }

    .contact-list {
      list-style: none;
      margin: 4px 0 8px;
      padding: 0;
      font-size: 13px;
      color: var(--muted);
    }

    .contact-list li {
      margin-bottom: 5px;
    }

    .highlight {
      margin-top: 6px;
      font-size: 12px;
      border-radius: 10px;
      border: 1px dashed var(--line);
      padding: 8px 9px;
      background: #f9fafb;
      color: var(--muted);
    }

    form {
      font-size: 13px;
    }

    .field {
      margin-bottom: 10px;
    }

    .field label {
      display: block;
      font-size: 12px;
      margin-bottom: 4px;
    }

    .field span {
      color: #b91c1c;
    }

    input, textarea {
      width: 100%;
      border-radius: 10px;
      border: 1px solid #d4d4d8;
      background: #f9fafb;
      font-family: inherit;
      font-size: 13px;
      padding: 7px 9px;
      outline: none;
      color: var(--text);
    }

    textarea {
      min-height: 90px;
      resize: vertical;
    }

    input:focus, textarea:focus {
      border-color: #2563eb;
      box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
      background: #ffffff;
    }

    .btn-submit {
      margin-top: 6px;
      width: 100%;
      border-radius: 999px;
      border: 1px solid #1d4ed8;
      background: #1d4ed8;
      color: #eff6ff;
      padding: 9px 14px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
    }

    .form-note {
      font-size: 11px;
      color: var(--muted);
      margin-top: 6px;
    }

    /* FOOTER */

    footer {
      border-top: 1px solid var(--line);
      padding: 10px 26px 16px;
      font-size: 11px;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .footer-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-style: dotted;
    }

    /* COOKIE BANNER */

    .cookie-banner {
      position: fixed;
      inset-inline: 0;
      bottom: 0;
      z-index: 50;
      background: #111827;
      color: #e5e7eb;
      font-size: 12px;
      border-top: 1px solid #4b5563;
      padding: 8px 14px;
      display: none;
    }

    .cookie-banner.visible { display: block; }

    .cookie-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
    }

    .cookie-text {
      flex: 1 1 220px;
    }

    .cookie-text a {
      color: #93c5fd;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cookie-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: flex-end;
    }

    .cookie-btn {
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 11px;
      border: 1px solid #6b7280;
      background: transparent;
      color: #e5e7eb;
      cursor: pointer;
    }

    .cookie-btn-primary {
      border-color: #2563eb;
      background: #2563eb;
      color: #eff6ff;
    }

    /* RESPONSIVE */

    @media (max-width: 960px) {
      .shell {
        grid-template-columns: minmax(0, 1fr);
        border-left: none;
        border-right: none;
      }

      .sidebar {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        gap: 10px;
      }

      .nav-block {
        border-top: 1px solid var(--line);
        padding-top: 8px;
      }

      .nav-list {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .nav-list a {
        padding-inline: 10px;
      }

      .main {
        padding-inline: 18px;
      }

      footer {
        padding-inline: 18px;
      }

      .contact-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }




  
    /* SHELL */

    .shell {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      border-left: 1px solid var(--line);
      border-right: 1px solid var(--line);
      max-width: 1180px;
      margin: 0 auto;
      background: #ffffff;
    }

    /* SIDEBAR */

    .sidebar {
      border-right: 1px solid var(--line);
      padding: 20px 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: sticky;
      top: 0;
      height: 100vh;
      background: linear-gradient(to bottom, #f9fafb, #f3f4f0);
    }

    .brand {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .brand-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand-mark {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid #1d4ed8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 16px;
      color: #1d4ed8;
      background:
        radial-gradient(circle at 0 0, #eff6ff 0, transparent 60%),
        #ffffff;
    }

    .brand-text-main {
      font-weight: 700;
      letter-spacing: 0.16em;
      font-size: 11px;
      text-transform: uppercase;
    }

    .brand-text-sub {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .sidebar-note {
      font-size: 11px;
      color: var(--muted);
    }

    .nav-block {
      margin-top: 6px;
    }

    .nav-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--muted);
      margin-bottom: 6px;
    }

    .nav-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
      font-size: 13px;
    }

    .nav-list a {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 8px;
      border-radius: 999px;
      color: #374151;
      transition: background 0.15s ease, color 0.15s ease;
    }

    .nav-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      border: 1px solid #9ca3af;
      background: transparent;
    }

    .nav-list a:hover {
      background: var(--accent-soft);
      color: #1d4ed8;
    }

    .nav-list a:hover .nav-dot {
      background: #1d4ed8;
      border-color: #1d4ed8;
    }

    .sidebar-cta {
      margin-top: auto;
      border-top: 1px solid var(--line);
      padding-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 12px;
    }

    .sidebar-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 11px;
    }

    .sidebar-links a {
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-style: dotted;
      color: var(--muted);
    }

    .sidebar-links a:hover {
      color: #1d4ed8;
    }

    /* MAIN */

    .main {
      padding: 24px 26px 28px;
    }

    .section {
      padding: 22px 0;
      border-bottom: 1px solid var(--line);
    }

    .section:last-of-type {
      border-bottom: none;
      padding-bottom: 10px;
    }

    .section-header {
      margin-bottom: 10px;
    }

    .section-kicker {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-bottom: 4px;
    }

    .section-title {
      font-size: 22px;
      margin: 0;
      font-weight: 600;
    }

    .section-subtitle {
      font-size: 14px;
      color: var(--muted);
      max-width: 640px;
      margin-top: 6px;
    }

    .policy {
      font-size: 14px;
      color: var(--muted);
    }

    .policy h2 {
      font-size: 18px;
      margin: 18px 0 6px;
      color: var(--text);
    }

    .policy h3 {
      font-size: 15px;
      margin: 12px 0 4px;
      color: var(--text);
    }

    .policy p {
      margin: 4px 0 8px;
    }

    .policy ul {
      margin: 4px 0 8px 20px;
      padding: 0;
    }

    .policy li {
      margin-bottom: 4px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 3px 8px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: #1d4ed8;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      margin-bottom: 6px;
    }

    .note-box {
      margin: 8px 0 14px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: #f9fafb;
      padding: 10px 12px;
      font-size: 13px;
      color: var(--muted);
    }

    /* FOOTER */

    footer {
      border-top: 1px solid var(--line);
      padding: 10px 26px 16px;
      font-size: 11px;
      color: var(--muted);
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .footer-links {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .footer-links a {
      text-decoration: underline;
      text-underline-offset: 3px;
      text-decoration-style: dotted;
    }

    /* COOKIE BANNER */

    .cookie-banner {
      position: fixed;
      inset-inline: 0;
      bottom: 0;
      z-index: 50;
      background: #111827;
      color: #e5e7eb;
      font-size: 12px;
      border-top: 1px solid #4b5563;
      padding: 8px 14px;
      display: none;
    }

    .cookie-banner.visible { display: block; }

    .cookie-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      flex-wrap: wrap;
    }

    .cookie-text {
      flex: 1 1 220px;
    }

    .cookie-text a {
      color: #93c5fd;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .cookie-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: flex-end;
    }

    .cookie-btn {
      border-radius: 999px;
      padding: 6px 12px;
      font-size: 11px;
      border: 1px solid #6b7280;
      background: transparent;
      color: #e5e7eb;
      cursor: pointer;
    }

    .cookie-btn-primary {
      border-color: #2563eb;
      background: #2563eb;
      color: #eff6ff;
    }

    /* RESPONSIVE */

    @media (max-width: 960px) {
      .shell {
        grid-template-columns: minmax(0, 1fr);
        border-left: none;
        border-right: none;
      }

      .sidebar {
        position: static;
        height: auto;
        border-right: none;
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        gap: 10px;
      }

      .nav-block {
        border-top: 1px solid var(--line);
        padding-top: 8px;
      }

      .nav-list {
        flex-direction: row;
        flex-wrap: wrap;
      }

      .nav-list a {
        padding-inline: 10px;
      }

      .main {
        padding-inline: 18px;
      }

      footer {
        padding-inline: 18px;
      }
    }
  </style>