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

  /* LOKALA FONTER (GDPR — undviker Google Fonts CDN) */
  @font-face {
    font-family: 'Bebas Neue';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Bebas-Neue-Regular.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/Barlow-Light.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/Barlow-Regular.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/Barlow-Medium.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/Barlow-SemiBold.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/BarlowCondensed-Regular.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/BarlowCondensed-SemiBold.woff2') format('woff2');
    font-display: swap;
  }
  @font-face {
    font-family: 'Barlow Condensed';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/BarlowCondensed-Bold.woff2') format('woff2');
    font-display: swap;
  }

  :root {
    --dark: #080808;
    --dark-2: #101010;
    --dark-3: #161616;
    --dark-4: #1E1E1E;
    --text: #F0EEEA;
    --text-muted: #767672;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--dark); color: var(--text); font-family: 'Barlow', sans-serif; font-weight: 300; line-height: 1.6; overflow-x: hidden; }

  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2.5rem; height: 72px;
    background: rgba(8,8,8,0.95); backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-logo { display: flex; align-items: center; text-decoration: none; }
  .nav-logo svg { height: 50px; width: auto; display: block; transition: opacity 0.2s; }
  .nav-logo:hover svg { opacity: 0.85; }
  .nav-logo svg path, .nav-logo svg rect, .nav-logo svg polygon { fill: #ffffff; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { text-decoration: none; color: var(--text-muted); font-size: 11px; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 2.5px; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: #fff; }
  .nav-cta { border: 1px solid rgba(255,255,255,0.35) !important; color: #fff !important; padding: 7px 20px; }
  .nav-cta:hover { background: rgba(255,255,255,0.1) !important; }

  .hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; }
  .hero-img {
    position: absolute; inset: 0; z-index: 0;
    background-color: #080808;
    background-size: cover; background-position: center 60%;
  }
  .hero-img::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(20, 30, 50, 0.5);  /* ← justera värdet 0.0–1.0 för mörkare/ljusare */
    z-index: 1;
  }
  .hero-img::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.6) 50%, rgba(8,8,8,0.2) 100%);
  }
  .hero-content { position: relative; z-index: 1; padding: 0 2.5rem 5rem; max-width: 1500px ; }
  .hero-badge { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 1.5rem; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); padding: 6px 16px; }
  .hero-badge::before { content: ''; display: inline-block; width: 5px; height: 5px; background: #fff; border-radius: 50%; }
  .hero-kicker { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(15px, 1.5vw, 19px); font-weight: 400; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.78); line-height: 1.6; margin: 0 0 0.5rem 0; max-width: 1000px; }
  .hero-kicker strong { color: #fff; font-weight: 600; }
  .hero-kicker .since { display: inline-block; margin-top: 0.4rem; font-size: 0.85em; letter-spacing: 4px; color: rgba(255,255,255,0.45); }
  h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(72px, 11vw, 140px); line-height: 0.88; letter-spacing: 2px; color: #fff; margin-bottom: 1.25rem; }
  .hero-desc { font-size: 16px; color: rgba(255,255,255,0.55); max-width: 800px; margin-bottom: 2.5rem; line-height: 1.8; font-weight: 300; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary { background: #fff; color: #080808; padding: 14px 32px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; display: inline-block; transition: opacity 0.2s; }
  .btn-primary:hover { opacity: 0.88; }
  .btn-outline { border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 14px 32px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; text-decoration: none; display: inline-block; background: transparent; transition: background 0.2s; }
  .btn-outline:hover { background: rgba(255,255,255,0.08); }

  section { padding: 6rem 2.5rem; }
  .section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
  h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 4vw, 50px); line-height: 1; letter-spacing: 10px; color: #fff; margin-bottom: 1.5rem; }

  .brands-section { background: var(--dark-2); padding: 0; }
  .brands-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .brand-card { position: relative; overflow: hidden; min-height: 440px; display: flex; align-items: flex-end; }
  .brand-card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
  .brand-card:hover .bg { transform: scale(1.04); }
  .brand-card .overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.2) 60%, transparent 100%); }
  .brand-card-audi .bg { background-image: url('https://images.unsplash.com/photo-1606664515524-ed2f786a0bd6?w=900&q=80'); }
  .brand-card-porsche .bg { background-image: url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=900&q=80'); }
  .brand-inner { position: relative; z-index: 1; padding: 2.5rem; }
  .brand-name-big { font-family: 'Bebas Neue', sans-serif; font-size: 64px; letter-spacing: 4px; color: #fff; line-height: 1; margin-bottom: 0.5rem; }
  .brand-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 320px; }
  .brand-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-top: 1rem; }

  .services-section { background: var(--dark); }
  .services-intro { max-width: 1200px; margin: 0 auto 3rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.05); max-width: 1200px; margin: 0 auto; }
  .service-item { background: var(--dark); padding: 2.5rem 2rem; border-top: 1px solid rgba(255,255,255,0.06); transition: background 0.2s; }
  .service-item:hover { background: var(--dark-3); }
  .service-num { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 2px; color: rgba(255,255,255,0.2); margin-bottom: 1rem; }
  .service-title { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin-bottom: 0.75rem; }
  .service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

  .img-break { padding: 0; position: relative; height: 420px; overflow: hidden; }
  .img-break img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; filter: brightness(0.65) contrast(1.05); }
  .img-break-text { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; text-align: center; }
  .img-break-big { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 6vw, 80px); letter-spacing: 6px; color: #fff; line-height: 1.1; }
  .img-break-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.45); }

  .about-section { background: var(--dark-2); }
  .about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; max-width: 1200px; margin: 0 auto; align-items: start; }
  .about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.25rem; }
  .about-text p:last-child { margin-bottom: 0; }
  .about-text strong { color: var(--text); font-weight: 500; }
  .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.05); margin-top: 2rem; }
  .about-stat { background: var(--dark-2); padding: 1.5rem; }
  .about-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 38px; color: #fff; line-height: 1; margin-bottom: 0.25rem; }
  .about-stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }

  .review-section { background: var(--dark-2); }
  .review-top { display: flex; align-items: flex-end; justify-content: space-between; max-width: 1200px; margin: 0 auto 3rem; flex-wrap: wrap; gap: 1rem; }
  .review-sources { display: flex; gap: 2rem; align-items: center; }
  .source-badge { display: flex; align-items: center; gap: 8px; font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
  .source-dot { width: 8px; height: 8px; border-radius: 50%; }
  .dot-google { background: #4285F4; }
  .dot-facebook { background: #1877F2; }
  .reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.05); max-width: 1200px; margin: 0 auto; }
  .review-card { background: var(--dark-2); padding: 2rem; }
  .review-source-tag { display: inline-flex; align-items: center; gap: 6px; font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 1rem; }
  .review-source-tag .dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
  .review-stars { color: #fff; margin-bottom: 0.75rem; font-size: 12px; letter-spacing: 3px; }
  .review-text { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 1.25rem; font-style: italic; }
  .review-author { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.45); }

  .social-section { background: var(--dark-3); }
  .social-header { display: flex; align-items: flex-end; justify-content: space-between; max-width: 1200px; margin: 0 auto 3rem; }
  .social-link { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2px; transition: color 0.2s; }
  .social-link:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
  .fb-wrapper { max-width: 1200px; margin: 0 auto; background: var(--dark-2); border: 1px solid rgba(255,255,255,0.07); padding: 2rem; display: flex; justify-content: center; min-height: 500px; align-items: flex-start; }

  .info-section { background: var(--dark); }
  .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1200px; margin: 0 auto; align-items: start; }
  .info-left { display: flex; flex-direction: column; gap: 0; }
  .info-block { margin-bottom: 2rem; }
  .info-title { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 0.6rem; }
  .info-val { font-size: 15px; color: var(--text); line-height: 1.9; }
  .info-val a { color: var(--text); text-decoration: none; transition: color 0.2s; }
  .info-val a:hover { color: #fff; }
  .hours-row { display: flex; gap: 2rem; font-size: 14px; color: var(--text-muted); margin-bottom: 4px; }
  .hours-row .day { min-width: 90px; }
  .hours-row .time { color: var(--text); }

  .map-block { margin-bottom: 2rem; }
  .map-container { position: relative; width: 100%; height: 200px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); display: block; text-decoration: none; cursor: pointer; }
  .map-container:hover .map-overlay { opacity: 1; }
  .map-container iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(100%) brightness(0.45) contrast(1.2) invert(0); pointer-events: none; }
  .map-overlay { position: absolute; inset: 0; background: rgba(8,8,8,0.45); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.25s; }
  .map-overlay-label { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,0.4); padding: 8px 20px; background: rgba(8,8,8,0.6); }
  .map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); pointer-events: none; z-index: 2; }
  .map-pin-dot { width: 14px; height: 14px; background: #fff; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); box-shadow: 0 0 0 4px rgba(255,255,255,0.12), 0 2px 8px rgba(0,0,0,0.6); margin: 0 auto; }
  .map-pin-line { width: 2px; height: 12px; background: #fff; margin: 0 auto; opacity: 0.6; }

  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.3); }
  .form-group input, .form-group select, .form-group textarea { background: var(--dark-3); border: 1px solid rgba(255,255,255,0.1); color: var(--text); font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 300; padding: 12px 16px; outline: none; transition: border-color 0.2s; width: 100%; appearance: none; }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(255,255,255,0.4); }
  .form-group textarea { min-height: 120px; resize: vertical; }
  .form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.3)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
  .form-group select option { background: #161616; }
  .form-submit { margin-top: 0.5rem; background: #fff; color: #080808; border: none; padding: 16px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; align-self: flex-start; transition: opacity 0.2s; }
  .form-submit:hover { opacity: 0.85; }
  .form-success { display: none; padding: 1rem 1.5rem; border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.04); font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 1px; color: rgba(255,255,255,0.7); }
  .form-error { display: none; padding: 1rem 1.5rem; border: 1px solid rgba(220,80,80,0.35); background: rgba(220,80,80,0.08); font-family: 'Barlow Condensed', sans-serif; font-size: 14px; letter-spacing: 0.5px; color: rgba(255,180,180,0.9); margin-top: 0.5rem; line-height: 1.5; }
  .form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }

  footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.07); padding: 3rem 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
  .footer-logo svg { height: 28px; width: auto; display: block; }
  .footer-logo svg path, .footer-logo svg rect, .footer-logo svg polygon { fill: #ffffff; }
  .footer-copy { font-size: 12px; color: var(--text-muted); }
  .footer-links { display: flex; gap: 2rem; list-style: none; }
  .footer-links a { font-size: 11px; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: #fff; }


  /* COOKIE-BANNER (GDPR) */
  .cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 1.5rem 2rem;
    opacity: 0; transform: translateY(100%);
    transition: opacity 0.25s, transform 0.3s;
  }
  .cookie-banner.visible { opacity: 1; transform: translateY(0); }
  .cookie-banner[hidden] { display: none !important; }
  .cookie-banner-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
  }
  .cookie-banner-text { flex: 1 1 60%; min-width: 280px; }
  .cookie-banner-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #fff; margin-bottom: 0.5rem;
  }
  .cookie-banner-text p {
    font-size: 13px; color: rgba(255,255,255,0.65);
    line-height: 1.6; max-width: 720px;
  }
  .cookie-banner-text a {
    color: #fff; text-decoration: underline;
    text-underline-offset: 3px; text-decoration-thickness: 1px;
  }
  .cookie-banner-text a:hover { color: rgba(255,255,255,0.75); }
  .cookie-banner-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
  .cookie-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 12px 22px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent; color: #fff;
    cursor: pointer; transition: background 0.2s, opacity 0.2s;
  }
  .cookie-btn:hover { background: rgba(255,255,255,0.08); }
  .cookie-btn-accept {
    background: #fff; color: #080808; border-color: #fff;
  }
  .cookie-btn-accept:hover { background: rgba(255,255,255,0.88); opacity: 1; }

  /* INTEGRITETSPOLICY MODAL */
  .policy-modal {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 300; display: flex; align-items: center; justify-content: center;
    padding: 1rem;
  }
  .policy-modal[hidden] { display: none !important; }
  .policy-modal-overlay {
    position: absolute; inset: 0; background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
  }
  .policy-modal-content {
    position: relative; z-index: 1;
    background: #0d0d0d; border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 100%; max-width: 700px;
    max-height: 85vh;
    display: flex; flex-direction: column;
  }
  .policy-modal-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px; letter-spacing: 2px;
    margin: 0; padding: 2rem 2rem 0 2rem;
    color: #fff;
  }
  .policy-modal-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; letter-spacing: 1px;
    text-transform: uppercase;
    margin: 2rem 0 1rem 0; color: rgba(255, 255, 255, 0.9);
  }
  .policy-modal-scroll {
    flex: 1; overflow-y: auto;
    padding: 0 2rem 2rem 2rem;
    font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, 0.75);
  }
  .policy-modal-scroll p { margin: 0 0 1rem 0; }
  .policy-modal-scroll ul { margin: 0 0 1.5rem 1.5rem; padding: 0; }
  .policy-modal-scroll li { margin-bottom: 0.5rem; }
  .policy-modal-scroll strong { color: #fff; }
  .policy-modal-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: transparent; border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px; cursor: pointer;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s; z-index: 2;
  }
  .policy-modal-close:hover { color: #fff; }


  /* COOKIE-BANNER (GDPR) */
  .cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 1.5rem 2rem;
    opacity: 0; transform: translateY(100%);
    transition: opacity 0.25s, transform 0.3s;
  }
  .cookie-banner.visible { opacity: 1; transform: translateY(0); }
  .cookie-banner[hidden] { display: none !important; }
  .cookie-banner-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
  }
  .cookie-banner-text { flex: 1 1 60%; min-width: 280px; }
  .cookie-banner-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #fff; margin-bottom: 0.5rem;
  }
  .cookie-banner-text p {
    font-size: 13px; color: rgba(255,255,255,0.65);
    line-height: 1.6; max-width: 720px;
  }
  .cookie-banner-text a {
    color: #fff; text-decoration: underline;
    text-underline-offset: 3px; text-decoration-thickness: 1px;
    cursor: pointer;
  }
  .cookie-banner-text a:hover { color: rgba(255,255,255,0.75); }
  .cookie-banner-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
  .cookie-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 12px 22px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent; color: #fff;
    cursor: pointer; transition: background 0.2s, opacity 0.2s;
  }
  .cookie-btn:hover { background: rgba(255,255,255,0.08); }
  .cookie-btn-accept {
    background: #fff; color: #080808; border-color: #fff;
  }
  .cookie-btn-accept:hover { background: rgba(255,255,255,0.88); opacity: 1; }

  /* FORMULÄR-CONSENT (GDPR-kryssruta) */
  .form-consent { margin-top: 1.5rem; }
  .form-consent-label {
    display: flex; align-items: flex-start; gap: 12px;
    cursor: pointer; user-select: none;
  }
  .form-consent input[type="checkbox"] {
    position: absolute; opacity: 0; pointer-events: none;
  }
  .form-consent-box {
    flex-shrink: 0; width: 18px; height: 18px;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
    margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
  }
  .form-consent-label:hover .form-consent-box { border-color: rgba(255,255,255,0.6); }
  .form-consent input[type="checkbox"]:checked + .form-consent-box {
    background: #fff; border-color: #fff;
  }
  .form-consent input[type="checkbox"]:checked + .form-consent-box::after {
    content: ""; display: block;
    width: 5px; height: 9px;
    border: solid #080808; border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
  }
  .form-consent input[type="checkbox"]:focus-visible + .form-consent-box {
    outline: 2px solid rgba(255,255,255,0.4); outline-offset: 2px;
  }
  .form-consent-text {
    font-size: 13px; color: rgba(255,255,255,0.65);
    line-height: 1.55; font-weight: 300;
  }
  .form-consent-text a {
    color: #fff; text-decoration: underline;
    text-underline-offset: 2px; cursor: pointer;
  }
  .form-consent-text a:hover { color: rgba(255,255,255,0.75); }

  /* INTEGRITETSPOLICY IFRAME MODAL */
  .policy-modal {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 300; display: flex; align-items: center; justify-content: center;
    padding: 1rem;
  }
  .policy-modal[hidden] { display: none !important; }
  .policy-modal-overlay {
    position: absolute; inset: 0; background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
  }
  .policy-modal-content {
    position: relative; z-index: 1;
    background: #0d0d0d; border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 100%; max-width: 750px;
    height: 85vh;
  }
  .policy-modal-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: transparent; border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px; cursor: pointer;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s; z-index: 2;
  }
  .policy-modal-close:hover { color: #fff; }

  /* STATISK SVG-KARTA (ersätter Google Maps) */
  .map-svg {
    width: 100%;
    height: 100%;
    display: block;
  }


  /* COOKIE-BANNER (GDPR) */
  .cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 1.5rem 2rem;
    opacity: 0; transform: translateY(100%);
    transition: opacity 0.25s, transform 0.3s;
  }
  .cookie-banner.visible { opacity: 1; transform: translateY(0); }
  .cookie-banner[hidden] { display: none !important; }
  .cookie-banner-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
  }
  .cookie-banner-text { flex: 1 1 60%; min-width: 280px; }
  .cookie-banner-text h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: #fff; margin-bottom: 0.5rem;
  }
  .cookie-banner-text p {
    font-size: 13px; color: rgba(255,255,255,0.65);
    line-height: 1.6; max-width: 720px;
  }
  .cookie-banner-text a {
    color: #fff; text-decoration: underline;
    text-underline-offset: 3px; text-decoration-thickness: 1px;
    cursor: pointer;
  }
  .cookie-banner-text a:hover { color: rgba(255,255,255,0.75); }
  .cookie-banner-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }
  .cookie-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 12px 22px;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent; color: #fff;
    cursor: pointer; transition: background 0.2s, opacity 0.2s;
  }
  .cookie-btn:hover { background: rgba(255,255,255,0.08); }
  .cookie-btn-accept {
    background: #fff; color: #080808; border-color: #fff;
  }
  .cookie-btn-accept:hover { background: rgba(255,255,255,0.88); opacity: 1; }

  /* INTEGRITETSPOLICY IFRAME MODAL */
  .policy-modal {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    z-index: 300; display: flex; align-items: center; justify-content: center;
    padding: 1rem;
  }
  .policy-modal[hidden] { display: none !important; }
  .policy-modal-overlay {
    position: absolute; inset: 0; background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
  }
  .policy-modal-content {
    position: relative; z-index: 1;
    background: #0d0d0d; border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 100%; max-width: 750px;
    height: 85vh;
  }
  .policy-modal-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: transparent; border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 28px; cursor: pointer;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s; z-index: 2;
  }
  .policy-modal-close:hover { color: #fff; }

  @media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 768px) {
    nav { padding: 0 1.5rem; height: 64px; } .nav-links { display: none; }
    .nav-logo svg { height: 22px; }
    section { padding: 4rem 1.5rem; }
    .brands-grid, .info-grid, .about-grid { grid-template-columns: 1fr; }
    .services-grid, .reviews-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; align-items: flex-start; }
    .social-header, .review-top { flex-direction: column; align-items: flex-start; gap: 1rem; }
  }