/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

- Font weights
Default: 400
Medium: 500
Semi-bold: 600
Bold: 700

- Line heights
Default: 1
Small: 1.05
Medium: 1.2
Paragraph default: 1.6
Large: 1.8

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

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

html {
  /* font-size: 10px; */

  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  /* clip (not hidden) so the sticky header still works: hidden turns the
     root into a scroll container and breaks position: sticky */
  overflow-x: hidden;
  overflow-x: clip;

  /* Does NOT work on Safari */
  /* scroll-behavior: smooth; */
}
:root {
  --dark-text: #232323;
  --light-text: #fffefa;
  --button-color: #00793d; /*#347355;*/
  --button-hover: #66af8b;
  --outline-hover: #cce4d8;
  --ligt-background: #fff6ea; /*#f4f9f8;*/
  --section-light: #fffefa;
  --section-warm: #fff6ea;
  --orange: #cc4501;
  --box-background: #00793d;
  --sand: #fefaf9;
  --nav-color: #fffefa;
}
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  font-weight: auto;
  color: var(--dark-text);
  background-color: var(--light-text);

  /* Only works if there is nothing absolutely positioned in relation to body */
  overflow-x: hidden;
  overflow-x: clip;
}

/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/

.container {
  /* Shared max content width for all pages (~1320px); keeps section
     backgrounds full-width while capping content on ultrawide screens */
  max-width: 132rem;
  padding: 0 3.2rem;
  margin-inline: auto;
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;

  /* margin-bottom: 9.6rem; */
}

/* .grid:last-child {
  margin-bottom: 0;
} */

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

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

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

/* .grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
} */

.grid--center-v {
  align-items: center;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 500;
  color: var(--dark-text);
  /* color: #45260a; */
  /* color: #343a40; */
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

/* Shared H1 style for internal pages (homepage hero is not scoped here) */
.subpage h1 {
  font-weight: 500;
  color: #314d3f;
  line-height: 1.15;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #00793d;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.4rem 2.6rem;
  border: none;
  outline: none;
  color: #fff;
  background: #ff5601;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 0.6em;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 0.8rem 1.6rem rgba(255, 86, 1, 0.18);
}

.btn:focus-visible {
  outline: 3px solid var(--button-color);
  outline-offset: 3px;
}

.btn::before,
.btn:link::before,
.btn:visited::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.08)
  );
  border-radius: inherit;
  pointer-events: none;
}

.btn::after,
.btn:link::after,
.btn:visited::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%);
  transition:
    width 0.45s ease,
    height 0.45s ease;
}

.btn:hover,
.btn:hover:link,
.btn:hover:visited {
  background: #00793d;
  color: #fff;
  box-shadow: 0 0.8rem 1.6rem rgba(0, 121, 61, 0.24);
}

.btn:hover::after,
.btn:hover:link::after,
.btn:hover:visited::after {
  width: 14em;
  height: 14em;
}

.btn:active,
.btn:active:link,
.btn:active:visited {
  transform: none;
}

.btn--full:link,
.btn--full:visited {
  background: #ff5601;
  color: #fff;
  box-shadow: 0 0.8rem 1.6rem rgba(255, 86, 1, 0.18);
}

.btn--full:hover,
.btn--full:active {
  background: #00793d;
  color: #fff;
  box-shadow: 0 0.8rem 1.6rem rgba(0, 121, 61, 0.24);
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #ff5601;
  box-shadow: inset 0 0 0 2px #ff5601;
}

.btn.btn--outline:hover,
.btn.btn--outline:active {
  background: #fff;
  color: #00793d;
  box-shadow:
    0 0.6rem 1.2rem rgba(0, 121, 61, 0.16),
    inset 0 0 0 2px #00793d;
}

.btn--form {
  background: linear-gradient(135deg, #ff8f4d 0%, #ff7a33 100%);
  color: #fff;
  align-self: end;
  padding: 1.2rem 1.8rem;
  border: none;
}

.btn--form:hover {
  background: #00793d;
  color: #fff;
}

.link:link,
.link:visited {
  display: inline-block;
  color: #00793d;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #00793d;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.list-item {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1.2;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: #ff5601;
  flex-shrink: 0;
}

/* Only suppress the outline for pointer/mouse focus; keyboard focus keeps a visible indicator below */
*:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

/* Brand-consistent keyboard focus indicator (WCAG-visible, works even where
   components set outline: none for their resting/mouse-focus state) */
*:focus-visible {
  outline: 3px solid var(--button-color);
  outline-offset: 3px;
  border-radius: 4px;
}

/* HELPER/SETTINGS CLASSES */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

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

.section-movement {
  padding: 9.6rem 0;
  background: var(--section-light);
}

.movement-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
  gap: 4.8rem;
  align-items: center;
}

.movement-copy {
  max-width: 62rem;
}

.movement-text {
  font-size: 1.8rem;
  line-height: 1.7;
  color: var(--dark-text);
  margin-bottom: 1.6rem;
}

.movement-labels,
.experience-labels {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.movement-label,
.experience-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  background: rgba(0, 121, 61, 0.08);
  color: #00793d;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
}

.movement-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.movement-video-wrap {
  width: min(100%, 32rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.movement-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 2rem;
  overflow: hidden;
  background: #dde9e2;
  box-shadow: 0 1.6rem 3.2rem rgba(0, 0, 0, 0.08);
}

.movement-video-caption {
  width: 100%;
  margin-top: 1.2rem;
  text-align: left;
}

.movement-video-caption-title {
  margin: 0 0 0.6rem;
  color: #0d4d38;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.movement-video-caption-text {
  margin: 0;
  color: #3c3c3c;
  font-size: 1.3rem;
  line-height: 1.55;
}

strong {
  font-weight: 500;
}

@media (max-width: 800px) {
  .movement-grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .movement-media {
    align-items: center;
  }

  .movement-video-wrap {
    width: min(100%, 30rem);
  }
}

@media (max-width: 430px) {
  .movement-video-wrap {
    width: min(86vw, 33rem);
  }

  .movement-video-caption {
    margin-top: 1.4rem;
  }
}

/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--light-text);

  /* Because we want header to be sticky later */
  height: 7.8rem;
  /* Keeps nav content aligned with .container's max-width on ultrawide
     screens while the header background itself stays full-width */
  padding: 0 max(4.8rem, calc((100% - 132rem) / 2));
  position: relative;
}

/* Make header sticky on long pages (works without JS, e.g. blog.html) */
.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
}

.logo {
  height: 6rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

/* Dropdown nav */
.main-nav-list .has-dropdown {
  position: relative;
}
.main-nav-list .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fffefa;
  border-radius: 0.8rem;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.06);
  padding: 0.8rem 0;
  min-width: 18rem;
  display: none;
  z-index: 2000;
}
.main-nav-list .dropdown li {
  padding: 0;
  list-style: none;
}
.main-nav-list .dropdown a {
  display: block;
  padding: 1rem 1.6rem;
  color: #333;
  white-space: nowrap;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0;
}
.main-nav-list .dropdown a:hover,
.main-nav-list .dropdown a:focus {
  background: #fdf2e9;
  color: #00793d;
}

.main-nav-list .dropdown-unavailable {
  display: block;
  padding: 1rem 1.6rem;
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  cursor: default;
}

.main-nav-list .dropdown-unavailable:hover {
  background: #fdf2e9;
  color: #00793d;
}

.main-nav-list .has-dropdown.is-open .dropdown {
  display: block;
}

.main-nav-link:link,
.main-nav-link:visited,
.main-nav-trigger {
  display: inline-block;
  text-decoration: none;
  color: #ff5601;
  font-weight: 600;
  font-size: 1.8rem;
  position: relative;
  padding: 0.8rem 1.2rem;
  letter-spacing: 0;
  transition:
    color 0.3s ease,
    letter-spacing 0.28s ease,
    background-color 0.3s ease;
}

.main-nav-trigger {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0;
}

.main-nav-trigger::before,
.main-nav-trigger::after {
  content: none;
}

.dropdown-trigger-label {
  position: relative;
  display: inline-block;
}

.dropdown-trigger-label::before,
.dropdown-trigger-label::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  transition: transform 0.2s ease;
  transition:
    width 0.35s ease,
    border-color 0.35s ease;
}

.dropdown-trigger-label::before {
  top: -0.8rem;
  border-top: 1px solid transparent;
}

.dropdown-trigger-label::after {
  bottom: -0.8rem;
  border-bottom: 1px solid transparent;
}

.dropdown-chevron {
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 0.6rem;
  color: currentColor;
  transition: transform 0.2s ease;
}

