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

    :root {
      --ocean:     #0A5C8A;
      --blue:      #1487C8;
      --sky:       #38B6E8;
      --pool:      #6DCFF6;
      --foam:      #C8EEFA;
      --mist:      #EAF7FD;
      --white:     #ffffff;
      --ink:       #0D2435;
      --ink-mid:   #2E5470;
      --text-dim:  #7AA3BC;
      --border:    #D4EBF8;
      --border-d:  #B0D8EF;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Geist', sans-serif;
      background: var(--white);
      color: var(--ink);
      overflow-x: hidden;
      font-size: 16px;
      line-height: 1.6;
    }

    /* ── NAV ──────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 56px; height: 64px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }

    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }

    .nav-icon {
      width: 34px; height: 34px;
      background: var(--blue);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
    }

    .logo-type {
      font-family: 'Geist', sans-serif;
      font-weight: 600; font-size: 17px;
      letter-spacing: -0.3px; color: var(--ink);
    }

    .logo-type em { color: var(--blue); font-style: normal; }

    .nav-links {
      display: flex; align-items: center; gap: 36px;
      list-style: none;
    }

    .nav-links a {
      color: var(--ink-mid);
      text-decoration: none; font-size: 14px; font-weight: 400;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--blue); }

    .nav-cta {
      background: var(--blue) !important;
      color: var(--white) !important;
      padding: 8px 20px !important;
      border-radius: 6px !important;
      font-weight: 500 !important;
    }

    .nav-cta:hover { background: var(--ocean) !important; color: var(--white) !important; }

    /* ── HAMBURGER ────────────────────────────── */
    .nav-hamburger {
      display: none;
      flex-direction: column; justify-content: center; align-items: center;
      gap: 5px;
      width: 40px; height: 40px;
      background: none; border: none; cursor: pointer;
      padding: 4px; border-radius: 8px;
      transition: background 0.2s;
    }

    .nav-hamburger:hover { background: var(--mist); }

    .nav-hamburger span {
      display: block; width: 22px; height: 2px;
      background: var(--ink); border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
      transform-origin: center;
    }

    /* Hamburger → X animation */
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── MOBILE MENU ──────────────────────────── */
    .mobile-menu {
      display: none;
      position: fixed; top: 64px; left: 0; right: 0; z-index: 199;
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 16px 24px 24px;
      flex-direction: column; gap: 4px;
      /* Slide in animation */
      transform: translateY(-8px);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .mobile-menu.open {
      display: flex;
      transform: translateY(0);
      opacity: 1;
      pointer-events: all;
    }

    .mobile-menu a {
      display: block;
      padding: 13px 16px;
      color: var(--ink-mid);
      text-decoration: none;
      font-size: 16px; font-weight: 400;
      border-radius: 8px;
      transition: background 0.15s, color 0.15s;
    }

    .mobile-menu a:hover {
      background: var(--mist);
      color: var(--blue);
    }

    .mobile-menu-divider {
      height: 1px; background: var(--border);
      margin: 8px 0;
    }

    .mobile-menu .mobile-cta {
      display: block;
      background: var(--blue);
      color: white !important;
      text-align: center;
      padding: 14px 16px;
      border-radius: 8px;
      font-weight: 500;
      margin-top: 4px;
      transition: background 0.2s !important;
    }

    .mobile-menu .mobile-cta:hover {
      background: var(--ocean) !important;
    }

    /* ── HERO ─────────────────────────────────── */
    .hero {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #EAF7FD 0%, #C8EEFA 40%, #ffffff 100%);
      padding: 130px 56px 0;
    }

    .hero-lanes {
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      overflow: hidden; pointer-events: none;
    }

    .lane {
      position: absolute; top: 0; bottom: 0; width: 1px;
      background: linear-gradient(180deg, transparent, rgba(56,182,232,0.15) 20%, rgba(56,182,232,0.15) 80%, transparent);
    }

    .hero-wave {
      position: relative; margin-top: 64px;
      line-height: 0;
    }

    .hero-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: flex-end; gap: 64px;
      position: relative; z-index: 1;
    }

    .hero-left { padding-bottom: 64px; }

    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--blue);
      background: rgba(20,135,200,0.08);
      border: 1px solid rgba(20,135,200,0.2);
      border-radius: 4px;
      padding: 5px 12px;
      margin-bottom: 28px;
    }

    .hero-eyebrow-dot {
      width: 6px; height: 6px;
      background: var(--sky); border-radius: 50%;
      animation: blink 2s infinite;
    }

    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

    .hero h1 {
      font-family: 'Instrument Serif', serif;
      font-weight: 400;
      font-size: clamp(40px, 4.5vw, 66px);
      line-height: 1.08;
      letter-spacing: -1px;
      color: var(--ink);
      margin-bottom: 24px;
    }

    .hero h1 em { font-style: italic; color: var(--blue); }

    .hero-desc {
      font-size: 17px; font-weight: 300;
      color: var(--ink-mid); line-height: 1.7;
      max-width: 440px; margin-bottom: 40px;
    }

    .hero-actions {
      display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
    }

    .btn-primary {
      background: var(--blue); color: var(--white);
      padding: 13px 28px; border-radius: 6px;
      font-family: 'Geist', sans-serif;
      font-size: 15px; font-weight: 500;
      text-decoration: none; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-primary:hover { background: var(--ocean); transform: translateY(-1px); }

    .btn-ghost {
      background: transparent; color: var(--ink-mid);
      padding: 13px 28px; border-radius: 6px;
      border: 1px solid var(--border-d);
      font-family: 'Geist', sans-serif;
      font-size: 15px; font-weight: 400;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s;
    }

    .btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

    .hero-right {
      display: flex; align-items: flex-end; justify-content: center;
    }

    .cert-card {
      width: 320px;
      background: linear-gradient(160deg, #1487C8 0%, #0A5C8A 100%);
      border-radius: 20px;
      padding: 28px;
      box-shadow: 0 24px 64px rgba(14,90,140,0.3), 0 0 0 1px rgba(255,255,255,0.15) inset;
      position: relative; overflow: hidden;
      animation: floatCard 6s ease-in-out infinite;
    }

    @keyframes floatCard {
      0%,100% { transform: translateY(0) rotate(-0.5deg); }
      50%      { transform: translateY(-10px) rotate(0.5deg); }
    }

    .cert-card::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 120px; height: 120px;
      background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 16px 16px;
      border-radius: 0 20px 0 0;
    }

    .cert-waves { position: absolute; bottom: 0; left: 0; right: 0; pointer-events: none; }

    .cert-header {
      display: flex; align-items: center;
      justify-content: space-between; margin-bottom: 24px;
    }

    .cert-brand {
      display: flex; align-items: center; gap: 8px;
      font-family: 'Geist', sans-serif;
      font-weight: 600; font-size: 15px; color: white;
    }

    .cert-brand em { color: var(--pool); font-style: normal; }

    .cert-status {
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 4px; padding: 3px 10px;
      font-size: 11px; font-weight: 600; color: white; letter-spacing: 0.5px;
    }

    .cert-name { font-family: 'Instrument Serif', serif; font-size: 24px; color: white; margin-bottom: 3px; }
    .cert-meta { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 20px; }

    .cert-badges { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 22px; }

    .cert-badge {
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
      border-radius: 4px; padding: 4px 10px;
      font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.65);
    }

    .cert-badge.earned { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.3); color: white; }

    .cert-footer {
      display: flex; align-items: center; gap: 14px;
      padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12);
    }

    .cert-qr {
      width: 52px; height: 52px; background: white; border-radius: 8px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }

    .cert-id-label { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
    .cert-id { font-size: 13px; font-weight: 500; color: var(--pool); font-family: monospace; }
    .cert-enc { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 3px; }

    /* ── SECTIONS ─────────────────────────────── */
    .section { max-width: 1200px; margin: 0 auto; padding: 96px 56px; }

    .section-bg {
      background: var(--mist);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .section-eyebrow {
      font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
    }

    .section-title {
      font-family: 'Instrument Serif', serif; font-weight: 400;
      font-size: clamp(32px, 3.5vw, 50px);
      line-height: 1.1; letter-spacing: -0.5px;
      color: var(--ink); margin-bottom: 16px;
    }

    .section-title em { font-style: italic; color: var(--blue); }
    .section-sub { font-size: 17px; font-weight: 300; color: var(--ink-mid); max-width: 500px; line-height: 1.7; }

    /* ── STEPS ────────────────────────────────── */
    .steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }

    .step {
      background: white; border: 1px solid var(--border);
      border-radius: 14px; padding: 36px 28px; position: relative;
      transition: box-shadow 0.25s, transform 0.2s;
    }

    .step:hover { box-shadow: 0 8px 32px rgba(14,90,140,0.1); transform: translateY(-3px); }

    .step-num { font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--sky); margin-bottom: 16px; }

    .step-icon {
      width: 48px; height: 48px; background: var(--mist); border: 1px solid var(--border);
      border-radius: 12px; display: flex; align-items: center; justify-content: center;
      font-size: 22px; margin-bottom: 18px;
    }

    .step h3 { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
    .step p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; }

    .step:not(:last-child)::after {
      content: '→'; position: absolute; right: -18px; top: 50%;
      transform: translateY(-50%); color: var(--border-d); font-size: 20px; z-index: 1;
    }

    /* ── FEATURES ─────────────────────────────── */
    .features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }

    .feature {
      background: white; border: 1px solid var(--border);
      border-radius: 12px; padding: 30px 26px;
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .feature:hover { box-shadow: 0 8px 28px rgba(14,90,140,0.08); transform: translateY(-3px); }
    .feature-icon { font-size: 26px; margin-bottom: 14px; display: block; }
    .feature h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
    .feature p { font-size: 14px; color: var(--ink-mid); line-height: 1.65; }

    /* ── MAP ──────────────────────────────────── */
    .map-section-head {
      display: flex; align-items: flex-end; justify-content: space-between;
      gap: 24px; flex-wrap: wrap; margin-bottom: 0;
    }

    .map-stats {
      display: flex; align-items: center; gap: 10px;
      margin-top: 16px; flex-wrap: wrap;
    }

    .map-stat-item { font-size: 14px; color: var(--ink-mid); }
    .map-stat-item strong { color: var(--blue); font-weight: 600; }
    .map-stat-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border-d); }

    .map-partner-cta { white-space: nowrap; flex-shrink: 0; }

    .map-layout { display: grid; grid-template-columns: 360px 1fr; gap: 20px; margin-top: 40px; height: 580px; }

    .map-list {
      background: white; border: 1px solid var(--border);
      border-radius: 14px; display: flex; flex-direction: column; overflow: hidden;
    }

    .map-search { padding: 14px 16px; border-bottom: 1px solid var(--border); }

    .map-search input {
      width: 100%; background: var(--mist); border: 1px solid var(--border);
      border-radius: 6px; padding: 9px 14px;
      font-family: 'Geist', sans-serif; font-size: 14px; color: var(--ink);
      outline: none; transition: border-color 0.2s;
    }

    .map-search input::placeholder { color: var(--text-dim); }
    .map-search input:focus { border-color: var(--blue); }
    .map-list-items { overflow-y: auto; flex: 1; }

    .map-item {
      padding: 14px 18px; border-bottom: 1px solid var(--border);
      cursor: pointer; transition: background 0.15s;
      display: flex; gap: 12px; align-items: flex-start;
    }

    .map-item:hover { background: var(--mist); }
    .map-item.active { background: #EAF4FD; border-left: 3px solid var(--blue); }

    .map-item-icon {
      width: 34px; height: 34px; flex-shrink: 0;
      background: var(--mist); border: 1px solid var(--border);
      border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px;
    }

    .map-item-body { flex: 1; min-width: 0; }
    .map-item-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .map-item-sub { font-size: 12px; color: var(--text-dim); margin-bottom: 6px; }
    .map-item-tags { display: flex; gap: 5px; flex-wrap: wrap; }

    .map-tag {
      font-size: 11px; font-weight: 500; padding: 2px 7px; border-radius: 3px;
      background: rgba(20,135,200,0.08); border: 1px solid rgba(20,135,200,0.18); color: var(--blue);
    }

    .map-tag.gray { background: var(--mist); border-color: var(--border); color: var(--text-dim); }

    .map-canvas {
      background: var(--mist); border: 1px solid var(--border);
      border-radius: 14px; position: relative; overflow: hidden;
    }

    #map { width: 100%; height: 100%; border-radius: 13px; }

    /* Mapbox attribution klein halten */
    .mapboxgl-ctrl-attrib { font-size: 10px !important; }
    .mapboxgl-ctrl-logo { display: none !important; }

    /* ── Mapbox Custom Marker ─────────────────── */
    .mbx-marker {
      position: relative;
      width: 40px; height: 48px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .mbx-marker:hover { transform: scale(1.15) translateY(-2px); }
    .mbx-marker.active { transform: scale(1.2) translateY(-3px); }

    .mbx-pin {
      width: 36px; height: 36px;
      background: white;
      border: 2.5px solid var(--blue);
      border-radius: 50% 50% 50% 0;
      transform: rotate(-45deg);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 14px rgba(14,90,140,0.25);
      transition: background 0.2s, border-color 0.2s;
    }

    .mbx-marker.active .mbx-pin {
      background: var(--blue);
      border-color: var(--ocean);
    }

    .mbx-pin span {
      transform: rotate(45deg);
      font-size: 15px; line-height: 1;
      display: block;
    }

    .mbx-pulse {
      position: absolute; bottom: -4px; left: 50%;
      transform: translateX(-50%);
      width: 10px; height: 10px;
      background: rgba(20,135,200,0.25);
      border-radius: 50%;
    }

    .mbx-marker.active .mbx-pulse {
      animation: pulse 1.6s ease-out infinite;
    }

    @keyframes pulse {
      0%   { transform: translateX(-50%) scale(1); opacity: 0.7; }
      100% { transform: translateX(-50%) scale(3); opacity: 0; }
    }

    .map-popup {
      position: absolute; top: 16px; right: 16px;
      background: white; border: 1px solid var(--border);
      border-radius: 14px; width: 300px;
      box-shadow: 0 12px 40px rgba(14,90,140,0.15); display: none;
      overflow: hidden;
    }

    .map-popup.visible { display: block; }

    .popup-head {
      display: flex; align-items: flex-start; justify-content: space-between; gap: 10px;
      padding: 16px 16px 12px;
      border-bottom: 1px solid var(--border);
    }

    .popup-name { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; line-height: 1.3; }
    .popup-sub { font-size: 12px; color: var(--text-dim); }

    .popup-badge {
      flex-shrink: 0;
      background: rgba(20,135,200,0.1); border: 1px solid rgba(20,135,200,0.2);
      border-radius: 4px; padding: 3px 8px;
      font-size: 11px; font-weight: 600; color: var(--blue); white-space: nowrap;
    }

    .popup-courses { padding: 10px 12px; display: flex; flex-direction: column; gap: 6px; }

    .popup-course {
      display: flex; align-items: center; justify-content: space-between; gap: 8px;
      background: var(--mist); border: 1px solid var(--border);
      border-radius: 8px; padding: 8px 10px;
      transition: background 0.15s;
    }

    .popup-course.booked { opacity: 0.55; }

    .popup-course-left { display: flex; align-items: center; gap: 8px; min-width: 0; }
    .popup-course-emoji { font-size: 18px; flex-shrink: 0; }
    .popup-course-name { font-size: 13px; font-weight: 600; color: var(--ink); }
    .popup-course-meta { font-size: 11px; color: var(--text-dim); margin-top: 1px; white-space: nowrap; }

    .popup-course-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }

    .course-spots {
      font-size: 11px; font-weight: 600; border-radius: 3px; padding: 2px 7px;
    }
    .course-spots.ok   { background: rgba(34,197,94,0.12); color: #16a34a; }
    .course-spots.low  { background: rgba(249,115,22,0.12); color: #ea580c; }
    .course-spots.full { background: rgba(100,116,139,0.1); color: #64748b; }

    .course-bar {
      width: 60px; height: 3px; background: var(--border);
      border-radius: 2px; overflow: hidden;
    }

    .course-bar-fill { height: 100%; border-radius: 2px; transition: width 0.4s; }
    .course-bar-fill.ok  { background: #22c55e; }
    .course-bar-fill.low { background: #f97316; }

    .popup-more {
      text-align: center; font-size: 12px; color: var(--text-dim);
      padding: 2px 0 4px;
    }

    .popup-cta {
      display: block; text-align: center;
      background: var(--blue); color: white;
      font-family: 'Geist', sans-serif; font-size: 13px; font-weight: 500;
      padding: 11px 16px; text-decoration: none;
      transition: background 0.2s;
    }

    .popup-cta:hover { background: var(--ocean); }

    .map-note {
      position: absolute; bottom: 14px; left: 14px;
      background: rgba(255,255,255,0.9); border: 1px solid var(--border);
      border-radius: 6px; padding: 6px 12px; font-size: 12px; color: var(--text-dim);
    }

    /* ── STATS ────────────────────────────────── */
    .stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 56px; }

    .stat { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 32px 24px; text-align: center; }
    .stat-num { font-family: 'Instrument Serif', serif; font-size: 44px; color: var(--blue); line-height: 1; margin-bottom: 6px; }
    .stat-label { font-size: 13px; color: var(--ink-mid); }

    /* ── PRICING ──────────────────────────────── */
    .pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; align-items: start; }

    .pricing-card {
      background: white; border: 1px solid var(--border);
      border-radius: 14px; padding: 36px 28px; transition: transform 0.2s, box-shadow 0.2s;
    }

    .pricing-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(14,90,140,0.1); }
    .pricing-card.featured { background: linear-gradient(160deg, #EAF7FD, white); border-color: var(--blue); }

    .pricing-tier { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); margin-bottom: 20px; }
    .pricing-price { font-family: 'Instrument Serif', serif; font-size: 52px; color: var(--ink); line-height: 1; margin-bottom: 4px; }
    .pricing-period { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }
    .pricing-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
    .pricing-list { list-style: none; }

    .pricing-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 14px; color: var(--ink-mid); margin-bottom: 12px; line-height: 1.45;
    }

    .pricing-list li::before { content: '✓'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

    .pricing-btn {
      display: block; text-align: center; margin-top: 28px; padding: 12px;
      border-radius: 6px; font-family: 'Geist', sans-serif;
      font-size: 14px; font-weight: 500; text-decoration: none; transition: all 0.2s;
    }

    .pricing-btn-outline { border: 1px solid var(--border-d); color: var(--ink-mid); }
    .pricing-btn-outline:hover { border-color: var(--blue); color: var(--blue); }
    .pricing-btn-solid { background: var(--blue); color: white; border: none; }
    .pricing-btn-solid:hover { background: var(--ocean); }

    /* ── CTA ──────────────────────────────────── */
    .cta-section {
      background: linear-gradient(160deg, var(--ocean) 0%, var(--blue) 100%);
      padding: 96px 56px; text-align: center; position: relative; overflow: hidden;
    }

    .cta-section::before {
      content: ''; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 32px 32px;
    }

    .cta-waves { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
    .cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
    .cta-inner .section-eyebrow { color: var(--pool); }
    .cta-inner .section-title { color: white; }
    .cta-inner .section-title em { color: var(--pool); }
    .cta-inner .section-sub { color: rgba(255,255,255,0.7); margin: 16px auto 36px; }

    .btn-primary-inv {
      background: white; color: var(--ocean);
      padding: 13px 28px; border-radius: 6px;
      font-family: 'Geist', sans-serif; font-size: 15px; font-weight: 600;
      text-decoration: none; border: none; cursor: pointer; transition: all 0.2s;
    }

    .btn-primary-inv:hover { background: var(--foam); transform: translateY(-1px); }

    .btn-ghost-inv {
      background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85);
      padding: 13px 28px; border-radius: 6px;
      border: 1px solid rgba(255,255,255,0.2);
      font-family: 'Geist', sans-serif; font-size: 15px; font-weight: 400;
      text-decoration: none; transition: all 0.2s;
    }

    .btn-ghost-inv:hover { background: rgba(255,255,255,0.18); color: white; }

    /* ── FOOTER ───────────────────────────────── */
    footer {
      border-top: 1px solid var(--border); padding: 28px 56px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }

    .footer-brand { font-weight: 600; font-size: 15px; color: var(--ink); }
    .footer-brand em { color: var(--blue); font-style: normal; }
    footer p { font-size: 13px; color: var(--text-dim); }
    .footer-links { display: flex; gap: 24px; list-style: none; }
    .footer-links a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--blue); }

    /* ── REVEAL ───────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ───────────────────────────── */
    @media (max-width: 900px) {
      nav { padding: 0 20px; }

      /* Show hamburger, hide desktop links */
      .nav-hamburger { display: flex; }
      .nav-links { display: none; }

      .hero { padding: 100px 24px 0; }
      .hero-inner { grid-template-columns: 1fr; gap: 48px; }
      .hero-right { order: -1; }
      .cert-card { width: 100%; max-width: 320px; margin: 0 auto; }
      .hero-left { padding-bottom: 0; }

      .section { padding: 64px 24px; }
      .steps { grid-template-columns: 1fr; gap: 16px; }
      .step:not(:last-child)::after { display: none; }
      .features-grid { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }

      .map-section-head { flex-direction: column; align-items: flex-start; }
      .map-layout { grid-template-columns: 1fr; height: auto; }
      .map-list { height: 300px; }
      .map-canvas { height: 320px; }
      .map-popup { width: calc(100% - 32px); right: 16px; }

      .stats-row { grid-template-columns: repeat(2,1fr); }

      footer { padding: 24px 20px; flex-direction: column; text-align: center; }
      .cta-section { padding: 64px 24px; }

      /* Mobile menu visible when open */
      .mobile-menu.open { display: flex; }
    }

/* ── CONTACT FORM ─────────────────────────────── */
.contact-form-wrap {
  margin-top: 48px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}

.contact-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 36px;
  backdrop-filter: blur(10px);
}

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 16px;
}

