:root {
  --blue: #00aeef;
  --blue-deep: #008cc2;
  --blue-soft: #eaf8fd;
  --pink: #ec008c;
  --green: #8dc63f;
  --yellow: #ffdd00;
  --orange: #f15a31;
  --ink: #303235;
  --ink-soft: #5e6266;
  --paper: #ffffff;
  --mist: #f4f9fa;
  --line: #dfe9ec;
  --shadow: 0 20px 55px rgba(34, 64, 71, 0.14);
  --shadow-soft: 0 12px 35px rgba(34, 64, 71, 0.1);
  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-display: "Arial Rounded MT Bold", "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 96px;
  --space-9: 128px;
  --section-space: clamp(104px, 8vw, 136px);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
  text-wrap: balance;
}

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

.section {
  position: relative;
  padding: var(--section-space) 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--space-4);
  color: var(--blue-deep);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  border-radius: 99px;
  background: var(--pink);
  content: "";
}

.eyebrow-light {
  color: var(--paper);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: var(--paper);
  background: var(--pink);
  box-shadow: 0 12px 25px rgba(236, 0, 140, 0.22);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 16px 30px rgba(236, 0, 140, 0.3);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.round-link:focus-visible,
.mobile-form-button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 0.82rem;
}

.button-yellow {
  color: #272a2c;
  background: var(--yellow);
  box-shadow: 0 14px 30px rgba(255, 221, 0, 0.25);
}

.button-yellow:hover,
.button-yellow:focus-visible {
  background: #ffe52c;
  box-shadow: 0 16px 36px rgba(255, 221, 0, 0.32);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 12px 26px rgba(48, 50, 53, 0.18);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-size: 0.93rem;
  font-weight: 800;
}

.text-link span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--paper);
}

.text-link-light span {
  color: var(--ink);
  background: var(--paper);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 78px;
  border-bottom: 1px solid rgba(0, 174, 239, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(31, 56, 63, 0.1);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.brand img {
  width: 104px;
  height: auto;
}

.brand-unit {
  padding-left: 10px;
  border-left: 1px solid #ccd7da;
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: #44484a;
  font-size: 0.82rem;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-soft);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--paper);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/images/hero-global-tree.webp?v=20260902");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 41, 46, 0.93) 0%, rgba(15, 41, 46, 0.77) 40%, rgba(15, 41, 46, 0.28) 72%, rgba(15, 41, 46, 0.55) 100%),
    linear-gradient(0deg, rgba(3, 59, 76, 0.45), rgba(3, 59, 76, 0.04));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 900px;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 430px);
  align-items: center;
  gap: var(--space-8);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.hero-copy {
  max-width: 630px;
  padding: 0;
}

