:root {
  --color-blue: #0e355b;
  --color-blue-dark: #082139;
  --color-turquoise: #00a4b4;
  --color-bg: #f5f7fb;
  --color-text: #2b2f33;
  --color-muted: #6c7480;
  --color-success-bg: #e3f7eb;
  --color-border: #e0e4ec;
  --color-white: #ffffff;
  --color-success: #48c79c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
}

a {
  color: var(--color-blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  max-width: 1000px;
  margin: 32px auto 48px;
  padding: 0 16px 40px;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(10, 25, 56, 0.08);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 24px 12px;
  border-bottom: 1px solid var(--color-border);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 150px;
  height: 60px;
  object-fit: contain;
}

.logo-text-main {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--color-blue);
}

.header-right {
  font-size: 13px;
  color: var(--color-muted);
}

.header-right strong {
  color: var(--color-blue);
}

main {
  padding: 24px;
  padding-bottom: 40px;
}

.hero {
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 30px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--color-blue-dark);
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }
}

.hero-lead {
  display: block;          /* gjør elementet full bredde */
  width: 100%;             /* full bredde av containeren */
  font-size: 15px;
  color: var(--color-muted);
  /*max-width: 640px; */
}

.hero-lead strong {
  color: var(--color-text);
}

.badge-free {
  display: block;          /* gjør elementet full bredde */
  width: 100%;             /* full bredde av containeren */
  text-align: center;      /* sentrerer teksten */
  margin: 18px 0 18px;
  padding: 12px 0;         /* mer «banner»-følelse */
  border-radius: 8px;
  background: var(--color-success-bg);
  color: var(--color-text);
  font-size: 18px;
  border: 1px solid rgba(72, 199, 156, 0.3);
  font-weight: 600;        /* litt tydeligere tekst */
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 4px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(10, 25, 56, 0.25);
  transition: background 0.12s ease, transform 0.05s ease, box-shadow 0.12s ease;
}

.btn-primary:hover {
  background: var(--color-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 25, 56, 0.3);
}

.btn-secondary-link {
  font-size: 14px;
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-note {
  margin-top: 6px;
  font-size: 12px;
  color: var(--color-muted);
}

hr.section-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 24px 0;
}

.section-title {
  font-size: 20px;
  margin-bottom: 16px;
  color: var(--color-blue-dark);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 720px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px 14px;
  text-align: left;
  border: 1px solid rgba(14, 53, 91, 0.06);
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(0, 164, 180, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-turquoise);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.step-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--color-text);
}

.step-text {
  font-size: 14px;
  color: var(--color-muted);
  text-align: center;
}

.step-illustration {
  display: block;
  max-width: 160px;   /* juster etter smak */
  width: 100%;
  height: auto;
  margin: 0 auto 12px; /* sentrer bildet og gi litt luft under */
}
.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 16px;
}

@media (max-width: 720px) {
  .two-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--color-text);
}

.bullet-icon {
  width: 18px;
  margin-top: 2px;
  color: var(--color-turquoise);
  font-size: 15px;
}

.future-heading {
  margin-top: 0;
  font-size: 17px;
  color: var(--color-blue-dark);
}

.future-text {
  font-size: 14px;
  color: var(--color-muted);
}

.faq-list {
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background: #fafbff;
  overflow: hidden;
}

/* Rad med spørsmål + pil */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-toggle {
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: inherit;
  cursor: pointer;
}

.faq-q {
  font-weight: 500;
  color: var(--color-text);
  text-align: left;
}

.faq-arrow {
  color: var(--color-muted);
  font-size: 18px;
  transition: transform 0.15s ease;
}

/* Selve svaret – skjult som default */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background: #f5f7ff;
  transition: max-height 0.2s ease, padding-top 0.2s ease, padding-bottom 0.2s ease;
}

.faq-answer p {
  margin: 8px 0 14px;
  font-size: 14px;
  color: var(--color-muted);
}

/* Når .open legges til via JS, vis svaret */
.faq-item.open .faq-answer {
  max-height: 200px; /* juster ved behov */
  padding-top: 4px;
  padding-bottom: 10px;
}

/* Rotér pilen når åpen */
.faq-item.open .faq-arrow {
  transform: rotate(90deg);
}

.footer-cta {
  margin-top: 24px;
  padding: 20px 18px 8px;
  border-radius: 14px;
  background: #f5f8ff;
  border: 1px solid rgba(14, 53, 91, 0.1);
}

.footer-cta h2 {
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--color-blue-dark);
}

.footer-cta p {
  font-size: 13px;
  color: var(--color-muted);
  margin: 6px 0 14px;
}

footer {
  padding: 0 24px 10px;
  font-size: 12px;
  color: var(--color-muted);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

footer a {
  color: var(--color-muted);
}