
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --black: #000000;
      --dark: #0d0d0d;
      --dark-2: #141414;
      --dark-3: #1c1c1c;
      --red: #c8253a;
      --red-hover: #e02a40;
      --white: #ffffff;
      --muted: #ffffff;
      --green: #22c55e;
      --border: rgba(255,255,255,0.08);
    }
    html {
      scroll-behavior: smooth; overflow-x: hidden; max-width: 100%;
    }
    body {
      font-family: 'Montserrat', sans-serif; background: var(--black); color: var(--white);
      overflow-x: hidden; max-width: 100%;
      position: relative;
    }
    nav {
      position: fixed; top: 16px; left: 0; right: 0; z-index: 160;
      margin: 0 auto;
      display: flex; align-items: center; justify-content: space-between;
      gap: 28px;
      width: calc(100% - 32px);
      max-width: 1200px;
      padding: 12px 10px 12px 22px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 999px;
      box-shadow: 0 10px 40px -12px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
    }
    nav::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(14,14,14,0.75);
      backdrop-filter: blur(10px) saturate(150%);
      -webkit-backdrop-filter: blur(10px) saturate(150%);
      border-radius: inherit;
      z-index: -1;
    }
    .nav-logo img { height: 68px; width: auto; display: block; }
    .nav-links { display: flex; gap: 22px; list-style: none; align-items: center; }
    .nav-links a { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-decoration: none; display: inline-block; transition: color 0.2s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), text-shadow 0.3s; -webkit-tap-highlight-color: transparent; }
    .nav-links a:hover { color: var(--white); transform: scale(1.14); }
    .nav-links a.active { color: var(--white); }
    .nav-dropdown { position: relative; }
    .nav-dropdown-caret { display: none; }
    .nav-dropdown-menu {
      position: absolute; top: 100%; left: 50%; margin-top: 0;
      transform: translateX(-50%) translateY(6px);
      background: rgba(10,10,10,0.97); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px;
      padding: 8px; min-width: 150px; list-style: none;
      opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 200; box-shadow: 0 20px 60px -16px rgba(0,0,0,0.7);
    }
    .nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown-menu:hover, .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu li { list-style: none; width: 100%; }
    .nav-dropdown-menu a { display: block; padding: 9px 16px; font-size: 10.5px; white-space: nowrap; text-align: left; }
    .nav-dropdown-menu a:hover { transform: none; color: var(--green); }
    .nav-cta { background: var(--green) !important; color: var(--white) !important; padding: 9px 20px; border-radius: 999px; transition: background 0.15s, transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s; }
    .nav-cta:hover { background: #16a34a !important; transform: scale(1.08) !important; box-shadow: 0 0 18px rgba(34,197,94,0.55); }
    .nav-cta:active { transform: scale(0.96) !important; }
    .nav-toggle {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      width: 40px; height: 40px;
      background: transparent;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      z-index: 200;
      padding: 0;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.25s;
    }
    .nav-toggle:hover, .nav-toggle:active {
      transform: scale(1.18);
      background: rgba(34,197,94,0.12);
    }
    .nav-toggle span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s, box-shadow 0.25s;
    }
    .nav-toggle:hover span, .nav-toggle:active span {
      background: var(--green);
      box-shadow: 0 0 10px rgba(34,197,94,0.7);
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    #hero {
      min-height: min(100vh, 820px); display: flex; align-items: center; justify-content: center;
      text-align: center; padding: 110px 24px 80px; position: relative; overflow: hidden;
    }
    .hero-bg-img {
      position: absolute;
      inset: 0;
      background-image: url('images/hero-bg-desktop.jpg');
      background-size: cover;
      background-position: 30% 22%;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }
    .hero-content { position: relative; z-index: 1; max-width: 800px; width: 100%; min-width: 0; }
    .hero-title { font-size: clamp(32px, 6vw, 72px); font-weight: 900; line-height: 1.03; letter-spacing: -0.02em; text-transform: uppercase; margin-bottom: 24px; text-shadow: 0 2px 10px rgba(0,0,0,0.8), 0 4px 30px rgba(0,0,0,0.55); }
    .hero-sub { font-size: 16.5px; font-weight: 500; color: var(--white); line-height: 1.8; max-width: 560px; margin: 0 auto 48px; letter-spacing: 0.02em; text-shadow: 0 2px 10px rgba(0,0,0,0.8); }
    .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .hero-phone {
      display: block; margin-top: 28px; color: var(--white); font-size: 14px; font-weight: 700;
      letter-spacing: 0.03em; text-decoration: none; text-shadow: 0 2px 10px rgba(0,0,0,0.8);
      transition: color 0.2s;
    }
    .hero-phone:hover { color: var(--green); }
    .btn-primary {
      background: var(--green); color: var(--white); font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
      padding: 16px 36px; border: none; border-radius: 4px; cursor: pointer;
      text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s;
    }
    .btn-primary:hover { background: #16a34a; transform: translateY(-1px); }
    .btn-outline {
      background: rgba(255,255,255,0.08); color: var(--white); font-family: 'Montserrat', sans-serif;
      font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
      padding: 16px 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px;
      cursor: pointer; text-decoration: none; display: inline-block; transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.12); }

    /* FAST BOTTENFLIK MED RULLANDE RECENSIONER (BIO-STIL) */
    body { padding-bottom: 46px; }
    .review-ticker-bar {
      position: fixed; left: 0; right: 0; bottom: 0; z-index: 130;
      height: 46px; display: flex; align-items: center; gap: 14px;
      padding: 0 18px 0 16px;
      background: rgba(8,8,8,0.94);
      -webkit-backdrop-filter: blur(8px) saturate(140%);
      backdrop-filter: blur(8px) saturate(140%);
      border-top: 1px solid var(--border);
      box-shadow: 0 -10px 30px -12px rgba(0,0,0,0.5);
    }
    .ticker-badge {
      display: flex; align-items: center; gap: 6px; flex-shrink: 0;
      padding-right: 14px; border-right: 1px solid var(--border);
    }
    .ticker-badge-score { font-size: 12px; font-weight: 800; color: var(--white); white-space: nowrap; }
    .ticker-badge-score .star { color: #f59e0b; font-size: 11px; }
    .ticker-track-wrap { flex: 1; min-width: 0; overflow: hidden; height: 100%; display: flex; align-items: center; }
    .ticker-track {
      display: flex; align-items: center; gap: 44px; white-space: nowrap;
      animation: tickerScroll 42s linear infinite;
      will-change: transform;
    }
        @keyframes tickerScroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .ticker-track { animation: none; }
    }
    .ticker-item { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--white); }
    .ticker-item strong { color: var(--white); font-weight: 800; }
    .ticker-stars { color: #f59e0b; font-size: 11px; letter-spacing: 1px; flex-shrink: 0; }
    @media (max-width: 640px) {
      .review-ticker-bar { padding: 0 12px; gap: 10px; }
      .ticker-badge { padding-right: 10px; }
      .ticker-badge-word { display: none; }
      .ticker-item { font-size: 11.5px; }
    }
    section { padding: 130px 24px; scroll-margin-top: 100px; }
    @media (max-width: 640px) { .hero-bg-img { background-image: url('images/hero-bg-mobile.jpg'); background-position: 20% center; } }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
    .section-title { font-size: clamp(28px, 4vw, 48px); font-weight: 900; letter-spacing: -0.01em; text-transform: uppercase; line-height: 1.1; margin-bottom: 16px; }
    .section-sub { font-size: 16.5px; color: var(--muted); line-height: 1.85; max-width: 600px; }
    #priser { position: relative; background: var(--dark); overflow: hidden; }
    #priser .container { position: relative; z-index: 1; }
    .price-header { text-align: center; margin-bottom: 60px; }
    .price-header .section-sub { margin: 0 auto; }
    .price-panels-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; max-width: 1000px; margin: 0 auto; }
    .price-panels-grid > * { min-width: 0; }
    .price-group-label {
      grid-column: 1 / -1; text-align: center; font-size: 12px; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: -8px;
    }
    .price-group-label-villa { margin-top: 24px; }
    .price-panel {
      position: relative; overflow: hidden; display: flex; flex-direction: column;
      background: transparent; border: 1px solid var(--border); border-radius: 8px;
      padding: 48px 44px;
    }
    .panel-title {
      font-size: 22px; font-weight: 900; text-transform: uppercase;
      letter-spacing: -0.01em; margin-bottom: 16px; color: var(--white);
    }
    .rut-badge {
      display: inline-block; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
      color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
      padding: 6px 14px; border-radius: 3px; margin-bottom: 24px;
    }
    .price-rows { display: flex; flex-direction: column; margin-bottom: 8px; }
    .price-row {
      display: flex; align-items: baseline; justify-content: space-between;
      padding: 12px 0; border-bottom: 1px solid var(--border);
    }
    .price-row:last-child { border-bottom: none; }
    .row-label { font-size: 15px; font-weight: 600; color: var(--white); }
    .row-sub { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }
    .row-price-wrap { text-align: right; }
    .row-price-line { display: flex; align-items: baseline; gap: 8px; justify-content: flex-end; flex-wrap: wrap; }
    .row-price-before { font-size: 12.5px; font-weight: 600; color: var(--muted); text-decoration: line-through; opacity: 0.75; white-space: nowrap; }
    .row-price-after { font-size: 20px; font-weight: 900; color: var(--green); white-space: nowrap; }
    .row-price-after span { font-size: 12px; font-weight: 600; color: var(--muted); }
    .row-price-label { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); opacity: 0.8; }
    .rut-note { text-align: center; margin-top: 32px; font-size: 12px; color: var(--muted); font-weight: 500; }
    .rut-note strong { color: var(--green); }

    /* PRISPANEL */
    .price-panel-featured {
      border-color: var(--border);
      background: var(--dark-2);
    }
    .panel-glow { display: none; }
    .panel-content { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 1; }
    .panel-title-green { color: var(--green); }
    .panel-lead { font-size: 15px; color: var(--white); line-height: 1.8; margin-bottom: 28px; }
    .panel-cta { display: inline-block; align-self: flex-start; margin-top: auto; font-size: 13px; padding: 16px 36px; }

    /* BOKNINGSFORMULÄR */
    .book-form { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label {
      font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
    }
    .form-group input, .form-group textarea {
      background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 6px;
      padding: 13px 16px; font-family: 'Montserrat', sans-serif; font-size: 14px; color: var(--white);
      width: 100%; transition: border-color 0.2s, background 0.2s;
    }
    .form-group input:focus, .form-group textarea:focus {
      outline: none; border-color: rgba(34,197,94,0.5); background: rgba(255,255,255,0.05);
    }
    .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
    .form-group textarea { resize: vertical; min-height: 120px; font-family: inherit; }
    .book-form button { border: none; cursor: pointer; align-self: flex-start; margin-top: 4px; }
    @media (max-width: 860px) {
      .price-panels-grid { grid-template-columns: 1fr; }
    }

    /* MÖRKA BAKGRUNDER FÖR SEKTIONER (utan flimmer) */
    #hur, #om-mig, #faq, #omraden, #boka {
      background: var(--dark);
    }
    .steps-layout { display: grid; grid-template-columns: 1fr; }
    .steps-layout > div { max-width: 720px; margin: 0 auto; width: 100%; }
    .steps-list { display: flex; flex-direction: column; }
    .step { display: flex; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--border); }
    .step:last-child { border-bottom: none; }
    .step-num { font-size: 22px; font-weight: 900; color: var(--green); letter-spacing: 0.05em; width: 48px; flex-shrink: 0; padding-top: 2px; }
    .step-content h4 { font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; color: var(--white); }
    .step-content p { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 500; }
    .steps-cta { margin-top: 40px; }


    /* VARFÖR ANLITA MIG */
    #fordelar { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .fordelar-header { text-align: center; margin-bottom: 64px; }
    .fordelar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 44px; }
    .fordelar-card {
      background: transparent; border: none; border-radius: 0;
      padding: 0; transition: none;
    }
    .fordelar-card:hover { border-color: transparent; transform: none; }
    .fordelar-num { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; color: var(--green); margin-bottom: 16px; }
    .fordelar-title { font-size: 17px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.005em; color: var(--white); margin-bottom: 12px; line-height: 1.3; }
    .fordelar-text { font-size: 14.5px; line-height: 1.8; color: var(--muted); font-weight: 500; }

    /* SVART VÄLJAR-SIDA (Tjänster / Fönsterputs) */
    .chooser-section { min-height: 80vh; display: flex; align-items: center; padding: 140px 24px 80px; background: var(--dark); }
    .chooser-wrap { max-width: 900px; margin: 0 auto; width: 100%; text-align: center; }
    .chooser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 56px; }
    @media (max-width: 640px) { .chooser-grid { grid-template-columns: 1fr; } }
    .chooser-card {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 16px; padding: 64px 24px; text-decoration: none;
      background: transparent; border: 1px solid var(--border); border-radius: 16px;
      transition: border-color 0.25s;
      min-height: 220px;
    }
    .chooser-card:hover { border-color: var(--green); transform: none; background: transparent; }
    .chooser-icon { width: 52px; height: 52px; color: var(--green); }
    .chooser-title { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: -0.005em; color: var(--white); }
    .chooser-sub { font-size: 13px; color: var(--muted); font-weight: 500; }
    @media (max-width: 980px) { .fordelar-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 560px) { .fordelar-grid { grid-template-columns: 1fr; } }

    /* Min METOD */
    #metod { background: var(--dark); }
    .metod-header { text-align: center; margin-bottom: 64px; }
    .metod-header .section-title { }
    .metod-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
    .tjanster-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
    @media (max-width: 980px) { .tjanster-grid { grid-template-columns: 1fr; } }
    .metod-card { background: transparent; border: none; border-radius: 10px; overflow: hidden; padding-bottom: 30px; }
    .metod-img { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 10px; }
    .metod-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .metod-title { font-size: 19px; font-weight: 900; text-transform: uppercase; letter-spacing: -0.01em; margin: 26px 4px 12px; color: var(--white); }
    .metod-text { font-size: 15px; line-height: 1.8; color: var(--muted); margin: 0 4px; }
    .metod-summary { text-align: center; max-width: 720px; margin: 56px auto 0; font-size: 16px; line-height: 1.85; color: var(--white); font-weight: 500; }
    @media (max-width: 768px) { .metod-grid { grid-template-columns: 1fr; } }

    .book-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; margin: 0 auto; align-items: start; }
    .book-layout > * { min-width: 0; }
    .contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
    .contact-item { display: flex; align-items: center; gap: 16px; }
    .contact-icon { width: 44px; height: 44px; background: var(--dark-2); border: 1px solid var(--border); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
    .contact-label { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
    .contact-value { font-size: 15px; font-weight: 700; color: var(--white); text-decoration: none; }
    .contact-value:hover { color: #cccccc; }
    footer { background: var(--dark); border-top: 1px solid var(--border); padding: 64px 24px 32px; }
    .footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
    .footer-logo img { height: 48px; width: auto; }
    .breadcrumb-nav { font-size: 11px; color: var(--muted); margin-bottom: 14px; letter-spacing: 0.02em; }
    .breadcrumb-nav a { color: var(--muted); text-decoration: none; }
    .breadcrumb-nav a:hover { color: var(--white); }
    .breadcrumb-nav .sep { margin: 0 7px; opacity: 0.5; }
    .breadcrumb-nav [aria-current="page"] { color: var(--green); }
    .footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
    @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; } }
    @media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-areas-row { max-width: 1100px; margin: 0 auto 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); font-size: 12px; line-height: 2.1; color: var(--muted); }
    .footer-areas-row a { color: var(--muted); text-decoration: none; }
    .footer-areas-row a:hover { color: var(--white); text-decoration: underline; }
    .footer-areas-label { font-weight: 700; color: var(--white); margin-right: 4px; }
    .footer-col-title { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col a, .footer-col p { font-size: 13px; color: var(--muted); text-decoration: none; line-height: 1.6; }
    .footer-col a:hover { color: var(--white); }
    .footer-brand-text { font-size: 12.5px; color: var(--muted); line-height: 1.7; max-width: 280px; margin-top: 14px; }
    .footer-legal-links { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
    .footer-legal-links a { font-size: 11px; color: var(--muted); text-decoration: none; }
    .footer-legal-links a:hover { color: var(--white); }
    .footer-links { display: flex; gap: 28px; list-style: none; }
    .footer-links a { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); text-decoration: none; }
    .footer-links a:hover { color: var(--white); }
    .footer-copy { font-size: 11px; color: var(--muted); font-weight: 500; }

    /* COOKIE-BANNER */
    .cookie-banner {
      position: fixed; left: 0; right: 0; bottom: 46px; z-index: 500;
      background: rgba(13,13,13,0.98); border-top: 1px solid var(--border);
      -webkit-backdrop-filter: blur(10px) saturate(140%); backdrop-filter: blur(10px) saturate(140%);
      padding: 18px 24px; display: none;
    }
    .cookie-banner.show { display: block; }
    .cookie-banner-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
    .cookie-banner-text { font-size: 12.5px; color: var(--muted); line-height: 1.6; max-width: 640px; }
    .cookie-banner-text a { color: var(--green); text-decoration: underline; }
    .cookie-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
    .cookie-btn-accept {
      background: var(--green); color: var(--white); font-family: 'Montserrat', sans-serif;
      font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 12px 24px; border: none; border-radius: 4px; cursor: pointer; white-space: nowrap;
    }
    .cookie-btn-accept:hover { background: #16a34a; }
    .cookie-btn-necessary {
      background: transparent; color: var(--muted); font-family: 'Montserrat', sans-serif;
      font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 12px 20px; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; cursor: pointer; white-space: nowrap;
    }
    .cookie-btn-necessary:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }
    @media (max-width: 768px) { .cookie-banner { bottom: 118px; } }
    @media (max-width: 640px) { .cookie-banner-inner { flex-direction: column; align-items: flex-start; } .cookie-banner-actions { width: 100%; } .cookie-btn-accept, .cookie-btn-necessary { flex: 1; } }
    .faq-header { text-align: center; margin-bottom: 64px; }
    .faq-header .section-title { }
    .faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 780px; margin: 0 auto; }
    .faq-item {
      background: transparent; border: 1px solid var(--border); border-radius: 6px;
      overflow: hidden; transition: border-color 0.2s;
    }
    .faq-item.open { border-color: rgba(255,255,255,0.35); }
    .faq-question {
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
      padding: 26px 30px; cursor: pointer; user-select: none;
    }
    .faq-question h2 {
      font-size: 16px; font-weight: 700; color: var(--white); line-height: 1.5;
    }
    .faq-toggle {
      width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      position: relative; transition: transform 0.25s ease, border-color 0.2s, background 0.2s;
    }
    .faq-item.open .faq-toggle { background: transparent; border-color: var(--white); transform: rotate(135deg); }
    .faq-toggle::before, .faq-toggle::after {
      content: ''; position: absolute; background: var(--white); border-radius: 2px;
    }
    .faq-toggle::before { width: 11px; height: 1.5px; }
    .faq-toggle::after { width: 1.5px; height: 11px; }
    .faq-item.open .faq-toggle::after { opacity: 0; }
    .faq-answer-wrap { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
    .faq-answer { padding: 0 30px 28px; font-size: 15px; line-height: 1.8; color: var(--white); font-weight: 400; }
    .omraden-header { text-align: center; margin-bottom: 48px; }
    .omraden-header .section-sub { margin: 0 auto; }
    .omraden-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
    .omraden-col-title {
      font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--white); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
    }
    .omraden-list { display: flex; flex-direction: column; gap: 14px; }
    .omraden-item { display: flex; align-items: flex-start; gap: 12px; }
    .omraden-check {
      width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--green); color: var(--green);
      display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900;
      flex-shrink: 0; margin-top: 1px;
    }
    .omraden-item span { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.5; padding-top: 2px; }
    @media (max-width: 768px) { .omraden-grid { grid-template-columns: 1fr; gap: 32px; } }
    .om-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .om-photo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .om-photo {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      border: 1px solid var(--border);
      aspect-ratio: 3 / 4;
    }
    .om-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .om-text .section-sub { max-width: 100%; margin-bottom: 32px; color: var(--white); font-size: 16.5px; line-height: 1.85; }
    .om-text .section-sub + .section-sub { margin-bottom: 0; }
    .om-highlight {
      background: var(--dark-2);
      border-left: 3px solid var(--white);
      border-radius: 0 4px 4px 0;
      padding: 16px 20px;
      margin-top: 28px;
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.6;
    }
    .social-icon {
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .social-icon:hover { opacity: 0.7; }
    .footer-socials { display: flex; gap: 16px; align-items: center; }
    .footer-social-link {
      width: 36px; height: 36px;
      border: 1px solid var(--border);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .footer-social-link:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.06); }
    .mobile-cta-bar { display: none; }
    @media (max-width: 768px) {
      nav { top: 12px; width: calc(100% - 24px); padding: 8px 8px 8px 18px; gap: 12px; }
      .nav-toggle { display: flex; }
      body { padding-bottom: 118px; }
      .hero-actions { display: none; }
      .nav-dropdown-menu {
        position: static; opacity: 1; pointer-events: auto; transform: none;
        background: transparent; border: none; box-shadow: none; padding: 0;
        margin-top: 0; display: flex; flex-direction: column; gap: 0;
        max-height: 0; overflow: hidden;
        transition: max-height 0.3s ease;
      }
      .nav-dropdown.open .nav-dropdown-menu { max-height: 200px; padding: 4px 0 10px; }
      .nav-dropdown-menu a { font-size: 11px; color: var(--white); text-align: left; padding: 8px 0 8px 14px; letter-spacing: 0.08em; }
      .nav-dropdown-menu a:hover, .nav-dropdown-menu a:active { color: var(--green) !important; }
      .nav-links > li.nav-dropdown > a {
        position: relative;
        padding-right: 26px;
      }
      .nav-links > li.nav-dropdown > a::after {
        content: '';
        position: absolute;
        right: 4px; top: 50%;
        width: 8px; height: 8px;
        border-right: 2px solid rgba(255,255,255,0.5);
        border-bottom: 2px solid rgba(255,255,255,0.5);
        transform: translateY(-70%) rotate(45deg);
        transition: transform 0.25s ease;
      }
      .nav-dropdown.open > a::after {
        transform: translateY(-30%) rotate(-135deg);
      }
      /* Split-läge: länken navigerar, en egen pil fäller ut undermenyn */
      .nav-dropdown-split { display: flex; align-items: center; flex-wrap: wrap; }
      .nav-dropdown-split > a {
        padding-right: 0;
        flex: 1;
      }
      .nav-dropdown-split .nav-dropdown-menu { flex-basis: 100%; }
      .nav-dropdown-split > a::after { display: none !important; }
      .nav-dropdown-caret {
        background: none; border: none; padding: 0;
        width: 44px; height: 44px; flex-shrink: 0;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
      }
      .nav-dropdown-caret::after {
        content: '';
        width: 8px; height: 8px;
        border-right: 2px solid rgba(255,255,255,0.5);
        border-bottom: 2px solid rgba(255,255,255,0.5);
        transform: rotate(45deg);
        transition: transform 0.25s ease;
      }
      .nav-dropdown.open .nav-dropdown-caret::after {
        transform: rotate(-135deg);
      }
      .nav-dropdown:hover .nav-dropdown-menu,
      .nav-dropdown-menu:hover,
      .nav-dropdown:focus-within .nav-dropdown-menu {
        transform: none !important;
        opacity: 1 !important;
      }
      .mobile-cta-bar {
        display: flex;
        position: fixed;
        left: 0; right: 0; bottom: 46px; z-index: 145;
        gap: 10px;
        padding: 10px 14px;
        background: rgba(10,10,10,0.94);
        -webkit-backdrop-filter: blur(8px) saturate(140%);
        backdrop-filter: blur(8px) saturate(140%);
        border-top: 1px solid var(--border);
      }
      .mobile-cta-bar a {
        flex: 1;
        display: flex; align-items: center; justify-content: center; gap: 7px;
        padding: 13px 0;
        border-radius: 8px;
        font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
        text-decoration: none;
      }
      .mobile-cta-ring { background: var(--green); color: var(--white); border: none; }
      .mobile-cta-ring:active { background: #16a34a; }
      .mobile-cta-book { background: var(--green); color: var(--white); }
      .mobile-cta-book:active { background: #16a34a; }
      .book-layout { grid-template-columns: 1fr; gap: 40px; }
      .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 4px;
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        max-height: none;
        width: min(78vw, 300px);
        margin: 0;
        padding: 110px 28px 40px;
        background: var(--dark, #0a0a0a);
        border-left: 1px solid rgba(255,255,255,0.08);
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        -webkit-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        z-index: 150;
        pointer-events: none;
        overflow-y: auto;
      }
      .nav-links.open {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        pointer-events: auto;
      }
      .nav-links a { font-size: 14px; }
      .nav-links a:hover, .nav-links a:active { color: var(--green); }
      .nav-links > li {
        list-style: none;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.06);
      }
      .nav-links > li > a { display: block; padding: 16px 0; }
      .nav-links > li:has(> .nav-cta) { border-bottom: none; margin-top: 12px; }
      .nav-links > li > .nav-cta { display: inline-block; text-align: center; }
      .nav-overlay {
        display: block;
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.55);
        z-index: 140;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
      }
      .nav-overlay.open { opacity: 1; pointer-events: auto; }
      body.nav-open { overflow: hidden; }
      #hero { padding: 90px 20px 60px; }
      section { padding: 72px 20px; }
      .om-layout { grid-template-columns: 1fr; gap: 40px; }
      .nav-logo img { height: 52px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .footer-links { flex-wrap: wrap; gap: 16px; }
    }
  