:root{
  /* Palette derived from the FindBilplejere.dk logo — navy + gold only, no unrelated hues */
  --navy:#101828;
  --navy-light:#1C2740;
  --fog:#F2F1ED;
  --white:#FFFFFF;
  --gold:#B89048;
  --gold-dark:#96753A;
  --gold-light:#F1E9D8;
  --chrome:#8991A1;
  --chrome-line:#E1E0DC;
  --text-muted:#5B6472;
  --error:#C2635F;
  --radius:10px;
  --ease-out:cubic-bezier(0.23,1,0.32,1);
  --ease-in-out:cubic-bezier(0.77,0,0.175,1);
}
*{box-sizing:border-box; margin:0; padding:0;}
body{
  font-family:'Inter', sans-serif;
  color:var(--navy);
  background:var(--fog);
  line-height:1.5;
}
h1,h2,h3{
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.02em;
  color:var(--navy);
  text-wrap:balance;
}
.mono{font-family:'JetBrains Mono', monospace;}
a{color:inherit; text-decoration:none;}
.wrap{max-width:1080px; margin:0 auto; padding:0 24px;}

/* NAV */
nav{
  background:var(--navy);
  padding:18px 0;
}
nav .wrap{display:flex; align-items:center; justify-content:space-between;}
.logo{
  font-family:'Oswald', sans-serif;
  font-weight:700;
  font-size:20px;
  color:var(--white);
  letter-spacing:0.03em;
}
.logo-prefix{font-weight:400;}
.logo-suffix{color:var(--gold);}
.nav-links{display:flex; gap:28px; font-size:14px; color:var(--chrome);}
.nav-links a:hover{color:var(--white);}
.nav-cta{
  background:var(--gold);
  color:var(--navy);
  padding:9px 18px;
  border-radius:6px;
  font-weight:600;
  font-size:14px;
  display:inline-block;
  transition:transform 160ms var(--ease-out), background 160ms var(--ease-out);
}
.nav-cta:hover{background:var(--gold-dark); color:var(--white);}
.nav-cta:active{transform:scale(0.97);}

/* HERO */
header.hero{
  background:var(--navy);
  padding:64px 0 0;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:center;
  padding-bottom:56px;
}
.hero-eyebrow{
  color:var(--gold);
  font-family:'JetBrains Mono', monospace;
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom:14px;
}
.hero h1{
  color:var(--white);
  font-size:42px;
  line-height:1.12;
  margin-bottom:18px;
}
.hero h1 em{color:var(--gold); font-style:normal;}
.hero p{
  color:var(--chrome);
  font-size:16px;
  max-width:440px;
  margin-bottom:28px;
}
.hero-actions{display:flex; gap:14px;}
.btn-primary{
  background:var(--gold);
  color:var(--navy);
  padding:13px 24px;
  border-radius:6px;
  font-weight:600;
  font-size:15px;
  border:none;
  cursor:pointer;
  transition:transform 160ms var(--ease-out), background 160ms var(--ease-out);
}
.btn-primary:hover{background:var(--gold-dark); color:var(--white);}
.btn-primary:active{transform:scale(0.97);}
.btn-ghost{
  background:transparent;
  color:var(--white);
  padding:13px 24px;
  border-radius:6px;
  font-weight:600;
  font-size:15px;
  border:1px solid rgba(255,255,255,0.3);
  cursor:pointer;
  transition:transform 160ms var(--ease-out), background 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.btn-ghost:hover{background:rgba(255,255,255,0.08); border-color:rgba(255,255,255,0.5);}
.btn-ghost:active{transform:scale(0.97);}

/* HERO "HOW IT WORKS" STEPPER (signature element) */
.hiw-box{
  background:var(--navy-light);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:12px;
  padding:28px;
  width:100%;
  aspect-ratio:4/3;
  display:flex;
  flex-direction:column;
  position:relative;
}
.hiw-label{
  color:var(--gold);
  font-family:'JetBrains Mono', monospace;
  font-size:11px;
  letter-spacing:0.1em;
  text-transform:uppercase;
  margin-bottom:24px;
}
.hiw-stage{
  position:relative;
  flex:1;
}
.hiw-step{
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  opacity:0;
  transform:translateX(14px);
  transition:opacity 400ms var(--ease-in-out), transform 400ms var(--ease-in-out);
  pointer-events:none;
}
.hiw-step.is-active{
  opacity:1;
  transform:translateX(0);
  pointer-events:auto;
}
.hiw-icon{
  width:32px; height:32px;
  color:var(--gold);
  margin-bottom:18px;
  flex-shrink:0;
}
.hiw-step-num{
  font-family:'JetBrains Mono', monospace;
  color:var(--chrome);
  font-size:12px;
  margin-bottom:8px;
}
.hiw-step h3{
  color:var(--white);
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
  font-size:19px;
  letter-spacing:0.02em;
  margin-bottom:10px;
}
.hiw-step p{
  color:var(--chrome);
  font-size:14px;
  line-height:1.5;
  max-width:320px;
}
.hiw-dots{
  display:flex; gap:8px; margin-top:16px;
}
.hiw-dot{
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,0.2);
  border:none; padding:0; cursor:pointer;
  transition:background 200ms var(--ease-out), transform 200ms var(--ease-out);
}
.hiw-dot.is-active{background:var(--gold); transform:scale(1.3);}
.hiw-dot:hover{background:rgba(255,255,255,0.4);}
@media (prefers-reduced-motion: reduce){
  .hiw-step{transition:opacity 1ms linear;}
}