.has-dropdown.is-open .dropdown-chevron {
  transform: rotate(180deg);
}

.main-nav-trigger--current {
  color: #00793d;
}

.main-nav-trigger--current .dropdown-trigger-label::before,
.main-nav-trigger--current .dropdown-trigger-label::after {
  width: 70%;
  border-color: #00793d;
}

.breadcrumb {
  margin-bottom: 1.6rem;
  color: #61766a;
  font-size: 1.3rem;
  font-weight: 500;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.breadcrumb li:first-child {
  color: #61766a;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: #00793d;
}

.breadcrumb a:focus-visible {
  outline: 2px solid var(--button-color);
  outline-offset: 3px;
}

.breadcrumb [aria-current="page"] {
  color: #00793d;
  font-weight: 500;
}

.breadcrumb [aria-hidden="true"] {
  color: #aab6ae;
}

.main-nav-trigger:hover,
.main-nav-trigger:focus-visible,
.has-dropdown.is-open .main-nav-trigger {
  color: #00793d;
  letter-spacing: 0;
}

.main-nav-trigger:hover .dropdown-trigger-label::before,
.main-nav-trigger:hover .dropdown-trigger-label::after,
.main-nav-trigger:focus-visible .dropdown-trigger-label::before,
.main-nav-trigger:focus-visible .dropdown-trigger-label::after,
.has-dropdown.is-open .dropdown-trigger-label::before,
.has-dropdown.is-open .dropdown-trigger-label::after {
  width: 70%;
  border-color: #00793d;
}

.main-nav-link:focus-visible,
.main-nav-list .dropdown a:focus-visible {
  outline: 3px solid var(--button-color);
  outline-offset: 3px;
}

.main-nav-link[aria-current="page"] {
  color: #00793d;
  font-weight: 600;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.main-nav-link::before,
.main-nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  transition:
    width 0.35s ease,
    border-color 0.35s ease;
}

.main-nav-link::before {
  top: 0;
  border-top: 1px solid transparent;
}

.main-nav-link::after {
  bottom: 0;
  border-bottom: 1px solid transparent;
}

.main-nav-link:hover,
.main-nav-link:active,
.main-nav-link[aria-current="page"],
.main-nav-trigger:hover {
  color: #00793d;
  letter-spacing: 0.12rem;
}

.main-nav-trigger:hover,
.main-nav-trigger:focus-visible,
.has-dropdown.is-open .main-nav-trigger {
  letter-spacing: 0;
}

.main-nav-link:hover::before,
.main-nav-link:active::before,
.main-nav-link:hover::after,
.main-nav-link:active::after,
.main-nav-link[aria-current="page"]::before,
.main-nav-link[aria-current="page"]::after {
  width: 70%;
  border-color: #00793d;
}

.main-nav-trigger::before,
.main-nav-trigger::after {
  content: none;
  border: 0;
  width: 0;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  text-decoration: none;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.4rem 2.4rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  background: #ff5601;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 0;
  border-radius: 0.6em;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 0.8rem 1.6rem rgba(255, 86, 1, 0.18);
  overflow: hidden;
}

.main-nav-link.nav-cta:focus-visible {
  outline: 3px solid var(--button-color);
  outline-offset: 3px;
}

.main-nav-link.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.08)
  );
  border-radius: inherit;
  pointer-events: none;
}

.main-nav-link.nav-cta::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%);
  transition:
    width 0.45s ease,
    height 0.45s ease;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background: #00793d;
  color: #fff;
  letter-spacing: 0;
  box-shadow: 0 0.8rem 1.6rem rgba(0, 121, 61, 0.18);
}

.main-nav-link.nav-cta:hover::after {
  width: 14em;
  height: 14em;
}

.main-nav-link.nav-cta:active {
  transform: scale(0.97);
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;
  width: 44px;
  height: 44px;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
/* Cosmetic only: the header is already position: sticky, so this state must
   not alter position, height or flow, otherwise the page jumps on toggle. */
.sticky .header {
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.02);
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background-color: var(--light-text);
  padding: 0;
  position: relative;
}

.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      125deg,
      rgba(12, 24, 18, 0.6) 0%,
      rgba(12, 24, 18, 0.46) 32%,
      rgba(12, 24, 18, 0.2) 58%,
      rgba(12, 24, 18, 0.05) 100%
    ),
    radial-gradient(
      circle at 18% 20%,
      rgba(0, 0, 0, 0.24) 0%,
      rgba(0, 0, 0, 0.12) 38%,
      rgba(0, 0, 0, 0) 72%
    );
}

.hero-text-box {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 130rem;
  width: 100%;
  padding: 4.8rem 3.2rem;
  margin: 0 auto;
}

.hero-text-box .heading-primary {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  max-width: 65rem;
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 2.4rem;
  color: #fff;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  max-width: 60rem;
}

.hero-description strong {
  font-weight: 700;
}

.hero-problem-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 60rem;
  margin-bottom: 3.2rem;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  background: rgba(255, 254, 250, 0.16);
  border: 1px solid rgba(255, 254, 250, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.hero-text-box .btn {
  font-weight: 700;
}

/**************************/
/* ABOUT SECTION */
/**************************/

.section-about {
  padding: 9.6rem 0;
  background: var(--section-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 5.2rem;
  align-items: stretch;
}

.about-image-column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: flex-start;
}

.about-image-column--mobile {
  display: none;
}

.about-image-card {
  background: var(--light-text);
  border-radius: 2.4rem;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 121, 61, 0.12);
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.25;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 0;
}

.about-person {
  padding: 2.1rem 2rem 2.3rem;
  border-top: 1px solid rgba(0, 121, 61, 0.1);
}

.about-person-name {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.about-credentials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.6rem;
  row-gap: 0.6rem;
}

.about-credential {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #4a4a4a;
}

.about-credential-icon {
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  color: var(--button-color);
}

.about-image-actions {
  display: flex;
  justify-content: center;
}

.about-image-actions .btn {
  width: auto;
  min-width: 18rem;
}

.section-highlights {
  padding: 8.4rem 0 6rem;
  background: var(--section-light);
}

.section-highlights__intro {
  text-align: center;
  max-width: 74rem;
  margin: 0 auto 4rem;
}

.section-highlights__intro .heading-secondary {
  margin-top: 1rem;
  margin-bottom: 1.4rem;
}

.section-highlights__text {
  max-width: 62rem;
  margin: 0 auto;
  color: #4b4b4b;
  font-size: 1.85rem;
  line-height: 1.8;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.8rem;
  align-items: stretch;
}

.highlight-card {
  background: #fcf3ea;
  border: 1px solid rgba(0, 121, 61, 0.16);
  border-radius: 2rem;
  padding: 3.2rem 2.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 28rem;
}

.highlight-card__icon {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background: #fffaf4;
  display: grid;
  place-items: center;
  color: #00793d;
  margin-bottom: 1.8rem;
  flex-shrink: 0;
}

.highlight-card__icon ion-icon,
.highlight-card__icon img {
  width: 3rem;
  height: 3rem;
}

/* The asset is black vector artwork, recoloured to the brand green */
.highlight-card__icon img {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(29%) sepia(99%) saturate(1218%)
    hue-rotate(119deg) brightness(88%) contrast(101%);
}

.highlight-card__title {
  font-size: 2.2rem;
  margin: 0 0 1.2rem;
  color: var(--dark-text);
}

.highlight-card__description {
  color: #4b4b4b;
  font-size: 1.75rem;
  line-height: 1.8;
  max-width: 45rem;
  margin-bottom: 2.4rem;
}

.highlight-card__label {
  margin-top: auto;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7f7f7f;
}

@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .section-highlights {
    padding: 6.4rem 0 4rem;
  }

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

.about-content {
  max-width: 58rem;
  display: flex;
  flex-direction: column;
}

.about-title {
  margin-bottom: 1.6rem;
  font-size: 3.8rem;
  line-height: 1.16;
}

.about-description {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #4b4b4b;
  margin-bottom: 1.8rem;
}

.about-description:last-of-type {
  margin-bottom: 2.2rem;
}

.about-highlights {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  column-gap: 1.2rem;
  padding: 0.6rem 0;
  background: transparent;
  border: none;
  border-radius: 1.6rem;
  box-shadow: none;
}

.about-highlight > div {
  flex: 1;
  min-width: 0;
}

/* the heart-outline glyph is drawn smaller inside its box than the other ionicons */
.about-highlight .about-icon[name="heart-outline"] {
  transform: scale(1.1);
}

.about-highlight h3 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  color: var(--dark-text);
}

.about-highlight p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #5f5f5f;
}

