/* =========================================================
   KÆRFRI – SAMLET STYLE.CSS
   Forside + Psykolog + Coaching
   ========================================================= */


/* =========================================================
   DESIGN TOKENS
   ========================================================= */

:root {
  --green-dark: #244f3b;
  --green: #527a63;
  --green-soft: #e7efe6;
  --green-pale: #f3f7f2;

  --cream: #faf7f1;
  --cream-dark: #f3eee4;

  --text: #26332c;
  --muted: #68736c;

  --border: rgba(36, 79, 59, 0.13);

  --shadow:
    0 10px 28px rgba(24, 55, 41, 0.07);

  --shadow-large:
    0 20px 50px rgba(24, 55, 41, 0.12);
}


/* =========================================================
   RESET
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: #ffffff;
  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;

  font-size: 16px;
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

p {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-top: 0;

  color: var(--green-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-weight: 700;
}

h2 {
  margin-bottom: 18px;

  font-size: clamp(2rem, 3.4vw, 3.1rem);

  line-height: 1.08;
  letter-spacing: -0.02em;
}

h3 {
  line-height: 1.3;
}


/* =========================================================
   GENERELT LAYOUT
   ========================================================= */

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.soft-section {
  background:
    linear-gradient(
      180deg,
      #f4f7f2,
      #faf7f1
    );
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading.center {
  max-width: 760px;

  margin-left: auto;
  margin-right: auto;

  text-align: center;
}

.section-heading > p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  margin-bottom: 12px;

  color: var(--green);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  color: var(--green-dark);

  font-size: 0.9rem;
  font-weight: 700;

  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}


/* =========================================================
   KNAPPER
   ========================================================= */

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 13px 23px;

  border: 0;
  border-radius: 999px;

  background: var(--green-dark);
  color: #ffffff;

  font-weight: 700;
  line-height: 1.3;

  cursor: pointer;

  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);

  background: #1d4433;

  box-shadow:
    0 10px 22px rgba(36, 79, 59, 0.18);
}

.btn-small {
  min-height: 42px;

  padding: 10px 18px;

  font-size: 0.88rem;
}

.btn-secondary {
  background: transparent;

  color: var(--green-dark);

  border: 1px solid var(--green);
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;

  background: rgba(255, 255, 255, 0.95);

  border-bottom:
    1px solid rgba(36, 79, 59, 0.08);

  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 76px;

  display: flex;
  align-items: center;

  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;

  gap: 11px;

  margin-right: auto;
}

.brand-mark {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--green-soft);
  color: var(--green-dark);

  font-size: 1.25rem;
}

.brand-name {
  color: var(--green-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.25rem;
  font-weight: 700;

  line-height: 1.1;
}

.brand-subtitle {
  margin-top: 2px;

  color: var(--muted);

  font-size: 0.7rem;
}

.main-nav {
  display: flex;
  align-items: center;

  gap: 19px;
}

.main-nav a {
  color: var(--text);

  font-size: 0.8rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--green);
}


/* =========================================================
   FORSIDE – HERO
   ========================================================= */

.hero {
  padding: 58px 0 70px;

  background:
    linear-gradient(
      180deg,
      #fbf8f2,
      #f7f4ed
    );
}

.hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(350px, 0.92fr);

  gap: 62px;

  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero h1 {
  max-width: 720px;

  margin-bottom: 24px;

  font-size: clamp(3rem, 5vw, 4.8rem);

  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-lead {
  max-width: 630px;

  margin-bottom: 17px;

  font-size: 1.06rem;
  line-height: 1.66;
}

.hero-strong {
  max-width: 630px;

  margin-bottom: 21px;

  color: var(--green-dark);

  font-weight: 700;
  line-height: 1.62;
}

.location-line {
  display: flex;
  align-items: center;

  gap: 10px;

  color: var(--green-dark);

  font-size: 0.9rem;
  font-weight: 600;
}

.icon-circle {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  flex: 0 0 30px;

  border-radius: 50%;

  background: var(--green-soft);
}

.hero-actions {
  margin-top: 27px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 18px;
}


/* HERO ROOM – FYLD RAMMEN MED MINIMAL BESKÆRING */

.hero-image-wrap {
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #f6f4ee;

  border-radius: 30px;

  box-shadow: var(--shadow-large);
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;

  object-fit: cover;
  object-position: center;
}


/* =========================================================
   FORSIDE – GENKENDELSE
   ========================================================= */

.recognition-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.recognition-card {
  min-height: 205px;

  padding: 26px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.recognition-icon {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  margin-bottom: 17px;

  border-radius: 50%;

  background: var(--green-soft);

  font-size: 1.1rem;
}

.recognition-card h3 {
  margin-bottom: 8px;

  font-size: 1.13rem;
}

.recognition-card p {
  margin: 0;

  color: var(--muted);

  font-size: 0.92rem;
  line-height: 1.58;
}

.recognition-bottom {
  max-width: 780px;

  margin: 36px auto 0;

  text-align: center;
}

.gentle-note {
  color: var(--green-dark);
  line-height: 1.65;
}


/* =========================================================
   FORSIDE – ANBEFALINGER
   ========================================================= */

.testimonials-section {
  background: #ffffff;
}

.testimonials-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;
}

.testimonial-card {
  padding: 29px;

  background:
    linear-gradient(
      145deg,
      #f6f8f3,
      #ffffff
    );

  border: 1px solid var(--border);

  border-radius: 22px;

  box-shadow: var(--shadow);
}

.testimonial-featured {
  background:
    linear-gradient(
      145deg,
      #eef4eb,
      #ffffff
    );
}

.quote-mark {
  color: var(--green);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 3.5rem;
  line-height: 0.8;

  opacity: 0.35;
}

.testimonial-card blockquote {
  margin: 8px 0 17px;

  color: var(--green-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.33;
}

.testimonial-card p {
  color: var(--text);

  font-size: 0.91rem;
  line-height: 1.62;
}

.testimonial-person {
  margin-top: 20px;

  color: var(--green-dark);

  font-size: 0.84rem;
}

.professional-quote {
  max-width: 900px;

  margin: 26px auto 0;

  padding: 22px 26px;

  display: flex;
  align-items: flex-start;

  gap: 18px;

  background: var(--green-pale);

  border: 1px solid var(--border);

  border-radius: 18px;
}

.professional-quote-icon {
  color: var(--green);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 3rem;
  line-height: 0.9;

  opacity: 0.35;
}

.testimonial-provider {
  margin-bottom: 16px;

  color: var(--green);

  font-size: 0.72rem;
  font-weight: 800;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   FORSIDE – SIMONE & JESPER
   ========================================================= */

.help-choice-section {
  background:
    linear-gradient(
      180deg,
      #f4f7f2,
      #faf7f1
    );
}

.shared-topics {
  margin-bottom: 38px;

  text-align: center;
}

.shared-topics-label {
  margin-bottom: 12px;

  color: var(--muted);

  font-size: 0.82rem;
  font-weight: 600;
}

.topic-list {
  display: flex;

  justify-content: center;
  flex-wrap: wrap;

  gap: 9px;
}

.topic-list span {
  padding: 8px 13px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 999px;

  color: var(--green-dark);

  font-size: 0.78rem;
  font-weight: 600;
}

.practitioner-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 24px;
}

.practitioner-card {
  overflow: hidden;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 24px;

  box-shadow: var(--shadow);
}

.practitioner-card-featured {
  border-color:
    rgba(36, 79, 59, 0.22);
}


/* PROFILBILLEDER – PORTRÆTRAMME MED BEGRÆNSET BESKÆRING */

.profile-image {
  width: 100%;
  aspect-ratio: 4 / 5;

  object-fit: cover;
  object-position: center 25%;

  background: #f6f4ee;
}

.practitioner-card > div {
  padding: 29px 30px 31px;
}

.choice-type {
  margin-bottom: 5px;

  color: var(--green);

  font-size: 0.76rem;
  font-weight: 800;

  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.practitioner-card h3 {
  margin-bottom: 7px;

  font-size: 1.8rem;
}

.choice-subtitle {
  margin-bottom: 15px;

  color: var(--green-dark);

  font-size: 0.9rem;
  font-weight: 700;
}

.choice-intro {
  color: var(--muted);

  line-height: 1.62;
}

.practitioner-list {
  margin: 22px 0 0;
  padding: 0;

  list-style: none;

  display: grid;

  gap: 10px;
}

.practitioner-list li {
  position: relative;

  padding-left: 28px;

  color: var(--text);

  font-size: 0.9rem;
  line-height: 1.5;
}

.practitioner-list li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 1px;

  width: 20px;
  height: 20px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--green-soft);

  color: var(--green-dark);

  font-size: 0.68rem;
  font-weight: 900;
}

.practice-highlight {
  margin-top: 24px;

  padding: 19px 20px;

  background:
    linear-gradient(
      145deg,
      #244f3b,
      #315f48
    );

  border-radius: 15px;

  color: #ffffff;
}

.practice-highlight strong {
  display: block;

  margin-bottom: 5px;

  color: #ffffff;

  font-size: 0.93rem;
}

.practice-highlight span {
  display: block;

  color: rgba(255, 255, 255, 0.78);

  font-size: 0.81rem;
  line-height: 1.5;
}

.choice-help {
  max-width: 790px;

  margin: 30px auto 0;

  padding: 24px 26px;

  display: flex;
  align-items: flex-start;

  gap: 16px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 18px;
}

.choice-help-icon {
  width: 36px;
  height: 36px;

  display: grid;
  place-items: center;

  flex: 0 0 36px;

  border-radius: 50%;

  background: var(--green-soft);

  color: var(--green-dark);

  font-weight: 800;
}


/* =========================================================
   VORES TILGANG – NYT LAYOUT
   ========================================================= */

.approach-section .container {
  max-width: 1120px;
}


/* INTRO */

.approach-intro {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.approach-intro h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.approach-intro > p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}


/* TRIN + ISBJERG */

.approach-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 64px;
  align-items: center;
}


/* TRIN */

.approach-content-grid .approach-steps {
  margin-top: 0;
}


/* ISBJERG */

.approach-content-grid .iceberg-card {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 440px;

  padding: 24px;

  overflow: hidden;
}

.approach-content-grid .iceberg-card img {
  display: block;

  width: 100%;
  height: auto;
  max-height: 500px;

  object-fit: contain;
  object-position: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

  .approach-intro {
    margin-bottom: 42px;
  }

  .approach-content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .approach-content-grid .approach-steps {
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .approach-content-grid .iceberg-card {
    max-width: 650px;
    min-height: auto;

    margin-left: auto;
    margin-right: auto;
  }

  .approach-content-grid .iceberg-card img {
    max-height: none;
  }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 640px) {

  .approach-intro {
    margin-bottom: 32px;
    text-align: left;
  }

  .approach-intro h2,
  .approach-intro > p:not(.eyebrow) {
    max-width: none;
  }

  .approach-content-grid {
    gap: 28px;
  }

  .approach-content-grid .iceberg-card {
    padding: 14px;
  }

}

/* =========================================================
   FORSIDE – PROCESS
   ========================================================= */

.process-section {
  background:
    linear-gradient(
      180deg,
      #f7f9f5,
      #ffffff
    );
}

.simple-process-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.simple-process-card {
  padding: 28px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.start-number {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--green);

  font-size: 0.8rem;
  font-weight: 800;

  letter-spacing: 0.08em;
}

.simple-process-card p {
  margin-bottom: 0;

  color: var(--muted);

  font-size: 0.91rem;
  line-height: 1.58;
}

.process-cta {
  margin-top: 32px;

  text-align: center;
}


/* =========================================================
   FORSIDE – PRISER
   ========================================================= */

.info-grid {
  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  gap: 70px;

  align-items: start;
}

.practical-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 14px;
}

.practical-card {
  padding: 22px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 16px;
}

.practical-icon {
  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  margin-bottom: 15px;

  border-radius: 50%;

  background: var(--green-soft);

  color: var(--green-dark);

  font-weight: 800;
}

.practical-card h3 {
  margin-bottom: 2px;

  font-size: 1rem;
}

.practical-card p {
  margin-bottom: 6px;

  color: var(--muted);

  font-size: 0.84rem;
}

.practical-card strong {
  display: block;

  color: var(--green-dark);

  font-size: 1.05rem;
}

