:root {
  --bg: #0f1722;
  --bg-soft: #162233;
  --panel: rgba(18, 28, 42, 0.82);
  --panel-solid: #132033;
  --panel-light: #f3ede3;
  --panel-light-2: #e6d9c4;
  --text: #f6f1e8;
  --text-soft: rgba(246, 241, 232, 0.76);
  --text-dark: #132033;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(19, 32, 51, 0.1);
  --accent: #c9a86a;
  --accent-strong: #e0bf82;
  --accent-soft: rgba(201, 168, 106, 0.18);
  --success: #d9c198;
  --shadow: 0 28px 80px rgba(5, 10, 18, 0.32);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1180px;
}

@font-face {
  font-family: "DM Sans";
  src: url("./assets/fonts/dm-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "DM Sans";
  src: url("./assets/fonts/dm-sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "DM Sans";
  src: url("./assets/fonts/dm-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(201, 168, 106, 0.16), transparent 28%),
    linear-gradient(180deg, #101927 0%, #0c1420 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.landing-page {
  min-height: 100vh;
  overflow-x: hidden;
}

.page-shell {
  width: min(var(--max-width), calc(100vw - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: rgba(10, 17, 28, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar.is-minimal .nav-links {
  display: none;
}

.topbar .hero-actions {
  display: none;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 12px;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  transform: translateY(-1px);
}

.cta-primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: #1a2230;
  box-shadow: 0 18px 36px rgba(201, 168, 106, 0.24);
  animation: ctaPrimaryPulse 4.8s ease-in-out infinite;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.cta-primary:hover,
.cta-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(201, 168, 106, 0.3);
}

/* Calendar icon so it's obvious the button opens booking */
.cta-primary::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2230' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4.5' width='18' height='16' rx='2'/><path d='M3 9h18M8 2.5v4M16 2.5v4'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


.hero {
  position: relative;
  padding: 72px 0 28px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 13, 20, 0.18), rgba(8, 13, 20, 0.88)),
    radial-gradient(circle at 12% 12%, rgba(201, 168, 106, 0.24), transparent 22%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: stretch;
}

.hero-card,
.hero-side {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  padding: clamp(30px, 5vw, 54px);
  background:
    linear-gradient(180deg, rgba(19, 32, 51, 0.7), rgba(11, 20, 32, 0.94)),
    url("./assets/images/02_NATURE/final-coast-image.png") center calc(50% - 3px) / cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-color: transparent;
}

.hero-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18px;
  background: linear-gradient(180deg, rgba(10, 17, 28, 0), rgba(10, 17, 28, 0.95));
  pointer-events: none;
}

.hero-side {
  display: grid;
  grid-template-rows: 1fr auto;
  background: linear-gradient(180deg, rgba(19, 32, 51, 0.86), rgba(14, 22, 33, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom-color: transparent;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero h1,
.section-copy h2,
.cta-panel h2,
.testimonial-carousel-title {
  margin: 0;
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(44px, 7vw, 78px);
}

.hero-intro {
  max-width: 34rem;
  margin: 22px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--text-soft);
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-soft);
}

.hero-points li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-soft);
}

.profile-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #101927;
}

.profile-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  transform: translateY(-2px);
  filter: brightness(0.82) saturate(0.88);
}

.profile-image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background:
    linear-gradient(180deg, rgba(10, 17, 28, 0.06), rgba(10, 17, 28, 0.34)),
    linear-gradient(180deg, rgba(10, 17, 28, 0), rgba(10, 17, 28, 0.68) 92%, rgba(10, 17, 28, 0.82));
  pointer-events: none;
}

.side-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(19, 32, 51, 0.9), rgba(14, 22, 33, 0.96));
}

.side-panel p {
  margin: 0;
}

.side-stat {
  display: grid;
  gap: 4px;
}

.side-stat strong {
  font-size: 15px;
  color: var(--accent-strong);
}

.side-stat span {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-soft);
}

