@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

:root {
  --navy: #0b2343;
  --navy-dark: #07182f;
  --navy-light: #12305b;
  --white: #f5f6f8;
  --gold: #f5c86d;
  --soft: #d6dce7;
  --link-hover: #4f74d9;
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: linear-gradient(180deg, #f9fbff 0%, #e9eef7 100%);
  color: var(--navy-dark);
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
span,
label,
button {
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 249, 252, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(12, 28, 52, 0.08);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  color: var(--navy);
}

.nav-logo {
  display: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand img.brand-logo {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.brand span strong {
  font-size: 20px;
  display: block;
  color: var(--navy);
}

.brand span em {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-style: normal;
  color: rgba(12, 28, 52, 0.7);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex: 1;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0 auto;
  padding-top: 6px;
}

.nav-item {
  position: relative;
  padding-bottom: 16px;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 10px;
}

.nav-trigger {
  background: none;
  border: none;
  font: inherit;
  color: var(--navy-dark);
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.nav-panel {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  background: white;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(12, 28, 52, 0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.nav-item:hover .nav-panel,
.nav-item.is-open .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-panel a {
  font-weight: 500;
}

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

#team .vision-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

#team .vision-text a:hover,
#team .vision-text a:focus-visible {
  color: var(--link-hover);
}

.policy a.policy-link {
  color: inherit;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.policy a.policy-link:hover,
.policy a.policy-link:focus-visible {
  color: var(--link-hover);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid rgba(11, 35, 67, 0.18);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(11, 35, 67, 0.12);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar.menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.navbar.menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-outline--red {
  border-color: #c1121f;
}

.btn-cta {
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--navy);
  border: 2px solid rgba(11, 35, 67, 0.2);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(11, 35, 67, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 35, 67, 0.22);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-solid {
  border: none;
  background: var(--navy);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-hero {
  border: 2px solid rgba(245, 246, 248, 0.7);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.2s ease;
  background: transparent;
}

.btn-hero--solid {
  background: transparent;
}

.btn-hero--ghost {
  background: transparent;
}

.btn-hero--solid:hover,
.btn-hero--ghost:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.btn-ghost {
  border: 1px solid rgba(245, 246, 248, 0.6);
  color: var(--white);
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
}

.lang-select {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: rgba(12, 28, 52, 0.6);
}

.lang-button {
  border-radius: 12px;
  border: 1px solid rgba(11, 35, 67, 0.2);
  background: #ffffff;
  padding: 6px 14px;
  font-weight: 600;
  color: var(--navy);
  cursor: not-allowed;
}

.hero {
  position: relative;
  height: 78vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-overlay {
  position: relative;
  max-width: 900px;
  padding: 80px 24px;
  text-align: center;
  color: var(--white);
  animation: fadeUp 0.8s ease both;
}

.hero-overlay h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 58px);
  margin-bottom: 18px;
}

.hero-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.typewriter {
  min-height: 80px;
  font-size: clamp(18px, 2vw, 26px);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

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

.hero-action--flagged {
  padding-right: 12px;
}

.hero-badge {
  position: absolute;
  right: -34px;
  bottom: -24px;
  padding: 6px 14px;
  border-radius: 14px;
  border: 2px solid #ff8b8b;
  color: #ffb6b6;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: rgba(7, 24, 47, 0.45);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transform: rotate(-18deg);
  white-space: nowrap;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px;
}

.section.flow {
  padding-top: 0;
  padding-bottom: 50px;
}

.section.testimonials {
  padding-top: 24px;
}

.section.supported-by {
  padding-top: 8px;
  padding-bottom: 48px;
  text-align: center;
}

.section.supported-by h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  margin-bottom: 8px;
}

.section.supported-by img {
  max-width: min(200px, 60vw);
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(12, 28, 52, 0.12));
}

.section p,
.long-text,
.policy p,
.accordion p,
.story-block p {
  text-align: justify;
  text-justify: inter-word;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.section-header p {
  text-align: left;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--navy);
}

.flow-line {
  width: 100%;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
  padding: 10px 0;
  margin-top: 0;
}

.section.flow .flow-line {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.flow-text {
  display: flex;
  width: max-content;
  gap: 40px;
  white-space: nowrap;
  animation: flow 16s linear infinite;
  font-weight: 600;
  color: var(--navy-light);
}

.flow-line--alert {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.flow-text--alert {
  color: #b31f1f;
  letter-spacing: 0.4px;
}

.section.section--tight-top {
  padding-top: 44px;
}

.flow-text span {
  display: inline-block;
  padding-right: 40px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
  margin-bottom: 54px;
}

.split > * {
  min-width: 0;
}

.section.flow .split:last-child {
  margin-bottom: 20px;
}

.split.reverse .split-text {
  order: 2;
}

.split.reverse .split-media {
  order: 1;
}

.split-text h3 {
  font-size: clamp(20px, 2.8vw, 26px);
  color: var(--navy);
  margin-bottom: 12px;
}

.section.flow .split-text {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  width: 100%;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.section.flow .split.reverse .split-text {
  transform: translateX(0);
}

.section.flow .split-text p {
  font-size: clamp(14px, 2.1vw, 18px);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.cycle-subtext--uk {
  width: min(100%, 420px);
}

.section.flow .split-text h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section.flow .split-text.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.cycle-detail {
  display: block;
}

.split-media video {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(12, 28, 52, 0.2);
}

.split-media {
  align-self: start;
}

.list {
  padding-left: 20px;
  margin: 16px 0 20px;
  display: grid;
  gap: 8px;
}


.testimonials {
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  margin-bottom: 12px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 36px;
  background: transparent;
  border-radius: 18px;
  border: 1px solid transparent;
  box-shadow: none;
}

.testimonial-content {
  flex: 1;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(12, 28, 52, 0.08);
}

.testimonial-quote {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--navy);
}

.testimonial-name {
  color: var(--navy-light);
  font-weight: 600;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(11, 35, 67, 0.2);
  background: #ffffff;
  color: var(--navy);
  font-size: 20px;
  cursor: pointer;
}

.page-hero {
  background: linear-gradient(120deg, #122d54 0%, #0b2343 55%, #1a3f70 100%);
  color: var(--white);
  padding: 110px 24px 80px;
  text-align: center;
}

.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 12px;
}

.page-hero p {
  min-height: 1.6em;
  text-align: center;
}

.page-hero-actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-shell {
  display: grid;
  gap: 28px;
}

.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(7, 24, 47, 0.25);
}

.contact-card h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 10px;
  text-align: center;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 10px;
}

.form-label {
  font-weight: 600;
  color: var(--white);
}

.required {
  color: var(--gold);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 16px;
  background: rgba(7, 24, 47, 0.7);
  color: var(--white);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.form-textarea {
  border-radius: 18px;
  min-height: 140px;
  resize: vertical;
}

.form-options {
  display: grid;
  gap: 8px;
}

.option-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.option-item input {
  margin-top: 3px;
}

.form-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-actions .btn-solid {
  background: var(--gold);
  color: var(--navy-dark);
}

.split-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#vision.section {
  padding-bottom: 50px;
}

#team.section {
  padding-top: 50px;
}

.vision-text {
  text-align: center;
  text-justify: auto;
  margin: 0 auto;
}

.long-text {
  font-size: 18px;
  max-width: 860px;
}

.policy {
  display: grid;
  gap: 16px;
}

.policy h2 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--navy);
}

.policy h3 {
  font-size: 18px;
  color: var(--navy-light);
}

.policy ul {
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.policy-note {
  background: #fff7e8;
  border-radius: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(12, 28, 52, 0.1);
}

.accordion {
  display: grid;
  gap: 16px;
}

.accordion details {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: none;
  border: 1px solid rgba(12, 28, 52, 0.12);
}

.accordion summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}

.accordion summary::marker {
  display: none;
}

.accordion p {
  margin-top: 12px;
  color: rgba(12, 28, 52, 0.75);
}

.story-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
  margin-bottom: 54px;
}

.story-block.alt {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.story-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: none;
  border: 1px solid rgba(12, 28, 52, 0.08);
}

.story-questions {
  display: grid;
  gap: 12px;
}

.story-questions details {
  background: transparent;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(12, 28, 52, 0.12);
}

.story-questions summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
}

.story-questions summary::marker {
  display: none;
}

.story-questions p {
  margin-top: 10px;
  color: rgba(12, 28, 52, 0.75);
}

.story-media {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.story-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}

.story-meta {
  color: var(--navy-light);
  font-weight: 600;
  margin-bottom: 18px;
}

.story-media video {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(12, 28, 52, 0.2);
}

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

.btn-inline {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.team-grid.is-hidden {
  display: none;
}

.section-header.center-title {
  justify-content: center;
  text-align: center;
}

.section-header.center-title h2 {
  width: 100%;
  text-align: center;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(12, 28, 52, 0.12);
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--soft);
  margin-bottom: 16px;
}

.quote {
  margin-top: 10px;
  color: rgba(12, 28, 52, 0.7);
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 24px 24px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.footer-grid h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 14px;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-title img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: currentColor;
}

.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.socials a {
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.disclaimer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.newsletter {
  display: grid;
  gap: 12px;
  align-items: start;
}

.newsletter input[type="email"] {
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  width: 100%;
  max-width: 220px;
}

.newsletter .btn-solid {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  width: 100%;
  max-width: 220px;
}

.newsletter .btn-solid:hover {
  background: #ffffff;
  color: var(--navy);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.checkbox input {
  margin-top: 4px;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  font-size: 14px;
}

.footer-bottom a {
  color: #cfe0ff;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--white);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flow {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .navbar {
    align-items: center;
    text-align: center;
  }

  .brand img.brand-logo {
    height: 22px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: none;
    background: transparent;
    box-shadow: none;
    gap: 4px;
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 96px 24px 32px;
    background: #f8fafc;
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow-y: auto;
    z-index: 99;
  }

  .navbar.menu-open .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: fixed;
    top: 18px;
    left: 18px;
    z-index: 102;
  }

  .navbar.menu-open .nav-menu {
    display: flex;
  }

  .navbar.menu-open .nav-toggle {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 102;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(11, 35, 67, 0.16);
  }

  .navbar.menu-open .nav-toggle span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
  }

  .navbar.menu-open .nav-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .navbar.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.menu-open .nav-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .nav-item {
    width: 100%;
    padding: 12px 0;
    text-align: left;
    border-bottom: 1px solid rgba(12, 28, 52, 0.08);
  }

  .nav-trigger {
    width: 100%;
    padding: 0;
    font-size: 20px;
    display: block;
    text-align: left;
    font-weight: 600;
  }

  .nav-trigger::after {
    display: none;
  }

  .nav-panel {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 10px 0 0;
    align-items: flex-start;
  }

  .nav-panel a {
    color: rgba(11, 35, 67, 0.8);
    font-weight: 500;
    display: block;
    padding: 6px 0;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 6px;
    align-items: flex-start;
    position: static;
    transform: none;
  }

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 16px;
    border-top: 1px solid rgba(12, 28, 52, 0.08);
  }

  .testimonial-card {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .section.flow .split-text,
  .section.flow .split.reverse .split-text {
    transform: none;
    opacity: 1;
  }

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

  .split.reverse .split-text,
  .split.reverse .split-media {
    order: unset;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-action--flagged {
    flex-direction: column;
    gap: 8px;
    padding-right: 0;
  }

  .hero-badge {
    position: static;
    transform: none;
  }

  .btn-outline,
  .btn-solid,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section.flow .split-text h3 {
    font-size: clamp(18px, 6vw, 24px);
  }

  .section.flow .split-text p {
    font-size: clamp(14px, 4.2vw, 16px);
  }
}