.about-icon {
  width: 2.8rem;
  height: 2.8rem;
  color: #00793d;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.about-tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  margin-top: auto;
}

.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.05rem;
  border-radius: 999px;
  background: #faf3eb;
  color: #456654;
  border: 1px solid rgba(0, 121, 61, 0.1);
  font-size: 1.25rem;
  font-weight: 500;
  box-shadow: none;
}

.about-tag ion-icon {
  font-size: 1.4rem;
}

/* Shared subpage hero layout (Træningsforløb is the reference) */
.about-page-hero,
.training-page-hero {
  background: var(--section-warm);
  padding: 8.4rem 0 4.8rem;
}

.about-page-hero-grid,
.training-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 4.8rem;
  align-items: center;
}

.about-page-copy .heading-primary {
  margin-bottom: 2.4rem;
}

.about-page-description {
  margin-bottom: 3.2rem;
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

.section-privacy {
  padding: 8rem 0;
  background: var(--section-light);
}

.privacy-container {
  max-width: 108rem;
}

.privacy-title {
  margin-bottom: 2.2rem;
}

.privacy-lead {
  max-width: 86rem;
  font-size: 1.9rem;
  line-height: 1.75;
  color: #4b4b4b;
  margin-bottom: 2.8rem;
}

.privacy-sections {
  display: grid;
  gap: 1rem;
}

.privacy-section {
  padding: 0.4rem 0;
}

.privacy-section h3 {
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  color: var(--dark-text);
}

.privacy-section p {
  max-width: 86rem;
  font-size: 1.75rem;
  line-height: 1.75;
  color: #555;
}

.privacy-updated {
  margin-top: 2.4rem;
  font-size: 1.5rem;
  color: #666;
}

.about-page-card {
  background: var(--light-text);
  padding: 2.4rem;
  border-radius: 2.4rem;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.08);
  /* the portrait is much taller than the training hero image, so cap it inside the shared media column */
  max-width: 42rem;
  margin-left: auto;
}

.about-page-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.8rem;
}

.about-page-card .about-person {
  padding: 1.8rem 0.4rem 0.2rem;
  border-top: none;
}

.about-page-section {
  padding-top: 6.8rem;
  padding-bottom: 8.8rem;
}

.about-approach-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 5.6rem;
}

.about-approach-row + .about-approach-row {
  margin-top: 4.8rem;
}

.about-approach-copy {
  width: 100%;
}

.about-approach-copy .heading-secondary {
  margin-bottom: 2rem;
}

.about-page-text {
  max-width: 62ch;
}

.about-approach-media {
  width: 100%;
  max-width: 46rem;
}

.about-approach-row--reverse .about-approach-copy {
  order: 2;
}

.about-approach-row--reverse .about-approach-media {
  order: 1;
}

.about-approach-item {
  width: 100%;
  margin: 0;
}

.about-approach-image,
.about-approach-placeholder {
  display: block;
  width: 100%;
  max-width: 46rem;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 2.4rem;
  background: #f5f0ea;
}

.about-approach-image {
  object-fit: cover;
}

.about-approach-caption {
  width: 100%;
  max-width: 46rem;
  margin-top: 0.9rem;
  text-align: left;
}

.about-approach-caption h3 {
  margin: 0 0 0.4rem;
  color: #0d4d38;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.about-approach-caption p {
  margin: 0;
  color: #4f4f4f;
  font-size: 1.3rem;
  line-height: 1.55;
}

.about-approach-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border: 1px solid rgba(0, 121, 61, 0.14);
  background: #f7f0e7;
  color: #6f7a73;
  text-align: center;
}

.about-approach-placeholder-text {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .about-approach-row {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
  }

  .about-approach-row + .about-approach-row {
    margin-top: 3.2rem;
  }

  .about-approach-copy,
  .about-approach-media {
    width: 100%;
    max-width: 72rem;
  }

  .about-page-text {
    max-width: none;
  }

  .about-approach-media {
    margin: 0 auto;
  }

  .about-approach-row--reverse .about-approach-copy,
  .about-approach-row--reverse .about-approach-media {
    order: initial;
  }

  .about-approach-image,
  .about-approach-placeholder,
  .about-approach-caption {
    max-width: 56rem;
    width: 100%;
  }
}

@media (max-width: 700px) {
  .about-approach-row {
    gap: 2.4rem;
  }

  .about-approach-row + .about-approach-row {
    margin-top: 2.4rem;
  }

  .about-approach-copy,
  .about-approach-media,
  .about-approach-item,
  .about-approach-caption,
  .about-approach-image,
  .about-approach-placeholder {
    max-width: 100%;
  }

  .about-approach-image,
  .about-approach-placeholder {
    width: 100%;
  }
}

.about-page-text p {
  font-size: 1.9rem;
  line-height: 1.8;
  color: #525252;
  margin-bottom: 1.2rem;
}

.life-column-statement {
  max-width: 52rem;
  margin: 2.4rem 0 0;
  padding-top: 1.4rem;
  color: #0d4d38;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}

.life-column-statement::before {
  content: "";
  display: block;
  width: 5.6rem;
  height: 2px;
  margin-bottom: 1.2rem;
  background: #ff5601;
  border-radius: 999px;
}

@media (max-width: 1000px) {
  .life-column-statement {
    max-width: 100%;
    font-size: 2.1rem;
    margin-top: 2.2rem;
  }
}

@media (max-width: 700px) {
  .life-column-statement {
    font-size: 2rem;
    line-height: 1.45;
    margin-top: 2rem;
  }
}

/* Shared brand statement style (no quote box) */
.section-statement {
  max-width: 76rem;
  margin: 0 auto 4rem;
  padding: 2.8rem 2rem 0;
  text-align: center;
}

.section-statement::before {
  content: "";
  display: block;
  width: 6rem;
  height: 2px;
  border-radius: 999px;
  background: #ff5601;
  margin: 0 auto 1.6rem;
}

.section-statement__eyebrow {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d4d38;
}

.section-statement__text {
  margin: 0;
  color: #0d4d38;
  font-size: clamp(2.4rem, 2.4vw, 3.6rem);
  font-weight: 600;
  line-height: 1.2;
}

.section-statement__support {
  max-width: 60rem;
  margin: 1.2rem auto 0;
  color: #4d4d4d;
  font-size: 1.6rem;
  line-height: 1.6;
}

.section-statement--personal {
  max-width: 80rem;
  margin: 2.4rem auto 3.2rem;
}

/* Extra breathing room specifically around the Min filosofi statement */
.section-statement--philosophy {
  padding-top: 7rem;
  margin-bottom: 6rem;
}

@media (max-width: 900px) {
  .section-statement--philosophy {
    padding-top: 4.4rem;
    margin-bottom: 4.4rem;
  }
}

@media (max-width: 700px) {
  .section-statement {
    max-width: 100%;
    margin: 0 auto 3rem;
    padding: 2.4rem 2rem 0;
  }

  .section-statement--philosophy {
    padding-top: 3.2rem;
    margin-bottom: 3.2rem;
  }

  .section-statement__text {
    font-size: clamp(2.4rem, 5vw, 2.8rem);
  }

  .section-statement__support {
    font-size: 1.5rem;
  }
}

.about-page-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.about-page-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fffefa;
  border: 1px solid rgba(0, 121, 61, 0.1);
  border-radius: 1.6rem;
  padding: 2rem;
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.03);
}

.about-page-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fdf5ea;
  margin-bottom: 1.2rem;
}

.about-page-panel-icon .about-icon {
  margin-top: 0;
}

.about-page-panel h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.about-page-panel p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: #5a5a5a;
}

/**************************/
/* MIN ERFARING SECTION */
/**************************/

.section-experience {
  padding: 7.2rem 0 8rem;
  background: var(--section-light);
}

.experience-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 5.6rem;
  align-items: start;
  margin-bottom: 5.6rem;
}

.experience-intro .heading-secondary {
  margin-bottom: 2rem;
  max-width: 46rem;
}

.experience-intro-copy .experience-text:last-of-type {
  margin-bottom: 0;
}

.experience-text {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #525252;
  max-width: 62ch;
  margin-bottom: 1.2rem;
}

.experience-labels {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.experience-entries {
  list-style: none;
  columns: 2;
  column-gap: 5.6rem;
  margin: 0;
}

.experience-step {
  break-inside: avoid;
  padding-left: 1.8rem;
  border-left: 2px solid rgba(0, 121, 61, 0.18);
  margin-bottom: 3.2rem;
}

.experience-step:last-child {
  margin-bottom: 0;
}

.experience-step-meta {
  position: relative;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--button-color);
  margin-bottom: 0.7rem;
}

