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

:root {
  --navy: #062e40;
  --sky: #2dbce3;
  --azure: #2b81ba;
  --navy-dark: #175e72;
  --sky-light: #96def1;
  --accent: #e3542d;
  --white: #ffffff;
  --off-white: #f7f9fb;
  --light-blue: #e8f6fb;
  --text: #1a2e3a;
  --muted: #5a7a8a;
  --border: #d6e8f0;
  --grad: linear-gradient(338deg, #2b81ba 0%, #2dbce3 100%);
}

html { scroll-behavior: smooth; }
body { font-family: 'Archivo', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); height: 68px; display: flex; align-items: center; }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--text); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--sky-light); }
.nav-links a.active { color: var(--sky); }
.btn-nav { background: var(--accent); color: white; padding: 10px 22px; border-radius: 6px; font-size: 14px; font-weight: 600; text-decoration: none; transition: background 0.2s, transform 0.15s; white-space: nowrap; }
.btn-nav:hover { background: #c4431e; transform: translateY(-1px); }

/* COOKIE BANNER */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--navy); color: white; padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; transform: translateY(100%); transition: transform 0.4s ease; }
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { font-size: 14px; color: rgba(255,255,255,0.8); max-width: 700px; }
#cookie-banner a { color: var(--sky); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--sky); color: white; border: none; padding: 10px 22px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Archivo', sans-serif; transition: background 0.2s; }
.btn-cookie-accept:hover { background: var(--azure); }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.2); padding: 10px 22px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'Archivo', sans-serif; transition: all 0.2s; }
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: white; }

/* HERO */
.hero { padding: 160px 32px 120px; max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center; }
.hero-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(45,188,227,0.15); color: #96def1; padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; letter-spacing: 0.3px; margin-bottom: 24px; }
.hero-label::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--sky); display: block; }
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: #ffffff; margin-bottom: 24px; }
h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 480px; margin-bottom: 40px; font-weight: 400; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--accent); color: white; padding: 15px 30px; border-radius: 7px; font-size: 16px; font-weight: 600; text-decoration: none; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: #c4431e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(6,46,64,0.2); }
.btn-secondary { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; padding: 15px 4px; transition: gap 0.2s; }
.btn-secondary:hover { gap: 12px; }
.btn-secondary::after { content: '→'; font-size: 18px; }

/* HERO CARD */
.hero-card { background: var(--navy); border-radius: 16px; padding: 36px; position: relative; overflow: hidden; }
.hero-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; background: rgba(45,188,227,0.12); }
.hero-card-label { font-size: 12px; font-weight: 600; letter-spacing: 1px; color: var(--sky); text-transform: uppercase; margin-bottom: 20px; }
.card-products { display: flex; flex-direction: column; gap: 12px; }
.card-product { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 18px 20px; transition: background 0.2s; text-decoration: none; display: block; }
.card-product:hover { background: rgba(255,255,255,0.1); }
.card-product-name { font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.card-product-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.card-product-tag { display: inline-block; background: rgba(45,188,227,0.2); color: var(--sky); font-size: 11px; font-weight: 600; letter-spacing: 0.5px; padding: 3px 10px; border-radius: 100px; margin-top: 8px; }
.hero-card-cta { margin-top: 24px; font-size: 13px; color: rgba(255,255,255,0.5); padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-card-cta a { color: var(--sky); text-decoration: none; font-weight: 600; }

/* HOMEPAGE HERO BACKGROUND */
.hero-bg { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); padding-bottom: 1px; }


.hero-illustration { flex-shrink: 0; width: 540px; }

/* NAV DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 12px;
  left: -16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(6,46,64,0.12);
  padding: 8px;
  min-width: 180px;
  list-style: none;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-dropdown-menu li a:hover { background: var(--light-blue); color: var(--azure); }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 4px 8px; }

/* PAGE HERO (inner pages) */
.page-hero { padding: 140px 32px 80px; background: var(--navy-dark); background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); }
.page-hero-inner { max-width: 1140px; margin: 0 auto; }
.page-hero-label { display: inline-flex; align-items: center; gap: 8px; background: rgba(45,188,227,0.15); color: var(--sky); padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: white; letter-spacing: -1px; line-height: 1.15; margin-bottom: 20px; max-width: 700px; }
.page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7; max-width: 580px; margin-bottom: 36px; }
.page-hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary-white { background: white; color: var(--navy); padding: 14px 28px; border-radius: 7px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.2s; }
.btn-primary-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-ghost { color: rgba(255,255,255,0.8); border: 1.5px solid rgba(255,255,255,0.25); padding: 13px 24px; border-radius: 7px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.btn-ghost:hover { border-color: white; color: white; }

/* PARTNERS */
.partners { background: var(--off-white); padding: 36px 32px; border-bottom: 1px solid var(--border); }
.partners-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.partners-label { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.5px; white-space: nowrap; text-transform: uppercase; }
.partner-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.partner-badge { font-size: 15px; font-weight: 700; color: #aaa; letter-spacing: -0.3px; opacity: 0.7; }

/* SECTIONS */
section { padding: 100px 32px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--sky); text-transform: uppercase; margin-bottom: 16px; }
h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: var(--navy); margin-bottom: 20px; }
h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.section-intro { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 560px; margin-bottom: 64px; }