.practical-note {
  margin-top: 16px;

  color: var(--muted);

  font-size: 0.82rem;
  line-height: 1.5;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-list {
  display: grid;

  gap: 10px;
}

.faq-list details {
  overflow: hidden;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 14px;
}

.faq-list summary {
  position: relative;

  padding:
    18px
    48px
    18px
    20px;

  color: var(--green-dark);

  font-weight: 700;

  cursor: pointer;

  list-style: none;
}

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

.faq-list summary::after {
  content: "+";

  position: absolute;

  top: 50%;
  right: 20px;

  transform: translateY(-50%);

  color: var(--green);

  font-size: 1.3rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;

  padding:
    0
    20px
    20px;

  color: var(--muted);

  font-size: 0.91rem;
  line-height: 1.6;
}


/* =========================================================
   BOOKING
   ========================================================= */

.booking-section {
  padding: 88px 0;

  background:
    linear-gradient(
      120deg,
      #244f3b,
      #315f48
    );

  color: #ffffff;
}

.booking-grid {
  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  gap: 72px;

  align-items: center;
}

.booking-intro h2 {
  color: #ffffff;
}

.booking-lead {
  max-width: 560px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 1.03rem;
  line-height: 1.65;
}

.booking-benefits {
  margin-top: 30px;

  display: grid;

  gap: 16px;
}

.booking-benefit {
  display: flex;

  align-items: flex-start;

  gap: 13px;
}

.booking-benefit > span {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  flex: 0 0 28px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.13);

  font-size: 0.75rem;
  font-weight: 900;
}

.booking-benefit strong {
  color: #ffffff;
}

.booking-benefit p {
  margin: 2px 0 0;

  color: rgba(255, 255, 255, 0.70);

  font-size: 0.86rem;
}

.booking-card {
  padding: 30px;

  background: #ffffff;

  border-radius: 24px;

  box-shadow:
    0 22px 50px rgba(10, 29, 20, 0.25);

  color: var(--text);
}

.booking-form {
  display: grid;

  gap: 17px;
}


/* =========================================================
   BOOKING – PERSONVALG
   ========================================================= */

.booking-choice {
  margin: 0;
  padding: 0;

  border: 0;
}

.booking-choice legend {
  margin-bottom: 8px;

  color: var(--green-dark);

  font-size: 0.83rem;
  font-weight: 700;
}

.booking-choice-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 10px;
}

.booking-person {
  position: relative;

  cursor: pointer;
}

.booking-person input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}

.booking-person-content {
  min-height: 70px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 13px 15px;

  background: #ffffff;

  border:
    1px solid rgba(36, 79, 59, 0.16);

  border-radius: 12px;
}

.booking-person input:checked
+ .booking-person-content {
  background: var(--green-pale);

  border-color: var(--green);
}

.booking-person-content strong {
  display: block;

  color: var(--green-dark);

  font-size: 0.9rem;
}

.booking-person-content small {
  display: block;

  margin-top: 2px;

  color: var(--muted);

  font-size: 0.72rem;
  line-height: 1.35;
}

.booking-person-content small + small {
  margin-top: 3px;
}

.booking-person-wide {
  grid-column: 1 / -1;
}

.booking-person-static {
  padding: 16px 18px;

  background: var(--green-pale);

  border: 1px solid var(--border);

  border-radius: 14px;
}

.booking-person-static
.booking-person-content {
  min-height: 0;

  padding: 0;

  background: transparent;

  border: 0;
}


/* =========================================================
   FORMULAR
   ========================================================= */

.form-field {
  display: grid;

  gap: 6px;
}

.form-field label {
  color: var(--green-dark);

  font-size: 0.83rem;
  font-weight: 700;
}

.form-field label span {
  margin-left: 4px;

  color: var(--muted);

  font-size: 0.72rem;
  font-weight: 400;
}

.form-field input,
.form-field textarea {
  width: 100%;

  padding: 12px 13px;

  border:
    1px solid rgba(36, 79, 59, 0.18);

  border-radius: 10px;

  outline: none;

  color: var(--text);

  background: #ffffff;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green);

  box-shadow:
    0 0 0 3px rgba(82, 122, 99, 0.10);
}

.form-field textarea {
  resize: vertical;
}

.privacy-check {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  color: var(--muted);

  font-size: 0.78rem;
  line-height: 1.45;
}

.privacy-check input {
  margin-top: 3px;
}

.booking-submit {
  width: 100%;
}

.booking-smallprint {
  margin: -3px 0 0;

  color: var(--muted);

  text-align: center;

  font-size: 0.72rem;
}

.honeypot {
  position: absolute !important;

  left: -9999px !important;

  width: 1px;
  height: 1px;

  overflow: hidden;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  padding: 34px 0;

  background: #18392b;

  color: #ffffff;
}

.footer-inner {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.footer .brand-name {
  color: #ffffff;
}

.footer .brand-subtitle {
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: flex;

  flex-wrap: wrap;

  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.74);

  font-size: 0.8rem;
}


/* =========================================================
   MOBIL BOOKING BAR
   ========================================================= */

.mobile-booking-bar {
  display: none;
}


/* =========================================================
   PSYKOLOG – HERO
   ========================================================= */

.psych-new-hero {
  padding: 54px 0 68px;

  background:
    linear-gradient(
      180deg,
      #f8faf7,
      #f4f7f2
    );
}

.psych-new-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.78fr);

  gap: 64px;

  align-items: center;
}

.psych-new-hero-copy {
  max-width: 680px;
}

.psych-new-hero-copy h1 {
  max-width: 700px;

  margin: 0 0 24px;

  font-size: clamp(3rem, 5vw, 4.9rem);

  line-height: 1.01;
  letter-spacing: -0.03em;
}

.psych-new-hero-lead {
  max-width: 620px;

  margin-bottom: 16px;

  font-size: 1.05rem;
  line-height: 1.65;
}

.psych-new-hero-strong {
  max-width: 620px;

  color: var(--green-dark);

  font-weight: 700;
  line-height: 1.6;
}

.psych-new-hero-actions {
  margin-top: 26px;
}

.psych-new-location {
  margin-top: 24px;

  display: flex;
  align-items: center;

  gap: 10px;

  color: var(--green-dark);
}

.psych-new-location > span {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  flex: 0 0 30px;

  border-radius: 50%;

  background: var(--green-soft);
}

.psych-new-location p {
  margin: 0;

  font-size: 0.9rem;
  font-weight: 600;
}


/* PSYKOLOG HERO FOTO */