.experience-step-meta::before {
  content: "";
  position: absolute;
  /* pulls the dot back onto the centre of the entry border */
  left: -2.3rem;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--button-color);
}

.experience-step-text {
  font-size: 1.55rem;
  line-height: 1.65;
  color: #5a5a5a;
}

.experience-step--featured .experience-step-text {
  font-size: 1.6rem;
  color: #4d4d4d;
}

.experience-label,
.personal-label,
.movement-label {
  font-size: 1.4rem;
  font-weight: 500;
  color: #456654;
  background: #faf3eb;
  border: 1px solid rgba(0, 121, 61, 0.12);
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
}

.experience-media {
  order: -1;
  display: flex;
  justify-content: center;
  align-self: start;
}

.experience-image {
  width: 100%;
  max-width: 42rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2.4rem;
}

.experience-placeholder {
  width: 100%;
  max-width: 42rem;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 2.4rem;
  background: #f6f1ea;
  border: 1px dashed rgba(0, 121, 61, 0.25);
  color: #8a8a8a;
}

.experience-placeholder-icon {
  width: 3.6rem;
  height: 3.6rem;
  color: rgba(0, 121, 61, 0.45);
}

.experience-placeholder-text {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/**************************/
/* MIN EGEN ERFARING SECTION */
/**************************/

.section-personal {
  padding: 8rem 0 9.6rem;
  background: var(--section-light);
}

.personal-top {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 5.2rem;
  align-items: start;
  margin-bottom: 5.6rem;
}

.personal-bottom {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5.2rem;
  align-items: start;
}

.personal-media {
  order: -1;
  display: flex;
  justify-content: center;
  align-self: start;
}

.personal-image {
  width: 100%;
  max-width: 41rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2.4rem;
}

.personal-intro .heading-secondary {
  margin-bottom: 2.4rem;
  max-width: 52rem;
}

.personal-text {
  font-size: 1.8rem;
  line-height: 1.75;
  color: #525252;
  max-width: 54ch;
  margin-bottom: 1.8rem;
}

.personal-text--last {
  margin-bottom: 0;
}

.personal-labels {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2.2rem 0 0;
}

.personal-results-eyebrow {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--button-color);
  margin-bottom: 0.8rem;
}

.personal-results-title {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--dark-text);
  margin-bottom: 2.4rem;
}

.personal-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.8rem;
}

.personal-stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.4rem 1.6rem;
  border-radius: 1.4rem;
  background: rgba(255, 254, 250, 0.8);
  border: 1px solid rgba(0, 121, 61, 0.1);
}

.personal-stat-value {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--button-color);
}

.personal-stat-label {
  font-size: 1.4rem;
  line-height: 1.35;
  color: #5a5a5a;
}

.personal-highlight {
  margin-bottom: 2.4rem;
}

.personal-text--after-highlight {
  margin-bottom: 0;
}

@media (min-width: 59.0625em) {
  .personal-reflection {
    margin-top: 1.8rem;
  }
}

.personal-placeholder {
  width: 100%;
  max-width: 41rem;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 2.4rem;
  background: #f4f2ec;
  border: 1px dashed rgba(0, 121, 61, 0.25);
  color: #8a8a8a;
}

.personal-placeholder-icon {
  width: 3.6rem;
  height: 3.6rem;
  color: rgba(0, 121, 61, 0.45);
}

.personal-placeholder-text {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/**************************/
/* BEVÆGELSE I MIT EGET LIV SECTION */
/**************************/

.section-movement {
  padding: 8rem 0 9.6rem;
  background: var(--section-warm);
}

.movement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 5.2rem;
  align-items: center;
}

.movement-copy .heading-secondary {
  margin-bottom: 2.4rem;
  max-width: 52rem;
}

.movement-text {
  font-size: 1.8rem;
  line-height: 1.75;
  color: #525252;
  max-width: 55ch;
  margin-bottom: 1.8rem;
}

.movement-text:last-child {
  margin-bottom: 0;
}

.movement-labels {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.4rem;
}

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

.movement-video-placeholder {
  position: relative;
  width: 100%;
  max-width: 32rem;
  aspect-ratio: 9 / 16;
  max-height: 54rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  border-radius: 2.4rem;
  background: linear-gradient(160deg, #f6f1ea 0%, #eef3ee 100%);
  border: 1px solid rgba(0, 121, 61, 0.16);
  box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.05);
  color: #7d7d7d;
}

.movement-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background: rgba(255, 254, 250, 0.95);
  border: 1px solid rgba(0, 121, 61, 0.16);
  box-shadow: 0 0.8rem 1.8rem rgba(0, 0, 0, 0.05);
  color: var(--button-color);
  font-size: 2.6rem;
}

.movement-video-text {
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/**************************/
/* MERE END KOST OG TRÆNING SECTION */
/**************************/

.section-life {
  padding: 8rem 0 9.6rem;
  background: var(--section-light);
}

.life-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 5.2rem;
  align-items: center;
}

.life-media {
  order: -1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.life-image,
.life-image-placeholder {
  width: 100%;
  max-width: 40rem;
  aspect-ratio: 3 / 2;
  border-radius: 2.4rem;
}

.life-image {
  display: block;
  object-fit: cover;
}

.life-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(0, 121, 61, 0.25);
  background: #f4f2ec;
  color: #8a8a8a;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

.life-copy .heading-secondary {
  margin-bottom: 2.4rem;
  max-width: 52rem;
}

.life-text {
  font-size: 1.8rem;
  line-height: 1.75;
  color: #525252;
  max-width: 58ch;
  margin-bottom: 1.8rem;
}

.life-quote {
  margin-bottom: 0;
}

.life-placeholder {
  width: 100%;
  max-width: 40rem;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border-radius: 2.4rem;
  background: #f7f2ec;
  border: 1px dashed rgba(204, 69, 1, 0.22);
  color: #8a8a8a;
}

.life-placeholder-icon {
  width: 3.6rem;
  height: 3.6rem;
  color: rgba(0, 121, 61, 0.45);
}

.life-placeholder-text {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/**************************/
/* OM MIG FINAL CTA */
/**************************/

.section-about-cta {
  padding: 0 0 9.6rem;
  background: var(--section-light);
}

.about-cta {
  background: var(--box-background);
  border-radius: 2.4rem;
  padding: 6.4rem 4.8rem;
  text-align: center;
}

.about-cta-title {
  color: var(--light-text);
  max-width: 65rem;
  margin: 0 auto 1.8rem;
}

.about-cta-text {
  color: rgba(255, 254, 250, 0.88);
  font-size: 1.8rem;
  line-height: 1.7;
  max-width: 65rem;
  margin: 0 auto 3.2rem;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
}

/* TRAINING PAGE */
/**************************/

/* Shared hero type scale for all subpages (the homepage hero keeps its own scale) */
.training-page-copy .heading-primary,
.about-page-copy .heading-primary,
.subpage-hero .heading-primary {
  font-size: 4.4rem;
  line-height: 1.06;
}

.training-page-copy .heading-primary,
.about-page-copy .heading-primary {
  max-width: 56rem;
}

.training-page-description,
.about-page-description,
.subpage-hero .hero-description {
  color: #4d4d4d;
  text-shadow: none;
}

.training-page-description {
  margin-bottom: 3.8rem;
  max-width: 62rem;
}

.training-page-hero-media {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0;
  background: transparent;
  overflow: hidden;
  border-radius: 2.8rem;
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 86%,
    transparent 100%
  );
  mask-image: linear-gradient(to bottom, #000 0%, #000 86%, transparent 100%);
}

.training-page-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.training-page-card,
.training-form-card {
  background: #fff;
  border-radius: 2.2rem;
  padding: 3.2rem;
  box-shadow: 0 1.8rem 3.8rem rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 121, 61, 0.12);
}

.training-page-card--hero {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: min(100%, 90rem);
  margin: 4rem auto 0;
}

.card-eyebrow {
  color: #ff5601;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.program-overview-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.program-overview-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.2rem;
  border-radius: 1.2rem;
  background: #f9f5ef;
  color: #314d3f;
  font-size: 1.5rem;
  line-height: 1.5;
}

.program-overview-item ion-icon {
  color: #00793d;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 121, 61, 0.12);
  color: #2f4f3d;
  font-size: 1.35rem;
  font-weight: 600;
}

.hero-badges ion-icon {
  color: #00793d;
}

.training-page-section {
  padding: 9.6rem 0;
}

#for-dig-og-nytte {
  padding-top: 4.8rem;
}

#for-dig-og-nytte .editorial-layout {
  align-items: start;
}

.training-page-section--peach {
  background: #fcf3ea;
}