.main-section {
  padding: 34px 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 98px;
}

.section-copy h2,
.cta-panel h2 {
  font-size: clamp(34px, 5vw, 52px);
  color: var(--panel-light);
}

.section-copy p {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-soft);
}

.content-stack {
  display: grid;
  gap: 18px;
}

.section-copy-wide {
  position: static;
  max-width: 58rem;
}

.card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(20, 31, 47, 0.92), rgba(13, 21, 32, 0.96));
  box-shadow: 0 20px 50px rgba(3, 8, 15, 0.2);
}

.card.light {
  border-color: var(--line-soft);
  background: linear-gradient(180deg, rgba(243, 237, 227, 0.98), rgba(231, 221, 203, 0.98));
  color: var(--text-dark);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
  color: inherit;
}

.outcome-grid,
.proof-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.outcome-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signature {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(19, 32, 51, 0.72);
}

.testimonial-carousel-section {
  padding: 42px 0;
}

.testimonial-carousel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 36px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #22314d 0%, #1a263d 100%);
  box-shadow: 0 24px 70px rgba(4, 10, 20, 0.22);
}

.testimonial-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  pointer-events: none;
}

.testimonial-carousel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
}

.testimonial-carousel .eyebrow {
  margin-bottom: 0;
}

.testimonial-carousel-title {
  max-width: 18ch;
  font-size: clamp(28px, 4.2vw, 52px);
  color: #f4efe7;
}

.testimonial-carousel-title-accent {
  color: var(--accent);
}

.testimonial-quote-mark {
  font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
}

.testimonial-slides {
  position: relative;
  width: min(760px, 100%);
  min-height: 210px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: grid;
  gap: 22px;
  align-content: start;
  justify-items: center;
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-slide p {
  margin: 0;
}

.testimonial-copy {
  max-width: 38ch;
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.6;
  letter-spacing: -0.01em;
  color: rgba(244, 239, 231, 0.94);
}

.testimonial-signature {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 231, 0.62);
  margin-bottom: 8px;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
}

.testimonial-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
  color: #f4efe7;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  border-color: rgba(201, 168, 106, 0.7);
  color: var(--accent-strong);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.testimonial-dot.is-active {
  background: var(--accent);
}

.social-proof-section {
  padding: 42px 0;
  scroll-margin-top: 120px;
}

.social-proof-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, #22314d 0%, #1a263d 100%);
  box-shadow: 0 24px 70px rgba(4, 10, 20, 0.22);
}

.social-proof-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  pointer-events: none;
}

.social-proof-header,
.social-proof-grid {
  position: relative;
  z-index: 1;
}

.social-proof-header {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.social-proof-header .eyebrow {
  margin-bottom: 0;
}

.social-proof-header h2 {
  max-width: 22ch;
  margin: 0 auto;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  color: #f4efe7;
}

.social-proof-header p:last-child {
  margin: 0;
  color: rgba(244, 239, 231, 0.72);
}

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

.social-proof-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0;
  min-height: 0;
  padding: clamp(26px, 2.8vw, 34px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(244, 239, 231, 0.12);
  background: rgba(244, 239, 231, 0.055);
}

.proof-label,
.proof-signature,
.social-proof-card blockquote {
  margin: 0;
}

.proof-label {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-proof-card blockquote {
  align-self: start;
  margin-top: 30px;
  color: rgba(244, 239, 231, 0.92);
  font-size: clamp(15px, 1.08vw, 16.5px);
  line-height: 1.66;
}

.proof-signature {
  align-self: end;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 231, 0.1);
  color: rgba(244, 239, 231, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 16px;
}

.step {
  position: relative;
  padding: 24px 24px 24px 78px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 24px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
}

.price-note {
  display: grid;
  gap: 10px;
}

.price-note strong {
  font-size: 16px;
  color: var(--accent-strong);
}

.price-note span {
  color: var(--text-soft);
}

.packages-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.packages-reveal {
  display: grid;
  gap: 18px;
}

.packages-panel {
  display: block;
}

.package-card {
  display: grid;
  gap: 14px;
}

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

.package-price {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.package-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 700;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

.faq-item[open] p {
  animation: faq-reveal 0.18s ease both;
}

@keyframes faq-reveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-strong);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-soft);
}

