/* =========================================================
   World Of Fireworks — stylesheet
   Brand: charcoal + orange (fra logo), gold & purple accenter
   ========================================================= */

:root {
  --bg:        #1f1f1f;
  --bg-2:      #262626;
  --surface:   #2e2e2e;
  --surface-2: #363636;
  --dark:      #171717;
  --line:      rgba(255, 255, 255, 0.10);
  --text:      #f2f0ec;
  --muted:     #b3aea7;
  --orange:    #e08a2c;
  --orange-2:  #d1791d;
  --gold:      #f0b44a;
  --purple:    #8a6fb0;
  --pink:      #ff7eb0;
  --teal:      #46c9d6;
  --violet:    #a98bff;
  --red:       #ff6b6b;
  --radius: 14px;
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.7;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
/* Varme, festlige glød-baggrunde bag hele siden */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(60vw 40vw at 8% 4%, rgba(224,138,44,0.12), transparent 60%),
    radial-gradient(55vw 40vw at 95% 22%, rgba(169,139,255,0.10), transparent 60%),
    radial-gradient(60vw 45vw at 50% 70%, rgba(255,126,176,0.08), transparent 62%),
    radial-gradient(55vw 45vw at 12% 96%, rgba(70,201,214,0.07), transparent 60%);
}
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.15; margin: 0 0 0.4em; }
a { color: inherit; text-decoration: none; }

.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 600; color: var(--orange); margin: 0 0 12px; }
.eyebrow.center { text-align: center; }
.accent { color: var(--orange); }