.hero-copy h1 {
  max-width: 660px;
  margin-bottom: var(--space-5);
  color: var(--paper);
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.hero-copy h1 span {
  display: block;
  color: var(--yellow);
}

.hero-copy > p {
  max-width: 570px;
  margin-bottom: var(--space-3);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.65;
}

.hero-copy > .hero-subtitle {
  margin-bottom: var(--space-4);
  color: var(--paper);
  font-size: 1.12rem;
  font-weight: 700;
}

.hero-copy .hero-actions {
  margin-top: var(--space-5);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.shape-ring {
  width: 94px;
  height: 94px;
  border: 14px solid var(--yellow);
  border-radius: 50%;
}

.hero-ring {
  top: 70px;
  left: 3.5%;
  opacity: 0.85;
}

.shape-spark::before,
.shape-spark::after {
  position: absolute;
  width: 90px;
  height: 20px;
  border-radius: 99px 99px 12px 99px;
  background: var(--pink);
  content: "";
}

.shape-spark::after {
  transform: rotate(90deg);
}

.hero-spark {
  right: -15px;
  bottom: 54px;
  transform: rotate(28deg);
}

.form-card {
  position: relative;
  padding: 40px 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.form-card::before {
  position: absolute;
  z-index: -1;
  top: -12px;
  right: -12px;
  width: 84px;
  height: 84px;
  border-radius: 26px;
  background: var(--pink);
  content: "";
  transform: rotate(8deg);
}

.form-kicker {
  display: block;
  margin-bottom: var(--space-1);
  color: var(--pink);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-card h2 {
  margin-bottom: var(--space-2);
  font-size: 2rem;
}

.form-card > p {
  margin-bottom: var(--space-4);
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-shell {
  min-height: 325px;
}

#raiz-form {
  min-height: 325px;
}

#raiz-form iframe {
  width: 100% !important;
  min-height: 500px;
  border: 0 !important;
}

.quick-facts {
  position: relative;
  z-index: 5;
  height: 0;
}

.fact-panel {
  display: grid;
  min-height: 110px;
  padding: 18px 24px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(3, 1fr);
  transform: translateY(-50%);
}

.fact-panel-single {
  width: min(calc(100% - 48px), 760px);
  grid-template-columns: 1fr;
}

.fact-panel-single .fact {
  justify-content: center;
  border-right: 0;
}

.fact-copy {
  display: flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
}

.fact-copy strong,
.fact-copy > span {
  margin-bottom: 0;
}

.fact-copy > span {
  font-size: 0.82rem;
}

.fact {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  padding: 5px 24px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 16px;
}

.fact-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.fact-icon-pink {
  color: var(--pink);
  background: #fff0f8;
}

.fact-icon-green {
  color: #619920;
  background: #f0f8e5;
}

.fact-icon-blue {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.15;
}

.fact div > span {
  margin-bottom: 3px;
  color: var(--ink-soft);
  font-size: 0.73rem;
}

.fact div > strong {
  margin-bottom: 0;
}

.intro-section {
  padding-top: calc(var(--section-space) + 64px);
  background: var(--paper);
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(72px, 8vw, 112px);
}

.image-composition {
  position: relative;
  min-height: 520px;
}

.image-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.image-frame-main {
  position: absolute;
  inset: 0 42px 40px 0;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 238px;
  padding: 18px 22px;
  border-radius: 18px 4px 18px 18px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-soft);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
  transform: rotate(-2deg);
}

.image-note span {
  margin-right: 6px;
  color: var(--pink);
}

.decor-dot {
  position: absolute;
  width: 21px;
  height: 21px;
  border-radius: 50%;
}

.dot-pink {
  top: -28px;
  left: 36px;
  background: var(--pink);
  box-shadow: 29px 9px 0 var(--pink);
}

.decor-arch {
  position: absolute;
  top: -35px;
  right: 5px;
  width: 90px;
  height: 72px;
  border: 10px solid var(--blue);
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
  opacity: 0.7;
}

.section-copy h2,
.section-heading h2,
.structure-copy h2,
.faq-intro h2 {
  margin-bottom: var(--space-5);
  font-size: clamp(2.5rem, 4.5vw, 4.35rem);
}

.section-copy h2 span,
.section-heading h2 span,
.structure-copy h2 span,
.faq-intro h2 span {
  color: var(--pink);
}

.section-copy p,
.structure-copy > p,
.faq-intro p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.section-copy p,
.structure-copy > p,
.faq-intro p {
  margin-bottom: 18px;
}

.section-copy p:last-of-type {
  margin-bottom: 28px;
}

.segments-section {
  background: var(--mist);
}

.segments-section::before {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 360px;
  height: 360px;
  border: 30px solid rgba(0, 174, 239, 0.11);
  border-radius: 50%;
  content: "";
}

.segments-scribble {
  position: absolute;
  bottom: 40px;
  left: -35px;
  width: 110px;
  height: 110px;
  border: 16px solid rgba(236, 0, 140, 0.1);
  border-radius: 30% 70% 62% 38%;
  transform: rotate(25deg);
}

.section-heading {
  max-width: 800px;
  margin-bottom: var(--space-7);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2 {
  margin-bottom: var(--space-4);
}

.section-heading > p {
  max-width: 630px;
  margin: 0 auto;
  color: var(--ink-soft);
}

.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.segment-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 174, 239, 0.08);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.segment-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.segment-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.segment-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(16, 35, 39, 0.32));
  content: "";
}