/* WHY GRID */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.why-card { padding: 32px 28px; border: 1px solid var(--border); border-radius: 12px; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.why-card:hover { border-color: var(--sky); box-shadow: 0 8px 32px rgba(45,188,227,0.08); transform: translateY(-3px); }
.why-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--light-blue); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 20px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* PRODUCTS */
.products { background: var(--navy); }
.products h2, .products .section-label { color: white; }
.products .section-intro { color: rgba(255,255,255,0.55); }
.products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.product-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px; transition: background 0.2s, transform 0.2s; position: relative; overflow: hidden; }
.product-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.product-card.featured { border-color: rgba(45,188,227,0.4); background: rgba(45,188,227,0.06); }
.product-card.featured::after { content: 'Mest populær'; position: absolute; top: 20px; right: 20px; background: var(--grad); color: white; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; padding: 4px 12px; border-radius: 100px; }
.product-size { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--sky); text-transform: uppercase; margin-bottom: 16px; }
.product-name { font-size: 28px; font-weight: 800; color: white; margin-bottom: 12px; letter-spacing: -0.5px; }
.product-desc { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.65; margin-bottom: 28px; }
.product-features { list-style: none; margin-bottom: 32px; }
.product-features li { font-size: 14px; color: rgba(255,255,255,0.7); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 10px; }
.product-features li::before { content: '✓'; color: var(--sky); font-weight: 700; font-size: 13px; flex-shrink: 0; }
.btn-outline-white { display: inline-block; border: 1.5px solid rgba(255,255,255,0.25); color: white; padding: 12px 24px; border-radius: 7px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.btn-outline-white:hover { border-color: var(--sky); color: var(--sky); background: rgba(45,188,227,0.08); }

/* FEATURE LIST (inner pages) */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 48px; }
.feature-item { display: flex; gap: 20px; padding: 28px; border: 1px solid var(--border); border-radius: 12px; transition: border-color 0.2s, transform 0.2s; }
.feature-item:hover { border-color: var(--sky); transform: translateY(-2px); }
.feature-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--light-blue); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.feature-item h3 { font-size: 16px; margin-bottom: 6px; }
.feature-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* PROCESS */
.process { background: var(--off-white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: calc(12.5% + 14px); right: calc(12.5% + 14px); height: 1px; background: var(--border); z-index: 0; }
.process-step { text-align: center; padding: 0 20px; position: relative; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: white; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: var(--navy); margin: 0 auto 24px; position: relative; z-index: 1; transition: all 0.2s; }
.process-step:hover .step-num { border-color: var(--sky); background: var(--light-blue); color: var(--azure); }
.step-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); padding: 80px 32px; }
.cta-band-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band h2 { color: white; font-size: clamp(24px, 3vw, 36px); margin-bottom: 8px; letter-spacing: -0.8px; }
.cta-band p { color: rgba(255,255,255,0.75); font-size: 16px; }
.cta-band-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-white { background: var(--accent); color: white; padding: 15px 30px; border-radius: 7px; font-size: 15px; font-weight: 700; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.btn-white:hover { background: #c4431e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(227,84,45,0.3); }
.btn-ghost-white { color: white; border: 1.5px solid rgba(255,255,255,0.5); padding: 14px 26px; border-radius: 7px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.btn-ghost-white:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* EMBED PLACEHOLDERS */
.embed-placeholder { background: var(--off-white); border: 2px dashed var(--border); border-radius: 12px; padding: 60px 32px; text-align: center; color: var(--muted); font-size: 15px; }
.embed-placeholder strong { display: block; font-size: 17px; color: var(--navy); margin-bottom: 8px; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
.contact-info h3 { font-size: 20px; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail-icon { width: 40px; height: 40px; background: var(--light-blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.contact-detail-text span { font-size: 15px; color: var(--muted); }
.contact-detail-text a { color: var(--azure); text-decoration: none; font-size: 15px; }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.5); padding: 60px 32px 40px; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 240px 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-logo img { height: 30px; width: auto; opacity: 0.8; }
.footer-brand p { font-size: 13px; line-height: 1.6; margin-top: 14px; color: rgba(255,255,255,0.4); }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--sky); }
.part-of { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,0.3); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { opacity: 0; animation: fadeUp 0.6s ease forwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-card { opacity: 0; animation: fadeUp 0.6s ease 0.35s forwards; }
.page-hero-inner > * { opacity: 0; animation: fadeUp 0.5s ease forwards; }
.page-hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.page-hero-inner > *:nth-child(2) { animation-delay: 0.2s; }
.page-hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
.page-hero-inner > *:nth-child(4) { animation-delay: 0.3s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; }
  .hero-card { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 72px 20px; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  h1 { letter-spacing: -1px; }
  .page-hero { padding: 120px 20px 60px; }
}