.psych-new-hero-profile {
  position: relative;

  max-width: 470px;

  margin-left: auto;

  overflow: hidden;

  border-radius: 30px;

  background: #f6f4ee;

  box-shadow: var(--shadow-large);
}

.psych-new-hero-profile img {
  width: 100%;
  height: auto;

  max-height: 560px;

  object-fit: contain;
  object-position: center;
}

.psych-new-profile-card {
  position: absolute;

  left: 18px;
  right: 18px;
  bottom: 18px;

  padding: 18px 20px;

  background: rgba(255, 255, 255, 0.94);

  border:
    1px solid rgba(36, 79, 59, 0.12);

  border-radius: 16px;

  backdrop-filter: blur(8px);
}

.psych-new-profile-card strong {
  display: block;

  color: var(--green-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.35rem;
}

.psych-new-profile-card span {
  display: block;

  margin-top: 3px;

  color: var(--green-dark);

  font-size: 0.86rem;
  font-weight: 700;
}

.psych-new-profile-card small {
  display: block;

  margin-top: 3px;

  color: var(--muted);

  font-size: 0.75rem;
}


/* =========================================================
   PSYKOLOG – GENKENDELSE
   ========================================================= */

.psych-help-section {
  background: #ffffff;
}

.psych-help-grid {
  display: grid;

  grid-template-columns:
    0.82fr
    1.18fr;

  gap: 72px;

  align-items: start;
}

.psych-help-intro {
  position: sticky;

  top: 115px;

  max-width: 470px;
}

.psych-help-intro p {
  color: var(--muted);
}

.psych-help-list {
  display: grid;

  gap: 14px;
}

.psych-help-list article {
  padding: 24px 26px;

  display: grid;

  grid-template-columns:
    48px
    1fr;

  gap: 18px;

  background:
    linear-gradient(
      145deg,
      #f6f8f3,
      #eef3ec
    );

  border: 1px solid var(--border);

  border-radius: 18px;
}

.psych-help-list article > span {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--green-dark);

  color: #ffffff;

  font-size: 0.76rem;
  font-weight: 800;
}

.psych-help-list h3 {
  margin-bottom: 7px;
}

.psych-help-list p {
  margin: 0;

  color: var(--muted);
}


/* =========================================================
   PSYKOLOG – TILLID
   ========================================================= */

.psych-trust-section {
  padding-top: 64px;
  padding-bottom: 64px;

  background:
    linear-gradient(
      120deg,
      #244f3b,
      #315f48
    );

  color: #ffffff;
}

.psych-trust-inner {
  max-width: 900px;

  text-align: center;
}

.psych-trust-inner h2 {
  color: #ffffff;
}

.psych-trust-inner > p:not(.eyebrow) {
  max-width: 720px;

  margin-left: auto;
  margin-right: auto;

  color: rgba(255, 255, 255, 0.78);
}

.psych-trust-points {
  margin-top: 30px;

  display: flex;

  justify-content: center;
  flex-wrap: wrap;

  gap: 12px;
}

.psych-trust-points > div {
  padding: 10px 15px;

  display: flex;
  align-items: center;

  gap: 8px;

  background: rgba(255, 255, 255, 0.09);

  border:
    1px solid rgba(255, 255, 255, 0.12);

  border-radius: 999px;
}


/* =========================================================
   PSYKOLOG – SAMTALEN
   ========================================================= */

.psych-session-section {
  background:
    linear-gradient(
      180deg,
      #f7f9f5,
      #ffffff
    );
}

.psych-session-grid {
  display: grid;

  grid-template-columns:
    1fr
    0.9fr;

  gap: 70px;

  align-items: center;
}

.psych-session-copy p {
  color: var(--muted);
}

.psych-session-lead {
  color: var(--text) !important;

  font-size: 1.05rem;
}

.psych-session-highlight {
  margin-top: 28px;

  padding: 22px 24px;

  background: var(--green-dark);

  border-radius: 16px;
}

.psych-session-highlight strong {
  display: block;

  margin-bottom: 6px;

  color: #ffffff;
}

.psych-session-highlight p {
  margin: 0;

  color: rgba(255, 255, 255, 0.78);
}

.psych-session-panel {
  display: grid;

  gap: 18px;
}