/* SEARCH */
section.search{
  background:var(--white);
  padding:44px 0;
  border-bottom:1px solid var(--chrome-line);
}
.search-box{
  display:flex; gap:12px; margin-bottom:28px; flex-wrap:wrap;
}
.search-box input, .search-box select{
  font-family:'Inter', sans-serif;
  font-size:15px;
  padding:13px 16px;
  border:1px solid var(--chrome-line);
  border-radius:6px;
  background:var(--fog);
}
.search-box input{flex:1; min-width:200px;}
.search-box select{min-width:180px;}
.search-box button{
  background:var(--navy);
  color:var(--white);
  border:none;
  padding:13px 26px;
  border-radius:6px;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition:transform 160ms var(--ease-out), background 160ms var(--ease-out);
}
.search-box button:hover{background:var(--navy-light);}
.search-box button:active{transform:scale(0.97);}
.demo-notice{
  background:var(--gold-light);
  border:1px solid var(--gold);
  border-radius:8px;
  padding:12px 16px;
  font-size:13px;
  color:var(--navy);
  margin-bottom:16px;
}
.demo-notice a{color:var(--navy); font-weight:600;}
.results{display:grid; grid-template-columns:1fr; gap:12px;}
.empty-state{
  text-align:center; color:var(--text-muted); font-size:14px;
  padding:32px 16px; background:var(--white); border-radius:10px;
}
.card{
  position:relative;
  border-radius:14px;
  padding:16px;
  display:flex; align-items:flex-start; gap:14px;
  background:var(--white);
  box-shadow:0 1px 2px rgba(16,24,40,0.06), 0 1px 3px rgba(16,24,40,0.06);
  transition:transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
  opacity:0;
  transform:translateY(8px);
  animation:card-enter 300ms var(--ease-out) forwards;
}
.card:hover{transform:translateY(-2px); box-shadow:0 4px 12px rgba(16,24,40,0.1), 0 2px 4px rgba(16,24,40,0.08);}
@keyframes card-enter{
  to{opacity:1; transform:translateY(0);}
}
@media (prefers-reduced-motion: reduce){
  .card{animation:none; opacity:1; transform:none;}
  .card:hover{transform:none;}
}
.card-link-overlay{position:absolute; inset:0; z-index:1;}
.card-media{
  width:72px; height:72px; border-radius:12px; flex-shrink:0;
  object-fit:cover; border:1px solid var(--chrome-line); background:var(--navy);
}
.card-media-fallback{
  width:72px; height:72px; border-radius:12px; flex-shrink:0;
  background:var(--navy); display:flex; align-items:center; justify-content:center;
}
.card-media-fallback svg{width:26px; height:26px; color:var(--gold);}
.card-body{flex:1; min-width:0;}
.card.premium{border:1.5px solid var(--gold); background:var(--gold-light);}
.card-title-row{display:flex; flex-wrap:wrap; align-items:baseline; gap:4px 10px;}
.card-name{font-weight:600; font-size:16px; margin-bottom:3px; min-width:0;}
.card-meta{font-size:13px; color:var(--text-muted); margin-bottom:8px;}
.card-distance{font-size:12px; color:var(--gold-dark); white-space:nowrap; flex-shrink:0; margin-left:auto;}
.card-coverage-note{font-size:12px; color:var(--text-muted); margin:-4px 0 8px;}
.card-tags{display:flex; gap:6px; flex-wrap:wrap;}
.card-review{
  font-size:12px; font-style:italic; color:var(--text-muted);
  margin-top:8px; line-height:1.4;
}
.card-actions{display:flex; flex-wrap:wrap; gap:8px; align-items:center; margin-top:10px;}
.card-see-more{
  position:relative; z-index:2;
  display:inline-flex; align-items:center;
  padding:9px 18px; border-radius:20px;
  border:1.5px solid var(--gold); background:var(--white); color:var(--navy);
  font-size:13px; font-weight:700;
  transition:background 160ms var(--ease-out), transform 160ms var(--ease-out);
}
.card-see-more:hover{background:var(--gold-light);}
.card-see-more:active{transform:scale(0.97);}
.pill{
  font-size:11px; padding:3px 9px; border-radius:20px;
  background:var(--fog); color:var(--text-muted);
}
.pill.verified{background:var(--gold-light); color:var(--gold-dark); font-weight:600;}
.pill.discount{background:var(--gold); color:var(--navy); font-weight:600;}
.badge-premium{
  font-family:'JetBrains Mono', monospace;
  font-size:10px; letter-spacing:0.06em;
  background:var(--gold); color:var(--navy);
  padding:3px 8px; border-radius:4px; font-weight:600;
  height:fit-content;
}