.segment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.segment-card:hover .segment-image img {
  transform: scale(1.04);
}

.age-pill {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.age-pink {
  background: var(--pink);
}

.age-green {
  color: #23400f;
  background: var(--green);
}

.age-blue {
  background: var(--blue-deep);
}

.segment-content {
  position: relative;
  min-height: 360px;
  padding: 30px;
}

.segment-content-grouped {
  display: grid;
  flex: 1;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 0;
  padding: 0;
}

.segment-stage {
  position: relative;
  padding: 36px;
}

.segment-stage + .segment-stage {
  border-top: 1px solid var(--line);
}

.segment-index {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #dce8ea;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
}

.segment-content h3 {
  position: relative;
  margin: 30px 0 var(--space-3);
  font-size: 1.8rem;
}

.segment-content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.segment-content p + p {
  margin-top: var(--space-3);
}

.segment-note {
  display: block;
  margin-top: var(--space-4);
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.5;
}

.differentiators {
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 15%, rgba(0, 174, 239, 0.25), transparent 28%),
    radial-gradient(circle at 5% 80%, rgba(141, 198, 63, 0.14), transparent 25%),
    #223c42;
}

.big-outline-word {
  position: absolute;
  top: 2%;
  right: -30px;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(7rem, 19vw, 20rem);
  font-weight: 900;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
}

.diff-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(64px, 7vw, 96px);
}

.diff-intro {
  position: sticky;
  top: 130px;
}

.diff-intro h2 {
  margin-bottom: 36px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.diff-intro h2 span {
  color: var(--yellow);
}

.diff-intro p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.diff-card {
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  transition: background-color 180ms ease, transform 180ms ease;
}

.diff-card:hover {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-4px);
}

.line-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 17px;
}

.line-icon svg {
  width: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.icon-yellow {
  color: #8a7600;
  background: var(--yellow);
}

.icon-pink {
  color: var(--paper);
  background: var(--pink);
}

.icon-green {
  color: #31590e;
  background: var(--green);
}

.icon-blue {
  color: #075d7e;
  background: var(--blue);
}

.icon-orange {
  color: #74220a;
  background: var(--orange);
}

.diff-card h3 {
  margin-bottom: var(--space-3);
  font-size: 1.28rem;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.diff-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.87rem;
  line-height: 1.6;
}

.diff-number {
  display: block;
  margin-bottom: var(--space-6);
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
}

.structure-section {
  background: var(--paper);
}

.structure-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: var(--space-7);
}

.structure-copy {
  max-width: 1080px;
}

.structure-copy h2 {
  margin-bottom: var(--space-4);
}

.list-heading {
  margin: var(--space-5) 0 0;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: var(--space-5) 0 40px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: #484c4e;
  font-size: 0.93rem;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #31590e;
  background: #e8f5d8;
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

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

.photo-collage {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 20px;
}

.photo-collage figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.photo-collage .collage-large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-collage .collage-wide {
  grid-column: span 2;
}

.photo-collage .collage-full {
  grid-column: 1 / -1;
}

.photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-collage figure:hover img {
  transform: scale(1.035);
}

.photo-collage figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--paper);
  background: rgba(22, 40, 45, 0.78);
  backdrop-filter: blur(8px);
  font-size: 0.72rem;
  font-weight: 700;
}

.image-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 24px;
  border: 0;
  background: rgba(8, 24, 28, 0.94);
}

.image-lightbox[open] {
  display: grid;
  place-items: center;
}

.image-lightbox::backdrop {
  background: rgba(8, 24, 28, 0.72);
}

