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

    :root {
      --green-900: #0b1a0b;
      --green-800: #122012;
      --green-700: #1c3320;
      --green-600: #2a4830;
      --green-500: #376437;
      --green-400: #4d8a4d;
      --green-200: #b0cfb0;
      --green-100: #e0ede0;
      --white:     #ffffff;
      --gray-50:   #f4f6f4;
      --gray-100:  #eaeeea;
      --text:      #1a1a1a;
      --muted:     #5c6b5c;
      --border:    #dae3da;
      --font-body: 'Inter', sans-serif;
      --font-head: 'Cormorant Garamond', serif;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
    a { text-decoration: none; color: inherit; }
    img, video { max-width: 100%; height: auto; display: block; }

    /* ── UTILITIES ── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

    .label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--green-500);
      margin-bottom: 14px;
    }
    .label-light { color: rgba(255,255,255,0.45); }

    h2.display {
      font-family: var(--font-head);
      font-size: clamp(30px, 4.2vw, 50px);
      font-weight: 400;
      line-height: 1.18;
      letter-spacing: -0.01em;
      color: var(--text);
    }
    h2.display em { font-style: italic; color: var(--green-500); }
    h2.display-light { color: var(--white); }
    h2.display-light em { color: var(--green-200); }

    .body-text { font-size: 16px; line-height: 1.75; color: var(--muted); }
    .body-text-light { color: rgba(255,255,255,0.6); }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.02em;
      padding: 12px 28px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: all .2s;
      text-decoration: none;
    }
    .btn-green { background: var(--green-500); color: var(--white); }
    .btn-green:hover { background: var(--green-600); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(55,100,55,0.28); }
    .btn-ghost-light { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.25); }
    .btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: var(--white); }
    .btn-ghost-dark { background: transparent; color: var(--text); border: 1px solid var(--border); }
    .btn-ghost-dark:hover { border-color: var(--green-500); color: var(--green-600); }
    .btn-lg { font-size: 15px; padding: 15px 36px; }

    /* ── HEADER ── */
    header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100; height: 92px;
      display: flex; align-items: center;
      transition: background .3s, box-shadow .3s, color .3s;
    }
    @media (max-width: 960px) { header { height: 80px; } }
    @media (max-width: 560px) { header { height: 72px; } }
    header.scrolled {
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 1px 12px rgba(0,0,0,0.05);
    }
    .header-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
    .logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; white-space: nowrap; }
    .logo-icon { width: 34px; height: 34px; background: var(--green-600); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

    /* ── BRAND LOGO (image) ── */
    .logo-img { height: 56px; width: auto; display: block; }
    .logo-img-green { display: none; }
    header.scrolled .logo-img-white { display: none; }
    header.scrolled .logo-img-green { display: block; }
    .footer-logo-img { height: 52px; width: auto; display: block; }

    /* Default (transparent over hero-video) — light text */
    .logo-name { font-size: 14px; font-weight: 600; color: var(--white); letter-spacing: 0.05em; text-transform: uppercase; white-space: nowrap; transition: color .3s; }
    .logo-tagline { font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 0.06em; text-transform: uppercase; display: block; white-space: nowrap; transition: color .3s; }

    /* Scrolled state — dark text on light bg */
    header.scrolled .logo-name { color: var(--green-800); }
    header.scrolled .logo-tagline { color: var(--muted); }

    .header-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; white-space: nowrap; }
    .header-right .btn { white-space: nowrap; padding: 12px 22px; font-size: 14px; }
    .header-phone { display: none; font-size: 15px; }
    .header-social { display: flex; align-items: center; gap: 6px; }
    .header-social a {
      display: inline-flex; align-items: center; justify-content: center;
      width: 32px; height: 32px; border-radius: 8px;
      color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.14);
      transition: color .2s, background .2s, border-color .2s, transform .2s;
    }
    .header-social a:hover {
      color: var(--white);
      background: rgba(255,255,255,0.14);
      border-color: rgba(255,255,255,0.28);
      transform: translateY(-1px);
    }
    header.scrolled .header-social a {
      color: var(--muted);
      background: transparent;
      border-color: var(--border);
    }
    header.scrolled .header-social a:hover {
      color: var(--green-600);
      background: var(--green-100);
      border-color: var(--green-200);
    }

    /* ── HERO ── */
    .hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; background: var(--green-900); overflow: hidden; }
    .hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0; transition: opacity 1s ease; }
    .hero-video.loaded { opacity: 1; }
    .hero-bg-placeholder { position: absolute; inset: 0; z-index: 0; background: #0b1a0b; }
    .hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(8,18,8,0.55) 0%, rgba(8,18,8,0.35) 40%, rgba(8,18,8,0.55) 75%, rgba(8,18,8,0.85) 100%); z-index: 1; }
    .hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 0; padding: 120px 0 80px; width: 100%; min-height: 100vh; min-height: 100svh; }
    .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
    .hero-eyebrow-dot { width: 6px; height: 6px; background: #7ecb7e; border-radius: 50%; animation: blink 2.5s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }
    .hero h1 { font-family: var(--font-head); font-size: clamp(48px, 7vw, 86px); font-weight: 400; line-height: 1.05; color: var(--white); margin-bottom: 28px; letter-spacing: -0.015em; }
    .hero h1 em { font-style: italic; color: var(--green-200); }
    .hero-logo {
      display: flex; align-items: center; justify-content: center;
      color: var(--green-400);
      margin-bottom: 36px;
    }
    .hero-logo svg {
      width: clamp(180px, 22vw, 280px);
      height: auto;
      filter: drop-shadow(0 6px 28px rgba(0,0,0,0.35));
    }
    .hero-sub { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 540px; margin: 0 auto 40px; letter-spacing: 0.005em; }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
    .hero-scroll-hint {
      position: absolute;
      bottom: 32px; left: 50%;
      transform: translateX(-50%);
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 13px; font-weight: 500;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: color .2s;
    }
    .hero-scroll-hint:hover { color: var(--white); }
    .hero-scroll-hint svg { animation: scrollBounce 2s ease-in-out infinite; }
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(4px); }
    }

    /* Hero form card */
    .hero-form-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 36px 32px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }
    .hero-form-title { font-family: var(--font-head); font-size: 24px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
    .hero-form-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 24px; line-height: 1.5; }
    .form-field { margin-bottom: 14px; }
    .form-field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 6px; }
    .form-field input, .form-field textarea, .form-field select { width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; padding: 12px 14px; font-family: var(--font-body); font-size: 14px; color: var(--white); outline: none; transition: border-color .2s; resize: none; appearance: none; -webkit-appearance: none; cursor: pointer; }
    .form-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
    .form-field select option { background: #1a2e1a; color: #fff; }
    .form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
    .form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: rgba(77,138,77,0.6); background: rgba(255,255,255,0.08); }
    .form-submit { width: 100%; margin-top: 6px; justify-content: center; }
    .form-trust { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 14px; letter-spacing: 0.02em; }
    .form-trust svg { opacity: 0.5; flex-shrink: 0; }

    /* ── SECTIONS ── */
    .section { padding: 96px 0; }
    .section-sm { padding: 64px 0; }
    .section-gray { background: var(--gray-50); }
    .section-dark { background: var(--green-800); }
    .section-darkest { background: var(--green-900); }

    /* ── STATS STRIP ── */
    .stats-strip { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 0; }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
    .stat-item { background: var(--white); padding: 28px 24px; display: flex; align-items: center; gap: 16px; }
    .stat-icon { width: 44px; height: 44px; min-width: 44px; background: var(--green-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
    .stat-icon svg { color: var(--green-600); }
    .stat-num { font-family: var(--font-head); font-size: 32px; font-weight: 500; color: var(--green-700); line-height: 1; margin-bottom: 2px; }
    .stat-label { font-size: 13px; color: var(--muted); }

    /* ── PROCESS V2 ── */
    .process-v2 { padding: 96px 0; background: var(--gray-50); }
    .process-v2-header { text-align: center; max-width: 580px; margin: 0 auto 72px; }
    .process-v2-timeline { position: relative; }
    .process-v2-track {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    /* connecting line */
    .process-v2-track::before {
      content: '';
      position: absolute;
      top: 52px;
      left: 12.5%;
      right: 12.5%;
      height: 2px;
      background: var(--green-100);
      z-index: 0;
    }
    .process-v2-track::after {
      content: '';
      position: absolute;
      top: 52px;
      left: 12.5%;
      width: 0%;
      height: 2px;
      background: linear-gradient(90deg, var(--green-400), var(--green-500));
      z-index: 1;
      transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .process-v2-track.line-animate::after { width: 75%; }

    .process-v2-step {
      text-align: center;
      padding: 0 16px;
      position: relative;
      z-index: 2;
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .process-v2-step.step-animate { opacity: 1; transform: translateY(0); }
    .process-v2-step:nth-child(1) { transition-delay: 0s; }
    .process-v2-step:nth-child(2) { transition-delay: 0.2s; }
    .process-v2-step:nth-child(3) { transition-delay: 0.4s; }
    .process-v2-step:nth-child(4) { transition-delay: 0.6s; }

    .process-v2-icon-wrap {
      width: 104px; height: 104px;
      margin: 0 auto 24px;
      position: relative;
    }
    .process-v2-icon {
      width: 104px; height: 104px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    }
    .process-v2-step:hover .process-v2-icon {
      border-color: var(--green-400);
      box-shadow: 0 8px 32px rgba(55,100,55,0.15);
      transform: translateY(-4px);
    }
    .process-v2-step-last .process-v2-icon {
      background: var(--green-500);
      border-color: var(--green-500);
    }
    .process-v2-step-last .process-v2-icon svg { color: white; }
    .process-v2-step-last:hover .process-v2-icon { background: var(--green-600); border-color: var(--green-600); }

    .process-v2-step-num {
      position: absolute;
      top: -4px; right: -4px;
      width: 26px; height: 26px;
      background: var(--green-500);
      color: white;
      border-radius: 50%;
      font-size: 11px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      border: 2px solid var(--gray-50);
    }
    .process-v2-step-last .process-v2-step-num { background: var(--green-700); }

    .process-v2-title { font-family: var(--font-head); font-size: 22px; font-weight: 400; color: var(--text); margin-bottom: 10px; line-height: 1.2; }
    .process-v2-desc { font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 200px; margin: 0 auto; }
    .process-v2-badge {
      display: inline-flex; align-items: center; gap: 5px;
      background: var(--green-100); color: var(--green-700);
      font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
      text-transform: uppercase; padding: 5px 12px;
      border-radius: 100px; margin-top: 14px;
    }
    .process-v2-step-last .process-v2-badge { background: var(--green-500); color: white; }

    /* ── BEFORE/AFTER ── */
    .projects-section { padding: 96px 0; background: var(--white); }
    .projects-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 24px; margin-bottom: 56px; }

    .ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .ba-card { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
    .ba-container {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      cursor: ew-resize;
      user-select: none;
      -webkit-user-select: none;
      background: var(--green-800);
    }
    .ba-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      pointer-events: none;
    }
    .ba-before-wrap {
      position: absolute; inset: 0;
      width: 100%;
      clip-path: inset(0 50% 0 0);
      will-change: clip-path;
    }
    .ba-divider {
      position: absolute;
      top: 0; bottom: 0;
      left: 50%;
      width: 2px;
      background: white;
      transform: translateX(-50%);
      z-index: 3;
    }
    .ba-handle {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 40px; height: 40px;
      border-radius: 50%;
      background: white;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    }
    .ba-label {
      position: absolute;
      top: 14px;
      z-index: 4;
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 100px;
      opacity: 1;
      transition: opacity 180ms ease;
      pointer-events: none;
    }
    .ba-label.is-hidden { opacity: 0; }
    .ba-label-before { left: 14px; background: rgba(0,0,0,0.5); color: white; }
    .ba-label-after { right: 14px; background: var(--green-500); color: white; }
    .ba-range {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      opacity: 0;
      cursor: ew-resize;
      z-index: 10;
      -webkit-appearance: none;
    }
    .ba-card-info { padding: 18px 20px; background: var(--white); }
    .ba-card-type { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-500); margin-bottom: 4px; }
    .ba-card-title { font-family: var(--font-head); font-size: 20px; font-weight: 400; color: var(--text); }

    /* ── TESTIMONIALS ── */
    .testimonials-section { padding: 96px 0; background: var(--gray-50); }
    .testimonials-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }

    .stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .star { color: #f59e0b; font-size: 16px; }

    .testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 28px 28px 24px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.07); transform: translateY(-2px); }
    .testimonial-card.featured {
      grid-column: span 2;
      background: var(--green-900);
      border-color: transparent;
    }
    .testimonial-card.featured .star { color: #7ecb7e; }
    .testimonial-quote { font-family: var(--font-head); font-size: 19px; font-weight: 400; line-height: 1.55; color: var(--text); margin-bottom: 20px; font-style: italic; }
    .testimonial-card.featured .testimonial-quote { font-size: 22px; color: var(--white); }
    .testimonial-footer { display: flex; align-items: center; gap: 12px; }
    .testimonial-avatar {
      width: 40px; height: 40px; min-width: 40px;
      border-radius: 50%;
      background: var(--green-100);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head);
      font-size: 16px; font-weight: 500;
      color: var(--green-700);
    }
    .testimonial-card.featured .testimonial-avatar { background: rgba(255,255,255,0.1); color: var(--green-200); }
    .testimonial-name { font-size: 14px; font-weight: 600; color: var(--text); }
    .testimonial-card.featured .testimonial-name { color: var(--white); }
    .testimonial-meta { font-size: 12px; color: var(--muted); margin-top: 1px; }
    .testimonial-card.featured .testimonial-meta { color: rgba(255,255,255,0.4); }
    .testimonial-job-tag {
      margin-left: auto;
      font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 4px 10px; border-radius: 100px;
      background: var(--green-100); color: var(--green-700);
      white-space: nowrap;
    }
    .testimonial-card.featured .testimonial-job-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }

    /* Google rating badge */
    .google-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 100px;
      padding: 8px 18px;
      margin-bottom: 40px;
      font-size: 13px; font-weight: 500; color: var(--muted);
    }
    .google-badge-stars { display: flex; gap: 2px; }
    .google-badge-stars span { color: #f59e0b; font-size: 13px; }
    .google-badge strong { color: var(--text); }

    /* ── SERVICES ── */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; margin-top: 56px; }
    .service-card { background: var(--white); padding: 36px 32px 32px; transition: background .2s; position: relative; display: flex; flex-direction: column; }
    .service-card:hover { background: var(--gray-50); }
    .service-icon { width: 52px; height: 52px; background: var(--green-100); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background .2s; }
    .service-card:hover .service-icon { background: var(--green-500); }
    .service-card:hover .service-icon svg { color: white; }
    .service-icon svg { width: 24px; height: 24px; color: var(--green-600); transition: color .2s; }
    .service-title { font-family: var(--font-head); font-size: 24px; font-weight: 400; color: var(--text); margin-bottom: 8px; line-height: 1.2; }
    .service-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
    .service-bullets { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 22px; margin-top: auto; }
    .service-bullets span {
      font-size: 11px; font-weight: 600; letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 4px 10px; border-radius: 100px;
      background: var(--gray-50); color: var(--muted);
      transition: background .2s, color .2s;
    }
    .service-card:hover .service-bullets span { background: var(--green-100); color: var(--green-700); }
    .service-arrow {
      display: inline-flex; align-items: center; justify-content: center;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--green-100);
      color: var(--green-600);
      transition: background .2s, color .2s, transform .2s;
    }
    .service-card:hover .service-arrow { background: var(--green-500); color: white; transform: translateX(4px); }

    /* ── VIDEOS ── */
    .video-social-links { display: flex; gap: 10px; flex-wrap: wrap; }
    .video-slider-wrap { position: relative; margin-bottom: 56px; overflow: hidden; }
    .video-track { display: flex; align-items: center; justify-content: center; gap: 20px; padding: 20px 0 24px; transition: none; }
    .video-slide.slide-hidden { display: none; }
    .video-slide { flex: 0 0 auto; width: 260px; border-radius: 16px; overflow: visible; position: relative; box-shadow: 0 8px 32px rgba(0,0,0,0.18); transform: scale(0.88); opacity: 0.5; transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.45s ease, box-shadow 0.45s ease; cursor: pointer; }
    .video-slide.active { transform: scale(1); opacity: 1; box-shadow: 0 20px 60px rgba(0,0,0,0.22); }
    .video-clip { border-radius: 16px; overflow: hidden; position: relative; }
    .video-slide video { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; background: var(--green-700); pointer-events: none; position: relative; z-index: 1; }
    .video-sound-btn { position: absolute; bottom: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.18); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transition: opacity .3s ease, background .2s ease; pointer-events: auto; z-index: 3; }
    .video-slide.active .video-sound-btn { opacity: 1; }
    .video-sound-btn:hover { background: rgba(255,255,255,0.3); }
    .video-sound-btn svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }
    .slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: var(--white); border: none; box-shadow: 0 4px 20px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all .2s ease; }
    .slider-arrow:hover { background: var(--green-700); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
    .slider-arrow:hover svg { stroke: white; }
    .slider-arrow svg { width: 20px; height: 20px; stroke: var(--green-700); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: stroke .2s; }
    .slider-arrow.prev { left: 16px; }
    .slider-arrow.next { right: 16px; }
    .slider-dots { display: flex; justify-content: center; gap: 8px; }
    .slider-dot { width: 6px; height: 6px; border-radius: 3px; background: var(--gray-100); border: none; cursor: pointer; padding: 0; transition: all .3s ease; }
    .slider-dot.active { width: 24px; background: var(--green-700); }
    .bubble { position: absolute; bottom: 10%; pointer-events: none; z-index: 20; display: flex; align-items: center; gap: 5px; animation: bubbleFloat var(--dur, 2.4s) ease-out forwards; white-space: nowrap; transform-origin: center bottom; }
    .bubble.emoji { font-size: var(--size, 26px); filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25)); }
    .bubble.pill { background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-radius: 100px; padding: 5px 12px 5px 8px; font-size: 13px; font-weight: 500; color: #1c2420; box-shadow: 0 4px 16px rgba(0,0,0,0.18); }
    .bubble.pill .pill-icon { font-size: 15px; }
    @keyframes bubbleFloat {
      0%   { opacity: 0;   transform: translateY(0)      scale(0.6) rotate(var(--rot-start, 0deg)); }
      12%  { opacity: 1;   transform: translateY(-20px)  scale(1)   rotate(var(--rot-start, 0deg)); }
      85%  { opacity: 0.9; transform: translateY(var(--travel, -180px)) scale(1) rotate(var(--rot-end, 4deg)); }
      100% { opacity: 0;   transform: translateY(var(--travel-end, -230px)) scale(0.8) rotate(var(--rot-end, 4deg)); }
    }
    @media (max-width: 700px) { .video-slide { width: 200px; } .slider-arrow { width: 38px; height: 38px; } }

    /* ── OM JEPPE ── */
    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      grid-template-areas:
        "media header"
        "media body";
      column-gap: 80px;
      row-gap: 24px;
      align-items: start;
    }
    .about-header { grid-area: header; align-self: end; }
    .about-media  { grid-area: media; position: relative; }
    .about-body   { grid-area: body; align-self: start; max-width: 440px; }
    .about-cta { margin-top: 12px; }
    .about-visual { border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(145deg, var(--green-700) 0%, var(--green-600) 100%); position: relative; }
    .about-visual-inner { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 28px; }
    .about-card { background: rgba(0,0,0,0.4); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 16px 20px; width: 100%; }
    .about-card-title { font-family: var(--font-head); font-size: 20px; font-style: italic; color: var(--white); margin-bottom: 4px; }
    .about-card-sub { font-size: 12px; color: rgba(255,255,255,0.5); }
    .about-stat { position: absolute; bottom: -24px; right: -24px; width: 160px; background: var(--white); border-radius: 14px; padding: 18px 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.14); }
    .about-stat-num { font-family: var(--font-head); font-size: 38px; font-weight: 500; color: var(--green-700); line-height: 1; margin-bottom: 4px; }
    .about-stat-text { font-size: 12px; color: var(--muted); line-height: 1.5; }
    .about-header .label { margin-bottom: 16px; }
    .about-header h2 { margin-bottom: 0; }
    .about-body .body-text { margin-bottom: 20px; }
    .about-body .body-text:last-of-type { margin-bottom: 0; }

    /* ── FAQ ── */
    .faq-section { padding: 96px 0; background: var(--white); }
    .faq-grid { max-width: 720px; margin: 0 auto; }
    .faq-list { margin-top: 8px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-question {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: space-between; gap: 16px;
      padding: 20px 0;
      font-family: var(--font-body); font-size: 15px; font-weight: 600;
      color: var(--text); text-align: left;
      transition: color 0.2s;
    }
    .faq-question:hover { color: var(--green-600); }
    .faq-question.open { color: var(--green-600); }
    .faq-icon { width: 22px; height: 22px; min-width: 22px; border-radius: 50%; background: var(--green-100); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
    .faq-question.open .faq-icon { background: var(--green-500); transform: rotate(45deg); }
    .faq-icon svg { color: var(--green-600); }
    .faq-question.open .faq-icon svg { color: white; }
    .faq-answer { font-size: 14px; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; }
    .faq-answer.open { max-height: 300px; padding-bottom: 18px; }

    /* Service area */
    .service-area-box {
      background: var(--gray-50);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px;
    }
    .service-area-title {
      font-family: var(--font-head); font-size: 26px; font-weight: 400;
      color: var(--text); margin-bottom: 6px;
    }
    .service-area-sub { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
    .service-area-list {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 8px 16px; list-style: none;
    }
    .service-area-list li {
      display: flex; align-items: center; gap: 8px;
      font-size: 14px; color: var(--text);
    }
    .service-area-list li::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--green-400);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .service-area-note {
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      font-size: 13px; color: var(--muted);
      display: flex; align-items: center; gap: 8px;
    }

    /* ── QUOTE ── */
    .quote-section { background: var(--green-700); padding: 80px 0; }
    .quote-inner { display: flex; align-items: center; gap: 56px; max-width: 860px; margin: 0 auto; }
    .quote-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; object-position: center top; flex-shrink: 0; border: 3px solid rgba(255,255,255,0.15); }
    .quote-section blockquote { font-family: var(--font-head); font-size: clamp(20px, 2.8vw, 32px); font-style: italic; font-weight: 400; color: var(--white); line-height: 1.5; margin: 0 0 20px; }
    .quote-section cite { font-size: 13px; font-style: normal; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; }
    @media (max-width: 600px) { .quote-inner { flex-direction: column; text-align: center; gap: 28px; } }

    /* ── TRUST BAR ── */
    .trust-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden; margin-top: 64px; }
    .trust-item { padding: 28px 24px; background: rgba(255,255,255,0.03); display: flex; align-items: flex-start; gap: 14px; }
    .trust-icon { width: 36px; height: 36px; min-width: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
    .trust-icon svg { width: 18px; height: 18px; color: var(--green-200); }
    .trust-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
    .trust-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }

    /* ── CTA + FORM ── */
    .cta-section { background: var(--green-900); padding: 112px 0; position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 100%, rgba(42,72,48,0.45) 0%, transparent 70%); pointer-events: none; }
    .cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 460px; gap: 80px; align-items: center; }
    .cta-copy h2 { color: var(--white); margin-bottom: 18px; }
    .cta-copy h2 em { color: var(--green-200); }
    .cta-copy .body-text-light { margin-bottom: 32px; }
    .cta-trust { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
    .cta-trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.5); }
    .cta-trust-item svg { color: #7ecb7e; flex-shrink: 0; }
    .cta-form-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px 36px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); position: relative; }

    /* ── Avatar på kontaktformular (rund Jeppe oppe i højre hjørne) ── */
    .cta-form-avatar {
      position: absolute;
      top: -56px;
      right: 28px;
      width: 112px;
      height: 112px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid var(--white);
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
      background: var(--gray-100, #ececec);
      z-index: 3;
    }
    .cta-form-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 30%;
      display: block;
    }
    @media (max-width: 560px) {
      .cta-form-avatar {
        width: 84px;
        height: 84px;
        top: -42px;
        right: 18px;
        border-width: 3px;
      }
    }
    .cta-form-title { font-family: var(--font-head); font-size: 26px; font-weight: 400; color: var(--white); margin-bottom: 6px; }
    .cta-form-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 28px; line-height: 1.5; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    /* ── FOOTER ── */
    footer { background: #070e07; padding: 56px 0 32px; }
    .footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 28px; }
    .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
    .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); line-height: 1.65; max-width: 260px; }
    .footer-col-title { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 14px; }
    .footer-link { display: block; font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 9px; transition: color .2s; }
    .footer-link:hover { color: rgba(255,255,255,0.8); }
    .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }
    .footer-pacey { font-size: 12px; color: rgba(255,255,255,0.15); }
    .footer-pacey a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color .2s; }
    .footer-pacey a:hover { color: rgba(255,255,255,0.6); }

    /* ── FOOTER · AREA BADGE + SOCIAL ── */
    .footer-area-badge {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-top: 22px;
      padding: 9px 16px 9px 12px;
      background: rgba(77, 138, 77, 0.10);
      border: 1px solid rgba(77, 138, 77, 0.28);
      border-radius: 999px;
      font-size: 13.5px;
      color: rgba(255,255,255,0.78);
      line-height: 1;
    }
    .footer-area-badge svg { color: var(--green-400); flex-shrink: 0; }
    .footer-area-badge strong { color: var(--white); font-weight: 600; }

    .footer-social { display: flex; gap: 10px; margin-top: 22px; }
    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      color: rgba(255,255,255,0.6);
      transition: background .2s, color .2s, transform .2s;
    }
    .footer-social a:hover {
      background: rgba(255,255,255,0.12);
      color: var(--white);
      transform: translateY(-1px);
    }

    /* ── FORM: "Tilføj flere detaljer" toggle ── */
    .form-toggle {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      margin: 4px 0 14px;
      padding: 10px 0;
      background: transparent;
      border: none;
      border-top: 1px dashed rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.65);
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.01em;
      cursor: pointer;
      text-align: left;
      transition: color .2s;
    }
    .form-toggle:hover { color: var(--white); }
    .form-toggle-icon {
      flex-shrink: 0;
      color: var(--green-200);
      transition: transform .25s ease;
    }
    .form-toggle[aria-expanded="true"] .form-toggle-icon { transform: rotate(45deg); }
    .form-toggle-hint {
      color: rgba(255,255,255,0.32);
      font-weight: 400;
      font-size: 12px;
      letter-spacing: 0;
    }
    .form-extra {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height .35s ease, opacity .25s ease, margin .25s ease;
    }
    .form-extra.open {
      max-height: 720px;
      opacity: 1;
      margin-bottom: 6px;
    }

    /* ── FORM SUCCESS ── */
    .form-success { display: none; text-align: center; padding: 32px 16px; }
    .form-success-check { width: 60px; height: 60px; background: var(--green-500); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
    .form-success h3 { font-family: var(--font-head); font-size: 26px; font-weight: 400; color: var(--white); margin-bottom: 10px; }
    .form-success p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; }

    /* ── MAP SECTION ── */
    .map-section { padding: 96px 0; background: var(--white); }
    .map-layout { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: center; }
    .map-copy h2 { margin-bottom: 20px; }
    .map-copy .body-text { margin-bottom: 36px; }
    .zone-legend { display: flex; flex-direction: column; gap: 18px; }
    .zone-item { display: flex; align-items: flex-start; gap: 14px; }
    .zone-swatch { width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
    .zone-swatch.z1 { background: var(--green-600); }
    .zone-swatch.z2 { background: var(--green-400); }
    .zone-swatch.z3 { background: var(--green-200); }
    .zone-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
    .zone-areas { font-size: 13px; color: var(--muted); line-height: 1.55; }
    .map-visual { position: relative; }
    .map-visual svg { width: 100%; height: auto; filter: drop-shadow(0 8px 32px rgba(0,0,0,0.07)); }
    @keyframes mapPulse {
      0%   { r: 12; opacity: 0.6; }
      70%  { r: 30; opacity: 0; }
      100% { r: 30; opacity: 0; }
    }
    .pulse-ring { animation: mapPulse 2.6s ease-out infinite; }
    .pulse-ring-2 { animation: mapPulse 2.6s ease-out 0.9s infinite; }
    @media (max-width: 900px) { .map-layout { grid-template-columns: 1fr; gap: 48px; } }

    /* ── SCROLL REVEALS ── */
    .js-fx .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .js-fx .reveal.visible { opacity: 1; transform: none; }

    /* ── STICKY MOBILE CTA ── */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 200;
      box-sizing: border-box;
      width: 100%;
      padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
      background: rgba(11,26,11,0.97);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-top: 1px solid rgba(255,255,255,0.08);
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      transform: translateY(100%);
      transition: transform 0.35s ease;
    }
    .sticky-cta.visible { transform: translateY(0); }
    .sticky-cta-btn {
      box-sizing: border-box;
      width: 100%;
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.01em;
      padding: 14px 8px;
      border-radius: 10px;
      text-decoration: none;
      white-space: nowrap;
      transition: background .18s, border-color .18s, color .18s;
    }
    .sticky-cta-call {
      color: var(--white);
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.18);
    }
    .sticky-cta-call:hover { background: rgba(255,255,255,0.14); }
    .sticky-cta-call svg { color: var(--green-400); }
    .sticky-cta-quote {
      color: var(--white);
      background: var(--green-500);
      border: 1px solid var(--green-500);
    }
    .sticky-cta-quote:hover { background: var(--green-600); border-color: var(--green-600); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1020px) {
      .process-v2-track { grid-template-columns: repeat(2, 1fr); gap: 40px; }
      .process-v2-track::before, .process-v2-track::after { display: none; }
      .ba-grid { grid-template-columns: 1fr 1fr; }
      .ba-grid .ba-card:nth-child(3) { grid-column: span 2; }
      .faq-grid { max-width: 100%; }
    }
    @media (max-width: 960px) {
      .hero-inner { padding-top: 120px; }
      .hero h1 { font-size: 52px; }
      .about-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
      .about-header { align-self: start; max-width: 100%; }
      .about-body { max-width: 100%; }
      /* .about-visual og .about-stat blev tidligere skjult på mobil — nu vises video-versionen i stedet.
         Stat-badge skjules stadig på mobil for at undgå at den ligger over videoen. */
      .about-stat { display: none; }
      .trust-bar { grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .cta-inner { grid-template-columns: 1fr; gap: 48px; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .testimonial-card.featured { grid-column: span 1; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .video-grid { grid-template-columns: repeat(2, 1fr); }

      /* Footer — brand fylder hele bredden, link-kolonnerne 3 i en række */
      .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px 28px;
        padding-bottom: 40px;
      }
      .footer-grid > div:first-child {
        grid-column: 1 / -1;
        max-width: 480px;
      }
      .footer-tagline { max-width: 100%; }
    }
    @media (max-width: 768px) {
      .ba-grid { grid-template-columns: 1fr; }
      .ba-grid .ba-card:nth-child(3) { grid-column: span 1; }
      .sticky-cta { display: grid; }
      body { padding-bottom: 80px; }
    }
    @media (max-width: 960px) {
      .header-social { display: none; }
    }
    .nav-social-mobile { display: none; }
    .main-nav > a.nav-cta-mobile { display: none; }
    @media (max-width: 960px) {
      .nav-social-mobile {
        display: flex; gap: 10px;
        padding-top: 18px; margin-top: 4px;
        border-top: 1px solid var(--border);
      }
      .nav-social-mobile a {
        display: inline-flex; align-items: center; justify-content: center;
        width: 40px; height: 40px; border-radius: 10px;
        color: var(--muted);
        background: var(--gray-50);
        border: 1px solid var(--border);
        transition: color .2s, background .2s, border-color .2s;
      }
      .nav-social-mobile a:hover {
        color: var(--green-700);
        background: var(--green-100);
        border-color: var(--green-200);
      }
      .main-nav > a.nav-cta-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        padding: 15px 24px;
        background: var(--green-500);
        color: var(--white);
        border-radius: 10px;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.01em;
        text-decoration: none;
        border: 1px solid var(--green-500);
        border-bottom: 1px solid var(--green-500);
        width: auto;
        transition: background .2s, border-color .2s;
      }
      .main-nav > a.nav-cta-mobile:hover,
      .main-nav > a.nav-cta-mobile:active {
        background: var(--green-600);
        border-color: var(--green-600);
        color: var(--white);
      }
    }
    @media (max-width: 640px) {
      .header-phone { display: none; }
      .header-right .btn { padding: 10px 16px; font-size: 13px; white-space: nowrap; }
    }
    @media (max-width: 560px) {
      .header-right > .btn { display: none; }
    }
    @media (max-width: 960px) {
      .nav-burger {
        display: flex !important;
        width: 46px; height: 46px;
        border-radius: 10px;
        background: rgba(255,255,255,0.15);
        border: 1.5px solid rgba(255,255,255,0.35);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        padding: 0;
        cursor: pointer;
        flex-shrink: 0;
      }
      header.scrolled .nav-burger {
        background: var(--gray-50);
        border-color: var(--border);
      }
      .nav-burger span {
        display: block;
        width: 22px; height: 2px;
        background: var(--white);
        border-radius: 2px;
        margin: 0;
        transition: transform .25s, opacity .2s, background .3s;
      }
      header.scrolled .nav-burger span { background: var(--green-800); }
      .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-burger.open span:nth-child(2) { opacity: 0; }
      .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    }
    @media (max-width: 600px) {
      .section { padding: 64px 0; }
      .hero-inner { padding-top: 96px; padding-bottom: 80px; }
      .hero h1 { font-size: 42px; }
      .trust-bar { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .process-v2-track { grid-template-columns: 1fr; gap: 32px; }
      .form-row { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .service-area-list { grid-template-columns: 1fr; }
      .hero-form-card { padding: 24px 20px; }
      .cta-form-card { padding: 28px 24px; }

      /* Footer på telefoner — kompakt brand-only block.
         Ydelser + Navigation duplikerer burger-menuen, så de skjules.
         Telefon-CTA er tilgængelig via sticky-CTA-knappen i bunden. */
      footer { padding: 36px 0 22px; }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 22px;
        margin-bottom: 16px;
        text-align: center;
      }
      .footer-grid > div:not(:first-child) { display: none; }
      .footer-grid > div:first-child {
        grid-column: 1;
        max-width: 100%;
      }
      .footer-brand { justify-content: center; margin-bottom: 12px; }
      .footer-logo-img { height: 44px; }
      .footer-tagline { display: none; }
      .footer-area-badge { margin-top: 14px; }
      .footer-social { margin-top: 18px; justify-content: center; }
      .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
      }
      .footer-copy, .footer-pacey { font-size: 11px; }
    }
    @media (max-width: 500px) {
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; justify-content: center; }
    }
    @media (max-width: 380px) {
      .hero h1 { font-size: 30px; }
      .hero-sub { font-size: 15px; }
      .logo-tagline { display: none; }
    }

    /* ── BRAND LOGO responsive ── */
    @media (max-width: 960px) { .logo-img { height: 48px; } }
    @media (max-width: 560px) { .logo-img { height: 42px; } }

    /* ============================================================
       ── ADDITIONS: nav, hero badge, inline CTA, sticky desktop ──
       ============================================================ */

    /* ── MAIN NAV ── */
    .main-nav {
      display: flex;
      align-items: center;
      gap: 28px;
      justify-content: center;
      flex-shrink: 0;
    }
    .main-nav > a,
    .main-nav .nav-toggle-link {
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: rgba(255,255,255,0.78);
      text-decoration: none;
      padding: 6px 0;
      transition: color .18s;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      font-family: inherit;
      white-space: nowrap;
    }
    .main-nav > a:hover,
    .main-nav .nav-toggle-link:hover { color: var(--white); }
    header.scrolled .main-nav > a,
    header.scrolled .main-nav .nav-toggle-link { color: var(--text); }
    header.scrolled .main-nav > a:hover,
    header.scrolled .main-nav .nav-toggle-link:hover { color: var(--green-600); }
    .main-nav .dropdown-chevron { transition: transform .25s ease; opacity: 0.7; }

    .nav-item.has-dropdown { position: relative; }
    .dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: -16px;
      min-width: 240px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 10px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px);
      transition: opacity .2s ease, transform .2s ease, visibility .2s;
      box-shadow: 0 18px 48px rgba(0,0,0,0.10);
      z-index: 110;
    }
    .nav-item.has-dropdown:hover .dropdown-menu,
    .nav-item.has-dropdown:focus-within .dropdown-menu {
      opacity: 1; visibility: visible; transform: translateY(0);
    }
    .nav-item.has-dropdown:hover .dropdown-chevron { transform: rotate(180deg); }
    .dropdown-menu a {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      padding: 9px 14px;
      border-radius: 7px;
      text-decoration: none;
      transition: background .15s, color .15s;
    }
    .dropdown-menu a:hover { background: var(--green-100); color: var(--green-700); }

    /* Burger (mobil) */
    .nav-burger {
      display: none;
      background: none;
      border: none;
      width: 32px;
      height: 32px;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      padding: 0;
      cursor: pointer;
    }
    .nav-burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: rgba(255,255,255,0.85);
      border-radius: 2px;
      transition: transform .25s, opacity .2s, background .3s;
      margin: 0 auto;
    }
    header.scrolled .nav-burger span { background: var(--green-800); }
    .nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* ── HERO subline cities + micro-text + reviews badge ── */
    .hero-sub-cities {
      display: block;
      margin-top: 10px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,0.78);
      letter-spacing: 0.01em;
    }
    .hero-micro {
      margin-top: 16px;
      font-size: 12.5px;
      color: rgba(255,255,255,0.45);
      letter-spacing: 0.01em;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-micro::before {
      content: '';
      width: 14px; height: 14px;
      border-radius: 50%;
      background: #7ecb7e;
      opacity: 0.18;
      box-shadow: inset 0 0 0 2px rgba(126,203,126,0.6);
      flex-shrink: 0;
    }
    .hero-reviews-badge {
      margin: 28px auto 0;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 100px;
      padding: 8px 16px 8px 14px;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      text-decoration: none;
      transition: background .2s, border-color .2s;
    }
    .hero-reviews-badge:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
    .hero-reviews-stars {
      color: #f5b700;
      font-size: 12px;
      letter-spacing: 1px;
    }
    .hero-reviews-badge strong {
      font-size: 13px;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.01em;
    }
    .hero-reviews-text {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.01em;
    }

    /* ── INLINE CTA BARS ── */
    .inline-cta {
      margin-top: 48px;
      background: var(--gray-50);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 22px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }
    .inline-cta p {
      font-size: 15px;
      color: var(--text);
      margin: 0;
    }
    .inline-cta p strong {
      color: var(--green-700);
      font-weight: 600;
    }
    .inline-cta-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }
    .inline-cta-dark {
      background: var(--green-900);
      border-color: rgba(255,255,255,0.06);
    }
    .inline-cta-dark p { color: rgba(255,255,255,0.85); }
    .inline-cta-dark p strong { color: var(--green-200); }

    /* ── FORM micro-text under submit ── */
    .form-micro {
      margin-top: 14px;
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      text-align: center;
      letter-spacing: 0.02em;
    }

    /* ── STICKY DESKTOP CTA BAR ── */
    .sticky-desktop {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 150;
      background: rgba(11,26,11,0.97);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transform: translateY(-100%);
      transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
      display: none;
    }
    .sticky-desktop.visible { transform: translateY(0); }
    .sticky-desktop-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 11px 24px;
    }
    .sticky-desktop-left {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }
    .sticky-desktop-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      padding-right: 14px;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .sticky-desktop-text {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
    }
    .sticky-desktop-text a {
      color: var(--white);
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px dashed rgba(255,255,255,0.3);
      padding-bottom: 1px;
      transition: border-color .2s;
    }
    .sticky-desktop-text a:hover { border-color: var(--green-200); }
    .sticky-desktop-right {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .sticky-desktop .btn { padding: 9px 20px; font-size: 13px; }
    .sticky-desktop-close {
      width: 28px; height: 28px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: none;
      color: rgba(255,255,255,0.5);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .15s, color .15s;
    }
    .sticky-desktop-close:hover { background: rgba(255,255,255,0.12); color: var(--white); }

    /* When sticky-desktop is visible, push site-header down so they don't overlap */
    .sticky-desktop.visible ~ #site-header { top: 49px; }

    /* ── RESPONSIVE: nav + sticky desktop + inline CTA ── */
    @media (min-width: 901px) {
      .sticky-desktop { display: block; }
    }
    @media (max-width: 1200px) {
      .main-nav { gap: 20px; }
      .main-nav > a, .main-nav .nav-toggle-link { font-size: 12.5px; }
    }
    @media (max-width: 960px) {
      .main-nav {
        position: fixed;
        top: 80px; left: 0; right: 0;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        padding: 12px 24px calc(24px + env(safe-area-inset-bottom));
        border-bottom: 1px solid var(--border);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        transition: opacity .25s, transform .25s, visibility .25s;
        max-height: calc(100vh - 80px);
        max-height: calc(100svh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
      }
      .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      .main-nav > a:not(.nav-cta-mobile),
      .main-nav .nav-toggle-link {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
        justify-content: space-between;
        width: 100%;
        color: var(--text);
      }
      .main-nav > a:not(.nav-cta-mobile):hover,
      .main-nav .nav-toggle-link:hover { color: var(--green-600); }
      .main-nav .dropdown-menu a { color: var(--text); }
      .main-nav .dropdown-chevron { color: var(--muted); }
      .nav-item.has-dropdown { width: 100%; }
      .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 4px 0 8px 14px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
      }
      .nav-item.has-dropdown.open .dropdown-menu { max-height: 360px; }
      .nav-item.has-dropdown.open .dropdown-chevron { transform: rotate(180deg); }
      .dropdown-menu a {
        padding: 10px 4px;
        font-size: 13px;
        border-radius: 0;
      }
      .dropdown-menu a:hover { background: transparent; }
      .nav-burger { display: flex; }
    }
    @media (max-width: 900px) {
      .sticky-desktop { display: none; }
    }
    @media (max-width: 700px) {
      .inline-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 22px;
      }
      .inline-cta-actions { width: 100%; }
      .inline-cta-actions .btn { flex: 1; justify-content: center; }
      .inline-cta-dark { text-align: center; }
      .inline-cta-dark p { width: 100%; text-align: center; }
      .inline-cta-dark { align-items: center; }
    }

    /* ── MOBILE NAV: matchende top-offset per header-højde ── */
    @media (max-width: 560px) {
      .main-nav {
        top: 72px;
        max-height: calc(100vh - 72px);
        max-height: calc(100svh - 72px);
      }
    }

    /* ── BODY LOCK + SKJUL STICKY-CTA NÅR MENU ER ÅBEN ── */
    body.nav-open {
      overflow: hidden;
      touch-action: none;
    }
    body.nav-open .sticky-cta {
      transform: translateY(100%) !important;
      pointer-events: none;
    }