.psych-session-panel > div {
  padding: 27px 26px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.psych-session-panel > div > span {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  margin-bottom: 14px;

  border-radius: 50%;

  background: var(--green-soft);

  color: var(--green-dark);

  font-weight: 800;
}


/* =========================================================
   PSYKOLOG – RESULTATER
   ========================================================= */

.psych-outcomes-section {
  background:
    linear-gradient(
      180deg,
      #f3f7f2,
      #faf7f1
    );
}

.psych-outcomes-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.psych-outcomes-grid article {
  padding: 26px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.psych-outcomes-grid article > span {
  display: block;

  margin-bottom: 15px;

  color: var(--green);

  font-size: 0.78rem;
  font-weight: 800;
}

.psych-outcomes-grid strong {
  display: block;

  margin-bottom: 8px;

  color: var(--green-dark);
}

.psych-outcomes-grid p {
  margin: 0;

  color: var(--muted);
}


/* =========================================================
   PSYKOLOG – OM SIMONE
   ========================================================= */

.psych-about-section {
  background: #ffffff;
}

.psych-about-grid {
  display: grid;

  grid-template-columns:
    0.72fr
    1.28fr;

  gap: 72px;

  align-items: center;
}

.psych-about-photo {
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #f6f4ee;

  border-radius: 28px;

  box-shadow: var(--shadow-large);
}

.psych-about-photo img {
  width: 100%;
  height: auto;

  max-height: 560px;

  object-fit: contain;
  object-position: center;
}

.psych-about-copy {
  max-width: 700px;
}

.psych-about-intro {
  color: var(--green-dark);

  font-size: 1.05rem;
  font-weight: 600;
}

.psych-credentials {
  margin: 28px 0;

  display: grid;

  gap: 12px;
}

.psych-credentials > div {
  display: flex;

  align-items: flex-start;

  gap: 12px;
}

.psych-credentials span {
  width: 26px;
  height: 26px;

  display: grid;
  place-items: center;

  flex: 0 0 26px;

  border-radius: 50%;

  background: var(--green-soft);

  color: var(--green-dark);

  font-weight: 900;
}


/* =========================================================
   PSYKOLOG – HVORNÅR
   ========================================================= */

.psych-when-section {
  background:
    linear-gradient(
      180deg,
      #f3f7f2,
      #faf7f1
    );
}

.psych-when-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.psych-when-grid article {
  min-height: 180px;

  padding: 26px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.psych-when-grid strong {
  display: block;

  margin-bottom: 8px;

  color: var(--green-dark);
}

.psych-when-grid p {
  color: var(--muted);
}


/* =========================================================
   PSYKOLOG – START
   ========================================================= */

.psych-start-section {
  background: #ffffff;
}

.psych-start-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.psych-start-grid > div {
  padding: 28px;

  background:
    linear-gradient(
      145deg,
      #f8f9f6,
      #f1f5ef
    );

  border: 1px solid var(--border);

  border-radius: 18px;
}

.psych-start-grid span {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--green);

  font-size: 0.82rem;
  font-weight: 800;
}

.psych-start-grid p {
  margin-bottom: 0;

  color: var(--muted);
}


/* =========================================================
   PSYKOLOG / COACHING – PRAKTISK
   ========================================================= */

.psych-new-info-grid,
.coaching-info-grid {
  display: grid;

  grid-template-columns:
    0.9fr
    1.1fr;

  gap: 70px;

  align-items: start;
}

.psych-new-practical-list {
  display: grid;

  gap: 12px;
}

.psych-new-practical-list > div {
  padding: 18px 20px;

  display: flex;
  align-items: center;

  gap: 16px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 14px;
}

.psych-new-practical-list > div > span {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  flex: 0 0 42px;

  border-radius: 50%;

  background: var(--green-soft);

  color: var(--green-dark);

  font-weight: 700;
}

.psych-new-practical-list section {
  margin: 0;
  padding: 0;
}

.psych-new-practical-list strong {
  display: block;

  color: var(--green-dark);
}

.psych-new-practical-list p {
  margin: 2px 0 0;

  color: var(--muted);

  font-size: 0.88rem;
}


/* =========================================================
   COACHING – HERO
   ========================================================= */

.coach-convert-hero {
  padding: 54px 0 68px;

  background:
    linear-gradient(
      180deg,
      #fbf8f2,
      #f6f2ea
    );
}

.coach-convert-hero-grid {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.78fr);

  gap: 64px;

  align-items: center;
}

.coach-convert-hero-copy {
  max-width: 690px;
}

.coach-convert-hero-copy h1 {
  max-width: 720px;

  margin: 0 0 24px;

  font-size: clamp(3rem, 5vw, 4.9rem);

  line-height: 1.01;
  letter-spacing: -0.03em;
}

.coach-convert-lead {
  max-width: 630px;

  margin-bottom: 16px;

  font-size: 1.06rem;
  line-height: 1.65;
}

.coach-convert-text {
  max-width: 630px;

  color: var(--muted);
}

.coach-convert-strong {
  max-width: 630px;

  color: var(--green-dark);

  font-weight: 700;
}

.coach-convert-reassurance {
  max-width: 620px;

  color: var(--muted);

  font-style: italic;
}

.coach-convert-actions {
  margin-top: 26px;
}

.coach-convert-location {
  margin-top: 24px;

  display: flex;
  align-items: center;

  gap: 10px;

  color: var(--green-dark);
}

.coach-convert-location > span {
  width: 30px;
  height: 30px;

  display: grid;
  place-items: center;

  flex: 0 0 30px;

  border-radius: 50%;

  background: var(--green-soft);
}

.coach-convert-location p {
  margin: 0;

  font-size: 0.9rem;
  font-weight: 600;
}


/* COACH HERO FOTO – VIS HELE BILLEDET */

.coach-convert-profile {
  position: relative;

  max-width: 470px;

  margin-left: auto;

  overflow: hidden;

  background: #f6f4ee;

  border-radius: 30px;

  box-shadow: var(--shadow-large);
}

.coach-convert-profile img {
  width: 100%;
  height: auto;

  max-height: 560px;

  object-fit: contain;
  object-position: center;
}


/* =========================================================
   COACHING – GENKENDELSE
   ========================================================= */

.coach-recognition-section {
  background: #ffffff;
}

.coach-recognition-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.coach-recognition-grid article {
  min-height: 220px;

  padding: 26px;

  background:
    linear-gradient(
      145deg,
      #f7f9f5,
      #eff4ed
    );

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.coach-recognition-grid article > span {
  display: inline-block;

  margin-bottom: 18px;

  color: var(--green);

  font-size: 0.78rem;
  font-weight: 800;
}

.coach-recognition-grid p {
  margin: 0;

  color: var(--muted);
}

.coach-recognition-note {
  max-width: 760px;

  margin: 34px auto 0;

  text-align: center;
}


/* =========================================================
   COACHING – AUTORITET
   ========================================================= */

.coach-authority-section {
  padding-top: 44px;
  padding-bottom: 44px;

  background:
    linear-gradient(
      120deg,
      #244f3b,
      #315f48
    );
}

.coach-authority-wrap {
  display: flex;

  justify-content: center;
}

.coach-authority-quote {
  max-width: 920px;

  padding: 42px 46px;

  background: rgba(255, 255, 255, 0.97);

  border-radius: 24px;

  box-shadow:
    0 20px 50px rgba(12, 33, 24, 0.22);
}

.coach-authority-quote blockquote {
  margin: 8px 0 20px;

  color: var(--green-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(1.55rem, 2.6vw, 2.1rem);

  font-weight: 700;
  line-height: 1.34;
}


/* =========================================================
   COACHING – SÅDAN HJÆLPER JEG
   ========================================================= */

.coach-help-section {
  background:
    linear-gradient(
      180deg,
      #fbfaf6,
      #ffffff
    );
}

.coach-help-grid {
  display: grid;

  grid-template-columns:
    1fr
    0.92fr;

  gap: 70px;

  align-items: center;
}

.coach-help-copy {
  max-width: 650px;
}

.coach-help-highlight {
  margin-top: 28px;

  padding: 24px 26px;

  background: var(--green-dark);

  border-radius: 18px;

  color: #ffffff;
}

.coach-help-highlight strong {
  display: block;

  margin-bottom: 7px;

  color: #ffffff;
}

.coach-help-highlight p {
  margin: 0;

  color: rgba(255, 255, 255, 0.82);
}

.coach-help-points {
  display: grid;

  gap: 14px;
}

.coach-help-points article {
  padding: 22px 24px;

  display: grid;

  grid-template-columns:
    42px
    1fr;

  gap: 16px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 16px;

  box-shadow: var(--shadow);
}

.coach-help-points article > span {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--green-soft);

  color: var(--green-dark);

  font-weight: 800;
}


/* =========================================================
   COACHING – RESULTATER
   ========================================================= */

.coach-change-section {
  background:
    linear-gradient(
      180deg,
      #f3f7f2,
      #faf7f1
    );
}

.coach-change-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.coach-change-grid article {
  min-height: 165px;

  padding: 26px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.coach-change-grid p {
  color: var(--muted);
}


/* =========================================================
   COACHING – OM JESPER
   ========================================================= */

.coach-about-convert-section {
  background: #ffffff;
}

.coach-about-convert-grid {
  display: grid;

  grid-template-columns:
    0.72fr
    1.28fr;

  gap: 72px;

  align-items: center;
}

.coach-about-convert-photo {
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #f6f4ee;

  border-radius: 28px;

  box-shadow: var(--shadow-large);
}

.coach-about-convert-photo img {
  width: 100%;
  height: auto;

  max-height: 560px;

  object-fit: contain;
  object-position: center;
}

.coach-about-convert-copy {
  max-width: 700px;
}

.coach-hours-convert {
  margin: 28px 0;

  padding: 24px 26px;

  background:
    linear-gradient(
      145deg,
      #244f3b,
      #315f48
    );

  border-radius: 18px;

  color: #ffffff;
}

.coach-hours-convert strong {
  display: block;

  color: #ffffff;
}

.coach-hours-convert p {
  margin: 0;

  color: rgba(255, 255, 255, 0.80);
}

.coach-about-question {
  margin: 24px 0;

  padding-left: 20px;

  border-left: 3px solid var(--green);

  color: var(--green-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.22rem;
  font-weight: 700;
}


/* =========================================================
   COACHING – ANBEFALINGER
   ========================================================= */

.coach-proof-convert-section {
  background:
    linear-gradient(
      180deg,
      #f0f5ef,
      #faf7f1
    );
}

.coach-proof-convert-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap: 22px;
}

.coach-proof-convert-grid article {
  padding: 30px;

  background: #ffffff;

  border: 1px solid var(--border);

  border-radius: 22px;

  box-shadow: var(--shadow);
}

.coach-proof-convert-grid blockquote {
  color: var(--green-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 1.35rem;
  font-weight: 700;
}

.coach-proof-convert-small {
  max-width: 900px;

  margin: 26px auto 0;

  padding: 22px 26px;

  display: flex;

  gap: 18px;

  background: rgba(255, 255, 255, 0.78);

  border: 1px solid var(--border);

  border-radius: 18px;
}


/* =========================================================
   COACHING – START
   ========================================================= */

.coach-start-convert-section {
  background: #ffffff;
}

.coach-start-convert-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;
}

.coach-start-convert-grid > div {
  padding: 28px;

  background:
    linear-gradient(
      145deg,
      #f8f9f6,
      #f1f5ef
    );

  border: 1px solid var(--border);

  border-radius: 18px;
}

.coach-start-convert-cta {
  margin-top: 32px;

  text-align: center;
}


/* =========================================================
   LIDT LUFT FØR FAQ
   ========================================================= */

.psych-new-info-grid #faq,
.coaching-info-grid #faq {
  padding-top: 18px;
}


/* =========================================================
   RESPONSIVE – 1100
   ========================================================= */

@media (max-width: 1100px) {

  .main-nav {
    gap: 13px;
  }

  .main-nav a {
    font-size: 0.74rem;
  }

}


/* =========================================================
   RESPONSIVE – 1000
   ========================================================= */

@media (max-width: 1000px) {

  .hero-grid {
    gap: 40px;
  }

  .recognition-grid,
  .testimonials-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .testimonials-grid
  .testimonial-featured {
    grid-column: 1 / -1;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .iceberg-card img {
    max-height: none;
  }

}


/* =========================================================
   RESPONSIVE – 900
   ========================================================= */

@media (max-width: 900px) {

  .main-nav {
    display: none;
  }

  .hero-grid,
  .practitioner-grid,
  .info-grid,
  .psych-help-grid,
  .psych-session-grid,
  .psych-about-grid,
  .psych-new-info-grid,
  .coach-help-grid,
  .coach-about-convert-grid,
  .coaching-info-grid,
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    max-width: 700px;
  }

  .psych-help-intro {
    position: static;
  }

  .psych-about-photo,
  .coach-about-convert-photo {
    max-width: 520px;
  }

  .psych-new-info-grid #faq,
  .coaching-info-grid #faq {
    padding-top: 34px;
  }

}


/* =========================================================
   RESPONSIVE – 820
   ========================================================= */

@media (max-width: 820px) {

  .psych-new-hero-grid,
  .coach-convert-hero-grid {
    grid-template-columns: 1fr;
  }

  .psych-new-hero-profile,
  .coach-convert-profile {
    max-width: 520px;

    margin-left: 0;
  }

  .psych-outcomes-grid,
  .psych-when-grid,
  .coach-recognition-grid,
  .coach-change-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


/* =========================================================
   RESPONSIVE – 700
   ========================================================= */

@media (max-width: 700px) {

  .recognition-grid,
  .testimonials-grid,
  .simple-process-grid,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid
  .testimonial-featured {
    grid-column: auto;
  }

  .approach-copy {
    padding: 40px 28px;
  }

  .profile-image {
    aspect-ratio: 4 / 5;
  }

  .hero-image,
  .iceberg-card img,
  .psych-new-hero-profile img,
  .psych-about-photo img,
  .coach-convert-profile img,
  .coach-about-convert-photo img {
    max-height: none;
  }

}


/* =========================================================
   RESPONSIVE – MOBIL
   ========================================================= */

@media (max-width: 620px) {

  body {
    padding-bottom: 62px;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 68px;
  }

  .site-header .btn-small {
    display: none;
  }


  /* FORSIDE */

  .hero {
    padding: 32px 0 46px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .recognition-card {
    min-height: 0;
  }

  .practitioner-card > div {
    padding: 23px 20px 25px;
  }

  .profile-image {
    aspect-ratio: 4 / 5;
  }

  .booking-choice-grid {
    grid-template-columns: 1fr;
  }

  .booking-person-wide {
    grid-column: auto;
  }


  /* PSYKOLOG / COACHING */

  .psych-new-hero,
  .coach-convert-hero {
    padding: 30px 0 46px;
  }

  .psych-new-hero-copy h1,
  .coach-convert-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .psych-new-hero-actions .btn,
  .coach-convert-actions .btn,
  .coach-start-convert-cta .btn {
    width: 100%;

    text-align: center;
  }

  .psych-help-list article {
    grid-template-columns:
      40px
      1fr;

    padding: 20px;
  }

  .psych-session-panel > div {
    padding: 22px 20px;
  }

  .psych-outcomes-grid,
  .psych-when-grid,
  .psych-start-grid,
  .coach-recognition-grid,
  .coach-change-grid,
  .coach-proof-convert-grid,
  .coach-start-convert-grid {
    grid-template-columns: 1fr;
  }

  .coach-recognition-grid article {
    min-height: 0;
  }

  .coach-authority-quote {
    padding: 28px 22px;
  }

  .coach-help-points article {
    grid-template-columns:
      38px
      1fr;

    padding: 19px;
  }

  .booking-card {
    padding: 22px 18px;
  }


  /* FOOTER */

  .footer-inner {
    align-items: flex-start;

    flex-direction: column;
  }


  /* FAST CTA */

  .mobile-booking-bar {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 200;

    min-height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 11px 18px;

    background: var(--green-dark);

    color: #ffffff;

    box-shadow:
      0 -8px 24px rgba(20, 50, 36, 0.16);

    font-size: 0.88rem;
    font-weight: 700;

    text-align: center;
  }

}

/* =========================================================
   KONTAKTFORMULAR – KOMPAKT DESKTOP
   ========================================================= */

.booking-grid {
  align-items: start;
}

.booking-card {
  padding: 32px;
}

.booking-form {
  gap: 18px;
}


/* Telefon + email på samme række */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row .form-field {
  min-width: 0;
}


/* Lidt mere kompakte felter */

.booking-form input[type="text"],
.booking-form input[type="tel"],
.booking-form input[type="email"],
.booking-form textarea {
  padding-top: 12px;
  padding-bottom: 12px;
}


/* Beskedfeltet behøver ikke være så højt */

.booking-form textarea {
  min-height: 90px;
}


/* Lidt mindre luft omkring behandlervalg */

.booking-choice {
  margin-bottom: 2px;
}

.booking-choice-grid {
  gap: 10px;
}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 640px) {

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-card {
    padding: 24px 20px;
  }

}
/* =========================================================
   MOBIL QA – FORSIDE / PSYKOLOG / COACHING
   Samlet slutjustering efter mobilgennemgang
   ========================================================= */

/* Honeypot må aldrig være synlig */
.honeypot {
  display: none !important;
  position: absolute !important;
  left: -99999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Kontaktformular – robust basis */
.booking-grid {
  align-items: start;
}

.booking-card {
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row .form-field {
  min-width: 0;
}


/* =========================================================
   MOBIL – 640 PX
   ========================================================= */

@media (max-width: 640px) {

  /* Generel rytme */
  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading.center {
    max-width: 100%;
  }


  /* ---------------------------------------------------------
     HEADER
     --------------------------------------------------------- */

  .header-inner {
    min-height: 66px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .brand-name {
    font-size: 1.18rem;
  }


  /* ---------------------------------------------------------
     FORSIDE – HERO
     --------------------------------------------------------- */

  .hero {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 10.5vw, 3.3rem);
    line-height: 0.99;
    margin-bottom: 20px;
  }

  .hero-lead {
    font-size: 1rem;
    line-height: 1.58;
    margin-bottom: 14px;
  }

  .hero-strong {
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .location-line {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 14px;
  }


  /* ---------------------------------------------------------
     GENKENDELSE
     --------------------------------------------------------- */

  .recognition-card {
    min-height: 0;
    padding: 22px;
  }

  .recognition-grid {
    gap: 14px;
  }

  .recognition-bottom {
    margin-top: 28px;
  }


  /* ---------------------------------------------------------
     ANBEFALINGER – tydeligere kort på mobil
     --------------------------------------------------------- */

  .testimonials-grid {
    gap: 14px;
  }

  .testimonial-card {
    padding: 24px 22px;
    border: 1px solid rgba(36, 79, 59, 0.14);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(24, 55, 41, 0.06);
  }

  .testimonial-card blockquote {
    font-size: 1.16rem;
    line-height: 1.38;
  }

  .professional-quote {
    margin-top: 16px;
    padding: 22px;
  }


  /* ---------------------------------------------------------
     SIMONE & JESPER
     --------------------------------------------------------- */

  .help-choice-section {
    padding-bottom: 42px;
  }

  .shared-topics {
    margin-bottom: 28px;
  }

  .topic-list {
    gap: 8px;
  }

  .topic-list span {
    padding: 7px 11px;
    font-size: 0.75rem;
  }

  .practitioner-grid {
    gap: 18px;
  }

  .practitioner-card > div {
    padding: 22px 20px 24px;
  }

  .practitioner-list {
    margin-top: 17px;
    gap: 7px;
  }

  .practitioner-list li {
    padding-left: 24px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .practice-highlight {
    margin-top: 18px;
    padding: 17px 18px;
  }

  .choice-help {
    margin-top: 22px;
    padding: 21px 20px;
  }

  .choice-help .btn {
    width: 100%;
  }


  /* ---------------------------------------------------------
     VORES TILGANG
     --------------------------------------------------------- */

  .approach-section {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .approach-intro {
    margin-bottom: 28px;
  }

  .approach-intro h2 {
    font-size: clamp(2.35rem, 10vw, 3.15rem);
    line-height: 1.00;
  }

  .approach-content-grid {
    gap: 24px;
  }

  .approach-content-grid .approach-steps {
    display: grid;
    gap: 22px;
  }

  .approach-content-grid .iceberg-card {
    min-height: 0;
    padding: 0;
    margin-top: 4px;
  }

  .approach-content-grid .iceberg-card img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }


  /* ---------------------------------------------------------
     PROCESS
     --------------------------------------------------------- */

  .process-section {
    padding-top: 46px;
    padding-bottom: 50px;
  }

  .simple-process-grid {
    gap: 14px;
  }

  .simple-process-card {
    padding: 22px;
  }

  .start-number {
    margin-bottom: 12px;
  }

  .process-cta {
    margin-top: 24px;
  }


  /* ---------------------------------------------------------
     PRISER + FAQ
     --------------------------------------------------------- */

  .info-grid,
  .psych-new-info-grid,
  .coaching-info-grid {
    gap: 42px;
  }

  .practical-grid {
    gap: 12px;
  }

  .practical-card {
    padding: 18px 14px;
  }

  .practical-card h3 {
    font-size: 0.94rem;
  }

  .practical-card p {
    font-size: 0.79rem;
    line-height: 1.45;
  }

  .faq-list {
    gap: 9px;
  }

  .faq-list summary {
    padding: 17px 42px 17px 17px;
    font-size: 0.93rem;
    line-height: 1.35;
  }


  /* ---------------------------------------------------------
     KONTAKT – kritisk mobilrettelse
     --------------------------------------------------------- */

  #kontakt.booking-section {
    padding-top: 52px;
    padding-bottom: 70px;
    background:
      linear-gradient(
        120deg,
        #244f3b,
        #315f48
      ) !important;
    color: #ffffff !important;
  }

  #kontakt .booking-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  #kontakt .booking-intro h2 {
    color: #ffffff !important;
    font-size: clamp(2.35rem, 10vw, 3.15rem);
    line-height: 1.02;
  }

  #kontakt .booking-lead {
    color: rgba(255, 255, 255, 0.84) !important;
    line-height: 1.55;
  }

  #kontakt .booking-benefits {
    margin-top: 22px;
    gap: 13px;
  }

  #kontakt .booking-benefit strong {
    color: #ffffff !important;
  }

  #kontakt .booking-benefit p {
    color: rgba(255, 255, 255, 0.72) !important;
  }

  #kontakt .booking-card {
    width: 100%;
    padding: 22px 18px;
    border-radius: 20px;
    background: #ffffff !important;
    color: var(--text) !important;
  }

  #kontakt .booking-form {
    gap: 15px;
  }

  #kontakt .booking-choice {
    margin: 0;
    padding: 0;
    border: 0;
    min-width: 0;
  }

  #kontakt .booking-choice legend {
    width: 100%;
    margin-bottom: 9px;
    padding: 0;
    color: var(--green-dark);
    font-size: 0.83rem;
    font-weight: 700;
  }

  #kontakt .booking-choice-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px;
  }

  #kontakt .booking-person,
  #kontakt .booking-person-wide {
    display: block;
    position: relative;
    width: 100%;
    grid-column: auto !important;
  }

  #kontakt .booking-person input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  #kontakt .booking-person-content {
    width: 100%;
    min-height: 58px;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: 11px 13px;
    background: #ffffff;
    border: 1px solid rgba(36, 79, 59, 0.18);
    border-radius: 11px;
  }

  #kontakt .booking-person input[type="radio"]:checked
  + .booking-person-content {
    background: var(--green-pale);
    border-color: var(--green);
    box-shadow: 0 0 0 2px rgba(82, 122, 99, 0.08);
  }

  #kontakt .booking-person-content strong {
    font-size: 0.9rem;
  }

  #kontakt .booking-person-content small {
    font-size: 0.72rem;
  }

  #kontakt .booking-person-static {
    padding: 13px 14px;
  }

  #kontakt .form-row {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  #kontakt .form-field input,
  #kontakt .form-field textarea {
    min-height: 46px;
    font-size: 16px;
  }

  #kontakt .form-field textarea {
    min-height: 92px;
  }

  #kontakt .privacy-check {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  #kontakt .booking-submit {
    min-height: 52px;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 0.88rem;
  }

  #kontakt .booking-smallprint {
    font-size: 0.72rem;
    line-height: 1.45;
  }


  /* ---------------------------------------------------------
     FOOTER + FAST CTA
     --------------------------------------------------------- */

  .footer {
    padding-top: 30px;
    padding-bottom: 84px;
  }

  .footer-inner {
    gap: 22px;
  }

  .footer-links {
    gap: 14px 20px;
  }

  .mobile-booking-bar {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 10px !important;
    z-index: 1000 !important;

    width: auto !important;
    min-height: 52px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 10px 16px !important;

    border-radius: 999px !important;

    background: var(--green-dark) !important;
    color: #ffffff !important;

    box-shadow:
      0 10px 26px rgba(20, 50, 36, 0.24) !important;

    font-size: 0.84rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    text-align: center !important;
  }

}


