/* ============================================================
   Sjøkart – felles stilark
   60-30-10: Bakgrunn (foam) / Navy / Coral accent
   Neumorphic embossed kort, subtile gradients
   ============================================================ */

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

:root {
  /* Farger */
  --bg:        #E4E8F0;
  --bg-deep:   #D8DEE8;
  --card:      #FFFFFF;
  --card-soft: #F5F7FA;
  --navy:      #0A2540;
  --navy-mid:  #13345C;
  --steel:     #2E5984;
  --coral:     #FC6948;
  --coral-dk:  #E5512E;
  --ink:       #06121F;
  --muted:     #4A6080;
  --muted-2:   #6B7E96;
  --divider:   rgba(10, 37, 64, 0.08);
  --warning:   #F6B93B;
  --success:   #4CAF50;

  /* Skygger (neumorphic-inspirert) */
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.06), 0 1px 2px rgba(10, 37, 64, 0.04);
  --shadow:    0 2px 8px rgba(10, 37, 64, 0.09), 0 1px 3px rgba(10, 37, 64, 0.06);
  --shadow-lg: 0 8px 24px rgba(10, 37, 64, 0.10), 0 2px 8px rgba(10, 37, 64, 0.06);
  --shadow-xl: 0 16px 40px rgba(10, 37, 64, 0.12), 0 6px 16px rgba(10, 37, 64, 0.08);

  /* Radier */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Layout */
  --container: 1160px;
  --container-narrow: 760px;

  /* Typografi */
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--steel); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ============================================================
   Topp-navigasjon
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 2px 8px rgba(10, 37, 64, 0.08);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #11243e;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-brand:hover { text-decoration: none; }

.nav-logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  overflow: hidden;
  padding: 0;
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--navy-mid);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background 0.18s, color 0.18s;
}

.nav-links a:hover {
  background: rgba(10, 37, 64, 0.06);
  text-decoration: none;
}

.nav-links a.is-active {
  color: var(--coral);
}

.nav-cta {
  margin-left: 8px;
}

