/* ── Grøn Haveservice – Fælles CSS ── */

/* FONTS – lokale fonte, ingen CDN-afhængighed */
@import url('fonts.css');

/* VARIABLES */
:root {
  --green-400: #86efac;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --dark: #1a2e1a;
  --muted: #6b7280;
  --cream: #f5f2eb;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --ease-out: cubic-bezier(0.23,1,0.32,1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--dark); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* TOPBAR */
.topbar { background: var(--green-900); color: rgba(255,255,255,0.85); font-size: 0.78rem; padding: 6px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-item { display: flex; align-items: center; gap: 5px; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.topbar-item:hover { color: #fff; }

/* HEADER */
header { background: #fff; border-bottom: 1px solid rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { width: 52px; height: 52px; object-fit: contain; }
.logo-text { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 700; color: var(--green-800); line-height: 1.2; }
nav { display: flex; align-items: center; gap: 4px; }
nav a { font-size: 0.82rem; font-weight: 500; color: var(--dark); padding: 6px 10px; border-radius: 6px; transition: background 0.18s, color 0.18s; white-space: nowrap; }
nav a:hover, nav a.active { background: #f0fdf4; color: var(--green-700); }
nav a.nav-cta { background: var(--green-700); color: #fff; padding: 8px 16px; border-radius: 8px; font-weight: 600; }
nav a.nav-cta:hover { background: var(--green-800); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: 0.3s; }

/* MOBILE NAV */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.5); }
.mobile-nav.open { display: block; }
.mobile-nav-panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(320px, 85vw); background: #fff; padding: 24px 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-close { align-self: flex-end; font-size: 1.4rem; color: var(--muted); margin-bottom: 16px; }
.mobile-nav-panel a { display: block; padding: 10px 12px; font-size: 0.95rem; font-weight: 500; border-radius: 8px; color: var(--dark); }
.mobile-nav-panel a:hover { background: #f0fdf4; color: var(--green-700); }

/* HERO */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,83,45,0.82) 0%, rgba(20,83,45,0.55) 60%, rgba(0,0,0,0.3) 100%); z-index: 1; }
.hero .container { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }
.hero-content { max-width: 680px; }
.hero-eyebrow { display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-400); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--green-400); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.88); max-width: 560px; margin-bottom: 32px; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: rgba(255,255,255,0.85); font-weight: 500; }
.hero-trust-item svg { color: var(--green-400); flex-shrink: 0; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 22px; border-radius: 8px; font-size: 0.88rem; font-weight: 600; transition: all 0.18s var(--ease-out); cursor: pointer; border: 2px solid transparent; }
.btn:active { transform: scale(0.97); }
.btn-lg { padding: 14px 28px; font-size: 0.95rem; }
.btn-primary { background: var(--green-600); color: #fff; }
.btn-primary:hover { background: var(--green-700); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-outline-dark { background: transparent; color: var(--green-700); border-color: var(--green-700); }
.btn-outline-dark:hover { background: var(--green-700); color: #fff; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-green { background: var(--green-900); color: #fff; }
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-600); margin-bottom: 10px; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
.section-intro { font-size: 1rem; color: var(--muted); max-width: 560px; line-height: 1.7; }
.section-header.centered .section-intro { margin: 0 auto; }

/* VIDEO SECTION */
.video-section { background: var(--green-900); padding: 80px 0; }
.video-wrap { max-width: 640px; margin: 40px auto 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-wrap video { width: 100%; display: block; }

/* SERVICES GRID */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s var(--ease-out), box-shadow 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease-out); }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 24px; }
.service-card-num { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; color: var(--green-600); }
.service-card-body h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--dark); margin: 6px 0 10px; }
.service-card-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.workdays-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; color: var(--green-700); background: #dcfce7; padding: 3px 10px; border-radius: 100px; margin-bottom: 12px; }
.service-card-link { display: inline-flex; align-items: center; gap: 5px; font-size: 0.85rem; font-weight: 600; color: var(--green-700); }
.service-card-link:hover { gap: 8px; }