.form-group {
  display: flex; flex-direction: column;
  gap: 6px; margin-bottom: 16px;
}

.form-group label {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'Geist', sans-serif;
  font-size: 14px; color: white;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group select option { background: #0D2435; color: white; }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.12);
}

.form-group textarea { resize: none; line-height: 1.5; }

.form-checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 20px; margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  margin-top: 1px; cursor: pointer;
  accent-color: var(--sky);
}

.form-checkbox label {
  font-size: 12px; color: rgba(255,255,255,0.5);
  line-height: 1.5; cursor: pointer;
}

.form-submit {
  width: 100%;
  background: white; color: var(--ocean);
  border: none; cursor: pointer;
  padding: 14px;
  border-radius: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 15px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}

.form-submit:hover { background: var(--foam); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-success {
  display: none; text-align: center;
  padding: 48px 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
}

.form-success.visible { display: block; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }

.form-success h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 28px; color: white; margin-bottom: 8px;
}

.form-success p { font-size: 15px; color: rgba(255,255,255,0.6); }

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

/* ── PRICING BETA BANNER ──────────────────────── */
.pricing-beta-banner {
  display: flex; align-items: flex-start; gap: 16px;
  background: linear-gradient(135deg, #EAF7FD, #ffffff);
  border: 1px solid var(--blue);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 40px; margin-bottom: 8px;
}

.pricing-beta-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }

.pricing-beta-text {
  font-size: 15px; color: var(--ink-mid); line-height: 1.6;
}

.pricing-beta-text strong { color: var(--blue); }

.pricing-note {
  text-align: center;
  font-size: 12px; color: var(--text-dim);
  margin-top: 12px; margin-bottom: 0;
}