.training-page-section .heading-secondary {
  margin-bottom: 2rem;
  font-size: 3.2rem;
  line-height: 1.25;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: 4.8rem;
  align-items: center;
}

.editorial-copy {
  max-width: 56rem;
}

.editorial-copy p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #5a605d;
  max-width: 52rem;
}

.training-focus-grid {
  margin-top: 3.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.4rem;
  max-width: 60rem;
}

.training-focus-item {
  display: grid;
  grid-template-columns: 4.8rem 1fr;
  column-gap: 1.4rem;
  row-gap: 0.4rem;
  align-items: start;
  min-height: 0;
  padding: 2rem;
  background: #fffaf4;
  border: 1px solid rgba(0, 121, 61, 0.12);
  border-radius: 1.6rem;
}

.training-focus-icon {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 1.2rem;
  background: #fffaf4;
  border: 1px solid rgba(35, 59, 49, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-row: 1 / span 2;
}

.training-focus-icon ion-icon {
  font-size: 4.1rem;
  color: #00793d;
}

.training-focus-item h3 {
  grid-column: 2;
  font-size: 1.75rem;
  line-height: 1.35;
  color: #233b31;
  margin-bottom: 0.7rem;
}

.training-focus-item p {
  grid-column: 2;
  font-size: 1.55rem;
  line-height: 1.6;
  color: #4f5954;
  max-width: none;
}

.benefit-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 2rem;
  max-width: 48rem;
}

.benefit-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.7rem;
  line-height: 1.7;
  color: #45524c;
}

.benefit-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5601;
  font-size: 1.8rem;
}

.section-image {
  width: 100%;
  max-width: 54rem;
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2rem;
  background: #f7efe6;
}

.section-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-image--training {
  max-width: 50rem;
  margin: 0 auto;
  align-self: center;
  border-radius: 2.2rem;
  background: transparent;
  aspect-ratio: auto;
  overflow: visible;
}

.section-image--training img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2.2rem;
  object-position: center 25%;
}

.training-image-support {
  margin-top: 2rem;
  text-align: left;
}

.training-image-support h3 {
  margin-bottom: 0.8rem;
  color: #233b31;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
}

.training-image-support p {
  margin: 0;
  color: #5a605d;
  font-size: 1.55rem;
  line-height: 1.6;
}

.training-type-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.training-type-labels span {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 0.95rem;
  border: 1px solid rgba(35, 59, 49, 0.14);
  border-radius: 999px;
  background: #fffaf4;
  color: #314d3f;
  font-size: 1.4rem;
  line-height: 1.3;
  white-space: nowrap;
}

.exorlive-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 4.8rem;
  align-items: center;
}

.exorlive-copy {
  max-width: 56rem;
}

.exorlive-copy p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #5a605d;
  max-width: 54rem;
  margin-bottom: 2.2rem;
}

.exorlive-feature-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.exorlive-feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(0, 121, 61, 0.12);
  color: #2f4f3d;
  font-size: 1.62rem;
  line-height: 1.55;
}

.exorlive-feature-list li ion-icon {
  color: #00793d;
  font-size: 1.9rem;
  flex-shrink: 0;
}

.exorlive-phones {
  position: relative;
  max-width: 44rem;
  width: 100%;
  min-height: 51rem;
  margin-left: auto;
}

.exorlive-phone {
  position: absolute;
  width: 24rem;
  aspect-ratio: 9 / 19;
  border-radius: 3.2rem;
  padding: 0.7rem;
  background: #f4efe6;
  border: 1px solid rgba(0, 121, 61, 0.14);
  box-shadow: 0 0.8rem 1.8rem rgba(35, 59, 49, 0.08);
  overflow: hidden;
}

.exorlive-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.6rem;
}

.exorlive-phone--front {
  top: 2rem;
  left: -0.4rem;
  z-index: 2;
}

.exorlive-phone--back {
  right: -0.4rem;
  bottom: 0;
  z-index: 1;
}

.process-layout {
  display: grid;
  gap: 5.6rem;
}

#saadan-funger-det {
  scroll-margin-top: 12rem;
}

.process-intro {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.process-intro p {
  max-width: 56rem;
  margin: 0 auto;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #5a605d;
}

.process-timeline {
  --process-number-size: 6.2rem;
  --process-center-column: 11rem;
  --process-step-gap: 1.6rem;
  position: relative;
  display: grid;
  gap: var(--process-step-gap);
  max-width: 114rem;
  margin: 0 auto;
  padding: 0.8rem 0;
}

.process-timeline::before {
  display: none;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--process-center-column) minmax(
      0,
      1fr
    );
  align-items: center;
  gap: 2rem;
  min-height: 17.4rem;
}

.process-step--left .process-step-card {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.process-step--left .process-step-meta {
  grid-column: 2;
  grid-row: 1;
}

.process-step--right .process-step-meta {
  grid-column: 2;
  grid-row: 1;
}

.process-step--right .process-step-card {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

.process-step-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  align-self: stretch;
  justify-self: center;
}

.process-step-meta::before {
  content: "";
  position: absolute;
  top: calc(var(--process-step-gap) * -0.5);
  bottom: calc(var(--process-step-gap) * -0.5);
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 121, 61, 0.28) 0,
    rgba(0, 121, 61, 0.28) 0.95rem,
    transparent 0.95rem,
    transparent 1.65rem
  );
}

.process-step:first-child .process-step-meta::before {
  top: 50%;
}

.process-step:last-child .process-step-meta::before {
  bottom: 50%;
}

.process-step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--process-number-size);
  min-height: var(--process-number-size);
  padding: 0.4rem 0.8rem;
  background: #f9f4eb;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #00793d;
  align-self: center;
}

.process-step-card {
  width: min(100%, 46rem);
  min-height: 17.4rem;
  height: 100%;
  padding: 2.3rem 2.5rem;
  border-radius: 2.4rem;
  background: rgba(255, 252, 247, 0.98);
  border: 1px solid rgba(0, 121, 61, 0.16);
  box-shadow: 0 0.3rem 0.8rem rgba(35, 59, 49, 0.02);
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.8rem;
  align-items: center;
}

.process-step-illustration {
  width: 9.4rem;
  height: 9.4rem;
  border-radius: 2.6rem;
  background: #f6efe2;
  border: 1px solid rgba(0, 121, 61, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-step-illustration ion-icon {
  font-size: 5rem;
  color: #00793d;
}

.process-step-card-copy h3 {
  font-size: 2.05rem;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  color: #233b31;
}

.process-step-card-copy p {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.65;
  color: #404542;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: start;
}

.booking-copy .heading-secondary {
  margin-bottom: 1.6rem;
  font-size: 3.4rem;
}

.booking-copy .about-description {
  margin-bottom: 2rem;
}

.booking-checklist {
  list-style: none;
  margin: 0 0 2.4rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.booking-checklist li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 1rem;
  align-items: start;
  font-size: 1.62rem;
  line-height: 1.55;
  color: #2f4338;
}

.booking-checklist ion-icon {
  margin-top: 0.1rem;
  font-size: 1.9rem;
  color: #00793d;
}

.booking-copy .btn {
  display: inline-flex;
}

.booking-helper-text {
  margin: 1.2rem 0 0;
  max-width: 54rem;
  font-size: 1.4rem;
  line-height: 1.55;
  color: #667069;
}

.booking-secondary-card {
  position: relative;
  background: #fffdf9;
  border: 1px solid rgba(0, 121, 61, 0.16);
  border-radius: 2rem;
  padding: 9.8rem 2.8rem 2.8rem;
  box-shadow: 0 0.8rem 2rem rgba(35, 59, 49, 0.04);
  max-width: 42rem;
  justify-self: end;
  margin-top: 6rem;
}

.booking-secondary-profile {
  position: absolute;
  top: -7.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 14.4rem;
  height: 14.4rem;
  margin: 0;
  border-radius: 999px;
  overflow: hidden;
  border: 4px solid #fffdf9;
  box-shadow: 0 0.5rem 1.4rem rgba(35, 59, 49, 0.12);
}

.booking-secondary-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-secondary-card h3 {
  margin: 0 0 1.2rem;
  font-size: 2.25rem;
  line-height: 1.3;
  color: #233b31;
}

.booking-secondary-card p {
  margin: 0 0 2rem;
  font-size: 1.6rem;
  line-height: 1.65;
  color: #4f5b54;
}

.booking-secondary-card .btn {
  display: flex;
  width: fit-content;
  margin: 0 auto;
}

.booking-secondary-card .btn.btn--outline:hover,
.booking-secondary-card .btn.btn--outline:focus-visible,
.booking-secondary-card .btn.btn--outline:active {
  background: #00793d;
  color: #fff;
  box-shadow: 0 0.8rem 1.6rem rgba(0, 121, 61, 0.24);
  border-color: #00793d;
}

.callback-modal {
  width: min(58rem, calc(100% - 3.2rem));
  max-height: calc(100vh - 3.2rem);
  max-height: calc(100dvh - 3.2rem);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 121, 61, 0.2);
  border-radius: 2.2rem;
  background: #fffdf9;
  box-shadow: 0 1.2rem 3rem rgba(20, 35, 27, 0.16);
  color: #233b31;
  z-index: 10000;
}

body.modal-open {
  overflow: hidden;
}

.callback-modal::backdrop {
  background: rgba(20, 35, 27, 0.42);
}

.callback-modal-content {
  position: relative;
  padding: 3.2rem;
  max-height: calc(100vh - 3.2rem);
  max-height: calc(100dvh - 3.2rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: max(3.2rem, env(safe-area-inset-bottom));
  scroll-padding-bottom: 2.4rem;
}

.callback-modal-eyebrow {
  margin: 0 0 0.8rem;
  color: #2f6a4f;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.callback-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  border: 0;
  background: transparent;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f4f3d;
  cursor: pointer;
}

.callback-modal-close:hover {
  background: #f5eee2;
}

.callback-modal-close ion-icon {
  font-size: 2.4rem;
}

.callback-modal-content h3 {
  margin: 0 0 1rem;
  font-size: 2.6rem;
  line-height: 1.25;
  color: #233b31;
}

.callback-modal-intro {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.65;
  color: #4f5b54;
}

.callback-modal-support {
  margin: 1rem 0 0;
  font-size: 1.4rem;
  line-height: 1.55;
  color: #5f6662;
}

.callback-request-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.callback-request-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 1.45rem;
  font-weight: 600;
  color: #2f4338;
}

.callback-request-form input,
.callback-request-form select,
.callback-request-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 121, 61, 0.22);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  font: inherit;
  color: #233b31;
  background: #fff;
}