/* SPECIAL GRID */
.special-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; max-width: 720px; margin: 40px auto 0; }
.special-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s var(--ease-out), box-shadow 0.25s; }
.special-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.special-card-img { height: 180px; overflow: hidden; }
.special-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease-out); }
.special-card:hover .special-card-img img { transform: scale(1.04); }
.special-card-body { padding: 20px; }
.special-card-body h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.special-card-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* REVIEWS */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.review-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.review-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--green-700); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.review-name { font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.review-date { font-size: 0.75rem; color: var(--muted); }

/* AREAS */
.areas-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.area-chip { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 6px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 500; }

/* STAFF CARDS */
.staff-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.staff-card-img { position: relative; height: 220px; overflow: hidden; }
.staff-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.staff-card-name { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); padding: 20px 16px 12px; color: #fff; }
.staff-card-name strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; }
.staff-card-name span { font-size: 0.75rem; opacity: 0.85; text-transform: uppercase; letter-spacing: 0.08em; }
.staff-card-body { padding: 20px; }
.staff-role { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-600); margin-bottom: 8px; }
.staff-card-body p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.staff-quote { font-style: italic; color: var(--green-700); font-size: 0.85rem; border-left: 3px solid var(--green-500); padding-left: 12px; margin: 12px 0; }
.staff-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.staff-tag { font-size: 0.72rem; font-weight: 600; color: var(--green-800); background: #dcfce7; border: 1px solid #bbf7d0; padding: 3px 10px; border-radius: 100px; }
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }

/* CTA BAND */
.cta-band { background: var(--green-800); color: #fff; padding: 64px 0; text-align: center; }
.cta-band h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 1rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%); padding: 80px 0 64px; color: #fff; }
.page-hero-content { max-width: 640px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { opacity: 0.5; }
.page-hero h1 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--green-400); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.82); line-height: 1.7; max-width: 520px; }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* CONTENT GRID */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.content-text h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.content-text p { font-size: 0.92rem; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.content-text ul { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.content-text ul li { font-size: 0.9rem; color: var(--muted); padding-left: 20px; position: relative; }
.content-text ul li::before { content: "✓"; position: absolute; left: 0; color: var(--green-600); font-weight: 700; }
.content-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.content-img img { width: 100%; height: 320px; object-fit: cover; }

/* BEFORE / AFTER */
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.ba-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ba-card img { width: 100%; height: 280px; object-fit: cover; }
.ba-label { position: absolute; top: 12px; left: 12px; background: rgba(0,0,0,0.65); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; padding: 4px 10px; border-radius: 100px; }

/* FAQ */
.faq-list { max-width: 720px; margin: 32px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.07); overflow: hidden; }
.faq-question { width: 100%; text-align: left; padding: 18px 20px; font-size: 0.92rem; font-weight: 600; color: var(--dark); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-arrow { transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 20px 18px; font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.contact-info p { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 16px; background: #f9fafb; border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.06); transition: box-shadow 0.2s; }
.contact-item:hover { box-shadow: var(--shadow); }
.contact-item-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--green-700); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-text { display: flex; flex-direction: column; gap: 2px; }
.contact-item-text strong { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.contact-item-text span { font-size: 0.78rem; color: var(--muted); }
.contact-form-wrap { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,0.06); }
.contact-form-wrap h3 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.form-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #e5e7eb; border-radius: 8px; font-family: var(--font-sans); font-size: 0.88rem; color: var(--dark); background: #fff; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-600); }
.form-group textarea { height: 120px; resize: vertical; }
.form-note { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }

/* FOOTER */
footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin: 16px 0; color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: var(--green-700); }
.footer-col h4 { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* STICKY MOBILE BAR */
.sticky-mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: #fff; border-top: 1px solid rgba(0,0,0,0.1); box-shadow: 0 -4px 16px rgba(0,0,0,0.08); }
.sticky-mobile-bar a { display: flex; align-items: center; justify-content: center; flex: 1; padding: 14px; font-size: 0.9rem; font-weight: 600; }
.smb-call { color: var(--green-700); border-right: 1px solid rgba(0,0,0,0.08); }
.smb-quote { background: var(--green-700); color: #fff; }

/* BACK TO TOP */
#back-to-top { position: fixed; bottom: 80px; right: 20px; z-index: 80; width: 42px; height: 42px; border-radius: 50%; background: var(--green-700); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
#back-to-top.visible { opacity: 1; pointer-events: auto; }

/* WHATSAPP */
.whatsapp-btn { position: fixed; bottom: 80px; left: 20px; z-index: 80; width: 48px; height: 48px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.2s; }
.whatsapp-btn:hover { transform: scale(1.1); }

/* COOKIE */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; background: var(--dark); color: #fff; padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; box-shadow: 0 -4px 20px rgba(0,0,0,0.2); }
.cookie-text { font-size: 0.85rem; color: rgba(255,255,255,0.85); }
.cookie-text a { color: var(--green-400); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn { padding: 8px 16px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; cursor: pointer; border: none; }
.cookie-btn-accept { background: var(--green-600); color: #fff; }
.cookie-btn-decline { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.8); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .price-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .hero { min-height: 90vh; }
  .hero .container { padding-top: 60px; padding-bottom: 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .sticky-mobile-bar { display: flex; }
  #back-to-top { bottom: 72px; }
  .whatsapp-btn { bottom: 72px; }
  .form-row { grid-template-columns: 1fr; }
  .topbar .container { flex-direction: column; align-items: flex-start; gap: 4px; }
  .topbar-right { display: none; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .section-header { margin-bottom: 32px; }
  .service-card { border-radius: 12px; }
  .service-card-img { height: 200px; }
  .video-wrap { margin: 24px auto 0; }
  .special-grid { grid-template-columns: 1fr; max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-info-cards { flex-direction: column; }
  .page-hero { min-height: 45vh; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .staff-card-img { height: 260px; }
  .trampolin-grid { grid-template-columns: 1fr; }
  .before-after-wrap { height: 260px; }
  h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .page-hero-actions { flex-direction: column; align-items: stretch; }
  .page-hero-actions .btn { text-align: center; justify-content: center; }
  .price-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .hero-trust { gap: 10px; }
  .hero-trust-item { font-size: 0.78rem; }
  .section-label { font-size: 0.7rem; }
  .review-card { padding: 20px; }
  .faq-question { font-size: 0.9rem; padding: 14px 16px; }
  .sticky-mobile-bar a { font-size: 0.85rem; padding: 12px; }
  .btn-lg { padding: 12px 20px; font-size: 0.88rem; }
  .topbar { display: none; }
}

/* ── FAB Ring-knap (svævende ring-knap) ── */
.fab-call {
  display: none;
  position: fixed;
  bottom: 88px;
  right: 20px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-600);
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,90,26,0.45);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.fab-call:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(26,90,26,0.55); }
.fab-call::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--green-600);
  opacity: 0.5;
  animation: fab-pulse 2s ease-in-out infinite;
}
@keyframes fab-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.18); opacity: 0; }
}
@media (max-width: 768px) {
  .fab-call { display: flex; }
}

/* ── Cases og serviceområde ──────────────────────────────────────────────────── */
.case-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  margin-bottom: 0;
}
.case-header {
  padding: 24px 32px 0;
}
.case-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.case-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 20px 32px 32px;
}
.case-text p { margin-bottom: 10px; line-height: 1.7; }
.case-single-img img { width: 100%; border-radius: 8px; object-fit: cover; }

/* Area grid */
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.area-col h3 {
  font-size: 14px;
  font-weight: 700;
  color: #2e7d32;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.area-col ul { list-style: none; padding: 0; margin: 0; }
.area-col ul li {
  padding: 3px 0;
  font-size: 14px;
  color: #444;
}
.area-col ul li::before {
  content: "→ ";
  color: #2e7d32;
  font-size: 12px;
}

/* Relaterede ydelser mini-grid */
.services-grid-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.service-card-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid #d4e8d4;
  border-radius: 8px;
  padding: 12px 20px;
  text-decoration: none;
  color: #1a4a1a;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.15s, border-color 0.15s;
}
.service-card-mini:hover {
  background: #e8f5e9;
  border-color: #2e7d32;
}

@media (max-width: 768px) {
  .case-body {
    grid-template-columns: 1fr;
    padding: 16px;
  }
  .case-header { padding: 16px 16px 0; }
  .area-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .area-grid { grid-template-columns: 1fr; }
}

/* Honeypot – usynlig for brugere, synlig for bots */
.form-hp {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