/* ---------- Logo / brand ---------- */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { display: block; height: 46px; width: auto; }
.brand-fallback { display: none; align-items: center; gap: 12px; }
.brand-word { font-family: 'Fredoka', sans-serif; font-weight: 600; font-size: 1.35rem; color: var(--orange); white-space: nowrap; }
.site-footer .brand-logo { height: 42px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--orange); color: #241200; font-size: 0.85rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; min-height: 38px; flex-wrap: wrap; gap: 6px 20px; padding-block: 4px; }
.topbar a { color: #241200; font-weight: 500; }
.topbar a:hover { color: #fff; }
.topbar-contact { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-social { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* ---------- Social icon links (delt) ---------- */
.social-icon { display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: color .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); }
.social-icon svg { display: block; width: 55%; height: 55%; fill: currentColor; }
.topbar-social .social-icon { width: 28px; height: 28px; color: #241200; }
.topbar-social .social-icon:hover { background: rgba(0, 0, 0, 0.14); color: #fff; transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(23,23,23,0.82); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); transition: background 0.3s; }
.site-header.scrolled { background: rgba(23,23,23,0.96); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { font-size: 0.92rem; color: var(--muted); font-weight: 500; transition: color 0.2s; }
.nav-menu a:hover { color: var(--text); }
.nav-cta { padding: 9px 18px; border-radius: 6px; background: var(--orange); color: #241200 !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold); }

/* ---------- Mega-menu (Festfyrværkeri) ---------- */
.has-mega { position: relative; }
.mega-parent { display: inline-flex; align-items: center; gap: 7px; }
.mega-parent .caret { width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg); transition: transform 0.25s var(--ease); margin-top: -3px; }
.has-mega:hover .mega-parent .caret, .has-mega:focus-within .mega-parent .caret { transform: rotate(-135deg); margin-top: 2px; }
.mega { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(14px); width: min(660px, 92vw); background: var(--surface); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55); padding: 14px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease); z-index: 90; }
.mega::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(8px); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mega-item { display: flex; gap: 13px; align-items: center; padding: 12px 14px; border-radius: 13px; transition: background 0.18s var(--ease); }
.mega-item:hover { background: rgba(255, 255, 255, 0.06); }
.mega-ic { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 1.35rem; background: color-mix(in srgb, var(--accent) 20%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 42%, transparent); }
.mega-item strong { display: block; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.98rem; color: var(--text); line-height: 1.25; }
.mega-item em { font-style: normal; font-size: 0.82rem; color: var(--muted); }
.mega-item:hover strong { color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 26px; border-radius: 6px; font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 1px solid transparent; transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, color 0.2s; }
.btn-primary { background: var(--orange); color: #241200; box-shadow: 0 6px 20px rgba(224,138,44,0.25); }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-glass { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.55); color: #fff; backdrop-filter: blur(6px); }
.btn-glass:hover { background: rgba(255,255,255,0.2); }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 34px; font-size: 1.03rem; }
.btn-block { width: 100%; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; min-height: 92vh; display: flex; align-items: center; text-align: center; color: #fff; }
.hero-bg { position: absolute; inset: -3%; z-index: 0; background: #171717 url("../images/hero.jpg") center/cover no-repeat; animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12); } }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(23,20,18,0.50) 0%, rgba(23,20,18,0.55) 40%, rgba(23,20,18,0.85) 100%); }
.fx-canvas { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; pointer-events: none; }
.hero-inner { position: relative; z-index: 3; padding-block: 60px; }
.hero-eyebrow { color: var(--gold); }
.hero h1 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 6vw, 4.6rem); color: #fff; margin-bottom: 20px; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.rot-word { display: block; color: var(--orange); transition: opacity 0.26s ease; min-height: 1.15em; white-space: nowrap; }
.hero-lead { font-size: clamp(1.02rem, 2vw, 1.22rem); color: rgba(255,255,255,0.9); max-width: 640px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats { list-style: none; margin: 0; padding: 26px 0 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 48px; border-top: 1px solid rgba(255,255,255,0.18); max-width: 620px; margin-inline: auto; }
.hero-stats strong { display: block; font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); }
.hero-stats span { font-size: 0.85rem; color: rgba(255,255,255,0.75); }
.scroll-hint { position: absolute; z-index: 3; left: 50%; bottom: 24px; transform: translateX(-50%); color: rgba(255,255,255,0.8); font-size: 1.5rem; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,8px);} }

/* ---------- Recruitment banner ---------- */
.recruit { background: var(--orange); color: #241200; }
.recruit-inner { display: flex; align-items: center; justify-content: center; gap: 22px; padding: 15px 24px; flex-wrap: wrap; }
.recruit span { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; }
.recruit .btn-primary { background: #241200; color: var(--gold); box-shadow: none; }
.recruit .btn-primary:hover { background: #000; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-alt { background: var(--bg-2); }
.section-head { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
.section-head h2::after { content: ""; display: block; width: 64px; height: 3px; background: var(--orange); border-radius: 3px; margin: 18px auto 0; }
.section-sub { color: var(--muted); font-size: 1.02rem; margin: 16px 0 0; }
.section-sub a { color: var(--orange); border-bottom: 1px solid var(--line); }

/* ---------- Intro ---------- */
.intro { padding-block: clamp(50px, 7vw, 84px); }
.intro-lead { max-width: 900px; margin: 0 auto; text-align: center; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: clamp(1.25rem, 2.6vw, 1.9rem); line-height: 1.45; }

/* ---------- Occasions (farverige glødkort) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.occ { position: relative; border-radius: 18px; padding: 34px 28px 30px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s; }
.occ::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent); opacity: 0.9; }
.occ::after { content: ""; position: absolute; top: -60px; right: -60px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, var(--accent), transparent 70%); opacity: 0.16; transition: opacity 0.35s; }
.occ:hover { transform: translateY(-8px); border-color: color-mix(in srgb, var(--accent) 55%, transparent); box-shadow: 0 22px 46px rgba(0,0,0,0.38), 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent); }
.occ:hover::after { opacity: 0.3; }
.occ-ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 16px;
  background: color-mix(in srgb, var(--accent) 20%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 40%, transparent); }
.occ h3 { font-size: 1.4rem; color: var(--accent); }
.occ p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.occ-more { display: inline-block; margin-top: 14px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--accent); transition: transform 0.2s var(--ease); }
.occ:hover .occ-more { transform: translateX(4px); }
.cards-links .occ { text-align: left; }

/* ---------- Gallery ---------- */
.gallery { max-width: 1300px; margin: 8px auto 0; padding: 0 16px; display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.g-item { position: relative; padding: 0; border: 0; cursor: pointer; overflow: hidden; border-radius: 12px; background: var(--surface); }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.g-item:hover img { transform: scale(1.08); }
.g-item::after { content: "🔍"; position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.4rem; background: rgba(23,20,18,0.35); opacity: 0; transition: opacity 0.3s; }
.g-item:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-badge { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--orange); color: #241200; font-size: 0.72rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: 0 22px 50px rgba(0,0,0,0.4); }
.split-media img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; display: block; }
.split-reverse .split-media { order: 2; }
.split-copy h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
.split-copy > p { color: var(--muted); margin: 0 0 16px; }
.checklist { list-style: none; margin: 6px 0 26px; padding: 0; }
.checklist li { position: relative; padding: 9px 0 9px 34px; color: var(--text); font-size: 0.98rem; }
.checklist li::before { content: "✓"; position: absolute; left: 0; top: 8px; width: 22px; height: 22px; background: var(--orange); color: #241200; border-radius: 50%; display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; }
.mini-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.mini-features strong { display: block; color: var(--gold); font-family: 'Poppins', sans-serif; font-size: 0.98rem; }
.mini-features span { color: var(--muted); font-size: 0.85rem; }

/* ---------- Vi sørger for det hele (let liste på glødende band) ---------- */
.assure-band { position: relative; overflow: hidden; }
.assure-band::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(50vw 40vw at 20% 20%, rgba(224,138,44,0.14), transparent 60%), radial-gradient(50vw 40vw at 85% 90%, rgba(169,139,255,0.12), transparent 60%); }
.assure-band > .container { position: relative; z-index: 1; }
.assure-list { list-style: none; margin: 0 auto; padding: 0; max-width: 900px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 44px; }
.assure-list li { display: flex; gap: 15px; align-items: flex-start; padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
.assure-list div { color: var(--muted); }
.assure-list strong { color: var(--text); font-weight: 600; }
.check { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 0.85rem; font-weight: 700; color: #241200; background: linear-gradient(135deg, var(--gold), var(--orange)); box-shadow: 0 0 14px rgba(240,180,74,0.4); }
.center-cta { text-align: center; margin-top: 46px; }

/* ---------- YouTube references ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.video-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.32); }
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.video-embed.video-placeholder { display: grid; place-items: center; background: repeating-linear-gradient(45deg, #2a2a2a, #2a2a2a 12px, #262626 12px, #262626 24px); border: 2px dashed var(--line); text-align: center; padding: 20px; }
.video-embed.video-placeholder span { color: var(--muted); font-size: 0.9rem; }
.video-embed.video-placeholder code { background: rgba(224,138,44,0.16); color: var(--gold); padding: 2px 6px; border-radius: 4px; font-size: 0.85em; }
.video-card h3 { font-size: 1.12rem; margin: 0; padding: 18px 20px 4px; }
.video-card p { color: var(--muted); font-size: 0.9rem; margin: 0; padding: 0 20px 20px; }
.page-hero { padding: clamp(70px, 12vh, 120px) 0 clamp(40px, 6vh, 60px); text-align: center; background: linear-gradient(180deg, var(--dark), var(--bg)); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--muted); max-width: 640px; margin: 12px auto 0; }
/* Underside-hero med levende fyrværkeri i baggrunden */
.page-hero--fx { position: relative; overflow: hidden; min-height: 54vh; display: grid; place-items: center; background: linear-gradient(180deg, rgba(23,20,18,0.66) 0%, rgba(23,20,18,0.80) 60%, rgba(23,20,18,0.92) 100%), url("../images/yiran-yang-9mjJc2glpns-unsplash.jpg") center/cover no-repeat; background-color: var(--dark); }
.page-hero--fx .fx-canvas { z-index: 1; }
.page-hero--fx .container { position: relative; z-index: 2; }

/* ---------- Testimonial ---------- */
.testimonial { text-align: center; position: relative; color: #fff;
  background: linear-gradient(180deg, rgba(20,17,14,0.80), rgba(20,17,14,0.88)), url("../images/fireworks-gold.jpg") center/cover no-repeat; background-color: var(--dark); }
.testimonial-slider { position: relative; max-width: 900px; margin: 10px auto 0; }
.testimonial-viewport { overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s var(--ease); }
.testimonial-slide { flex: 0 0 100%; margin: 0; padding: 0 10px; display: flex; flex-direction: column; align-items: center; }
.testimonial-stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 4px; margin-bottom: 14px; }
.testimonial-quote { max-width: 780px; margin: 0 auto 18px; padding: 0; font-family: 'Poppins', sans-serif; font-size: clamp(1.2rem, 2.6vw, 1.85rem); line-height: 1.5; font-weight: 500; }
.testimonial-author { color: var(--gold); font-weight: 600; margin: 0; }

.testimonial-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line); color: #fff; cursor: pointer; transition: background 0.2s var(--ease), border-color 0.2s var(--ease); }
.testimonial-arrow svg { width: 26px; height: 26px; fill: currentColor; }
.testimonial-arrow:hover { background: var(--orange); border-color: var(--orange); }
.testimonial-arrow.prev { left: -6px; }
.testimonial-arrow.next { right: -6px; }

.testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.testimonial-dots button { width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; background: rgba(255, 255, 255, 0.28); cursor: pointer; transition: background 0.2s var(--ease), transform 0.2s var(--ease); }
.testimonial-dots button:hover { background: rgba(255, 255, 255, 0.55); }
.testimonial-dots button.is-active { background: var(--orange); transform: scale(1.3); }

@media (max-width: 640px) {
  .testimonial-arrow { display: none; }
}

/* ---------- Team ---------- */
.team-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 30px; }
.team-photos figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 44px rgba(0,0,0,0.4); }
.team-photos img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform 0.5s var(--ease); }
.team-photos figure:hover img { transform: scale(1.05); }
.team-names { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.team-names span { background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 9px 20px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; }
.team-names em { color: var(--muted); font-style: normal; font-weight: 400; font-family: 'Inter', sans-serif; font-size: 0.85rem; }

/* ---------- Stores ---------- */
.stores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.store { border-radius: 18px; padding: 32px 28px; background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)); border: 1px solid rgba(255,255,255,0.08); transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s; }
.store:hover { transform: translateY(-6px); border-color: rgba(224,138,44,0.45); box-shadow: 0 20px 44px rgba(0,0,0,0.35); }
.store h3 { font-size: 1.4rem; color: var(--orange); }
.store-addr { font-weight: 600; margin: 0 0 6px; }
.store-meta { color: var(--muted); font-size: 0.94rem; margin: 0 0 4px; }
.store-meta a { color: var(--text); border-bottom: 1px solid var(--line); }
.store-cta { display: flex; flex-direction: column; }
.store-cta p { color: var(--muted); }
.store-cta .btn { margin-top: auto; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; color: #fff; }
.cta-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(120deg, rgba(209,121,29,0.94), rgba(224,138,44,0.86)), url("../images/fireworks-red.jpg") center/cover no-repeat; }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; gap: 40px; padding: clamp(48px, 7vw, 82px) 24px; flex-wrap: wrap; }
.cta-inner > div { flex: 1 1 440px; }
.cta h2 { font-size: clamp(1.8rem, 3.8vw, 2.8rem); color: #fff; }
.cta h2 .accent { color: #241200; }
.cta p { margin: 0; color: rgba(255,255,255,0.92); font-size: 1.04rem; }
.cta .btn-primary { background: #241200; color: var(--gold); box-shadow: none; }
.cta .btn-primary:hover { background: #000; transform: translateY(-2px); }

/* ---------- Contact ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact-copy h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.contact-list { list-style: none; padding: 0; margin: 26px 0; }
.contact-list li { display: flex; flex-direction: column; margin-bottom: 16px; }
.contact-label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; color: var(--muted); margin-bottom: 3px; }
.contact-list a { font-size: 1.2rem; font-weight: 600; color: var(--orange); }
.contact-list a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; flex-wrap: wrap; }
.socials .social-icon,
.footer-cols .social-list .social-icon { width: 42px; height: 42px; color: var(--muted); background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line); }
.socials .social-icon:hover,
.footer-cols .social-list .social-icon:hover { color: #fff; background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }

.footer-cols .social-list { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; margin: 0; padding: 0; }
.footer-cols .social-list li { margin: 0; }
.contact-form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; background: var(--dark); border: 1px solid var(--line); border-radius: 8px; color: var(--text); font-family: inherit; font-size: 0.95rem; resize: vertical; transition: border-color 0.2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); }
.field select { appearance: none; }
.form-note { text-align: center; color: var(--muted); font-size: 0.82rem; margin: 14px 0 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); border-top: 3px solid var(--orange); padding-top: 56px; }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 40px; padding-bottom: 38px; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li { color: var(--muted); font-size: 0.92rem; margin-bottom: 8px; }
.footer-contact a:hover { color: var(--orange); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 { font-family: 'Poppins', sans-serif; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.76rem; color: var(--orange); margin-bottom: 14px; }
.footer-cols ul { list-style: none; margin: 0; padding: 0; }
.footer-cols li { margin-bottom: 9px; }
.footer-cols a { color: var(--muted); font-size: 0.92rem; }
.footer-cols a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--line); padding: 20px 24px; text-align: center; }
.footer-bottom p { color: var(--muted); font-size: 0.85rem; margin: 0; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; background: rgba(10,9,8,0.92); padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-close { position: absolute; top: 22px; right: 26px; background: none; border: 0; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 2px; background: rgba(23,23,23,0.98); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); padding: 16px 24px 24px; transform: translateY(-160%); transition: transform 0.35s var(--ease); }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 12px 0; font-size: 1rem; }
  .nav-cta { display: inline-block; margin-top: 8px; }
  /* Mega-menu bliver en accordion på mobil */
  .has-mega { width: 100%; }
  .mega { position: static; transform: none; opacity: 1; visibility: hidden; pointer-events: auto; width: 100%; padding: 0 0 8px 6px; background: transparent; border: 0; box-shadow: none; display: none; }
  .has-mega.open .mega { display: block; visibility: visible; }
  .has-mega.open .mega-parent .caret { transform: rotate(-135deg); }
  .mega-grid { grid-template-columns: 1fr; gap: 2px; }
  .mega-item { padding: 9px 6px; }
  .mega-ic { width: 36px; height: 36px; font-size: 1.15rem; }
  .cards, .stores, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-inner, .footer-inner, .team-photos { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .mini-features { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 560px) {
  .cards, .stores, .footer-cols, .video-grid, .assure-list { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { gap: 28px; }
  .topbar-inner { justify-content: center; text-align: center; }
  .team-photos img { height: 260px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-bg { animation: none; }
}

/* ---------- Cookie-samtykke ---------- */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; background: rgba(23, 23, 23, 0.97); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5); backdrop-filter: blur(10px); }
.cookie-banner[hidden] { display: none; }
.cookie-inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px 28px; flex-wrap: wrap; }
.cookie-text { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.6; max-width: 720px; }
.cookie-text a { color: var(--orange); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn { padding: 11px 24px; }
@media (max-width: 560px) {
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ---------- Legal / politik-sider ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { font-family: 'Poppins', sans-serif; font-size: clamp(1.4rem, 3vw, 1.8rem); margin: 40px 0 12px; }
.legal h3 { font-family: 'Poppins', sans-serif; font-size: 1.15rem; color: var(--gold); margin: 26px 0 8px; }
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--muted); margin: 0 0 14px; }
.legal a { color: var(--orange); }
.legal a:hover { color: var(--gold); }
.legal ul { color: var(--muted); margin: 0 0 14px; padding-left: 20px; }
.legal li { margin-bottom: 6px; }
.legal .legal-updated { font-size: 0.9rem; color: var(--muted); margin-bottom: 30px; }
.legal .contact-box { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-top: 10px; }
.legal .contact-box p { margin: 4px 0; color: var(--text); }

.table-wrap { overflow-x: auto; margin: 8px 0 20px; border: 1px solid var(--line); border-radius: var(--radius); }
.legal table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 0.92rem; }
.legal th, .legal td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--line); }
.legal th { background: var(--surface); color: var(--text); font-family: 'Poppins', sans-serif; font-weight: 600; }
.legal td { color: var(--muted); }
.legal tr:last-child td { border-bottom: none; }

.btn-reset { background: transparent; border: 1px solid var(--line); color: var(--text); border-radius: 999px; padding: 10px 20px; font: inherit; font-weight: 600; cursor: pointer; transition: border-color 0.2s var(--ease), color 0.2s var(--ease); }
.btn-reset:hover { border-color: var(--orange); color: var(--orange); }

/* ---------- FAQ (ofte stillede spørgsmål) ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--orange); line-height: 1; flex-shrink: 0; transition: transform 0.25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--orange); }
.faq-item .faq-a { padding: 0 22px 18px; }
.faq-item .faq-a p { margin: 0; color: var(--muted); }

/* ---------- Tillids-strip ---------- */
.trust-strip { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 38px; padding: 18px 24px; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--text); }
.trust-item .tick { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: color-mix(in srgb, var(--orange) 22%, transparent); color: var(--orange); font-size: 0.78rem; flex-shrink: 0; }
@media (max-width: 560px) { .trust-inner { gap: 10px 22px; } .trust-item { font-size: 0.85rem; } }

/* ---------- Proces-trin (Sådan foregår det) ---------- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px 24px; }
.step-num { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--orange); color: #241200; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.15rem; margin-bottom: 15px; }
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .steps { grid-template-columns: 1fr; } }

/* ---------- Kundelogoer ("De har brugt os") ---------- */
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; }
.logo-chip { background: #fff; border-radius: 12px; padding: 16px 24px; height: 84px; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22); transition: transform 0.2s var(--ease); }
.logo-chip:hover { transform: translateY(-3px); }
.logo-chip img { max-height: 52px; max-width: 168px; width: auto; height: auto; object-fit: contain; display: block; }
.logo-chip--dark { background: #22201d; border: 1px solid var(--line); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3); }
@media (max-width: 560px) { .logo-chip { height: 70px; padding: 12px 16px; } .logo-chip img { max-height: 44px; max-width: 120px; } }