.image-lightbox__image {
  display: block;
  width: auto;
  max-width: min(92vw, 1440px);
  height: auto;
  max-height: calc(100dvh - 48px);
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.image-lightbox__close {
  position: fixed;
  z-index: 2;
  top: 24px;
  right: 24px;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease;
}

.image-lightbox__close:hover {
  background: var(--yellow);
  transform: scale(1.06);
}

.image-lightbox__close:focus-visible,
.photo-collage figure[role="button"]:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (min-width: 821px) {
  .photo-collage figure[role="button"] {
    cursor: zoom-in;
  }
}

.collage-sticker {
  position: absolute;
  z-index: 3;
  right: 27%;
  bottom: 42px;
  display: grid;
  width: 98px;
  height: 98px;
  place-items: center;
  border: 5px solid var(--paper);
  border-radius: 50%;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.assessment-section {
  background: var(--blue-soft);
}

.proposal-section {
  background: var(--mist);
}

.narrative-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: clamp(72px, 8vw, 120px);
}

.narrative-heading h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.7vw, 4.6rem);
}

.narrative-heading h2 span {
  color: var(--pink);
}

.narrative-copy {
  padding-top: 54px;
}

.narrative-copy p {
  margin-bottom: 20px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.78;
}

.narrative-copy p:last-child {
  margin-bottom: 0;
}

.simple-list {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0 var(--space-5);
  padding-left: 22px;
  color: var(--ink-soft);
}

.partnership-section {
  background: var(--paper);
}

.safety-section {
  color: var(--paper);
  background: #223c42;
}

.safety-section .narrative-heading h2 {
  color: var(--paper);
}

.safety-section .narrative-heading h2 span {
  color: var(--yellow);
}

.safety-section .narrative-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.safety-section .narrative-copy strong {
  color: var(--paper);
}

.more-section {
  background: var(--paper);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}

.activity-item {
  min-width: 0;
  padding: var(--space-5) var(--space-2) 0;
  border-top: 5px solid var(--pink);
}

.activity-item:nth-child(2) {
  border-color: var(--green);
}

.activity-item:nth-child(3) {
  border-color: var(--blue);
}

.activity-item:nth-child(4) {
  border-color: var(--orange);
}

.activity-item:nth-child(5) {
  border-color: var(--yellow);
}

.activity-item > span {
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 900;
}

.activity-item h3 {
  margin: 20px 0 14px;
  font-size: 1.7rem;
  letter-spacing: 0;
}

.activity-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.activity-grid-five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.section-closing {
  max-width: 720px;
  margin: var(--space-7) auto 0;
  color: var(--ink-soft);
  font-weight: 700;
  text-align: center;
}

.experiences-section {
  background: var(--blue-soft);
}

.experiences-section .section-heading > p {
  margin-left: 0;
}

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

.experience-item {
  position: relative;
  min-width: 0;
  padding-left: 28px;
  border-left: 4px solid var(--blue);
}

.experience-item:nth-child(2n) {
  border-color: var(--pink);
}

.experience-item:nth-child(3n) {
  border-color: var(--green);
}

.experience-item h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.experience-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.continuity-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  background: var(--yellow);
}

.continuity-section::before {
  position: absolute;
  top: -110px;
  right: 7%;
  width: 270px;
  height: 270px;
  border: 40px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  content: "";
}

.continuity-shape {
  position: absolute;
  bottom: -130px;
  left: -40px;
  width: 280px;
  height: 280px;
  border: 30px solid rgba(236, 0, 140, 0.13);
  border-radius: 34% 66% 44% 56%;
  transform: rotate(23deg);
}

.continuity-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: center;
  gap: var(--space-8);
}

.continuity-badge {
  display: grid;
  width: 250px;
  height: 250px;
  place-items: center;
  border: 14px solid var(--paper);
  border-radius: 38% 62% 51% 49%;
  color: var(--paper);
  background: var(--pink);
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-5deg);
}

