html, body { overflow-x: hidden; }
    html { background: #f1f5f9; min-height: 100%; }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0f172a;
      --navy2: #1e293b;
      --orange: #f97316;
      --orange-dark: #ea6c0a;
      --blue-accent: #3b82f6;
      --gray-50: #f8fafc;
      --gray-100: #f1f5f9;
      --gray-200: #e2e8f0;
      --gray-400: #94a3b8;
      --gray-500: #64748b;
      --gray-700: #334155;
      --white: #ffffff;
      --font: 'Plus Jakarta Sans', sans-serif;
    }

    body {
      font-family: var(--font);
      color: var(--navy);
      background: #f8fafc;
      line-height: 1.6;
      margin: 0;
      min-height: 100vh;
      width: 100%;
      overflow-x: hidden;
    }
    img {
      max-width: 100%;
      width: 100%;
      height: auto;
      display: block;
    }

    .app-shell {
      width: 100%;
      max-width: 100%;
      min-height: 100vh;
      margin: 0;
      background: #f8fafc;
    }

    /* ===== NAV ===== */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--gray-200);
      padding: 0 5%;
    }
    .nav-inner {
      max-width: 1100px; margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
    }
    .logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; }
    .logo-icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
      display: flex; align-items: center; justify-content: center;
      color: white; font-weight: 800; font-size: 14px; letter-spacing: -0.5px;
    }
    .logo-text { line-height: 1; }
    .logo-text strong { display: block; font-size: 15px; font-weight: 800; color: var(--navy); }
    .logo-text span { font-size: 10px; font-weight: 600; color: var(--orange); letter-spacing: 1px; }
    .nav-links { display: flex; gap: 4px; }
    .nav-links a {
      padding: 6px 14px; border-radius: 8px;
      font-size: 14px; font-weight: 500; color: var(--gray-700);
      text-decoration: none; cursor: pointer; transition: all 0.2s;
    }
    .nav-links a:hover, .nav-links a.active { background: var(--gray-100); color: var(--navy); }
    .btn-orange {
      background: var(--orange); color: white;
      border: none; border-radius: 50px;
      padding: 10px 22px; font-size: 14px; font-weight: 600;
      cursor: pointer; transition: background 0.2s; text-decoration: none;
      display: inline-block;
    }
    .btn-orange:hover { background: var(--orange-dark); }
    .btn-outline {
      background: transparent; color: var(--navy);
      border: 2px solid var(--navy); border-radius: 50px;
      padding: 9px 22px; font-size: 14px; font-weight: 600;
      cursor: pointer; transition: all 0.2s; text-decoration: none;
      display: inline-block;
    }
    .btn-outline:hover { background: var(--navy); color: white; }
    .btn-outline-orange {
      background: transparent; color: var(--orange);
      border: 2px solid var(--orange); border-radius: 50px;
      padding: 9px 22px; font-size: 14px; font-weight: 600;
      cursor: pointer; transition: all 0.2s; text-decoration: none;
      display: inline-block;
    }
    .btn-outline-orange:hover { background: var(--orange); color: white; }

    /* ===== PAGES ===== */
    .page { display: none; }
    .page.active { display: block; }

    /* ===== HERO GRADIENT BG ===== */
    .hero-bg {
      background: linear-gradient(135deg, #eff6ff 0%, #fefce8 60%, #fff7ed 100%);
      padding: 80px 5% 60px;
    }
    .section { padding: 80px 5%; }
    .section-inner { max-width: 1100px; margin: 0 auto; }

    /* ===== BADGE ===== */
    .badge {
      display: inline-block;
      border: 1.5px solid var(--gray-300, #cbd5e1);
      border-radius: 50px; padding: 4px 14px;
      font-size: 11px; font-weight: 700; letter-spacing: 1px;
      color: var(--gray-500); margin-bottom: 20px;
      background: white;
    }

    /* ===== HOME PAGE ===== */
    .home-hero { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .home-hero h1 { font-size: clamp(36px, 5vw, 54px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: var(--navy); }
    .home-hero h1 span { color: var(--orange); }
    .home-hero p { font-size: 16px; color: var(--gray-500); margin-bottom: 32px; max-width: 440px; }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
    .hero-stats { display: flex; gap: 32px; }
    .stat { text-align: center; }
    .stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--navy); }
    .stat span { font-size: 12px; color: var(--gray-500); }
    .hero-img-box { position: relative; }
    .hero-img-placeholder {
      width: 100%; aspect-ratio: 3/4; border-radius: 20px;
      background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 14px; overflow: hidden;
      min-height: 260px;
    }
    .hero-img-placeholder img,
    .over-img-placeholder img,
    .training-img img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center;
    }
    .section-inner img {
      width: 100%;
      max-width: 100%;
      height: auto;
      display: block;
    }
    .hero-img-placeholder img {
      object-position: center 10% !important;
    }
    .hero-badge-box {
      position: absolute; bottom: 16px; left: -20px;
      background: white; border-radius: 12px; padding: 12px 16px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.12);
      display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600;
    }
    .hero-badge-box .icon-orange { color: var(--orange); font-size: 18px; }

    /* Promo banner */
    .promo-banner {
      background: #eff6ff; border: 1.5px solid #bfdbfe;
      border-radius: 16px; padding: 20px 28px;
      display: flex; align-items: center; justify-content: space-between;
      max-width: 1100px; margin: 0 auto; gap: 20px; flex-wrap: wrap;
    }
    .promo-banner p { font-size: 15px; color: var(--navy); }
    .promo-banner strong { color: var(--orange); }

    /* Why section */
    .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
    .why-card {
      background: white; border: 1px solid var(--gray-200);
      border-radius: 16px; padding: 24px;
    }
    .why-card .card-icon { font-size: 24px; margin-bottom: 12px; }
    .why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
    .why-card p { font-size: 13px; color: var(--gray-500); }

    /* Steps section */
    .steps-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; max-width: 1100px; margin: 0 auto; }
    .steps-left h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
    .steps-left p { color: var(--gray-500); margin-bottom: 28px; }
    .steps-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .step-card {
      background: white; border: 1px solid var(--gray-200);
      border-radius: 16px; padding: 20px;
    }
    .step-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 32px; height: 32px; border-radius: 8px;
      background: #eff6ff; color: var(--blue-accent);
      font-size: 13px; font-weight: 800; margin-bottom: 12px;
    }
    .step-card h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
    .step-card p { font-size: 12px; color: var(--gray-500); }

    /* Timeline */
    .timeline-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
    .timeline-card {
      background: white; border: 1px solid var(--gray-200);
      border-radius: 16px; padding: 28px;
    }
    .timeline-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: #fff7ed; border: 1px solid #fed7aa;
      border-radius: 50px; padding: 4px 12px;
      font-size: 11px; font-weight: 700; color: var(--orange);
      margin-bottom: 16px;
    }
    .timeline-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
    .timeline-card p { font-size: 13px; color: var(--gray-500); }

    /* Testimonials */
    
    
    
    
    
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .review-card {
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 16px; padding: 24px;
    }
    .stars { color: #fbbf24; font-size: 14px; margin-bottom: 12px; }
    .review-card p { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 16px; font-style: italic; }
    .reviewer { display: flex; align-items: center; gap: 10px; }
    .reviewer-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,0.15);
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; font-weight: 700; color: white;
    }
    .reviewer-name { font-size: 13px; font-weight: 600; }
    .reviewer-loc { font-size: 11px; color: rgba(255,255,255,0.5); }

    /* CTA section */
    .cta-section { text-align: center; padding: 80px 5%; background: white; }
    .cta-section h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 12px; }
    .cta-section p { color: var(--gray-500); margin-bottom: 32px; }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* ===== OVER MIJ ===== */
    .over-hero { max-width: 1100px; margin: 0 auto; }
    .over-hero h1 { font-size: clamp(32px, 4vw, 50px); font-weight: 800; line-height: 1.1; max-width: 600px; }
    .over-hero p { color: var(--gray-500); margin-top: 16px; max-width: 520px; font-size: 16px; }
    .over-body { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
    .over-img-box { position: relative; }
    .over-img-placeholder {
      width: 100%; aspect-ratio: 3/4; border-radius: 20px;
      background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
      display: flex; align-items: center; justify-content: flex-end;
      flex-direction: column; padding-bottom: 20px;
      min-height: 260px;
      overflow: hidden;
    }
    .over-name-tag {
      background: white; border-radius: 12px; padding: 10px 16px;
      display: flex; align-items: center; gap: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .over-name-tag .tag-icon { color: var(--orange); font-size: 18px; }
    .over-name-tag strong { font-size: 14px; font-weight: 700; }
    .over-name-tag span { font-size: 11px; color: var(--gray-500); }
    .over-content h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 20px; }
    .over-content p { font-size: 15px; color: var(--gray-500); margin-bottom: 16px; }
    .over-content strong { color: var(--navy); }
    .over-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
    .over-value-card {
      background: white; border: 1px solid var(--gray-200);
      border-radius: 14px; padding: 18px;
    }
    .over-value-card .val-icon { font-size: 20px; color: var(--orange); margin-bottom: 8px; }
    .over-value-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
    .over-value-card p { font-size: 12px; color: var(--gray-500); }
    .over-cta-btns { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

    /* ===== AANPAK ===== */
    .aanpak-hero h1 { font-size: clamp(32px, 4vw, 50px); font-weight: 800; line-height: 1.1; max-width: 680px; }
    .aanpak-hero h1 span { color: var(--orange); text-decoration: underline; text-decoration-color: var(--orange); }
    .aanpak-hero p { color: var(--gray-500); margin-top: 16px; max-width: 520px; }
    .steps-list { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
    .step-row {
      display: flex; align-items: flex-start; gap: 20px;
      background: white; border: 1px solid var(--gray-200);
      border-radius: 16px; padding: 24px 28px;
    }
    .step-big-num {
      min-width: 52px; height: 52px; border-radius: 12px;
      background: var(--gray-100); display: flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 800; color: var(--blue-accent);
    }
    .step-row h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
    .step-row p { font-size: 14px; color: var(--gray-500); }

    /* Training section */
    .training-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .training-layout h2 { font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; }
    .training-layout p { color: var(--gray-500); margin-bottom: 20px; }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
    .check-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-700); }
    .check-list li::before { content: ""; color: var(--orange); font-weight: 700; }
    .training-img {
      width: 100%; aspect-ratio: 4/3; border-radius: 20px;
      background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 14px;
      min-height: 260px;
      overflow: hidden;
    }

    /* ===== TARIEVEN ===== */
    .tarieven-hero h1 { font-size: clamp(32px, 4vw, 50px); font-weight: 800; line-height: 1.1; max-width: 620px; }
    .tarieven-hero p { color: var(--gray-500); margin-top: 16px; max-width: 520px; }
    .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
    .price-card {
      background: white; border: 1.5px solid var(--gray-200);
      border-radius: 20px; padding: 28px; position: relative;
    }
    .price-card.featured { border-color: var(--orange); box-shadow: 0 8px 40px rgba(249,115,22,0.15); }
    .most-popular-tag {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--orange); color: white;
      border-radius: 50px; padding: 5px 14px;
      font-size: 11px; font-weight: 700; white-space: nowrap;
      display: flex; align-items: center; gap: 5px;
    }
    .price-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
    .price-amount { font-size: 36px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
    .price-card.featured .price-amount { color: var(--orange); }
    .price-amount.offerte { font-size: 28px; color: var(--blue-accent); }
    .price-per { font-size: 12px; color: var(--gray-500); margin-bottom: 20px; }
    .price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
    .price-features li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-700); }
    .price-features li::before { content: ""; color: var(--orange); font-weight: 700; font-size: 12px; }
    .price-card .btn-outline, .price-card .btn-orange, .price-card .btn-outline-orange { width: 100%; text-align: center; font-size: 13px; padding: 10px 16px; }
    .info-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 40px auto 0; }
    .info-box {
      background: var(--gray-50); border: 1px solid var(--gray-200);
      border-radius: 14px; padding: 20px 24px;
    }
    .info-box h4 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
    .info-box p { font-size: 13px; color: var(--gray-500); }
    .twijfel-box {
      max-width: 1100px; margin: 40px auto 0;
      background: var(--gray-50); border: 1px solid var(--gray-200);
      border-radius: 20px; padding: 36px 40px;
      display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    }
    .twijfel-box h3 { font-size: 26px; font-weight: 800; }
    .twijfel-box p { color: var(--gray-500); font-size: 14px; margin-top: 6px; }
    .twijfel-btns { display: flex; flex-direction: column; gap: 10px; }

    /* ===== VOOR WIE ===== */
    .voorwie-hero h1 { font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1.1; max-width: 640px; }
    .voorwie-hero p { color: var(--gray-500); margin-top: 16px; max-width: 500px; }
    .voorwie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1100px; margin: 0 auto; }
    .vw-card {
      background: white; border: 1px solid var(--gray-200);
      border-radius: 16px; padding: 28px;
    }
    .vw-icon { font-size: 22px; color: var(--orange); margin-bottom: 14px; }
    .vw-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
    .vw-card p { font-size: 14px; color: var(--gray-500); }
    
    
    

    /* ===== FAQ ===== */
    .faq-hero h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; }
    .faq-hero p { color: var(--gray-500); margin-top: 14px; max-width: 480px; }
    .faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
    .faq-item { border: 1.5px solid var(--gray-200); border-radius: 14px; margin-bottom: 10px; overflow: hidden; }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 20px 24px; cursor: pointer; font-size: 15px; font-weight: 600;
      background: white; transition: background 0.2s; user-select: none;
    }
    .faq-q:hover { background: var(--gray-50); }
    .faq-toggle {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--navy); color: white;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 18px; font-weight: 700; flex-shrink: 0;
      transition: background 0.3s, transform 0.3s;
      pointer-events: none;
      line-height: 1;
    }
    .faq-toggle::before { content: '+'; }
    .faq-item.open .faq-toggle { background: var(--orange); }
    .faq-item.open .faq-toggle::before { content: '×'; }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 24px; font-size: 14px; color: var(--gray-500); }
    .faq-item.open .faq-a { max-height: 340px; padding: 0 24px 20px; }
    .faq-cta { text-align: center; margin-top: 48px; }
    .faq-cta p { color: var(--gray-500); margin-bottom: 16px; }
    .faq-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* ===== FOOTER ===== */
    footer { background: var(--navy); color: white; padding: 60px 0 0; width: 100%; }
    .footer-inner { max-width: 1100px; margin: 0 auto; width: 100%; padding: 0 5%; }
    .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
    .footer-brand .logo-text strong { color: white; }
    .footer-brand p { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 12px; line-height: 1.6; }
    .footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; cursor: pointer; transition: color 0.2s; }
    .footer-col ul li a:hover { color: white; }
    .footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
      font-size: 12px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px;
    }

    /* ===== SECTION HEADERS ===== */
    .section-header { text-align: center; margin-bottom: 48px; }
    .section-header h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin-bottom: 12px; }
    .section-header p { color: var(--gray-500); max-width: 500px; margin: 0 auto; }
    .section-header-left { margin-bottom: 40px; }
    .section-header-left h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; margin-bottom: 12px; }
    .section-header-left p { color: var(--gray-500); }

    @media (max-width: 900px) {
      .home-hero, .over-body, .training-layout { grid-template-columns: 1fr; }
      .why-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
      .reviews-grid, .timeline-grid { grid-template-columns: 1fr; }
      .steps-layout { grid-template-columns: 1fr; }
      .steps-right { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .voorwie-grid { grid-template-columns: 1fr; }
      .info-boxes { grid-template-columns: 1fr; }
      .hero-badge-box { left: 16px; right: auto; transform: none; }
    }
    @media (max-width: 600px) {
      .nav-links { display: none; }
      .home-hero, .over-body, .training-layout, .why-grid, .pricing-grid, .steps-layout, .timeline-grid, .reviews-grid, .footer-grid, .steps-right, .info-boxes { grid-template-columns: 1fr !important; }
      .hero-bg, .section, .cta-section, footer { padding-left: 5%; padding-right: 5%; }
      .hero-img-placeholder, .over-img-placeholder, .training-img { min-height: 280px; }
      .hero-img-box, .over-img-box, .training-img { width: 100%; }
      .hero-badge-box { left: 14px; bottom: 14px; padding: 12px 14px; }
      .hero-btns, .faq-cta-btns, .cta-btns { flex-direction: column; align-items: stretch; }
      .hero-stats { flex-wrap: wrap; gap: 18px; justify-content: space-between; }
      .stat { min-width: 33%; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .twijfel-box { flex-direction: column; }
    }

    /* ===== SERVICE AREA MAP ===== */
    .map-section {
      background: var(--gray-100);
      padding: 80px 5%;
    }
    .map-section .section-inner { max-width: 1100px; margin: 0 auto; }
    .map-wrapper {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(15,23,42,0.12);
      border: 1.5px solid var(--gray-200);
      background: white;
    }
    #homefit-map {
      width: 100%;
      height: 440px;
    }
    @media (max-width: 600px) {
      #homefit-map { height: 300px; }
    }
    .map-info-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 24px;
    }
    @media (max-width: 700px) {
      .map-info-row { grid-template-columns: 1fr; }
    }
    .map-info-card {
      background: white;
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 20px 22px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .map-info-icon {
      width: 42px; height: 42px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 20px; flex-shrink: 0;
    }
    .map-info-icon.blue { background: #eff6ff; }
    .map-info-icon.orange { background: #fff7ed; }
    .map-info-icon.green { background: #f0fdf4; }
    .map-info-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
    .map-info-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
    .map-locations-row {
      margin-top: 20px;
      background: white;
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 20px 24px;
    }
    .map-locations-row h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
    .map-locations-tags {
      display: flex; flex-wrap: wrap; gap: 8px;
    }
    .map-loc-tag {
      background: #eff6ff;
      color: var(--blue-accent);
      border: 1px solid #bfdbfe;
      border-radius: 50px;
      padding: 4px 14px;
      font-size: 12px;
      font-weight: 600;
    }
    .map-loc-tag.orange {
      background: #fff7ed;
      color: var(--orange);
      border-color: #fed7aa;
    }

/* ===== style-blok grens ===== */

header, header.scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border-bottom: none !important;
}
.logo { border:none!important; background:none!important; }
.logo img { border:none!important; background:transparent!important; }
nav a:not(.nav-cta) { position:relative; }
nav a:not(.nav-cta)::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:2px; background:var(--accent,#f59e0b);
  transition:width 0.3s ease; border-radius:2px;
}
nav a:not(.nav-cta):hover::after { width:100%; }
header { z-index:9000!important; }
.nav-cta { z-index:200!important; opacity:1!important; visibility:visible!important; }

/* ===== style-blok grens ===== */

/* WhatsApp button SVG alignment */
a[href*="wa.me"] svg {
  vertical-align: middle;
  margin-right: 6px;
  flex-shrink: 0;
}
a[href*="wa.me"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px;
}
#wa-float svg {
  margin: 0 !important;
}

/* ===== style-blok grens ===== */

.logo img { display:block; height:30px; width:auto; object-fit:contain; }
a.logo { display:flex; align-items:center; text-decoration:none; }
.footer-brand img { height:30px; width:auto; max-width:180px; object-fit:contain; display:block; }

/* ===== MOBILE FRIENDLY OVERRIDES — added for smartphone users ===== */
@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    flex-direction: column;
    padding: 8px 16px 16px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.mobile-open {
    display: flex !important;
  }
  .nav-links a {
    padding: 12px 8px;
    font-size: 15px;
  }
  .nav-accordion-btn {
    display: none;
    width: 100%;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    background: white;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 8px;
  }
  .nav-accordion-indicator {
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    font-size: 16px;
    transition: transform 0.3s ease;
  }
  .nav-accordion-btn[aria-expanded="true"] .nav-accordion-indicator {
    transform: rotate(45deg);
  }
  .nav-group-panel {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
  }
  .mobile-menu-btn {
    display: flex !important;
  }
}
@media (max-width: 700px) {
  .nav-accordion-btn {
    display: flex;
  }
  .nav-group-panel {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-group-panel.open {
    max-height: 500px;
  }
  .nav-links.mobile-open .nav-group-panel {
    max-height: 500px;
  }
}
.mobile-menu-btn {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.mobile-menu-btn span {
  display: block;
  width: 18px; height: 2px;
  background: #0f172a;
  border-radius: 2px;
}

/* ===== Multi-page additions (SEO rebuild) ===== */
main { display: block; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; border-radius: 4px; }
a { color: inherit; }
.skip-link { position:absolute; left:-9999px; top:0; background:var(--navy); color:#fff; padding:10px 16px; border-radius:0 0 8px 0; z-index:9999; }
.skip-link:focus { left:0; }

/* Reviews section */
.reviews-section { background: var(--navy); padding: 80px 5%; }
.reviews-section .section-inner { max-width:1100px; margin:0 auto; }
.reviews-section .badge { background: rgba(255,255,255,0.08); color:#cbd5e1; border-color: rgba(255,255,255,0.18); }
.reviews-section h2 { color:#fff; font-size:clamp(26px,4vw,38px); font-weight:800; margin-bottom:12px; }
.reviews-section > .section-inner > p { color:#94a3b8; max-width:520px; margin-bottom:40px; }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.review-card { background: var(--navy2); border:1px solid #334155; border-radius:16px; padding:24px; }
.review-stars { color:#f59e0b; font-size:15px; letter-spacing:2px; margin-bottom:12px; }
.review-card p { font-size:14px; color:rgba(255,255,255,0.82); margin-bottom:16px; font-style:italic; line-height:1.6; }
.reviewer { display:flex; align-items:center; gap:10px; }
.reviewer-avatar { width:40px; height:40px; border-radius:50%; background:linear-gradient(135deg,#1e3a8a,#3b82f6); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size:15px; flex:0 0 40px; }
.reviewer-name { font-size:14px; font-weight:700; color:#fff; }
.reviewer-meta { font-size:12px; color:#94a3b8; }
@media (max-width: 860px){ .reviews-grid { grid-template-columns:1fr; } }

/* Legal pages */
.legal-page { max-width:760px; margin:0 auto; padding:60px 5% 80px; }
.legal-page h1 { font-size:clamp(28px,4vw,40px); font-weight:800; margin-bottom:8px; color:var(--navy); }
.legal-page .legal-updated { color:var(--gray-500); font-size:0.9rem; margin-bottom:28px; }
.legal-page h2 { font-size:1.15rem; font-weight:800; color:var(--navy); margin:28px 0 8px; }
.legal-page p { color:var(--gray-700); margin-bottom:10px; }