/* Mobile-meny knapp */
.nav-toggle {
  display: none;
  margin-left: auto;
  border: none;
  background: var(--card);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

/* ============================================================
   Knapper
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.1px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s;
  white-space: nowrap;
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, #FF7A5C 0%, var(--coral) 60%, var(--coral-dk) 100%);
  color: #fff;
  box-shadow: 0 6px 14px rgba(252, 105, 72, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #1a4a7a 0%, var(--navy-mid) 60%, var(--navy) 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(10, 37, 64, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-links a.btn-primary { color: #fff; }
.nav-links a.btn-primary:hover { background: linear-gradient(180deg, #1a4a7a 0%, var(--navy-mid) 60%, var(--navy) 100%); color: #fff; }

.btn-secondary {
  background: var(--card);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--navy-mid);
  padding: 12px 18px;
}

.btn-ghost:hover {
  background: rgba(10, 37, 64, 0.06);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

/* Google Play badge knapp */
.btn-store {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.12s ease, filter 0.18s ease;
  line-height: 0;
}

.btn-store img,
.btn-store svg {
  height: 56px;
  width: auto;
  display: block;
}

.btn-store:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* ============================================================
   Layout-hjelpere
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.7px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.55;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .section-lead {
  margin: 0 auto;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-logo-wrap {
  width: 130px;
  height: 130px;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--card);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1.2px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero h1 .accent {
  color: var(--coral);
}

.hero-lead {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-trust {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust svg {
  color: var(--coral);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-phone {
  max-width: 380px;
  width: 100%;
  border-radius: 52px;
  box-shadow: var(--shadow-xl);
  background: var(--card);
}

.hero-phone-placeholder {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9 / 19;
  border-radius: 52px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  padding: 32px;
  text-align: center;
}

/* ============================================================
   Pris-banner
   ============================================================ */
.price-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

.price-banner-amount {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.price-banner-amount small {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.price-banner-text {
  flex: 1;
  min-width: 260px;
}

.price-banner-text strong {
  color: var(--coral);
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 4px;
}

.price-banner-text p {
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  margin: 0;
}

/* ============================================================
   Nyhetsbrev
   ============================================================ */
.newsletter {
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 34px;
  text-align: left;
  margin-top: 36px;
}

.newsletter-eyebrow {
  display: inline-block;
  color: var(--coral);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.newsletter-title {
  color: var(--navy);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
}

.newsletter-lead {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 24px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1 1 280px;
  max-width: 360px;
  padding: 13px 18px;
  font-size: 16px;
  font-family: inherit;
  color: var(--ink);
  background: var(--card-soft);
  border: 1px solid var(--divider);
  border-radius: var(--r-pill);
  transition: border-color 0.18s, box-shadow 0.18s;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(252, 105, 72, 0.18);
}

@media (max-width: 520px) {
  .newsletter { padding: 28px 22px; }
  .newsletter-title { font-size: 23px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { max-width: none; }
  .newsletter-form .btn { width: 100%; justify-content: center; }
}

/* Takke-popup */
.newsletter-modal[hidden] { display: none; }
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.newsletter-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 18, 31, 0.55);
  backdrop-filter: blur(2px);
}

.newsletter-modal-card {
  position: relative;
  background: var(--card);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 40px 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  animation: nm-pop 0.22s ease;
}

@keyframes nm-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.newsletter-modal-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(180deg, #FF7A5C 0%, var(--coral) 60%, var(--coral-dk) 100%);
  box-shadow: 0 6px 14px rgba(252, 105, 72, 0.32);
}

.newsletter-modal-card h3 {
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
}

.newsletter-modal-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 24px;
}

.newsletter-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: var(--muted-2);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--r-pill);
}

.newsletter-modal-close:hover { background: rgba(10, 37, 64, 0.06); }

/* ============================================================
   Feature-rader (store)
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--divider);
}

.feature-row:last-child { border-bottom: none; }

.feature-row.reverse .feature-row-text { order: 2; }
.feature-row.reverse .feature-row-media { order: 1; }

.feature-row-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  margin-bottom: 14px;
}

.feature-row h3 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.feature-row p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.feature-row ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.feature-row ul li {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.feature-row ul li svg {
  display: inline-block;
  vertical-align: top;
  margin-right: 8px;
  margin-top: 4px;
  color: var(--coral);
  flex-shrink: 0;
}

.feature-row-media {
  display: flex;
  justify-content: center;
}

.feature-row-media img {
  width: 340px;
  max-width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}

.feature-row-placeholder {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--card-soft) 0%, var(--bg-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-size: 14px;
  text-align: center;
  padding: 24px;
  box-shadow: var(--shadow);
}

/* ============================================================
   Feature-grid (mindre kort)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(160deg, #FFF1EC 0%, #FFE0D6 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-bottom: 16px;
}

.feature-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============================================================
   Pris-seksjon (egen)
   ============================================================ */
.price-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}

.price-card-badge {
  display: inline-block;
  background: linear-gradient(180deg, #FF7A5C 0%, var(--coral) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}

.price-card-amount {
  font-size: 64px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
}

.price-card-amount small {
  font-size: 26px;
  font-weight: 600;
  color: var(--muted);
}

.price-card-sub {
  color: var(--muted);
  font-size: 15px;
  margin-top: 8px;
  margin-bottom: 24px;
}

.price-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
  text-align: left;
}

.price-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
}

.price-card-list li svg {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================================
   Brukeranmeldelser (skjult som standard)
   ============================================================ */
.reviews-section[hidden] { display: none !important; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.review-card {
  background: var(--card);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--warning);
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 14px;
}

.review-author {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   CTA-bånd
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(252, 105, 72, 0.18) 0%, transparent 50%);
  pointer-events: none;
}

.cta-band > * { position: relative; }

.cta-band h2 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
  color: #fff;
}

.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  margin: 0 auto 28px;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  transition: background 0.18s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary:hover {
  background: rgba(10, 37, 64, 0.025);
}

.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s;
  margin-top: -4px;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.faq-item-body {
  padding: 0 24px 22px;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.65;
}

.faq-item-body p + p {
  margin-top: 12px;
}

.faq-item-body ul,
.faq-item-body ol {
  padding-left: 22px;
  margin: 8px 0;
}

.faq-item-body li + li {
  margin-top: 6px;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 56px 0 32px;
  margin-top: 80px;
  box-shadow: 0 -2px 8px rgba(10, 37, 64, 0.10);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer h5 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.footer a:hover { color: var(--coral); text-decoration: none; }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.footer-brand .nav-logo {
  background: #fff;
  box-shadow: none;
}

.footer-brand {
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-tagline {
  font-size: 15px;
  line-height: 1.6;
  max-width: 360px;
}

.footer-bottom {
  max-width: var(--container);
  margin: 32px auto 0;
  padding: 24px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   Personvern-spesifikt (kort med ikoner)
   ============================================================ */
.policy-card {
  background: var(--card);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 16px;
}

.policy-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px 18px;
  border-bottom: 1px solid var(--divider);
}

.policy-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(160deg, #FFF1EC 0%, #FFE0D6 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}

.policy-card-header h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.3px;
}

.policy-card-body {
  padding: 20px 24px;
}

.policy-card-body p {
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 12px;
}

.policy-card-body p:last-child { margin-bottom: 0; }

.policy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: var(--ink);
}

.policy-list li .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
  margin-top: 9px;
}

.policy-highlight {
  background: #FFF5F2;
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 14px 18px;
  font-size: 15.5px;
  color: var(--ink);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  background: var(--bg);
  color: var(--navy-mid);
}

.lang-toggle {
  display: inline-flex;
  background: var(--card);
  border-radius: var(--r-pill);
  padding: 4px;
  box-shadow: var(--shadow);
  gap: 2px;
}

.lang-toggle button {
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  transition: background 0.18s, color 0.18s;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
}

.lang-toggle button.active {
  background: var(--coral);
  color: #fff;
}

.lang-section { display: none; }
.lang-section.visible { display: block; }

/* ============================================================
   Page header (for funksjoner/faq/personvern)
   ============================================================ */
.page-header {
  padding: 64px 0 32px;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.page-header p {
  font-size: 19px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   Responsivt
   ============================================================ */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .hero-visual { order: -1; }
  .hero-phone, .hero-phone-placeholder { max-width: 280px; margin: 0 auto; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; padding: 40px 0; }
  .feature-row.reverse .feature-row-text { order: 1; }
  .feature-row.reverse .feature-row-media { order: 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--card); flex-direction: column; padding: 12px; gap: 4px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--divider); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: var(--r-sm); }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .price-banner { padding: 22px 24px; }
  .price-banner-amount { font-size: 36px; }
  .cta-band { padding: 40px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .page-header { padding: 40px 0 24px; }
}

/* ── Informasjonskapsel-linje ────────────────────────────── */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 10px 20px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 -2px 12px rgba(10, 37, 64, 0.18);
  font-size: 14px;
}
.cookie-text { line-height: 1.4; }
.cookie-text a { color: #fff; text-decoration: underline; }
.cookie-actions { display: inline-flex; gap: 8px; flex-shrink: 0; }
.cookie-bar button {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 16px;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
}
.cookie-accept {
  background: linear-gradient(180deg, #FF7A5C 0%, var(--coral) 60%, var(--coral-dk) 100%);
  color: #fff;
}
.cookie-decline {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}
.cookie-decline:hover { background: rgba(255, 255, 255, 0.2); }