.continuity-badge span,
.continuity-badge small,
.continuity-badge strong {
  grid-column: 1;
  grid-row: 1;
}

.continuity-badge span {
  margin-top: -58px;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
}

.continuity-badge small {
  margin-top: 43px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.continuity-badge strong {
  margin-top: 94px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.continuity-copy {
  max-width: 710px;
}

.continuity-copy .eyebrow {
  color: #694500;
}

.continuity-copy h2 {
  margin-bottom: var(--space-5);
  font-size: clamp(2.8rem, 5.3vw, 5.2rem);
}

.continuity-copy h2 span {
  color: var(--pink);
}

.continuity-copy p {
  max-width: 680px;
  margin-bottom: 20px;
  color: rgba(48, 50, 53, 0.78);
  line-height: 1.7;
}

.continuity-copy p:last-child {
  margin-bottom: 0;
}

.choice-section {
  background: var(--mist);
}

.choice-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: var(--space-8);
}

.choice-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.choice-photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.choice-content {
  max-width: 760px;
  text-align: left;
}

.choice-content .eyebrow {
  justify-content: flex-start;
}

.choice-content h2 {
  margin-bottom: var(--space-5);
  font-size: clamp(2.8rem, 5.3vw, 5rem);
}

.choice-content h2 span {
  color: var(--pink);
}

.choice-content p {
  max-width: 790px;
  margin-right: 0;
  margin-bottom: 18px;
  margin-left: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.choice-content p:last-child {
  margin-bottom: 0;
}

.choice-values {
  display: grid;
  max-width: 700px;
  gap: var(--space-2);
  margin: 36px 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.units-section {
  background: var(--mist);
}

.section-heading-row {
  display: grid;
  max-width: none;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
}

.section-heading-row h2 {
  margin: 0;
}

.section-heading-row > p {
  margin: 0 0 8px;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.unit-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(0, 174, 239, 0.1);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  grid-template-columns: 0.8fr 1.2fr;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.unit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.unit-featured {
  grid-column: 1 / -1;
  grid-template-columns: 1.1fr 0.9fr;
}

.unit-image {
  position: relative;
  min-height: 225px;
  overflow: hidden;
}

.unit-featured .unit-image {
  min-height: 335px;
}

.unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.unit-card:hover .unit-image img {
  transform: scale(1.035);
}

.unit-label {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--pink);
  box-shadow: 0 8px 20px rgba(236, 0, 140, 0.25);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unit-content {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 30px;
}

.unit-content h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.unit-content p {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.unit-hours {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 9px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.round-link {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--blue);
  font-weight: 900;
  transition: background-color 180ms ease, transform 180ms ease;
}

.round-link:hover {
  background: var(--pink);
  transform: rotate(-15deg);
}

.visit-section {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  color: var(--paper);
  background: #172f34;
}

.visit-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 49, 55, 0.98) 0%, rgba(20, 49, 55, 0.88) 40%, rgba(20, 49, 55, 0.28) 76%),
    url("assets/images/visite-global-tree.webp") center 43% / cover;
}

.visit-section::after {
  position: absolute;
  right: -55px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  border: 25px solid var(--pink);
  border-radius: 30% 70% 52% 48%;
  content: "";
  opacity: 0.75;
  transform: rotate(18deg);
}

.visit-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 900px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 36px;
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.visit-message {
  max-width: 820px;
}

.visit-content h2 {
  max-width: 820px;
  margin-bottom: var(--space-5);
  font-size: clamp(3.2rem, 5.4vw, 5.6rem);
  line-height: 1.03;
}

.visit-content h2 span {
  color: var(--yellow);
}

.visit-message p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.visit-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.visit-address {
  margin: 0 0 var(--space-5);
  color: var(--paper);
  font-size: 0.92rem;
  font-style: normal;
  line-height: 1.65;
}

.visit-callout {
  margin-bottom: var(--space-2);
  color: var(--yellow);
  font-size: 1.05rem;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: start;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.07rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: -3px;
  border-radius: 12px;
}

.faq-list summary span {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-deep);
  background: var(--blue-soft);
  font-family: var(--font-body);
  font-size: 1.2rem;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.faq-list details[open] summary span {
  color: var(--paper);
  background: var(--pink);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -4px 50px 24px 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-list details p a {
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 174, 239, 0.4);
  text-underline-offset: 3px;
}

.visit-address a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 3px;
}

.site-footer {
  padding: var(--space-7) 0 var(--space-4);
  color: rgba(255, 255, 255, 0.78);
  background: var(--blue-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.65fr 1fr auto;
  align-items: center;
  gap: var(--space-7);
  padding-bottom: var(--space-6);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 170px;
  height: auto;
}

.footer-logo span {
  padding-left: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-inner p {
  max-width: 420px;
  margin: 0;
  font-size: 0.9rem;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 800;
}

.footer-cta span {
  color: var(--yellow);
  font-size: 1.4rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.72rem;
}

.mobile-form-button {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .main-nav {
    gap: 18px;
  }

  .hero-grid {
    gap: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
  }

  .activity-grid-five {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split-layout,
  .structure-grid {
    gap: 64px;
  }

  .diff-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 56px;
  }

  .unit-card {
    grid-template-columns: 1fr;
  }

  .unit-featured {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .unit-image {
    min-height: 230px;
  }
}

@media (max-width: 820px) {
  .image-lightbox {
    display: none;
  }

  html {
    scroll-padding-top: 74px;
  }

  .section {
    padding: 96px 0;
  }

  .site-header {
    height: 72px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
    order: 3;
    cursor: pointer;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 2;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 24px 28px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 38px rgba(34, 64, 71, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    overflow: visible;
    padding-bottom: 0;
    background: #17333a;
  }

  .hero-media,
  .hero-overlay {
    bottom: auto;
    height: 680px;
  }

  .hero-media {
    background-position: 46% center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(17, 47, 53, 0.98) 0%, rgba(17, 47, 53, 0.45) 62%, rgba(17, 47, 53, 0.42) 100%);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 130px;
    padding-bottom: 54px;
  }

  .hero-copy {
    max-width: 650px;
    padding: 0;
  }

  .hero-copy h1 {
    max-width: 580px;
  }

  .form-card {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .hero-ring {
    top: 94px;
  }

  .hero-spark {
    display: none;
  }

  .quick-facts {
    height: auto;
    padding: 28px 0 0;
    background: var(--mist);
  }

  .fact-panel {
    grid-template-columns: 1fr;
    transform: none;
  }

  .fact {
    padding: 14px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .intro-section {
    padding-top: 112px;
  }

  .split-layout,
  .structure-grid,
  .diff-layout,
  .continuity-grid,
  .narrative-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-layout,
  .structure-grid,
  .narrative-grid,
  .faq-grid {
    gap: 64px;
  }

  .narrative-copy {
    max-width: 680px;
    padding-top: 0;
  }

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

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

  .image-composition {
    min-height: 510px;
  }

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

  .segment-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
  }

  .segment-content {
    min-height: 0;
  }

  .segment-image {
    height: 100%;
    min-height: 285px;
  }

  .diff-intro {
    position: static;
    max-width: 620px;
  }

  .photo-collage {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .choice-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .choice-photo img {
    aspect-ratio: 3 / 2;
  }

  .continuity-grid {
    justify-items: center;
    gap: 64px;
  }

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

  .continuity-copy .eyebrow {
    justify-content: center;
  }

  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section-heading-row > p {
    max-width: 620px;
  }

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

  .unit-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .unit-featured .unit-image {
    min-height: 300px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 74px;
  }

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

  .section {
    padding: 88px 0;
  }

  .brand img {
    width: 88px;
  }

  .brand-unit {
    font-size: 0.62rem;
  }

  .hero-media,
  .hero-overlay {
    height: 620px;
  }

  .hero-grid {
    padding-top: 96px;
    padding-bottom: 56px;
  }

  .hero-copy {
    padding-top: 32px;
    text-align: center;
  }

  .hero-copy .eyebrow {
    justify-content: center;
  }

  .hero-copy h1 {
    margin-inline: auto;
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-copy > p {
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-actions {
    display: none;
  }

  .hero-ring {
    top: 36px;
    left: -22px;
    width: 74px;
    height: 74px;
    border-width: 11px;
  }

  .form-card {
    padding: 26px 20px 20px;
    border-radius: 24px;
    text-align: left;
  }

  .form-card h2 {
    font-size: 1.75rem;
  }

  .fact-panel {
    padding: 10px 18px;
    border-radius: 20px;
  }

  .fact-copy {
    display: block;
    white-space: normal;
  }

  .fact-copy strong {
    font-size: 1rem;
  }

  .fact-copy > span {
    margin-bottom: 3px;
    font-size: 0.73rem;
  }

  .image-composition {
    min-height: 390px;
  }

  .image-frame-main {
    inset: 0 22px 34px 0;
  }

  .image-note {
    max-width: 195px;
    padding: 14px 16px;
    font-size: 0.74rem;
  }

  .decor-arch {
    right: -15px;
    width: 66px;
    height: 55px;
    border-width: 8px;
  }

  .section-copy h2,
  .section-heading h2,
  .structure-copy h2,
  .narrative-heading h2,
  .faq-intro h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .activity-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .check-list-columns {
    grid-template-columns: 1fr;
  }

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

  .segment-card {
    display: block;
  }

  .segment-image {
    height: 245px;
    min-height: 0;
  }

  .segment-content {
    min-height: 210px;
    padding: 32px;
  }

  .segment-content-grouped {
    min-height: 0;
    padding: 0;
  }

  .segment-stage {
    padding: 32px;
  }

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

  .diff-intro .eyebrow {
    justify-content: center;
  }

  .diff-intro h2 {
    font-size: clamp(2.6rem, 12.5vw, 3.8rem);
  }

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

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

  .line-icon {
    margin-bottom: 24px;
  }

  .photo-collage {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 170px;
  }

  .photo-collage .collage-large {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .collage-sticker {
    right: 17px;
    bottom: 34%;
    width: 82px;
    height: 82px;
    font-size: 0.65rem;
  }

  .continuity-section {
    padding: 88px 0;
  }

  .continuity-badge {
    width: 200px;
    height: 200px;
  }

  .continuity-badge span {
    font-size: 4.8rem;
  }

  .continuity-copy h2 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .unit-content {
    padding: 24px;
  }

  .unit-image,
  .unit-featured .unit-image {
    min-height: 250px;
  }

  .visit-section,
  .visit-content {
    min-height: 900px;
  }

  .visit-media {
    background:
      linear-gradient(0deg, rgba(20, 49, 55, 0.98) 0%, rgba(20, 49, 55, 0.84) 52%, rgba(20, 49, 55, 0.28) 100%),
      url("assets/images/visite-global-tree.webp") center / cover;
  }

  .visit-content {
    align-items: center;
    justify-content: center;
    padding-top: 128px;
    padding-bottom: 120px;
    text-align: center;
  }

  .visit-details {
    align-items: center;
  }

  .visit-content .eyebrow {
    justify-content: center;
  }

  .visit-content h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .faq-list summary {
    font-size: 0.98rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    grid-column: auto;
    justify-content: center;
  }

  .footer-inner p {
    margin-inline: auto;
  }

  .footer-cta {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .mobile-form-button {
    position: fixed;
    z-index: 120;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 3px solid var(--paper);
    border-radius: 999px;
    color: #282b2d;
    background: var(--yellow);
    box-shadow: 0 12px 32px rgba(28, 49, 54, 0.3);
    font-size: 0.92rem;
    font-weight: 900;
  }

  .mobile-form-button span {
    font-size: 1.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
