/* === PREPPING-GUIDE.DK === */
:root {
  --primary: #1e3a5f;
  --primary-dark: #12263f;
  --primary-light: #2a5298;
  --secondary: #2e6b3e;
  --secondary-dark: #1e4d2b;
  --accent: #e85d04;
  --accent-dark: #c44d03;
  --light-bg: #f4f6f9;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-medium: #4a5568;
  --text-light: #718096;
  --border: #d1dce8;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.1);
  --shadow-md: 0 4px 14px rgba(0,0,0,.13);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --radius: 8px;
  --radius-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* LAYOUT */
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 44px 0; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--primary); }
h1 { font-size: clamp(1.85rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
.section-title { text-align: center; margin-bottom: 52px; }
.section-title h2 { margin-bottom: 14px; }
.section-title p { color: var(--text-medium); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.lead { font-size: 1.1rem; color: var(--text-medium); }

/* ALERT BAR */
.alert-bar {
  background: linear-gradient(90deg, #b91c1c, #dc2626);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.alert-bar strong { font-weight: 700; }

/* HEADER */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar-brand img { height: 46px; width: auto; }
.navbar-nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,.82);
  padding: 8px 13px;
  border-radius: 6px;
  font-size: .88rem;
  font-weight: 500;
  transition: all .2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.14);
  text-decoration: none;
}
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 15px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--accent-dark) !important; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.mobile-toggle span { display: block; width: 23px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

/* HERO */
.hero {
  background: linear-gradient(rgba(10,20,40,.62), rgba(10,20,40,.62)),
              url('../gfx/prepping-baggrund.jpg') center center / cover no-repeat;
  color: #fff;
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}
.hero::before { display: none; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { color: #fbbf24; font-style: normal; }
.hero .lead { opacity: .9; margin-bottom: 34px; color: rgba(255,255,255,.9); font-size: 1.1rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: #fbbf24; line-height: 1; }
.stat-label { font-size: .78rem; opacity: .75; margin-top: 4px; text-transform: uppercase; letter-spacing: .06em; }
.hero-card {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.hero-card-title {
  color: #fbbf24;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  font-size: .93rem;
}
.hero-list-item:last-child { border-bottom: none; }
.hli-check {
  width: 22px; height: 22px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; flex-shrink: 0;
  color: #fff;
}

/* TRUST BAR */
.trust-bar {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.trust-items { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--text-medium); font-size: .88rem; font-weight: 500; }
.trust-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; }
.btn-secondary { background: var(--primary); color: #fff; }
.btn-secondary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }
.btn-green { background: var(--secondary); color: #fff; }
.btn-green:hover { background: var(--secondary-dark); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: #f0f5ff; color: var(--primary-dark); }
.btn-sm { padding: 9px 18px; font-size: .875rem; }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* CATEGORY CARDS */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 22px;
  text-align: center;
  transition: all .3s;
  display: block;
  box-shadow: var(--shadow-sm);
}
.category-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--primary); text-decoration: none; }
.category-icon {
  width: 74px; height: 74px;
  margin: 0 auto 18px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: .3s;
}
.category-card:hover .category-icon { background: var(--primary); }
.category-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.category-card p { color: var(--text-medium); font-size: .88rem; line-height: 1.5; }

/* PRODUCT CARDS */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-grid-2 { grid-template-columns: repeat(2, 1fr); }
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-image {
  background: var(--light-bg);
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem;
  position: relative;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .3s;
}
.product-card:hover .product-image img { transform: scale(1.04); }
.badge-top {
  position: absolute; top: 10px; left: 10px;
  background: var(--accent); color: #fff;
  padding: 3px 9px; border-radius: 4px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
}
.badge-green { background: var(--secondary) !important; }
.product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 5px; font-weight: 600; }
.product-card h3 { font-size: .97rem; color: var(--text-dark); margin-bottom: 8px; line-height: 1.4; }
.product-desc { color: var(--text-medium); font-size: .85rem; line-height: 1.55; margin-bottom: 14px; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border); gap: 10px; }
.product-price { font-size: 1.25rem; font-weight: 800; color: var(--primary); white-space: nowrap; }

/* INFO BOXES */
.info-box { border-radius: var(--radius); padding: 22px 24px; margin: 28px 0; }
.info-box-blue { background: #eff6ff; border-left: 4px solid #3b82f6; }
.info-box-green { background: #f0fdf4; border-left: 4px solid var(--secondary); }
.info-box-orange { background: #fff7ed; border-left: 4px solid var(--accent); }
.info-box-red { background: #fef2f2; border-left: 4px solid #dc2626; }
.info-box h4 { margin-bottom: 8px; font-size: 1rem; }
.info-box p { margin-bottom: 0; color: var(--text-medium); font-size: .93rem; }

/* CHECKLIST */
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  color: var(--text-medium); font-size: .95rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px; min-width: 22px;
  background: var(--secondary); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; margin-top: 2px;
}

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 52px; height: 52px; min-width: 52px;
  background: var(--light-bg); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature-item h4 { margin-bottom: 5px; }
.feature-item p { color: var(--text-medium); font-size: .88rem; line-height: 1.5; margin: 0; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
}
.step-content h4 { margin-bottom: 4px; }
.step-content p { color: var(--text-medium); font-size: .9rem; margin: 0; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0d1f36, var(--primary) 60%, var(--primary-light));
  color: #fff;
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { opacity: .88; font-size: 1.1rem; max-width: 640px; margin: 0 auto; color: rgba(255,255,255,.88); }

/* BREADCRUMB */
.breadcrumb { background: var(--light-bg); padding: 12px 0; border-bottom: 1px solid var(--border); }
.bc-list { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-light); }
.bc-list a { color: var(--primary); }
.bc-list span { opacity: .4; }

/* CONTENT LAYOUT */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 44px;
  align-items: flex-start;
}
.content-main h2 { margin-top: 40px; margin-bottom: 14px; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin-top: 28px; margin-bottom: 10px; color: var(--secondary); }
.content-main p { margin-bottom: 16px; color: var(--text-medium); line-height: 1.8; }
.content-main ul, .content-main ol { padding-left: 22px; margin-bottom: 18px; }
.content-main li { list-style: disc; margin-bottom: 7px; color: var(--text-medium); }
.content-main ol li { list-style: decimal; }

/* SIDEBAR */
.sidebar { position: sticky; top: 86px; }
.sidebar-box {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px; margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.sidebar-box h4 {
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 2px solid var(--primary); color: var(--primary);
  font-size: .95rem;
}
.sidebar-links li { border-bottom: 1px solid var(--border); }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links a {
  display: block; padding: 9px 0;
  color: var(--text-medium); font-size: .875rem; transition: .2s;
}
.sidebar-links a:hover { color: var(--primary); padding-left: 5px; text-decoration: none; }

/* MINI PRODUCT */
.mini-product { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.mini-product:last-child { border-bottom: none; }
.mini-icon { width: 42px; height: 42px; min-width: 42px; background: var(--light-bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.mini-info { flex: 1; min-width: 0; }
.mini-info strong { display: block; font-size: .82rem; color: var(--text-dark); line-height: 1.3; }
.mini-info .mp-price { font-size: .82rem; font-weight: 700; color: var(--accent); }

/* TABLE */
.data-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.data-table th { background: var(--primary); color: #fff; padding: 13px 15px; text-align: left; font-weight: 600; }
.data-table td { padding: 11px 15px; border-bottom: 1px solid var(--border); }
.data-table tr:nth-child(even) td { background: var(--light-bg); }
.data-table tr:hover td { background: #e8f0fa; }

/* FAQ */
.faq { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-q { padding: 18px 22px; font-weight: 600; color: var(--primary); background: var(--white); font-size: .97rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: '+'; font-size: 1.4rem; font-weight: 400; opacity: .6; }
.faq-a { padding: 0 22px 18px; color: var(--text-medium); line-height: 1.7; font-size: .93rem; }

/* NOTICES */
.notice { border-radius: var(--radius); padding: 14px 18px; margin: 20px 0; display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; }
.notice-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 1px; }
.notice-blue { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.notice-green { background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d; }
.notice-orange { background: #fff7ed; border: 1px solid #fed7aa; color: #c2410c; }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; text-align: center; padding: 80px 0;
}
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p { opacity: .85; font-size: 1.1rem; max-width: 560px; margin: 0 auto 32px; }

/* BG VARIANTS */
.bg-light { background: var(--light-bg); }
.bg-green-light { background: #f0fdf4; border-top: 1px solid #bbf7d0; border-bottom: 1px solid #bbf7d0; }

/* FOOTER */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.72); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-brand img { height: 42px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin-bottom: 14px; }
.footer-heading { color: #fff; font-size: .88rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.62); font-size: .875rem; transition: .2s; }
.footer-links a:hover { color: #fff; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; font-size: .82rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.55); }
.disclaimer { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 14px 18px; font-size: .78rem; margin-bottom: 28px; line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-card { display: none; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 22px; }
  .navbar-nav {
    display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: var(--primary); flex-direction: column; padding: 14px;
    gap: 3px; box-shadow: 0 8px 20px rgba(0,0,0,.25);
  }
  .navbar-nav.open { display: flex; }
  .mobile-toggle { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 18px; }
  .product-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .category-grid, .product-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0; }
  .section { padding: 52px 0; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}