.faq-item.light p {
  color: rgba(19, 32, 51, 0.82);
}

.cta-panel {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 5vw, 42px);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(31, 45, 70, 0.98), rgba(22, 33, 52, 0.98)),
    radial-gradient(circle at 20% 20%, rgba(201, 168, 106, 0.14), transparent 26%);
  color: var(--text);
  box-shadow: 0 24px 70px rgba(5, 10, 18, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-panel .eyebrow {
  color: var(--accent-strong);
}

.cta-panel h2 {
  color: var(--text);
  text-shadow: none;
  max-width: 18ch;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-panel p {
  margin: 0;
  max-width: 42rem;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-soft);
}

.cta-panel .cta-link.cta-primary {
  align-self: start;
}

.cta-panel .cta-link.cta-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.cta-panel .cta-link.cta-secondary:hover,
.cta-panel .cta-link.cta-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 106, 0.48);
}

.micro-note {
  font-size: 14px;
  color: rgba(244, 239, 231, 0.68);
}

.footer {
  padding: 20px 0 42px;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--text-soft);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
}

.booking-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-list li {
  padding-left: 18px;
  position: relative;
  color: rgba(19, 32, 51, 0.82);
  line-height: 1.6;
}

.cta-panel .booking-list li {
  color: rgba(244, 239, 231, 0.88);
}

.booking-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.booking-box {
  display: grid;
  gap: 16px;
  align-content: start;
}

.booking-box .card {
  min-height: 100%;
}

.booking-box .card.light strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.theme-overthinking .hero-card {
  background:
    linear-gradient(180deg, rgba(19, 32, 51, 0.64), rgba(10, 17, 28, 0.92)),
    url("./assets/images/07_SELECTED/overtenker-spiraltrapp.jpg") center/cover;
}

.theme-start .hero-card {
  background:
    linear-gradient(180deg, rgba(19, 32, 51, 0.64), rgba(10, 17, 28, 0.92)),
    url("./assets/images/04_NATURE_ARCHITECTURE/12384919.jpg") center/cover;
}

.theme-free-call .hero-card {
  background:
    linear-gradient(180deg, rgba(19, 32, 51, 0.62), rgba(10, 17, 28, 0.9)),
    url("./assets/images/07_SELECTED/gratis-topp-silhuetter.jpg") center/cover;
}

.theme-mentaltraining .hero-card {
  background:
    linear-gradient(180deg, rgba(19, 32, 51, 0.58), rgba(10, 17, 28, 0.9)),
    url("./assets/images/07_SELECTED/mentaltrening-lopelinjer.jpg") center/cover;
}