/* HOW IT WORKS */
section.how{padding:64px 0;}
section.how h2{font-size:26px; margin-bottom:36px; text-align:center;}
.how-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
.how-step{text-align:left;}
.how-num{
  font-family:'JetBrains Mono', monospace;
  color:var(--gold-dark); font-size:13px; margin-bottom:8px; font-weight:500;
}
.how-step h3{font-size:17px; margin-bottom:8px; color:var(--navy);}
.how-step p{font-size:14px; color:var(--text-muted);}

/* FOR SHOPS */
section.shops{
  background:var(--navy);
  padding:64px 0;
}
section.shops h2{color:var(--white); font-size:26px; text-align:center; margin-bottom:10px;}
section.shops .sub{
  text-align:center; color:var(--chrome); font-size:15px;
  max-width:520px; margin:0 auto 40px;
}
.plans{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
.plan{
  background:var(--navy-light);
  border-radius:12px;
  padding:26px 22px;
  border:1px solid rgba(255,255,255,0.08);
}
.plan.featured{border:1.5px solid var(--gold);}
.plan-name{color:var(--white); font-family:'Oswald',sans-serif; font-size:16px; letter-spacing:0.03em; margin-bottom:6px;}
.plan-price{color:var(--gold); font-family:'JetBrains Mono',monospace; font-size:24px; font-weight:500; margin-bottom:14px;}
.plan-price span{font-size:12px; color:var(--chrome); font-family:'Inter',sans-serif;}
.plan ul{list-style:none; margin-bottom:20px;}
.plan li{color:var(--chrome); font-size:13px; padding:5px 0; border-top:1px solid rgba(255,255,255,0.08);}
.plan li:first-child{border-top:none;}
.plan-cta{
  display:block; text-align:center;
  background:transparent; border:1px solid var(--gold); color:var(--gold);
  padding:10px; border-radius:6px; font-weight:600; font-size:13px;
  cursor:pointer; width:100%;
  transition:transform 160ms var(--ease-out), background 160ms var(--ease-out);
}
.plan-cta:active{transform:scale(0.97);}
.plan.featured .plan-cta{background:var(--gold); color:var(--navy); border:none;}

.shops-inner{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:48px; align-items:center;
}
section.shops h2{text-align:left; margin-bottom:14px;}
.lead-form{
  background:var(--navy-light);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  padding:24px;
  display:flex; flex-direction:column; gap:6px;
}
.lead-form label{
  color:var(--chrome); font-size:11px; letter-spacing:0.06em;
  text-transform:uppercase; margin-top:10px;
}
.lead-form label:first-child{margin-top:0;}
.lead-form input{
  font-family:'Inter', sans-serif; font-size:15px;
  padding:12px 14px; border-radius:6px; border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.06); color:var(--white);
}
.lead-form input::placeholder{color:var(--chrome);}
.lead-note{color:var(--chrome); font-size:12px; margin-top:10px; text-align:center;}
.lead-error{color:var(--error); font-size:13px; margin-top:10px; text-align:center;}
.hidden-field{position:absolute; left:-9999px; top:-9999px;}