/* =========================================================
   SMÅ MOBILER
   ========================================================= */

@media (max-width: 390px) {

  .hero h1,
  .approach-intro h2,
  #kontakt .booking-intro h2 {
    font-size: 2.45rem;
  }

  .btn {
    padding-left: 17px;
    padding-right: 17px;
  }

  .practical-card {
    padding-left: 11px;
    padding-right: 11px;
  }

  .mobile-booking-bar {
    left: 8px !important;
    right: 8px !important;
    font-size: 0.81rem !important;
  }

}


/* =========================================================
   TAK-SIDE
   ========================================================= */

body.thank-you-body {
  min-height: 100vh;
  padding: 0;
  background: linear-gradient(180deg, #fbf8f2 0%, #f3f7f2 100%);
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px;
}

.thank-you-card {
  width: min(100%, 680px);
  padding: 54px 52px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow-large);
}

.thank-you-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 1.45rem;
  font-weight: 800;
}

.thank-you-card .eyebrow {
  margin-bottom: 12px;
}

.thank-you-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.thank-you-card > p:not(.eyebrow):not(.thank-you-note) {
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.thank-you-note {
  max-width: 530px;
  margin: 24px auto 28px;
  padding: 18px 20px;
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--green-dark);
  line-height: 1.6;
}

.thank-you-card .btn {
  min-width: 190px;
}

@media (max-width: 620px) {
  body.thank-you-body {
    padding-bottom: 0;
  }

  .thank-you-page {
    min-height: 100svh;
    padding: 24px 16px;
  }

  .thank-you-card {
    padding: 38px 22px 32px;
    border-radius: 20px;
  }

  .thank-you-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 19px;
  }

  .thank-you-card h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .thank-you-note {
    margin-top: 21px;
    margin-bottom: 24px;
    padding: 16px;
  }

  .thank-you-card .btn {
    width: 100%;
  }
}