.callback-request-form textarea {
  min-height: 9.4rem;
  resize: vertical;
}

.callback-request-form input:focus,
.callback-request-form select:focus,
.callback-request-form textarea:focus {
  outline: none;
  border-color: #00793d;
  box-shadow: 0 0 0 3px rgba(0, 121, 61, 0.14);
}

.callback-choice-group {
  border: 1px solid rgba(0, 121, 61, 0.18);
  border-radius: 1rem;
  margin: 0;
  padding: 0.9rem 1.2rem 1rem;
}

.callback-choice-group legend {
  padding: 0 0.4rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2f4338;
}

.callback-choice-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #2f4338;
  margin-top: 0.6rem;
}

.callback-choice-option input[type="radio"] {
  width: 1.6rem;
  height: 1.6rem;
  margin: 0;
}

.callback-form-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(255, 253, 249, 1) 75%,
    rgba(255, 253, 249, 0.94) 100%
  );
  padding-top: 0.8rem;
  padding-bottom: 0.2rem;
}

.callback-request-form .btn {
  justify-content: center;
  margin-top: 0;
}

.callback-privacy {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #667069;
}

.callback-success {
  margin-top: 1.8rem;
  border: 1px solid rgba(0, 121, 61, 0.2);
  border-radius: 1.2rem;
  background: #f3f8f4;
  padding: 1.4rem 1.6rem;
}

.callback-success p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #234335;
}

.cookie-banner {
  position: fixed;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  z-index: 10001;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background: #fffdf9;
  border: 1px solid rgba(0, 121, 61, 0.18);
  border-radius: 1.6rem;
  box-shadow: 0 1.4rem 3.2rem rgba(20, 35, 27, 0.15);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  max-width: 72rem;
}

.cookie-banner__eyebrow {
  margin: 0 0 0.6rem;
  color: #2f6a4f;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-banner h3 {
  margin: 0 0 0.6rem;
  font-size: 2rem;
  line-height: 1.25;
  color: #233b31;
}

.cookie-banner p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #4f5b54;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.cookie-banner__actions .btn,
.cookie-banner__actions .btn:link,
.cookie-banner__actions .btn:visited {
  padding: 1rem 1.6rem;
  font-size: 1.5rem;
}

.cookie-btn-decline.btn--outline:link,
.cookie-btn-decline.btn--outline:visited {
  background: #fff;
}

.cookie-btn-accept.btn,
.cookie-btn-accept.btn--full:link,
.cookie-btn-accept.btn--full:visited {
  background: #00793d;
  color: #fff;
  box-shadow: 0 0.8rem 1.6rem rgba(0, 121, 61, 0.24);
}

.cookie-btn-accept.btn:hover,
.cookie-btn-accept.btn--full:hover,
.cookie-btn-accept.btn--full:active {
  background: #005f30;
  color: #fff;
  box-shadow: 0 0.8rem 1.6rem rgba(0, 95, 48, 0.28);
}

.faq-list {
  display: grid;
  gap: 1.6rem;
  max-width: 80rem;
  margin: 0 auto;
}

#faq .section-heading {
  text-align: center;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(255, 86, 1, 0.34);
  border-radius: 1.8rem;
  padding: 1.8rem 2.2rem;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.04);
}

.faq-question {
  position: relative;
  padding-right: 3.2rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #233b31;
  cursor: pointer;
  list-style: none;
}

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

.faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  width: 2.4rem;
  height: 2.4rem;
  transform: translateY(-50%);
  color: #ff5601;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 2.1rem;
  text-align: center;
}

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

.faq-answer {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #5c5c5c;
}

#andre-muligheder {
  padding-top: 4.4rem;
}

#andre-muligheder .section-heading {
  text-align: center;
}

.alternatives-intro {
  max-width: 76rem;
  margin: 1.2rem auto 0;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1.7;
  color: #5a605d;
}

.training-pricing-grid {
  margin-top: 4rem;
  column-gap: 3.2rem;
  row-gap: 3.2rem;
}

.final-cta-section {
  padding-top: 3rem;
}

.final-cta {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.final-cta .heading-secondary {
  margin-bottom: 1.6rem;
  font-size: 3.2rem;
}

.final-cta p {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #5a605d;
  margin-bottom: 2.4rem;
}

.final-cta .about-page-actions {
  justify-content: center;
}

@media (max-width: 900px) {
  .about-page-hero,
  .training-page-hero {
    padding: 11.4rem 0 3.6rem;
  }

  .about-page-hero-grid,
  .training-page-hero-grid,
  .editorial-layout,
  .booking-layout,
  .exorlive-layout {
    grid-template-columns: 1fr;
  }

  .training-page-section {
    padding: 7.2rem 0;
  }

  .training-page-card--hero {
    margin-top: 2.8rem;
  }

  .process-layout {
    gap: 3.6rem;
  }

  .booking-secondary-card {
    justify-self: stretch;
    max-width: none;
  }

  #for-dig-og-nytte {
    padding-top: 5.6rem;
  }

  .exorlive-phones {
    max-width: 36rem;
    min-height: 43rem;
    margin: 0;
  }

  .exorlive-phone {
    width: 20rem;
    border-radius: 2.8rem;
  }

  .exorlive-phone img {
    border-radius: 2.2rem;
  }

  .training-focus-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 100%;
  }

  .training-focus-item {
    grid-template-columns: 4.4rem 1fr;
    padding-left: 1.2rem;
  }

  .training-focus-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
  }

  .training-focus-icon ion-icon {
    font-size: 3.4rem;
  }

  .section-image--training {
    max-width: 40rem;
    margin: 0;
  }

  .training-focus-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 100%;
  }

  .section-image--training {
    max-width: 40rem;
    margin: 0;
  }

  .process-timeline {
    gap: 1.8rem;
    max-width: 100%;
    padding: 0;
  }

  .process-timeline::before {
    display: block;
    content: "";
    position: absolute;
    top: 2.4rem;
    bottom: 2.4rem;
    left: 2.8rem;
    width: 2px;
    transform: none;
    background: repeating-linear-gradient(
      to bottom,
      rgba(0, 121, 61, 0.2) 0,
      rgba(0, 121, 61, 0.2) 0.9rem,
      transparent 0.9rem,
      transparent 1.6rem
    );
  }

  .process-step {
    grid-template-columns: 5.6rem minmax(0, 1fr);
    align-items: center;
    gap: 1.2rem;
    min-height: 0;
  }

  .process-step--left .process-step-card,
  .process-step--right .process-step-card {
    grid-column: 2;
    justify-self: stretch;
  }

  .process-step--left .process-step-meta,
  .process-step--right .process-step-meta {
    grid-column: 1;
    justify-self: center;
    align-self: center;
  }

  .process-step-meta::before {
    display: none;
  }

  .process-step-card {
    width: 100%;
    min-height: 0;
    padding: 1.9rem 1.9rem 2rem;
    height: auto;
    grid-template-columns: 8.4rem 1fr;
    gap: 1.2rem;
  }

  .process-step-number {
    min-width: 5.6rem;
    min-height: 5.6rem;
    font-size: 4.4rem;
    padding: 0.2rem 0.4rem;
  }

  .process-step-illustration {
    width: 7.8rem;
    height: 7.8rem;
    border-radius: 2.2rem;
  }

  .process-step-illustration ion-icon {
    font-size: 4rem;
  }

  .process-step-card-copy h3 {
    font-size: 1.9rem;
  }
}