@keyframes ctaPrimaryPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 36px rgba(201, 168, 106, 0.22);
  }
  50% {
    transform: translateY(-1px);
    box-shadow: 0 22px 42px rgba(201, 168, 106, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-primary {
    animation: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .hero-card {
    min-height: auto;
  }

  .profile-image {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    flex-wrap: wrap;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-card,
  .side-panel,
  .card,
  .cta-panel {
    padding: 22px;
  }

  /* Mobil: CTA-knapper full bredde + tekstbryting, så lange knapper aldri renner ut av sida */
  .hero-card .hero-actions,
  .cta-panel .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-card .hero-actions .cta-link,
  .cta-panel .hero-actions .cta-link {
    width: 100%;
    white-space: normal;
    height: auto;
    min-height: 52px;
    line-height: 1.25;
    padding: 13px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-copy h2,
  .cta-panel h2 {
    font-size: 34px;
  }

  .outcome-grid,
  .proof-grid,
  .packages-grid,
  .social-proof-grid {
    grid-template-columns: 1fr;
  }

  .social-proof-header {
    text-align: left;
  }

  .social-proof-header h2 {
    margin: 0;
  }

  .social-proof-card {
    min-height: 0;
    gap: 0;
  }

  .testimonial-slides {
    min-height: 250px;
  }

  .testimonial-copy {
    font-size: 19px;
  }

  .footer-copy {
    flex-direction: column;
  }
}

/* === Lead-capture modal (added) === */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 12, 18, 0.74);
}
.lead-modal.is-open { display: flex; }
.lead-dialog {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow: auto;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 32px 26px 26px;
}
.lead-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.lead-close:hover { color: var(--text); border-color: var(--accent); }
.lead-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 12px;
}
.lead-dialog h2 { font-size: 26px; line-height: 1.14; color: var(--text); margin: 0 0 10px; }
.lead-intro { font-size: 15px; line-height: 1.55; color: var(--text-soft); margin: 0 0 18px; }
.lead-points { list-style: none; padding: 0; margin: 0 0 20px; }
.lead-points li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 9px;
}
.lead-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.lead-field { margin-bottom: 13px; }
.lead-field label { display: block; font-size: 13px; color: var(--text-soft); margin: 0 0 6px; }
.lead-field input,
.lead-field textarea {
  width: 100%;
  box-sizing: border-box;
  background: #0f141d;
  border: 1px solid var(--line);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.lead-field textarea { resize: vertical; }
.lead-field input::placeholder,
.lead-field textarea::placeholder { color: rgba(246, 241, 232, 0.4); }
.lead-field input:focus,
.lead-field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.lead-submit {
  width: 100%;
  margin-top: 6px;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #21180a;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
}
.lead-submit:hover { filter: brightness(1.05); }
.lead-submit[disabled] { opacity: 0.6; cursor: default; }
.lead-fineprint { font-size: 12.5px; color: var(--text-soft); text-align: center; margin: 12px 0 0; }
.lead-direct { text-align: center; margin: 14px 0 0; }
.lead-direct a { color: var(--accent); text-decoration: none; font-size: 13px; }
.lead-direct a:hover { color: var(--accent-strong); }
.lead-contact { font-size: 12.5px; line-height: 1.5; color: var(--text-soft); text-align: center; margin: 12px 0 0; padding-top: 12px; border-top: 1px solid var(--line); }
.lead-contact a { color: var(--accent); text-decoration: none; white-space: nowrap; }
.lead-contact a:hover { color: var(--accent-strong); }
.lead-dialog.is-booking { max-width: 900px; }
#cal-inline-booking { margin-top: 10px; border-radius: var(--radius-md); overflow: hidden; }
.hero-direct-contact { font-size: 13px; line-height: 1.5; color: var(--text-soft); margin: 12px 0 0; }
.hero-direct-contact a, .footer-direct-contact a { color: var(--accent); text-decoration: none; }
.hero-direct-contact a:hover, .footer-direct-contact a:hover { color: var(--accent-strong); }
.footer-direct-contact { color: var(--text-soft); }
.lead-success { text-align: center; padding: 10px 4px; }
.lead-success .lead-check {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 6px auto 16px;
}

/* === Sticky mobil-CTA === */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 900;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(transparent, rgba(9, 14, 22, .88) 30%);
  transform: translateY(110%);
  transition: transform .3s cubic-bezier(.2, .8, .2, 1);
  pointer-events: none;
  display: none;
}
.sticky-cta.is-visible { transform: none; pointer-events: auto; }
.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e0bf82, #c9a86a);
  color: #1a2230;
  font-weight: 800;
  font-size: 15.5px;
  text-decoration: none;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, .35), 0 10px 30px rgba(201, 168, 106, .35);
}
@media (max-width: 760px) {
  .sticky-cta { display: block; }
}
@media (max-width: 760px) {
  /* Løft e-bok-knappen over sticky-CTAen så de ikke overlapper */
  body.has-sticky-cta .eb-fab { bottom: 92px !important; }
}