footer{
  padding:28px 0; text-align:center; font-size:12px; color:var(--chrome);
}

/* SEO PAGES: breadcrumbs + related-links */
.seo-page{padding:44px 0 64px;}
.seo-page .wrap{max-width:900px;}
.breadcrumb{font-size:12px; color:var(--text-muted); margin-bottom:20px;}
.breadcrumb a{text-decoration:underline;}
.breadcrumb .sep{margin:0 6px; color:var(--chrome-line);}
.seo-page h1{font-size:30px; margin-bottom:10px;}
.seo-page .intro{color:var(--text-muted); font-size:15px; max-width:600px; margin-bottom:32px;}
.seo-page h2{font-size:18px; margin:40px 0 16px;}
.related-links{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:8px;}
.related-links a{
  font-size:13px; background:var(--fog); color:var(--navy);
  padding:8px 14px; border-radius:20px; font-weight:600;
}
.related-links a:hover{background:var(--chrome-line);}

/* CARD CTA */
.card-cta{
  position:relative; z-index:2;
  background:var(--navy);
  color:var(--white);
  border:none;
  padding:9px 16px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:transform 160ms var(--ease-out), background 160ms var(--ease-out);
}
.card-cta:hover{background:var(--navy-light);}
.card-cta:active{transform:scale(0.97);}

/* LEAD MODAL */
.modal-overlay{
  display:none;
  position:fixed; inset:0;
  background:rgba(20,24,31,0.6);
  align-items:center; justify-content:center;
  padding:20px;
  z-index:999;
  transition:background 200ms var(--ease-out);
}
.modal-overlay.open{display:flex;}
.modal-box{
  background:var(--navy);
  border-radius:12px;
  padding:26px;
  width:100%; max-width:400px;
  position:relative;
  animation:modal-enter 220ms var(--ease-out);
}
@keyframes modal-enter{
  from{opacity:0; transform:scale(0.95);}
  to{opacity:1; transform:scale(1);}
}
@media (prefers-reduced-motion: reduce){
  .modal-box{animation:none;}
}
.modal-box h3{color:var(--white); font-size:20px; margin-bottom:16px; padding-right:20px;}
.modal-close{
  position:absolute; top:14px; right:16px;
  background:none; border:none; color:var(--chrome);
  font-size:22px; line-height:1; cursor:pointer;
}

/* ONBOARDING WIZARD */
#wizardModal{background:rgba(20,24,31,0.35);}
.wizard-progress{
  color:var(--chrome); font-size:11px; letter-spacing:0.06em;
  text-transform:uppercase; margin-bottom:8px;
}
.wizard-input{
  width:100%; font-family:'Inter', sans-serif; font-size:15px;
  padding:12px 14px; border-radius:6px; border:1px solid rgba(255,255,255,0.15);
  background:rgba(255,255,255,0.06); color:var(--white); box-sizing:border-box;
}
.wizard-input::placeholder{color:var(--chrome);}
.wizard-options{display:flex; flex-wrap:wrap; gap:8px; margin-top:4px;}
.wizard-option{
  background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.15);
  color:var(--white); padding:10px 16px; border-radius:20px;
  font-size:14px; font-family:'Inter', sans-serif; cursor:pointer;
  transition:transform 160ms var(--ease-out), background 160ms var(--ease-out), color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}
.wizard-option:hover{background:var(--gold); color:var(--navy); border-color:var(--gold);}
.wizard-option:active{transform:scale(0.97);}
.wizard-skip{
  text-align:center; color:var(--chrome); font-size:12px;
  margin-top:16px; cursor:pointer; text-decoration:underline;
}

@media (max-width: 760px){
  .hero-grid, .how-grid, .plans, .results, .shops-inner{grid-template-columns:1fr;}
  .hero h1{font-size:30px;}
  .nav-links{display:none;}
}