@media (max-width: 720px) {
  .about-page-hero,
  .training-page-hero {
    padding: 11rem 0 3.2rem;
  }

  .training-page-section {
    padding: 6.4rem 0;
  }

  .exorlive-phones {
    max-width: 30rem;
    min-height: 40rem;
    margin: 1.2rem auto 0;
  }

  .exorlive-phone {
    width: 17rem;
  }

  .exorlive-phone--front {
    top: 0;
    left: 0;
  }

  .exorlive-phone--back {
    right: 0;
    bottom: 1rem;
  }

  .process-step-card {
    padding: 1.8rem 1.8rem 1.9rem;
    grid-template-columns: 6.2rem minmax(0, 1fr);
    gap: 0.8rem;
  }

  .process-step-number {
    font-size: 3.8rem;
    min-width: 5.2rem;
    min-height: 5.2rem;
  }

  .process-step-illustration {
    width: 6.6rem;
    height: 6.6rem;
    border-radius: 1.8rem;
  }

  .process-step-illustration ion-icon {
    font-size: 3.4rem;
  }

  .process-step-card-copy h3 {
    font-size: 1.9rem;
    overflow-wrap: break-word;
  }
}

@media (max-width: 720px) {
  .training-page-hero {
    padding: 11rem 0 3.2rem;
  }

  .training-page-card,
  .training-form-card {
    padding: 2.1rem;
  }

  .hero-badges {
    gap: 0.8rem;
  }

  .booking-copy .heading-secondary {
    font-size: 2.9rem;
  }

  #andre-muligheder {
    padding-top: 3.2rem;
  }

  .alternatives-intro {
    font-size: 1.62rem;
    margin-top: 1rem;
  }

  .booking-checklist {
    gap: 0.9rem;
    margin-bottom: 2rem;
  }

  .booking-checklist li {
    font-size: 1.55rem;
  }

  .booking-helper-text {
    font-size: 1.35rem;
  }

  .booking-secondary-card {
    padding: 8.6rem 2.2rem 2.2rem;
    border-radius: 1.8rem;
    margin-top: 5.2rem;
  }

  .booking-secondary-profile {
    width: 12rem;
    height: 12rem;
    top: -6rem;
  }

  .booking-secondary-card h3 {
    font-size: 2rem;
  }

  .callback-modal {
    width: calc(100% - 1.8rem);
    max-height: calc(100vh - 1.8rem);
    max-height: calc(100dvh - 1.8rem);
    border-radius: 1.8rem;
  }

  .callback-modal-content {
    padding: 2.4rem 1.8rem 2rem;
    max-height: calc(100vh - 1.8rem);
    max-height: calc(100dvh - 1.8rem);
    padding-bottom: max(2.8rem, env(safe-area-inset-bottom));
  }

  .callback-modal-content h3 {
    font-size: 2.2rem;
  }

  .callback-modal-close {
    top: 0.8rem;
    right: 0.8rem;
    width: 4.2rem;
    height: 4.2rem;
  }

  .callback-request-form label {
    font-size: 1.4rem;
  }

  .callback-request-form {
    gap: 0.85rem;
    margin-top: 1.2rem;
  }

  .callback-choice-group {
    padding: 0.8rem 1rem 0.9rem;
  }

  .callback-choice-group legend,
  .callback-choice-option {
    font-size: 1.35rem;
  }

  .callback-request-form input,
  .callback-request-form select,
  .callback-request-form textarea {
    padding: 0.9rem 1rem;
  }

  .callback-success p {
    font-size: 1.45rem;
  }
}

/* PRICING CARD HIGHLIGHT */
/**************************/

.pricing-card--complete {
  border: 1px solid #fff;
  border-radius: 2.2rem;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.05);
}

.pricing-card--complete .pricing-plan {
  border: none;
  box-shadow: none;
}

.plan-continuation {
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.plan-continuation strong {
  display: block;
  color: #00793d;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.plan-continuation .plan-text {
  display: block;
  margin-bottom: 0;
}

/* FEATURED IN SECTION */
/**************************/

.section-featured {
  padding: 4.8rem 0 3.2rem 0;
  background: var(--section-light);
}

.heading-featured-in {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.4rem;
  color: var(--light-text);
  /*  color: #888;*/
}

/* .logos {
  display: flex;
  justify-content: space-around;
}

.logos img {
  height: 3.2rem;
  filter: brightness(0);
  opacity: 50%;
} */

/**************************/
/* HOW IT WORKS SECTION */
/**************************/

.section-how {
  padding: 9.6rem 0;
  background: var(--section-light);
}

.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  color: #00793d;
  opacity: 0.3;
  margin-bottom: 1.2rem;
}

.step-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.step-img-box {
  position: relative;

  display: flex;
  align-items: center;
  /* place images at the left side of the right column */
  justify-content: flex-start;
}

.step-img {
  /* make images fill their column but cap width for consistency */
  width: 100%;
  max-width: 48rem;
  /* z-index: 10; */
}

/* Specific: left-align only the 'spis-løs-bredformat' image's container */
.step-img-box--left {
  justify-content: flex-start;
}

.step-img--left {
  width: 100%;
  max-width: 48rem;
}
/**************************/
/* MEALS SECTION */
/**************************/

.section-meals {
  padding: 9.6rem 0;
  background: var(--section-light);
}

.meal {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
}

.meal:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.meal-content {
  padding: 3.2rem 4.8rem 2.8rem 4.8rem;
}

.meal-tags {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 0.4rem;
}

.tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #333;
  border-radius: 100px;
  font-weight: 600;
}

.tag--vegetarian {
  background-color: #51cf66;
}
.tag--vegan {
  background-color: #94d82d;
}
.tag--paleo {
  background-color: #ffd43b;
}

.meal-title {
  font-size: 2.4rem;
  line-height: 1.2;
  color: #333;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.meal-text {
  font-size: 19px;
  line-height: 1.4;
  font-weight: 400;
  color: inherit;
}

.meal-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.meal-attribute {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.meal-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #ff5601;
}

.meal-img {
  width: 100%;
}

.all-recipes {
  text-align: center;
  font-size: 1.8rem;
}

/**************************/
/* TESTIMONIALS SECTION */
/**************************/

.section-testimonials {
  background-color: var(--section-warm);
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: center;
}

.testimonials-container {
  padding: 9.6rem;
}

.testimonials-container .heading-secondary {
  margin-bottom: 4.8rem;
}

.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4.8rem;
}

.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

.testimonial-name {
  font-size: 1.6rem;
  color: #6f6f6f;
}

.testimonial-name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.testimonial-name a:hover {
  border-bottom-color: #6f6f6f;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: 1.6rem;
}

.gallery-item {
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  transition: all 0.4s;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

/**************************/
/* MEALS SECTION */
/**************************/

.section-pricing {
  padding: 8rem 0;
  background: var(--section-light);
}

.section-pricing .heading-secondary {
  margin-bottom: 2.8rem;
}

.pricing-tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem;
  margin-top: 0.8rem;
  margin-bottom: 3.2rem;
  border: 1px solid #f2c8aa;
  border-radius: 999px;
  background-color: #fff5eb;
}

.pricing-tab {
  border: 0;
  background: transparent;
  color: #8a552d;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
  padding: 1.2rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pricing-tab:hover {
  color: #6e3d1c;
  background-color: #ffe8d4;
}

.pricing-tab:focus-visible {
  outline: 3px solid var(--button-color);
  outline-offset: 3px;
  box-shadow: none;
}

.pricing-tab.is-active {
  color: #b44912;
  font-weight: 600;
  background-color: #ffd9bf;
  box-shadow:
    inset 0 -2px 0 rgba(204, 69, 1, 0.24),
    0 0 0 1px rgba(204, 69, 1, 0.2);
}

.pricing-panels {
  position: relative;
}

.pricing-tab-panel {
  animation: pricingPanelFade 0.32s ease;
}

.pricing-tab-panel[hidden] {
  display: none !important;
}

@keyframes pricingPanelFade {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-pricing .grid--3-cols {
  column-gap: 3.2rem;
  row-gap: 3.2rem;
  align-items: stretch;
}

/* Keep pricing cards static (no flip) */
.pricing-card,
.pricing-card-inner {
  min-height: 62rem;
}

.pricing-card {
  display: flex;
  position: relative;
  border-radius: 11px;
  overflow: hidden;
  transition: all 0.4s;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
}

.pricing-card .pricing-plan {
  width: 100%;
  padding: 4.8rem 2.4rem 2.4rem;
}

.pricing-card .plan-name,
.pricing-card .plan-header {
  margin-top: 0;
}

.pricing-card .plan-name {
  line-height: 1.3;
}

.pricing-card .plan-text {
  line-height: 1.45;
}

.pricing-card .list {
  gap: 1.3rem;
  padding-bottom: 1.4rem;
}

.pricing-card:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.pricing-card--starter {
  border: 2px solid #ffdcca;
  background-color: #fff;
}

.pricing-card--complete {
  border: 2px solid #ffdcca;
  background-color: #fdf2e9;
}

.pricing-card--complete::after {
  content: "Anbefalet";
  position: absolute;
  top: 2.2rem;
  right: -5.2rem;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  color: #333;
  background-color: #ffd43b;
  padding: 0.8rem 6rem;
  transform: rotate(45deg);
  z-index: 2;
}

.pricing-plan--back {
  display: none;
}

.plan-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0 2rem 0;
  margin-top: 1.2rem;
  border-top: 1px solid #ff894d;
  font-size: 1.4rem;
  gap: 1.6rem;
}

.plan-toggle-option {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.plan-toggle-option--active {
  color: #ff894d;
  font-weight: 600;
}

.plan-toggle-clickable {
  cursor: pointer;
  color: #6f6f6f;
  transition: all 0.3s;
}

.plan-toggle-clickable:hover {
  color: #434343;
  transform: translateX(3px);
}

.plan-toggle-clickable ion-icon {
  font-size: 1.6rem;
}

.plan-extended {
  font-size: 1.4rem;
  color: #00793d;
  font-weight: 700;
}

.pricing-plan {
  border-radius: 11px;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pricing-plan .list {
  padding-bottom: 0;
  margin-bottom: 0;
}

.pricing-plan .list-icon {
  width: 2.6rem;
  height: 2.6rem;
  color: #00793d;
}

.pricing-plan--starter {
  justify-self: end;
  background-color: #fff;
  padding: 4.8rem 2.6rem 2.2rem;
}

.pricing-plan--complete {
  background-color: transparent;
  padding: 4.8rem 2.6rem 2.2rem;
}

.pricing-plan--complete.pricing-plan--front::after {
  content: none;
}

.pricing-plan--complete.pricing-plan--back::after {
  content: none;
}

.plan-header {
  text-align: center;
  margin-bottom: 1.4rem;
  width: 100%;
}

.plan-name {
  color: #ff5601;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.75;
  margin-bottom: 1rem;
  text-align: center;
}

.plan-price {
  font-size: 6.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
  text-align: center;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.plan-price span {
  font-size: 3rem;
  font-weight: 500;
  margin-right: 0.8rem;
  margin-left: -2rem;
}

.plan-text {
  font-size: 1.6rem;
  line-height: 1.55;
  color: #6f6f6f;
  text-align: center;
  margin-bottom: 0.6rem;
}

.plan-duration {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00793d;
  text-align: center;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

.section-pricing .list-item {
  font-size: 1.65rem;
  line-height: 1.35;
}

.section-pricing .list-icon {
  width: 2.6rem;
  height: 2.6rem;
}

.plan-exclusion {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.4rem;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  line-height: 1.45;
  color: #7a7a7a;
}

.plan-exclusion-icon {
  width: 2.6rem;
  height: 2.6rem;
  color: #ff894d;
  opacity: 0.85;
  flex-shrink: 0;
}

.plan-exclusion span {
  text-align: left;
}

.plan-sing-up {
  text-align: center;
  margin-top: auto;
  padding-top: 2.2rem;
  padding-bottom: 2rem;
}

.plan-details {
  max-width: 88rem;
  margin: 0 auto;
  font-size: 1.55rem;
  line-height: 1.6;
  color: #6e6e6e;
  text-align: center;
}

.plan-details-message {
  display: inline;
}

.feature-icon {
  color: #ff5601;
  height: 3.2rem;
  width: 3.2rem;
  background-color: #fdf2e9;
  margin-bottom: 3.2rem;
  padding: 1.6rem;
  border-radius: 50%;
}

.feature-title {
  font-size: 2.4rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.feature-text {
  font-size: 1.8rem;
  line-height: 1.8;
}

/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 4.8rem 0 12.8rem;
  background: var(--section-light);
}

.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 2fr 1fr;
  /* background-color: #CC4501; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;

  background-image: linear-gradient(to right bottom, #00793d, #003d1f);
  overflow: hidden;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #fffefa;
  background-color: var(--box-background);
}

.cta .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image:
    linear-gradient(
      to right bottom,
      rgba(235, 151, 78, 0.35),
      rgba(230, 125, 34, 0.35)
    ),
    url("../img/eating.jpg");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #fdf2e9;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
  transition: opacity 0.3s ease;
}

.footer-logo:hover,
.footer-logo:active {
  opacity: 0.86;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #767676;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.contact-icon {
  width: 1.8rem;
  height: 1.8rem;
  color: #767676;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition:
    color 0.3s ease,
    transform 0.25s ease;
}

.footer-link:hover,
.footer-link:active {
  color: #ff5601;
}

.footer-nav .footer-link:hover,
.footer-nav .footer-link:active {
  transform: translateX(2px);
}

.footer-link--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-link-icon {
  width: 1.8rem;
  height: 1.8rem;
  color: currentColor;
}

.contacts .footer-link:link,
.contacts .footer-link:visited {
  color: #767676;
}

.contacts .footer-link:hover,
.contacts .footer-link:active {
  color: #ff5601;
}

.contact-line:hover .contact-icon {
  color: #ff5601;
}

.contact-note {
  margin-top: 1.2rem;
  font-size: 1.35rem;
  line-height: 1.5;
  color: #6f6f6f;
}

/* ******* CAROUSEL ******* */

.section-carousel {
  padding: 9.6rem 0;
  background-color: var(--section-light);
}

.carousel-wrapper {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
}

.carousel-slide-container {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  background-color: #fff;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
}

.carousel-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  text-align: center;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.carousel-img {
  width: 100%;
  height: auto;
  max-height: 50rem;
  object-fit: cover;
  display: block;
}

.carousel-text {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-text);
  padding: 3.2rem 2rem;
  margin: 0;
}

/* Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--button-color);
  color: white;
  border: none;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
  font-size: 2rem;
}

.carousel-btn:hover {
  background-color: var(--button-hover);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn--prev {
  left: 1.6rem;
}

.carousel-btn--next {
  right: 1.6rem;
}

.carousel-btn svg {
  width: 2.4rem;
  height: 2.4rem;
}

/* Dot Indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0 0 0;
}

.carousel-dot {
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  border: 2px solid var(--button-color);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background-color: var(--button-color);
}

.carousel-dot:hover {
  transform: scale(1.2);
}

/* ~~~~~~~ FROM RIGHT BUTTON ANIMATION ~~~~~~~ */

.link.from-right {
  position: relative;
  padding: 1.2rem 2.4rem;
  padding-bottom: 1.2rem !important;
  border-bottom: none !important;
  transition: all 500ms cubic-bezier(0.77, 0, 0.175, 1);
  cursor: pointer;
  user-select: none;
}

.link.from-right:before,
.link.from-right:after {
  content: "";
  position: absolute;
  transition: inherit;
  z-index: -1;
}

.link.from-right:hover {
  color: var(--sand);
  border-bottom: none;
  transition-delay: 0.5s;
}

.link.from-right:hover:before {
  transition-delay: 0s;
}

.link.from-right:hover:after {
  background: #00793d;
  transition-delay: 0.35s;
}

/* From Right Effect */

.link.from-right:before,
.link.from-right:after {
  top: 0;
  width: 0;
  height: 100%;
}

.link.from-right:before {
  left: 0;
  border: 2px solid #00793d;
  border-left: 0;
  border-right: 0;
}

.link.from-right:after {
  right: 0;
}

.link.from-right:hover:before,
.link.from-right:hover:after {
  width: 100%;
}
