:root {
  --bg: #eef8f7;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: #c8ecea;
  --text: #0c2556;
  --text-soft: #5a6270;
  --navy: #0c2556;
  --blue: #22466c;
  --mint: #90d1cd;
  --mint-soft: #c8ecea;
  --line: rgba(34, 70, 108, 0.14);
  --hero-grad: linear-gradient(135deg, #90d1cd 0%, #22466c 78%);
  --shadow: 0 24px 60px rgba(12, 37, 86, 0.12);
  --shell-width: 1420px;
  --content-width: 1280px;
  --hero-copy-width: 1360px;
  --home-width: 1460px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: var(--site-header-space, 0px);
  font-family: "Jost", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(144, 209, 205, 0.42), transparent 26%),
    radial-gradient(circle at bottom right, rgba(34, 70, 108, 0.16), transparent 28%),
    linear-gradient(180deg, #f9fefe 0%, #eef8f7 100%);
  overflow-x: hidden;
}

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

.bg-orb {
  position: fixed;
  z-index: -1;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.bg-orb-left {
  top: -8rem;
  left: -8rem;
  background: rgba(144, 209, 205, 0.55);
}

.bg-orb-right {
  right: -10rem;
  bottom: -8rem;
  background: rgba(34, 70, 108, 0.18);
}

.site-header,
.global-header {
  width: min(var(--shell-width), calc(100% - 1.2rem));
  margin: 0 auto;
}

main {
  width: min(var(--content-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-footer,
.global-footer {
  width: 100%;
  margin: 0;
  scroll-margin-top: calc(var(--site-header-space, 0px) + 1rem);
}

.site-header,
.global-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 25;
  padding: 0.65rem 0 0;
  transform: translateY(0);
  transition: transform 0.28s ease, opacity 0.2s ease;
  will-change: transform;
}

.site-header.is-hidden,
.global-header.is-hidden {
  transform: translateY(calc(-1 * var(--site-header-offset, 0px)));
  opacity: 0;
  pointer-events: none;
}

.header-topbar {
  margin-bottom: 0.45rem;
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 2.6rem;
  padding: 0 0.9rem;
  border-bottom: 1px solid rgba(34, 70, 108, 0.08);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.25rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(34, 70, 108, 0.12);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 250, 0.94)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.1), rgba(34, 70, 108, 0.04));
  box-shadow: 0 18px 48px rgba(12, 37, 86, 0.12);
  backdrop-filter: blur(20px);
}

.header-social {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.header-topbar .header-social {
  gap: 0.45rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(34, 70, 108, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(12, 37, 86, 0.07);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(34, 70, 108, 0.24);
  background: rgba(144, 209, 205, 0.24);
}

.social-link svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.header-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.4rem;
  min-width: 0;
  width: 100%;
}

.brand,
.hero h1,
.section-head h2,
.feature-card h2,
.contact h2,
.project-card h3 {
  font-family: "Poppins", sans-serif;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
}

.brand-logo {
  display: block;
  width: 10.2rem;
  max-width: 100%;
  height: auto;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 1vw, 1.35rem);
  min-width: 0;
}

.nav a {
  position: relative;
  padding: 0.45rem 0;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint) 0%, var(--blue) 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--navy);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  white-space: nowrap;
  background-image: linear-gradient(135deg, #90d1cd 0%, #22466c 75%);
  border-bottom: 3px solid var(--mint);
  box-shadow: 0 16px 30px rgba(34, 70, 108, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(34, 70, 108, 0.22);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(34, 70, 108, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(12, 37, 86, 0.08);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-inner {
  display: flex;
  flex-direction: column;
  gap: 0.24rem;
}

.site-header.is-open .nav-toggle-bar:nth-child(1),
.global-header.is-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .nav-toggle-bar:nth-child(2),
.global-header.is-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle-bar:nth-child(3),
.global-header.is-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  padding: 4.5rem 0 2.6rem;
}

.home-page .hero {
  padding: 4.2rem 0 3rem;
}

.home-page .site-header,
.home-page .global-header {
  width: min(var(--shell-width), calc(100vw - 1.2rem));
}

.home-page main {
  width: min(var(--home-width), calc(100vw - 1rem));
  max-width: none;
  margin-inline: auto;
}

.page-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 15rem;
  padding: 4.2rem 0 2.4rem;
}

.page-hero h1 {
  max-width: 24ch;
  margin: 0.4rem 0 1rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.95rem, 3.9vw, 3.2rem);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: none;
  text-wrap: balance;
}

.page-title-inline {
  max-width: none !important;
  font-size: clamp(1.95rem, 3.9vw, 3.2rem) !important;
  line-height: 1.12 !important;
  white-space: nowrap;
}

.page-lead {
  max-width: 48rem;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.15rem;
  line-height: 1.75;
}

.page-hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero-centered .page-lead {
  margin: 0 auto;
}

.page-hero-centered .hero-actions {
  justify-content: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.4rem;
  align-items: stretch;
}

.home-page .hero-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 1.9rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy-shell {
  width: min(var(--hero-copy-width), calc(100% - 2rem));
  margin: 0 auto 1.9rem;
}

.home-page .hero-copy-shell {
  width: min(var(--home-width), calc(100vw - 1rem));
  text-align: center;
}

.home-page .hero-content {
  align-items: center;
}

.eyebrow,
.section-label,
.project-tag {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
}

.eyebrow,
.section-label {
  color: var(--blue);
}

.script-note {
  margin: 0.35rem 0 0;
  font-family: "Cookie", cursive;
  font-size: 2rem;
  color: var(--mint);
}

.who-we-are-brand {
  font-size: 2.35rem;
  color: var(--blue);
}

.who-we-are-hero-title {
  max-width: min(100%, 24ch);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.06;
  text-wrap: balance;
}

.hero h1 {
  max-width: 12ch;
  margin: 0.4rem 0 1rem;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 1.02;
  font-weight: 600;
  text-transform: uppercase;
}

.home-page .hero h1 {
  max-width: none;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.1vw, 3.3rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: -0.035em;
  text-transform: none;
  text-wrap: balance;
}

.home-title-line {
  display: block;
  white-space: nowrap;
}

.hero-copy {
  max-width: 43rem;
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.home-page .hero-copy {
  max-width: 50rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background-image: var(--hero-grad);
  border-bottom: 3px solid var(--mint);
  box-shadow: 0 18px 36px rgba(34, 70, 108, 0.2);
}

.button-secondary {
  color: var(--navy);
  border: 1px solid rgba(144, 209, 205, 0.6);
  background: rgba(255, 255, 255, 0.72);
}

.campaign-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.campaign-slider-shell {
  display: grid;
  gap: 1rem;
}

.home-page .campaign-slider-head,
.home-page .campaign-slide-overlay,
.home-page .campaign-slider-footer {
  width: min(var(--home-width), calc(100vw - 1rem));
}

.home-page .campaign-slide-skin-tones .campaign-slide-overlay {
  width: min(var(--home-width), calc(100vw - 1rem));
}

.campaign-slider-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--content-width), calc(100% - 2rem));
  margin: 0 auto;
}

.campaign-slider-head h2 {
  margin: 0.45rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  line-height: 1.15;
  font-weight: 600;
}

.campaign-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: #fff;
  background: var(--hero-grad);
  font-size: 0.9rem;
  font-weight: 600;
}

.campaign-slides {
  position: relative;
  aspect-ratio: 1600 / 720;
  margin-bottom: 3.8rem;
}

.campaign-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.campaign-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
}

.campaign-media {
  position: absolute;
  inset: 0;
  display: block;
}

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

.campaign-slide-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  width: min(var(--content-width), calc(100% - 2rem));
  height: 100%;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3rem) 0 clamp(2rem, 5vw, 3.4rem);
}

.campaign-overlay-top {
  justify-content: flex-start;
}

.campaign-overlay-middle {
  justify-content: center;
}

.campaign-overlay-bottom {
  justify-content: flex-end;
}

.campaign-overlay-left {
  align-items: flex-start;
  text-align: left;
}

.campaign-overlay-center {
  align-items: center;
  text-align: center;
}

.campaign-overlay-right {
  align-items: flex-end;
  text-align: right;
}

.campaign-overlay-nudge-up {
  transform: translateY(-1.4rem);
}

.campaign-overlay-nudge-down {
  transform: translateY(1.4rem);
}

.campaign-overlay-nudge-left {
  transform: translateX(-2rem);
}

.campaign-overlay-nudge-right {
  transform: translateX(2rem);
}

.campaign-overlay-center .campaign-badge,
.campaign-overlay-center .campaign-link {
  align-self: center;
}

.campaign-overlay-right .campaign-badge,
.campaign-overlay-right .campaign-link {
  align-self: flex-end;
}

.campaign-overlay-center p {
  margin-right: auto;
  margin-left: auto;
}

.campaign-overlay-right p {
  margin-right: 0;
  margin-left: auto;
}

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

.campaign-badge {
  display: inline-flex;
  align-self: start;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.campaign-slide h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.05;
  font-weight: 600;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.campaign-slide p {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.7;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.campaign-slide-skin-tones {
  color: var(--navy);
}

.campaign-slide-skin-tones .campaign-slide-overlay {
  justify-content: center;
  width: min(var(--shell-width), calc(100% - 2rem));
  padding: 0;
}

.campaign-skin-tones-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: end;
  gap: 0.35rem;
  height: 100%;
}

.campaign-skin-tones-copy {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.2rem;
  padding: 2.3rem 0 2.8rem 0.2rem;
  text-align: center;
}

.campaign-skin-tones-copy h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 1;
  font-weight: 700;
  text-transform: none;
  text-shadow: none;
}

.campaign-skin-tones-title-line {
  display: block;
}

.campaign-skin-tones-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
}

.campaign-skin-tones-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 2.55vw, 2.45rem);
  line-height: 1.08;
  font-weight: 500;
  text-shadow: 0 8px 24px rgba(34, 70, 108, 0.15);
}

.campaign-skin-tones-plus {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.12em;
  height: 1.12em;
  border-radius: 999px;
  background: rgba(34, 70, 108, 0.1);
  box-shadow: 0 10px 24px rgba(34, 70, 108, 0.08);
  font-size: 0;
  flex: 0 0 auto;
}

.campaign-skin-tones-plus::before,
.campaign-skin-tones-plus::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: var(--navy);
}

.campaign-skin-tones-plus::before {
  width: 0.64em;
  height: 0.12em;
}

.campaign-skin-tones-plus::after {
  width: 0.12em;
  height: 0.64em;
}

.campaign-skin-tones-link {
  justify-content: center;
  align-self: center;
  min-width: 12.2rem;
  background: rgba(34, 70, 108, 0.92);
  border-color: rgba(34, 70, 108, 0.92);
  color: #ffffff;
}

.campaign-skin-tones-link:hover,
.campaign-skin-tones-link:focus-visible {
  background: var(--navy);
  border-color: var(--navy);
}

.campaign-skin-tones-visual {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: end;
  height: 100%;
  overflow: visible;
}

.campaign-skin-tones-group {
  display: block;
  width: min(122%, 1100px);
  height: auto;
  object-fit: contain;
  object-position: right bottom;
  transform: translateX(3.5%);
}

.campaign-link {
  display: inline-flex;
  align-self: start;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
}

.campaign-link-secondary {
  background: rgba(12, 37, 86, 0.26);
  border-color: rgba(255, 255, 255, 0.26);
}

.campaign-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-self: flex-start;
}

.campaign-actions .campaign-link {
  align-self: auto;
}

.campaign-actions-slide-one .campaign-link {
  width: 14.8rem;
  justify-content: center;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(34, 70, 108, 0.16);
  box-shadow: 0 12px 26px rgba(12, 37, 86, 0.08);
}

.campaign-actions-slide-one {
  transform: translateY(-0.8rem);
}

.campaign-actions-slide-one .campaign-link-secondary {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(34, 70, 108, 0.14);
}

.campaign-actions-slide-four {
  align-self: flex-start;
  justify-content: flex-start;
  transform: translateY(-0.8rem);
}

.campaign-button-left {
  align-self: flex-start;
}

.campaign-button-center {
  align-self: center;
}

.campaign-button-right {
  align-self: flex-end;
}

.campaign-button-nudge-up {
  transform: translateY(-1rem);
}

.campaign-button-nudge-down {
  transform: translateY(1rem);
}

.campaign-button-nudge-left {
  transform: translateX(-1.2rem);
}

.campaign-button-nudge-right {
  transform: translateX(1.2rem);
}

.campaign-slider-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(var(--content-width), calc(100% - 2rem));
  margin: 0 auto;
}

.campaign-dots {
  display: flex;
  gap: 0.5rem;
}

.campaign-dots-overlay {
  position: absolute;
  left: 50%;
  bottom: -2.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: max-content;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(34, 70, 108, 0.12);
  border-radius: 999px;
  background: rgba(238, 248, 247, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 24px rgba(12, 37, 86, 0.08);
  transform: translateX(-50%);
}

.campaign-dot {
  width: 0.85rem;
  height: 0.85rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 70, 108, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.campaign-dot.is-active {
  background: var(--mint);
  transform: scale(1.15);
}

.campaign-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(12, 37, 86, 0.82);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(12, 37, 86, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.campaign-pause:hover,
.campaign-pause:focus-visible {
  transform: scale(1.05);
  background: rgba(12, 37, 86, 0.94);
}

.campaign-pause svg {
  width: 0.82rem;
  height: 0.82rem;
  fill: currentColor;
}

.campaign-icon-play {
  display: none;
}

.campaign-pause.is-paused .campaign-icon-pause {
  display: none;
}

.campaign-pause.is-paused .campaign-icon-play {
  display: block;
}

.campaign-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  text-align: center;
}

.stats,
.content-grid,
.project-list {
  display: grid;
  gap: 1rem;
}

.stats {
  grid-template-columns: repeat(3, 1fr);
  margin: 1rem 0 4rem;
}

.stats article,
.card,
.project-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stats article {
  padding: 1.5rem;
}

.stats strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--navy);
}

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

.launch-offer-banner {
  margin: -0.2rem 0 2.4rem;
}

.launch-offer-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.7rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(144, 209, 205, 0.36);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 247, 0.94)),
    linear-gradient(135deg, rgba(12, 37, 86, 0.04), rgba(144, 209, 205, 0.12));
  box-shadow: 0 22px 44px rgba(12, 37, 86, 0.1);
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.launch-offer-card::before {
  content: "";
  position: absolute;
  inset: -18% auto auto -6%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(144, 209, 205, 0.28), rgba(144, 209, 205, 0));
  animation: launchOfferFloat 7s ease-in-out infinite;
  z-index: 0;
}

.launch-offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 26%, rgba(255, 255, 255, 0.42) 50%, transparent 74%);
  transform: translateX(-135%);
  animation: launchOfferSweep 4.8s ease-in-out infinite;
  z-index: 0;
}

.launch-offer-card .section-label,
.launch-offer-copy {
  position: relative;
  z-index: 1;
}

.launch-offer-copy {
  display: grid;
  gap: 0.45rem;
  min-height: 8.2rem;
  justify-items: center;
  text-align: center;
}

.launch-offer-line {
  margin: 0;
  opacity: 0;
  transform: translateY(0.7rem);
  animation-duration: 10.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

.launch-offer-line:nth-child(1) {
  animation-name: launchOfferLineOne;
}

.launch-offer-line:nth-child(2) {
  animation-name: launchOfferLineTwo;
}

.launch-offer-line:nth-child(3) {
  animation-name: launchOfferLineThree;
}

.launch-offer-intro {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.launch-offer-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  line-height: 1.14;
  color: var(--navy);
}

.launch-offer-discount {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.28rem 0.42rem;
  font-size: clamp(1.12rem, 1.7vw, 1.38rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-main);
}

.launch-offer-discount strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.1rem;
  padding: 0.38rem 0.9rem;
  margin-left: 0.2rem;
  border-radius: 999px;
  background: rgba(34, 70, 108, 0.1);
  color: var(--navy);
  box-shadow: inset 0 0 0 1px rgba(34, 70, 108, 0.08);
  animation: launchOfferPulse 2.8s ease-in-out infinite;
}

@keyframes launchOfferLineOne {
  0%,
  6% {
    opacity: 0;
    transform: translateY(0.7rem);
  }
  12%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes launchOfferLineTwo {
  0%,
  24% {
    opacity: 0;
    transform: translateY(0.7rem);
  }
  30%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes launchOfferLineThree {
  0%,
  42% {
    opacity: 0;
    transform: translateY(0.7rem);
  }
  48%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes launchOfferFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1.4rem, 0.6rem, 0) scale(1.08);
  }
}

@keyframes launchOfferSweep {
  0%,
  20% {
    transform: translateX(-135%);
  }
  55% {
    transform: translateX(135%);
  }
  100% {
    transform: translateX(135%);
  }
}

@keyframes launchOfferPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: inset 0 0 0 1px rgba(34, 70, 108, 0.08), 0 0 0 rgba(34, 70, 108, 0);
  }
  50% {
    transform: scale(1.04);
    box-shadow: inset 0 0 0 1px rgba(34, 70, 108, 0.12), 0 0 0 0.35rem rgba(144, 209, 205, 0.18);
  }
}

@media (max-width: 760px) {
  .launch-offer-copy {
    min-height: 9.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .launch-offer-card::before,
  .launch-offer-card::after,
  .launch-offer-line,
  .launch-offer-discount strong {
    animation: none;
  }

  .launch-offer-copy {
    min-height: auto;
  }

  .launch-offer-line {
    opacity: 1;
    transform: none;
  }
}

.content-grid {
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 4rem;
}

.benefits-showcase {
  margin-bottom: 4rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.benefit-card {
  position: relative;
  padding: 3.35rem 1.6rem 1.75rem;
  border: 1px solid rgba(144, 209, 205, 0.28);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 251, 0.96)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.08), rgba(34, 70, 108, 0.02));
  box-shadow: 0 22px 42px rgba(12, 37, 86, 0.08);
  text-align: center;
}

.benefit-icon {
  position: absolute;
  top: 0;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #98dbd7 0%, #82ccc7 100%);
  color: #ffffff;
  box-shadow: 0 18px 28px rgba(34, 70, 108, 0.12);
  transform: translate(-50%, -42%);
}

.benefit-icon svg {
  width: 2rem;
  height: 2rem;
}

.benefit-card h3 {
  margin: 0 0 0.95rem;
  color: #85cdc8;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.22;
  font-weight: 500;
}

.benefit-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.card {
  padding: 2rem;
}

.inline-link {
  display: inline-flex;
  align-self: start;
  margin-top: 1.35rem;
  color: var(--blue);
  font-weight: 600;
}

.who-we-are-cta {
  margin-top: 1.9rem;
}

.light-link {
  color: #ffffff;
}

.feature-card p,
.project-card p,
.contact p {
  color: var(--text-soft);
  line-height: 1.75;
}

.feature-card h2,
.contact h2 {
  margin: 0.5rem 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 600;
}

.quote-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(200, 236, 234, 0.85));
}

.accent-card {
  border-color: rgba(144, 209, 205, 0.55);
}

.space-gallery-section {
  margin-bottom: 4rem;
}

.space-gallery-head {
  display: block;
  margin-bottom: 1.65rem;
  text-align: center;
}

.space-gallery-head > div {
  width: 100%;
}

.space-gallery-intro {
  max-width: 29rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
}

.space-gallery-carousel {
  padding: 1rem;
  border: 1px solid rgba(144, 209, 205, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(144, 209, 205, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 249, 249, 0.97));
  box-shadow: 0 24px 52px rgba(12, 37, 86, 0.08);
}

.space-gallery-stage {
  position: relative;
  aspect-ratio: 1600 / 860;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(222, 237, 240, 0.94), rgba(237, 248, 248, 0.98));
}

.space-gallery-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.space-gallery-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.space-gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.space-gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 37, 86, 0.02) 0%, rgba(12, 37, 86, 0.06) 100%);
}

.space-gallery-slide-copy {
  display: none;
}

.space-gallery-slide-copy h3 {
  margin: 0.55rem 0 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  font-weight: 600;
}

.space-gallery-slide-copy p:last-child {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.72;
}

.space-gallery-caption {
  margin-top: 1rem;
  padding: 0.15rem 0.35rem 0;
  text-align: center;
}

.space-gallery-caption h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.14;
  font-weight: 600;
}

.space-gallery-caption p {
  max-width: 46rem;
  margin: 0.55rem auto 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.space-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.space-gallery-arrow {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(34, 70, 108, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.space-gallery-arrow:hover,
.space-gallery-arrow:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(144, 209, 205, 0.62);
  background: #ffffff;
}

.space-gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.space-gallery-dot {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 70, 108, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.space-gallery-dot.is-active {
  background: var(--mint);
  transform: scale(1.18);
}

.financing-highlight-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.8rem, 3.6vw, 2.8rem);
  background:
    radial-gradient(circle at left top, rgba(144, 209, 205, 0.26), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(242, 250, 249, 0.96));
  border-color: rgba(144, 209, 205, 0.48);
}

.financing-highlight-copy {
  max-width: 47rem;
}

.financing-highlight-card .section-label {
  font-size: clamp(0.95rem, 1.5vw, 1.18rem);
  letter-spacing: 0.26em;
  color: var(--blue);
}

.financing-highlight-card h2 {
  margin: 0.45rem 0 0.95rem;
  color: var(--navy);
  font-size: clamp(2.1rem, 4.2vw, 3.55rem);
  line-height: 1.06;
  font-weight: 600;
}

.financing-highlight-brand {
  color: #85cdc8;
}

.financing-highlight-card p:last-child {
  margin: 0;
  max-width: 38rem;
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.75;
}

.financing-highlight-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.financing-highlight-actions .button {
  min-width: 16rem;
  justify-content: center;
}

.quote {
  margin: 0.75rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.55rem;
  line-height: 1.5;
  color: var(--blue);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 600;
}

.space-gallery-head .space-gallery-title {
  max-width: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.06;
  text-wrap: balance;
}

.section-head-centered {
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.section-head-centered h2 {
  max-width: none;
}

.project-list {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 4rem;
}

.project-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.section-stack {
  margin-bottom: 4rem;
}

.stacked-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 4rem;
}

.stacked-grid .project-grid-two {
  margin-bottom: 0;
}

.spotlight-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 250, 250, 0.96)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.1), rgba(34, 70, 108, 0.03));
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.info-pill-row,
.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.info-pill,
.offer-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(34, 70, 108, 0.14);
  border-radius: 999px;
  background: rgba(144, 209, 205, 0.16);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
}

.offer-card {
  display: flex;
  flex-direction: column;
}

.offer-card p {
  margin: 0;
}

.offer-meta {
  margin-top: auto;
  padding-top: 1rem;
}

.campaigns-page-section {
  margin-bottom: 4rem;
}

.campaigns-page-list {
  display: grid;
  gap: 1rem;
}

.campaign-page-card {
  position: relative;
  width: 100%;
  padding: 2rem;
  border-radius: 32px;
}

.campaign-page-card-featured {
  order: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 250, 250, 0.96)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.12), rgba(34, 70, 108, 0.04));
}

.campaign-page-card-expired {
  order: 2;
  background:
    linear-gradient(180deg, rgba(249, 250, 251, 0.98), rgba(238, 241, 244, 0.94)),
    linear-gradient(135deg, rgba(126, 136, 148, 0.1), rgba(95, 103, 115, 0.05));
  border-color: rgba(112, 121, 132, 0.16);
  box-shadow: 0 18px 36px rgba(53, 61, 71, 0.08);
}

.campaign-page-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 0 0.85rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.campaign-page-status-expired {
  color: #8e4c58;
  background: rgba(176, 56, 79, 0.08);
  border: 1px solid rgba(176, 56, 79, 0.14);
}

.campaign-page-disclosure {
  display: block;
}

.campaign-page-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 0;
  cursor: pointer;
  list-style: none;
}

.campaign-page-summary::-webkit-details-marker {
  display: none;
}

.campaign-page-summary-copy h3 {
  margin: 0;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.2;
  font-weight: 600;
}

.campaign-page-summary-copy p {
  margin: 0.7rem 0 0;
  max-width: 44rem;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.75;
}

.campaign-page-summary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: rgba(34, 70, 108, 0.08);
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  white-space: nowrap;
}

.campaign-page-summary-action::after {
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
}

.campaign-page-disclosure[open] .campaign-page-summary-action::after {
  content: "-";
}

.campaign-page-disclosure-body {
  margin-top: 1.5rem;
}

@media (max-width: 900px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-showcase {
    grid-template-columns: 1fr;
  }

  .product-care-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-use-panel {
    padding-left: 0;
    padding-top: 1.5rem;
    border-left: 0;
    border-top: 1px solid rgba(34, 70, 108, 0.1);
  }

  .product-detail-copy {
    font-size: 0.88rem;
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 3.15rem 1.35rem 1.55rem;
  }

  .product-showcase-copy,
  .product-showcase-visual {
    padding: 1.45rem;
  }

  .product-showcase-copy {
    padding-left: 0;
    padding-right: 0;
  }

  .product-showcase-visual {
    padding: 0.6rem 0 0;
  }

  .product-bottle-scene {
    min-height: 19rem;
    height: auto;
    padding: 0.8rem 0.3rem 0.3rem;
  }

  .product-bottle-svg,
  .product-bottle-photo {
    width: min(100%, 15rem);
    height: auto;
    max-height: none;
  }

  .product-bottle-photo {
    transform: translateY(0.15rem);
  }
}

.campaign-page-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.campaign-page-card-head h3 {
  margin: 0.7rem 0 0;
  max-width: 42rem;
}

.campaign-page-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.campaign-page-copy {
  max-width: 52rem;
  margin: 1rem 0 0;
}

.campaign-page-card-expired .campaign-page-summary-copy h3,
.campaign-page-card-expired .campaign-page-conditions-title,
.campaign-page-card-expired .campaign-page-accordion h4 {
  color: #66707c;
}

.campaign-page-card-expired .campaign-page-summary-copy p,
.campaign-page-card-expired .campaign-page-legal,
.campaign-page-card-expired .campaign-page-accordion summary,
.campaign-page-card-expired .campaign-page-accordion p,
.campaign-page-card-expired .campaign-page-accordion li,
.campaign-page-card-expired .laser-checklist li {
  color: #7a838f;
}

.campaign-page-card-expired .offer-meta span {
  color: #737d88;
  border-color: rgba(108, 117, 127, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.campaign-page-card-expired .campaign-page-summary-action {
  color: #707986;
  border-color: rgba(108, 117, 127, 0.2);
  background: rgba(255, 255, 255, 0.74);
}

.campaign-page-card-expired .button-primary,
.campaign-page-card-expired .button-secondary {
  color: #6d7682;
  background: rgba(236, 239, 242, 0.94);
  background-image: none;
  border: 1px solid rgba(118, 127, 138, 0.2);
  border-bottom: 1px solid rgba(118, 127, 138, 0.2);
  box-shadow: none;
}

.campaign-page-intro {
  font-size: 1.04rem;
  line-height: 1.85;
}

.campaign-page-conditions {
  margin-top: 1.5rem;
  padding: 1.45rem 1.55rem;
  border: 1px solid rgba(34, 70, 108, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.campaign-page-conditions-title {
  margin: 0;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.campaign-page-conditions .laser-checklist {
  margin-top: 1rem;
}

.campaign-page-conditions .laser-checklist li {
  color: var(--text-main);
}

.campaign-page-conditions a {
  color: var(--blue);
  font-weight: 600;
}

.campaign-page-conditions a:hover,
.campaign-page-conditions a:focus-visible {
  color: var(--navy);
}

.campaign-page-legal {
  margin: 1.2rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.campaign-page-accordion {
  margin-top: 1.1rem;
}

.campaign-page-accordion details {
  background: rgba(255, 255, 255, 0.88);
}

.campaign-page-accordion .faq-simple-content {
  padding-top: 0.25rem;
}

.campaign-terms-list {
  margin: 0;
  padding-left: 1.3rem;
  display: grid;
  gap: 1rem;
}

.campaign-terms-list > li {
  color: var(--text-soft);
}

.campaign-terms-list h4 {
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.campaign-terms-list p {
  margin: 0;
  line-height: 1.78;
}

.campaign-terms-list p + p {
  margin-top: 0.7rem;
}

.campaign-terms-sublist {
  margin: 0.2rem 0 0.75rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.campaign-terms-sublist li {
  line-height: 1.72;
}

.campaign-terms-numbered {
  list-style: decimal;
}

.campaign-page-download {
  margin-top: 1rem;
}

.campaign-page-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.campaign-page-card-actions-aligned {
  align-items: center;
}

.campaign-page-card-actions-aligned .button {
  min-width: 12.75rem;
  justify-content: center;
}

.product-page-hero .page-lead,
.product-page-lead {
  max-width: 50rem;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.product-showcase-copy,
.product-showcase-visual {
  height: 100%;
  padding: 2.2rem;
}

.product-showcase-copy {
  padding-left: 0;
  padding-right: 0.8rem;
}

.product-showcase-copy h2 {
  margin: 0.5rem 0 0.9rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.18;
  font-weight: 600;
}

.product-showcase-copy p {
  color: var(--text-soft);
  line-height: 1.8;
}

.product-showcase-copy p + p {
  margin-top: 0.95rem;
}

.product-highlight-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.35rem 0 1.45rem;
}

.product-highlight-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(144, 209, 205, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
}

.product-showcase-visual {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0.35rem 0 0.15rem 1rem;
  color: var(--navy);
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-showcase-visual::before {
  content: none;
}

.product-showcase-visual .section-label {
  position: relative;
  color: var(--blue);
}

.product-bottle-scene {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  padding: 0.15rem 0.5rem 0;
}

.product-bottle-scene::before,
.product-bottle-scene::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
}

.product-bottle-scene::before {
  width: 13rem;
  height: 13rem;
  background: rgba(144, 209, 205, 0.12);
}

.product-bottle-scene::after {
  width: 8rem;
  height: 8rem;
  right: 2.4rem;
  top: 2.2rem;
  background: rgba(144, 209, 205, 0.1);
}

.product-bottle-svg {
  position: relative;
  z-index: 1;
  width: min(100%, 17rem);
  height: auto;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.14));
}

.product-bottle-photo {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.14));
}

.product-visual-note {
  position: relative;
  display: grid;
  gap: 0.3rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
}

.product-visual-note strong {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.product-visual-note span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.product-ingredient-kicker {
  margin: 0 0 0.7rem;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-care-section {
  margin-bottom: 4rem;
}

.product-care-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 2.4rem;
  align-items: start;
}

.product-ingredient-panel,
.product-use-panel {
  height: 100%;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-ingredient-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.product-ingredient-item {
  padding: 0.3rem 0 0.3rem 1rem;
  border-left: 2px solid rgba(75, 167, 176, 0.28);
}

.product-ingredient-item h4 {
  margin: 0;
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 600;
}

.product-ingredient-item p:last-child,
.product-use-copy {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.product-use-panel .laser-checklist {
  margin-top: 1.2rem;
}

.product-use-panel {
  padding-left: 2.2rem;
  border-left: 1px solid rgba(34, 70, 108, 0.1);
}

.product-cta {
  max-width: 54rem;
  margin: 0 auto 4rem;
  padding: 2rem 0 0;
  text-align: center;
  border-top: 1px solid rgba(34, 70, 108, 0.1);
}

.product-cta p {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.product-page-hero .hero-actions .button,
.product-use-panel .button,
.product-cta .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-use-panel .button,
.product-cta .button {
  margin-top: 2.3rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: var(--hero-grad);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(34, 70, 108, 0.18);
}

.step-card p {
  margin: 0;
}

.table-card {
  padding: 0;
  overflow: hidden;
}

.table-card-head {
  padding: 1.7rem 1.8rem 1.2rem;
}

.table-card-head h3 {
  margin: 0.45rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
}

.table-card-head p {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.smart-table-wrap {
  overflow-x: auto;
  padding: 0 1.15rem 1.15rem;
}

.smart-table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
}

.smart-table th,
.smart-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  border-bottom: 1px solid rgba(34, 70, 108, 0.1);
}

.smart-table th {
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

.smart-table td {
  color: var(--text-soft);
  line-height: 1.55;
}

.smart-table tbody tr:last-child td {
  border-bottom: 0;
}

.faq-simple {
  display: grid;
  gap: 0.9rem;
}

.faq-simple details {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(12, 37, 86, 0.08);
  overflow: hidden;
}

.faq-simple summary {
  position: relative;
  padding: 1.15rem 3.2rem 1.15rem 1.35rem;
  list-style: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

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

.faq-simple summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 600;
}

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

.faq-simple-content {
  padding: 0 1.35rem 1.2rem;
  color: var(--text-soft);
  line-height: 1.75;
}

.laser-hero {
  max-width: none;
  text-align: center;
}

.laser-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.laser-showcase-copy,
.laser-showcase-visual {
  height: 100%;
  padding: 2.2rem;
}

.laser-showcase-copy {
  border-color: rgba(34, 70, 108, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 250, 250, 0.96)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.1), rgba(34, 70, 108, 0.03));
}

.laser-showcase-copy h2,
.laser-showcase-visual h3,
.laser-signature h2,
.care-card h3 {
  margin: 0.5rem 0 0.9rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.18;
  font-weight: 600;
}

.laser-showcase-copy p,
.care-card p {
  color: var(--text-soft);
  line-height: 1.8;
}

.laser-showcase-copy p + p {
  margin-top: 0.95rem;
}

.laser-showcase-visual {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  border-color: rgba(144, 209, 205, 0.16);
  background:
    linear-gradient(180deg, rgba(12, 37, 86, 0.98), rgba(25, 50, 92, 0.95)),
    radial-gradient(circle at top right, rgba(144, 209, 205, 0.16), transparent 46%);
  box-shadow: 0 26px 56px rgba(12, 37, 86, 0.18);
}

.laser-showcase-visual::before {
  content: "";
  position: absolute;
  inset: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  pointer-events: none;
}

.laser-showcase-visual .section-label {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
}

.laser-showcase-visual p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.laser-aspect-grid {
  position: relative;
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.laser-aspect-card {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.laser-aspect-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.85rem;
  height: 3.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  color: #bdeceb;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 20px rgba(12, 37, 86, 0.12);
}

.laser-aspect-icon svg {
  width: 2.8rem;
  height: 2.8rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.laser-icon-stroke {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.laser-icon-accent-sun {
  stroke: #f3bc59;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.laser-icon-text {
  fill: rgba(255, 255, 255, 0.92);
  stroke: none;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.laser-aspect-icon-cooling svg {
  width: 3.2rem;
  height: 3.2rem;
}

.laser-aspect-icon-calendar svg {
  width: 3.1rem;
  height: 3.1rem;
}

.laser-aspect-icon-results svg {
  width: 3.25rem;
  height: 3.25rem;
}

.laser-aspect-icon-tones svg {
  width: 3.05rem;
  height: 3.05rem;
  fill: initial;
  stroke: none;
}

.laser-skin-wheel {
  filter: drop-shadow(0 4px 8px rgba(12, 37, 86, 0.12));
}

.laser-aspect-copy {
  display: grid;
  gap: 0.22rem;
  align-content: center;
  min-width: 0;
}

.laser-aspect-card strong {
  display: block;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.laser-aspect-copy span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.laser-section {
  margin-bottom: 4rem;
}

.laser-section .section-head > p:last-child {
  max-width: 32rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.laser-care-grid {
  display: grid;
  gap: 1rem;
}

.laser-care-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.laser-signature {
  margin-bottom: 4rem;
  padding: 2rem 2.2rem;
  border-color: rgba(144, 209, 205, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(238, 248, 247, 0.97)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.08), rgba(34, 70, 108, 0.03));
}

.laser-signature p {
  max-width: 46rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.laser-benefits-list,
.laser-checklist,
.care-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.laser-benefits-list li,
.laser-checklist li,
.care-list li {
  position: relative;
  padding-left: 1.55rem;
  line-height: 1.75;
}

.dark-card .laser-benefits-list li,
.dark-card .laser-checklist li,
.dark-card .care-list li {
  color: rgba(255, 255, 255, 0.88);
}

.laser-benefits-list li + li,
.laser-checklist li + li,
.care-list li + li {
  margin-top: 0.7rem;
}

.laser-benefits-list li::before,
.laser-checklist li::before,
.care-list li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--mint) 0%, var(--blue) 100%);
}

.care-card {
  height: 100%;
}

.care-card-highlight {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(200, 236, 234, 0.8));
}

.laser-note-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 250, 0.98));
}

.laser-note-text {
  max-width: 50rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.laser-faq-section {
  margin-bottom: 4.4rem;
}

.faq-search,
.faq-empty,
.faq-list {
  display: grid;
  max-width: 60rem;
  margin: 0 auto;
}

.faq-search {
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.faq-search-label {
  display: block;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.faq-search-shell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  border: 1px solid rgba(34, 70, 108, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 30px rgba(12, 37, 86, 0.08);
}

.faq-search-input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0;
  color: var(--navy);
  font: inherit;
  background: transparent;
}

.faq-search-input::placeholder {
  color: rgba(90, 98, 112, 0.88);
}

.faq-search-clear {
  flex: 0 0 auto;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(34, 70, 108, 0.12);
  border-radius: 999px;
  color: var(--navy);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(144, 209, 205, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-search-clear:hover,
.faq-search-clear:focus-visible {
  transform: translateY(-1px);
  background: rgba(144, 209, 205, 0.3);
}

.faq-empty {
  display: block;
  margin-bottom: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(34, 70, 108, 0.1);
  border-radius: 22px;
  color: var(--text-soft);
  line-height: 1.75;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(12, 37, 86, 0.06);
}

.faq-empty a {
  color: var(--blue);
  font-weight: 600;
}

.faq-list {
  gap: 0.9rem;
}

.faq-item {
  border: 1px solid rgba(34, 70, 108, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(12, 37, 86, 0.08);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 1.4rem 4rem 1.4rem 1.4rem;
  cursor: pointer;
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.35rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue);
}

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

.faq-answer {
  padding: 0 1.4rem 1.4rem;
}

.faq-answer p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.faq-answer p + p,
.faq-answer p + .faq-answer-list,
.faq-answer-list + p {
  margin-top: 0.95rem;
}

.faq-answer-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.faq-answer-list li {
  line-height: 1.8;
}

.faq-answer-list li + li {
  margin-top: 0.45rem;
}

.faq-highlight {
  padding: 0 0.18rem;
  border-radius: 0.3rem;
  color: inherit;
  background: rgba(144, 209, 205, 0.48);
}

.pricing-section {
  margin-bottom: 4rem;
}

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

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

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.price-card h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 600;
  color: var(--navy);
}

.price-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.price-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.price-card-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.price-card-badges-stacked {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.32rem;
}

.price-stack {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.45rem;
}

.price-original {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: line-through;
}

.price-value {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(144, 209, 205, 0.24);
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(12, 37, 86, 0.08);
  color: var(--navy);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.novelty-badge {
  background: rgba(144, 209, 205, 0.24);
}

.novelty-letter {
  display: inline-block;
  animation: novelty-wave 1.9s ease-in-out infinite;
  animation-delay: var(--novelty-delay, 0s);
  transform-origin: center bottom;
}

.novelty-letter + .novelty-letter {
  margin-left: 0.01em;
}

@keyframes novelty-wave {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  20% {
    transform: translateY(-1px);
    opacity: 0.9;
  }

  40% {
    transform: translateY(-2px);
    opacity: 1;
  }

  60% {
    transform: translateY(0);
    opacity: 1;
  }
}

.dark-price-card {
  background: linear-gradient(180deg, #22466c 0%, #0c2556 100%);
  border-color: rgba(144, 209, 205, 0.28);
}

.dark-price-card h3,
.dark-price-card p,
.dark-price-card .project-tag {
  color: #ffffff;
}

.dark-price-card .price-value {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.dark-price-card .price-original {
  color: rgba(255, 255, 255, 0.74);
}

.dark-price-card .discount-badge {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.dark-price-card .novelty-badge {
  background: rgba(144, 209, 205, 0.22);
  border: 1px solid rgba(144, 209, 205, 0.28);
}

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

.soft-price-card {
  background: linear-gradient(180deg, rgba(200, 236, 234, 0.92), rgba(255, 255, 255, 0.9));
}

.interaction-hint {
  max-width: 42rem;
  margin: -0.2rem auto 1.4rem;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.zone-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(34, 70, 108, 0.15);
  border-radius: 999px;
  background: rgba(144, 209, 205, 0.14);
  color: var(--navy);
  font: inherit;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.zone-chip:hover,
.zone-chip:focus-visible,
.zone-chip.is-active {
  transform: translateY(-1px);
  border-color: rgba(34, 70, 108, 0.28);
  background: rgba(34, 70, 108, 0.1);
  box-shadow: 0 12px 24px rgba(12, 37, 86, 0.08);
}

.zone-chip:focus-visible {
  outline: 2px solid rgba(34, 70, 108, 0.35);
  outline-offset: 2px;
}

.zone-list-dark .zone-chip {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.zone-list-dark .zone-chip:hover,
.zone-list-dark .zone-chip:focus-visible,
.zone-list-dark .zone-chip.is-active {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 24px rgba(5, 20, 48, 0.22);
}

.pricing-section .price-card {
  gap: 0.85rem;
  padding: 1.45rem;
}

.pricing-section .zone-list {
  gap: 0.45rem;
}

.pricing-section .zone-chip {
  padding: 0.42rem 0.68rem;
  font-size: 0.88rem;
  line-height: 1.1;
}

.zone-popover {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.1rem;
  pointer-events: none;
}

.zone-popover[hidden] {
  display: none;
}

.zone-popover.is-pinned {
  pointer-events: auto;
}

.zone-popover-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 37, 86, 0.12);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.zone-popover.is-pinned .zone-popover-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.zone-popover-panel {
  position: relative;
  width: min(25rem, calc(100vw - 2.2rem));
  padding: 1.4rem;
  border: 1px solid rgba(34, 70, 108, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 248, 247, 0.96)),
    linear-gradient(135deg, rgba(144, 209, 205, 0.16), rgba(34, 70, 108, 0.08));
  box-shadow: 0 28px 72px rgba(12, 37, 86, 0.18);
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.24s ease, transform 0.24s ease;
  pointer-events: auto;
}

.zone-popover.is-open .zone-popover-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.zone-popover-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.4rem 0.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 70, 108, 0.08);
  color: var(--navy);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.zone-popover.is-pinned .zone-popover-close {
  opacity: 1;
  pointer-events: auto;
}

.zone-popover-close:hover,
.zone-popover-close:focus-visible {
  background: rgba(34, 70, 108, 0.14);
}

.zone-popover-panel h3 {
  margin: 0.45rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 600;
}

.zone-popover-copy {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.zone-popover.is-text-only .zone-popover-panel {
  width: min(22rem, calc(100vw - 2.2rem));
}

.zone-popover.is-text-only .zone-photo-frame,
.zone-popover.is-text-only .zone-popover-view,
.zone-popover.is-text-only .zone-figures {
  display: none !important;
}

.zone-photo-frame {
  margin-top: 1rem;
}

.zone-photo-frame[hidden] {
  display: none;
}

.zone-photo {
  display: block;
  width: 100%;
  max-height: 15rem;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 16px 38px rgba(12, 37, 86, 0.12);
}

.zone-photo-label {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.zone-popover-view {
  margin: 0.9rem 0 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.zone-figures {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
  margin-top: 1rem;
}

.zone-figures[data-active-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.zone-figures[data-active-count="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zone-figure {
  display: none;
  width: 100%;
  height: auto;
  padding: 0.8rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(238, 248, 247, 0.95), rgba(200, 236, 234, 0.68));
}

.zone-figure.is-active {
  display: block;
}

.zone-figures[data-active-count="1"] .zone-figure.is-active {
  max-width: 16rem;
  margin: 0 auto;
}

.zone-figure-base {
  fill: rgba(34, 70, 108, 0.12);
  stroke: rgba(34, 70, 108, 0.2);
  stroke-width: 3;
}

.zone-figure-art {
  pointer-events: none;
}

.zone-highlight {
  fill: rgba(34, 70, 108, 0.16);
  stroke: rgba(34, 70, 108, 0.16);
  stroke-width: 2;
  opacity: 0;
  transition: opacity 0.2s ease, fill 0.2s ease, stroke 0.2s ease;
}

.zone-highlight.is-active {
  fill: rgba(34, 70, 108, 0.82);
  stroke: rgba(144, 209, 205, 0.88);
  opacity: 1;
}

body.zone-popover-open {
  overflow: hidden;
}

.project-card {
  padding: 1.7rem;
}

.project-card h3 {
  margin: 0.65rem 0 0.8rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.project-tag {
  color: var(--blue);
}

.dark-card {
  background: linear-gradient(180deg, #22466c 0%, #0c2556 100%);
  border-color: rgba(144, 209, 205, 0.3);
}

.dark-card .project-tag,
.dark-card h3,
.dark-card p {
  color: #ffffff;
}

.laser-service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.laser-service-card::before {
  content: "";
  position: absolute;
  right: -1.8rem;
  bottom: -2.8rem;
  width: clamp(10rem, 23vw, 13rem);
  aspect-ratio: 4644 / 6784;
  background: url("assets/laser-watermark.png") center center / contain no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.28s ease, transform 0.38s ease;
}

.laser-service-card:hover,
.laser-service-card:focus-within {
  border-color: rgba(144, 209, 205, 0.42);
  box-shadow: 0 24px 50px rgba(5, 18, 42, 0.26);
  transform: translateY(-4px);
}

.laser-service-card:hover::before,
.laser-service-card:focus-within::before {
  opacity: 0.16;
  transform: scale(1.02);
}

.laser-service-card h3,
.laser-service-card p,
.laser-service-card a {
  position: relative;
  z-index: 1;
}

.laser-service-card h3 {
  max-width: 11ch;
}

.laser-service-card p {
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.92);
}

.soft-card {
  background: linear-gradient(180deg, rgba(200, 236, 234, 0.92), rgba(144, 209, 205, 0.7));
}

.men-service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(144, 209, 205, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.28) 58%, rgba(255, 255, 255, 0.08) 100%),
    url("assets/depilacao-homem-card.png") center center / cover no-repeat,
    linear-gradient(180deg, rgba(244, 250, 250, 0.98), rgba(228, 241, 242, 0.9));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.men-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.44) 45%, rgba(255, 255, 255, 0.1) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(12, 37, 86, 0.08));
  transition: opacity 0.28s ease, transform 0.4s ease;
}

.men-service-card:hover,
.men-service-card:focus-within {
  border-color: rgba(34, 70, 108, 0.2);
  box-shadow: 0 24px 50px rgba(12, 37, 86, 0.14);
  transform: translateY(-4px);
}

.men-service-card:hover::before,
.men-service-card:focus-within::before {
  opacity: 0.94;
  transform: scale(1.02);
}

.men-service-card h3,
.men-service-card p,
.men-service-card a {
  position: relative;
  z-index: 1;
}

.men-service-card h3 {
  max-width: 12ch;
}

.men-service-card p {
  max-width: 21rem;
  color: rgba(15, 31, 60, 0.88);
}

.women-service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(144, 209, 205, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.38) 54%, rgba(255, 255, 255, 0.12) 100%),
    url("assets/campaigns/skin-tones-group.png") center center / cover no-repeat,
    linear-gradient(180deg, rgba(248, 252, 251, 0.98), rgba(228, 241, 242, 0.9));
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.women-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.5) 46%, rgba(255, 255, 255, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(12, 37, 86, 0.06));
  transition: opacity 0.28s ease, transform 0.4s ease;
}

.women-service-card:hover,
.women-service-card:focus-within {
  border-color: rgba(34, 70, 108, 0.2);
  box-shadow: 0 24px 50px rgba(12, 37, 86, 0.12);
  transform: translateY(-4px);
}

.women-service-card:hover::before,
.women-service-card:focus-within::before {
  opacity: 0.95;
  transform: scale(1.02);
}

.women-service-card h3,
.women-service-card p,
.women-service-card a {
  position: relative;
  z-index: 1;
}

.women-service-card h3 {
  max-width: 12ch;
}

.women-service-card p {
  max-width: 22rem;
  color: rgba(15, 31, 60, 0.88);
}

@media (max-width: 760px) {
  .laser-service-card::before {
    right: -1rem;
    bottom: -1.8rem;
    width: 8.5rem;
    opacity: 0.11;
  }
}

.dark-card .info-pill,
.dark-card .offer-meta span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.contact {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 247, 0.98));
}

.cta-band {
  margin-bottom: 4rem;
}

.partners-page {
  display: grid;
  gap: 0;
}

.partners-editorial-section {
  max-width: 60rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.partners-editorial-section h2 {
  margin: 0.55rem 0 1rem;
}

.partners-editorial-section p {
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.85;
}

.partners-editorial-section .laser-checklist {
  max-width: 42rem;
  margin: 1.35rem auto 0;
  text-align: left;
}

.partner-logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.4rem;
  margin-top: 1.5rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(34, 70, 108, 0.1);
}

.partner-logo-strip span {
  color: var(--text-soft);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.partners-editorial-cta {
  margin-bottom: 4rem;
}

.partners-editorial-cta .button {
  margin-top: 1.6rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.contact-links a {
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(144, 209, 205, 0.55);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--navy);
  font-weight: 500;
}

.site-footer,
.global-footer {
  margin-top: 3rem;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(56, 156, 177, 0.98), rgba(43, 128, 151, 0.98)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 30%);
}

.footer-shell {
  width: min(var(--shell-width), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 0;
  padding: 1.8rem 0 1.1rem;
}

.footer-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem 1.25rem;
  align-items: center;
  padding: 0 0 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-band .section-label {
  color: rgba(255, 255, 255, 0.78);
}

.footer-band h2 {
  max-width: 34ch;
  margin: 0.35rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.22;
  font-weight: 600;
  color: #ffffff;
}

.footer-address {
  display: inline-flex;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.55;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 0.22em;
}

.footer-band-cta {
  min-width: 10.4rem;
}

.footer-main {
  display: block;
  padding-top: 1.15rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, 0.95fr));
  gap: 1.1rem 2rem;
  padding: 0;
}

.footer-columns.card {
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.footer-column {
  min-width: 0;
}

.footer-column .section-label {
  color: rgba(255, 255, 255, 0.78);
}

.footer-column h3 {
  margin: 0.4rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.18rem;
  line-height: 1.24;
  font-weight: 600;
  color: #ffffff;
}

.footer-contact-list,
.footer-link-list,
.footer-hours-list {
  display: grid;
  gap: 0.52rem;
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.footer-contact-list a,
.footer-link-list a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  line-height: 1.45;
}

.footer-hours-split {
  display: grid;
  grid-template-columns: max-content max-content;
  column-gap: 0.35rem;
  row-gap: 0.08rem;
  align-items: baseline;
}

.footer-hours-prefix {
  grid-column: 1;
  grid-row: 1;
}

.footer-hours-value {
  grid-column: 2;
  grid-row: 1;
}

.footer-hours-continuation {
  grid-column: 2;
  grid-row: 2;
}

.footer-hours-list li {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.footer-note {
  margin: 0.65rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.45;
}

.footer-contact-note {
  margin: -0.28rem 0 0.12rem;
  font-size: 0.76rem;
  line-height: 1.3;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.85rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.22);
}

.footer-social-link svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.15rem;
  padding: 0.95rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
}

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

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

@media (max-width: 700px) {
  .campaign-slides {
    aspect-ratio: 900 / 1200;
  }
}

@media (max-width: 900px) {
  .hero-layout,
  .home-page .hero-layout,
  .laser-showcase,
  .footer-main,
  .stats,
  .content-grid,
  .project-list,
  .project-grid-two,
  .laser-care-grid,
  .pricing-grid,
  .pricing-grid-compact {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .site-header,
  .global-header {
    width: min(100%, calc(100% - 1rem));
    padding-top: 0.75rem;
  }

  .header-topbar-inner {
    padding: 0 0.65rem 0.35rem;
  }

  .header-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.8rem;
    padding: 0.8rem 0.95rem;
    border-radius: 28px;
  }

  .header-panel {
    position: absolute;
    top: calc(100% + 0.7rem);
    right: 0;
    left: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(34, 70, 108, 0.12);
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 250, 250, 0.97)),
      linear-gradient(135deg, rgba(144, 209, 205, 0.1), rgba(34, 70, 108, 0.04));
    box-shadow: 0 18px 44px rgba(12, 37, 86, 0.14);
  }

  .site-header.is-open .header-panel,
  .global-header.is-open .header-panel {
    display: grid;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2 / 4;
  }

  .nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.1rem;
  }

  .nav a {
    padding: 0.85rem 0.2rem;
    border-bottom: 1px solid rgba(34, 70, 108, 0.08);
  }

  .nav a::after {
    right: auto;
    width: 2.6rem;
  }

  .financing-highlight-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .financing-highlight-copy,
  .financing-highlight-card p:last-child {
    max-width: none;
  }

  .financing-highlight-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .financing-highlight-actions .button {
    width: 100%;
    min-width: 0;
  }

  .space-gallery-intro {
    max-width: none;
  }

  .space-gallery-stage {
    aspect-ratio: 1000 / 1180;
  }

  .space-gallery-caption p {
    max-width: 38rem;
  }

  .header-cta {
    width: 100%;
  }

  .footer-band {
    grid-template-columns: 1fr;
    padding: 0 0 1rem;
  }

  .footer-band-cta {
    justify-self: start;
  }

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

  .laser-section .section-head > p:last-child {
    max-width: none;
  }

  .zone-popover {
    justify-content: center;
  }

  .zone-popover-panel {
    width: min(32rem, calc(100vw - 2rem));
  }
}

@media (max-width: 1080px) {
  .space-gallery-caption h3 {
    font-size: clamp(1.28rem, 3.2vw, 1.75rem);
  }

  .space-gallery-caption p {
    font-size: 0.95rem;
  }

  .campaign-slide-skin-tones .campaign-slide-overlay {
    justify-content: stretch;
    padding: 0;
  }

  .campaign-skin-tones-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 0;
    align-items: stretch;
  }

  .campaign-skin-tones-copy {
    gap: 0.95rem;
    padding: 1.3rem 0.45rem 0.1rem;
  }

  .campaign-skin-tones-copy h3 {
    font-size: clamp(1.95rem, 5.2vw, 3.25rem);
    line-height: 1.02;
  }

  .campaign-skin-tones-list {
    gap: 0.42rem;
  }

  .campaign-skin-tones-list li {
    font-size: clamp(1.35rem, 4vw, 2rem);
  }

  .campaign-skin-tones-link {
    min-width: 11.4rem;
  }

  .campaign-skin-tones-visual {
    justify-content: center;
    align-items: end;
  }

  .campaign-skin-tones-group {
    width: min(108%, 920px);
    transform: translateY(1.5%);
  }
}

@media (max-width: 640px) {
  .site-header,
  .global-header {
    gap: 1rem;
  }

  .header-topbar {
    margin-bottom: 0.35rem;
  }

  .header-topbar-inner {
    justify-content: center;
    padding-bottom: 0.25rem;
  }

  .brand-logo {
    width: 8.8rem;
  }

  .header-shell {
    padding: 0.75rem 0.85rem;
  }

  .header-panel {
    padding: 0.9rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .page-hero {
    padding-top: 3rem;
    padding-bottom: 2.2rem;
  }

  .hero h1 {
    max-width: none;
  }

  .home-page .hero h1 {
    max-width: none;
  }

  .home-title-line {
    white-space: normal;
  }

  .page-hero h1 {
    max-width: none;
  }

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

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

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

  .laser-showcase-copy,
  .laser-showcase-visual {
    padding: 1.55rem;
  }

  .faq-item summary {
    padding-right: 3.5rem;
  }

  .campaign-slider-head,
  .campaign-slider-footer {
    flex-direction: column;
    align-items: start;
  }

  .campaign-slide::after {
    background: transparent;
  }

  .campaign-slide-overlay {
    justify-content: flex-end;
    padding: 1.4rem 0 1.6rem;
  }

  .campaign-slide-skin-tones .campaign-slide-overlay {
    justify-content: stretch;
    padding: 0;
  }

  .campaign-dots-overlay {
    bottom: -3.25rem;
  }

  .campaign-slides {
    margin-bottom: 4.15rem;
  }

  .campaign-link-slide-two {
    transform: translateY(-2rem);
  }

  .campaign-slide p {
    max-width: 28rem;
  }

  .campaign-skin-tones-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 0;
    align-items: stretch;
  }

  .campaign-skin-tones-copy {
    gap: 0.85rem;
    padding: 1.15rem 0.25rem 0 0.25rem;
  }

  .campaign-skin-tones-copy h3 {
    font-size: clamp(1.8rem, 8.1vw, 3.1rem);
    line-height: 1.02;
  }

  .campaign-skin-tones-list {
    gap: 0.38rem;
  }

  .campaign-skin-tones-list li {
    font-size: clamp(1.25rem, 6.6vw, 2rem);
  }

  .campaign-skin-tones-link {
    min-width: 11.2rem;
  }

  .campaign-skin-tones-visual {
    justify-content: center;
    align-items: end;
  }

  .campaign-skin-tones-group {
    width: min(118%, 880px);
    transform: translateX(0);
  }

  .campaign-actions-slide-one {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    transform: translateY(0.1rem);
  }

  .campaign-actions-slide-one .campaign-link {
    width: 100%;
    justify-content: center;
  }

  .campaign-link-slide-one-primary {
    padding-right: 0.92rem;
    padding-left: 0.92rem;
    font-size: 0.92rem;
  }

  .campaign-actions-slide-one .campaign-link-secondary {
    order: -1;
  }

  .campaign-actions-slide-four {
    align-self: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    text-align: left;
    gap: 0.6rem;
    transform: translate(-0.35rem, -0.4rem);
  }

  .space-gallery-stage {
    aspect-ratio: 1 / 1;
  }

  .space-gallery-slide img {
    object-fit: contain;
    object-position: center;
    padding: 0.3rem;
    background: linear-gradient(180deg, rgba(247, 252, 252, 0.98), rgba(238, 248, 247, 0.96));
  }

  .space-gallery-caption {
    margin-top: 0.85rem;
    padding-left: 0.1rem;
    padding-right: 0.1rem;
  }

  .space-gallery-caption h3 {
    font-size: clamp(1.18rem, 5.1vw, 1.45rem);
  }

  .space-gallery-caption p {
    margin-top: 0.45rem;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .campaign-actions-slide-four .campaign-link {
    padding: 0.78rem 1rem;
    font-size: 0.92rem;
  }

  .campaign-page-card {
    padding: 1.45rem;
  }

  .campaign-page-summary {
    flex-direction: column;
    align-items: start;
  }

  .campaign-page-summary-action {
    width: 100%;
  }

  .campaign-page-card-head {
    flex-direction: column;
    align-items: start;
  }

  .campaign-page-conditions {
    padding: 1.25rem 1.15rem;
  }

  .campaign-terms-list {
    padding-left: 1.1rem;
  }

  .campaign-page-card-actions-aligned .button {
    width: 100%;
  }

  .faq-search-shell {
    flex-wrap: wrap;
    border-radius: 26px;
  }

  .faq-search-clear {
    width: 100%;
  }

  .campaign-note {
    text-align: left;
  }

  .interaction-hint {
    margin-bottom: 1.2rem;
    font-size: 0.96rem;
  }

  .partner-logo-strip {
    flex-direction: column;
    gap: 0.8rem;
  }

  .pricing-section .price-card {
    padding: 1.35rem;
  }

  .pricing-section .zone-chip {
    font-size: 0.86rem;
  }

  .zone-chip {
    max-width: 100%;
  }

  .zone-popover {
    align-items: flex-end;
    padding: 0.75rem;
  }

  .zone-popover-panel {
    width: 100%;
    max-height: 82vh;
    padding: 1.2rem 1rem 1rem;
    border-radius: 24px;
    overflow-y: auto;
  }

  .zone-photo {
    max-height: 12.5rem;
  }

  .zone-figures,
  .zone-figures[data-active-count="2"],
  .zone-figures[data-active-count="3"] {
    grid-template-columns: minmax(0, 1fr);
  }

.zone-figures[data-active-count="1"] .zone-figure.is-active,
.zone-figure.is-active {
  max-width: 15rem;
  margin: 0 auto;
}
}

.legal-page {
  padding-bottom: 4rem;
}

.legal-page-hero {
  gap: 1rem;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border: 1px solid rgba(34, 70, 108, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
}

.legal-page-grid {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.legal-sidebar,
.legal-card {
  border: 1px solid rgba(34, 70, 108, 0.1);
}

.legal-sidebar {
  align-self: start;
}

.legal-index {
  display: grid;
  gap: 0.55rem;
}

.legal-index a {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(144, 209, 205, 0.12);
  color: var(--navy);
  font-weight: 600;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.legal-index a:hover,
.legal-index a:focus-visible {
  transform: translateX(2px);
  background: rgba(144, 209, 205, 0.22);
}

.legal-content {
  display: grid;
  gap: 1rem;
}

.legal-card {
  padding: clamp(1.4rem, 2vw, 1.8rem);
}

.legal-card h2 {
  margin: 0 0 0.9rem;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.3;
  color: var(--navy);
}

.legal-card p,
.legal-card li {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.82;
}

.legal-card p {
  margin: 0.7rem 0 0;
}

.legal-list {
  margin: 0.85rem 0 0;
  padding-left: 1.2rem;
}

.legal-list li + li {
  margin-top: 0.35rem;
}

.legal-note {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-left: 4px solid var(--mint);
  border-radius: 0 16px 16px 0;
  background: rgba(144, 209, 205, 0.12);
  color: var(--navy);
  font-size: 0.98rem;
  line-height: 1.7;
}

@media (min-width: 980px) {
  .legal-page-grid {
    grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
    align-items: start;
  }

  .legal-sidebar {
    position: sticky;
    top: calc(var(--site-header-space, 0px) + 1.1rem);
  }
}

@media (max-width: 720px) {
  .legal-card p,
  .legal-card li {
    font-size: 0.98rem;
  }

  .legal-index a {
    padding: 0.8rem 0.9rem;
  }
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  pointer-events: none;
}

.cookie-banner-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: min(var(--shell-width), calc(100% - 1.2rem));
  margin: 0 auto 0.75rem;
  padding: 1rem 1.2rem;
  border-top: 1px solid rgba(34, 70, 108, 0.14);
  border-right: 1px solid rgba(34, 70, 108, 0.14);
  border-left: 1px solid rgba(34, 70, 108, 0.14);
  border-bottom: 1px solid rgba(34, 70, 108, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 -18px 42px rgba(12, 37, 86, 0.12);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.cookie-banner-copy {
  flex: 1;
  min-width: 0;
}

.cookie-banner-copy p {
  margin: 0;
  color: #2d8c9c;
  font-size: 0.99rem;
  line-height: 1.55;
}

.cookie-inline-link {
  color: #2d8c9c;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.cookie-banner-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
}

.cookie-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid #4ba7b0;
  border-radius: 0;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.cookie-action-button-secondary {
  background: #ffffff;
  color: #2d8c9c;
}

.cookie-action-button-primary {
  background: #4ba7b0;
  color: #ffffff;
}

.cookie-action-button:hover,
.cookie-action-button:focus-visible {
  border-color: #2d8c9c;
}

.cookie-action-button-primary:hover,
.cookie-action-button-primary:focus-visible {
  background: #2d8c9c;
  color: #ffffff;
}

.cookie-action-button-secondary:hover,
.cookie-action-button-secondary:focus-visible {
  background: rgba(75, 167, 176, 0.08);
  color: #2d8c9c;
}

.cookie-banner-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6f8e95;
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.cookie-banner-close:hover,
.cookie-banner-close:focus-visible {
  color: #2d8c9c;
  transform: scale(1.04);
}

.cookie-manage-button {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 69;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #2d8c9c;
  font: inherit;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
  opacity: 0.84;
  overflow: hidden;
}

.cookie-manage-button:hover,
.cookie-manage-button:focus-visible {
  transform: translateY(-2px);
  opacity: 1;
  filter: drop-shadow(0 10px 18px rgba(12, 37, 86, 0.14));
}

.cookie-manage-button svg {
  width: 1.36rem;
  height: 1.36rem;
  fill: currentColor;
}

.cookie-manage-icon {
  display: block;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cookie-settings-modal {
  position: fixed;
  inset: 0;
  z-index: 71;
}

.cookie-settings-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 37, 86, 0.4);
  backdrop-filter: blur(2px);
}

.cookie-settings-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(860px, calc(100% - 2rem));
  max-height: min(86vh, 780px);
  margin: 2.5rem auto;
  background: #ffffff;
  box-shadow: 0 28px 60px rgba(12, 37, 86, 0.25);
}

.cookie-settings-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.45rem 1.5rem 1rem;
  border-bottom: 1px solid rgba(34, 70, 108, 0.12);
}

.cookie-settings-header h2 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
  color: #111111;
}

.cookie-settings-text-close {
  margin-top: 0.55rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #3b5054;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
}

.cookie-settings-close {
  border: 0;
  background: transparent;
  color: #333333;
  font: inherit;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-settings-body {
  overflow-y: auto;
}

.cookie-settings-row {
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid rgba(34, 70, 108, 0.12);
}

.cookie-settings-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-settings-row-head h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 1.15rem;
  line-height: 1.25;
  color: #111111;
}

.cookie-settings-row p {
  margin: 1rem 0 0;
  max-width: 44rem;
  color: #222222;
  font-size: 0.98rem;
  line-height: 1.55;
}

.cookie-toggle {
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cookie-toggle-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 3.2rem;
  height: 1.8rem;
  padding: 0.18rem;
  border-radius: 999px;
  background: #a9a9a9;
  transition: background 0.18s ease;
}

.cookie-toggle-thumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.44rem;
  height: 1.44rem;
  border-radius: 50%;
  background: #ffffff;
  color: #777777;
  font-size: 1rem;
  line-height: 1;
  transform: translateX(0);
  transition:
    transform 0.18s ease,
    color 0.18s ease;
}

.cookie-toggle.is-active .cookie-toggle-track,
.cookie-toggle-essential .cookie-toggle-track {
  background: #8fcfd0;
}

.cookie-toggle.is-active .cookie-toggle-thumb,
.cookie-toggle-essential .cookie-toggle-thumb {
  transform: translateX(1.35rem);
  color: #4ba7b0;
}

.cookie-toggle-essential {
  cursor: not-allowed;
  opacity: 0.72;
}

.cookie-settings-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem 1.5rem;
}

.cookie-settings-save {
  min-width: 12.5rem;
  padding: 0.95rem 1.35rem;
  border: 0;
  background: #111111;
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
}

body.cookie-settings-open {
  overflow: hidden;
}

.launch-popup {
  position: fixed;
  inset: 0;
  z-index: 72;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.launch-popup[hidden] {
  display: none;
}

.launch-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 37, 86, 0.42);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.launch-popup-card {
  position: relative;
  z-index: 1;
  width: min(46rem, calc(100vw - 2rem));
  padding: 1rem 1rem 1.5rem;
  border: 1px solid rgba(144, 209, 205, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(144, 209, 205, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 250, 249, 0.96));
  box-shadow: 0 30px 70px rgba(12, 37, 86, 0.26);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
  text-align: center;
}

.launch-popup-media {
  display: block;
  margin: 0 0 1.2rem;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(232, 243, 247, 0.92);
}

.launch-popup-image {
  display: block;
  width: 100%;
  height: auto;
}

.launch-popup.is-visible .launch-popup-backdrop {
  opacity: 1;
}

.launch-popup.is-visible .launch-popup-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.launch-popup-close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(34, 70, 108, 0.08);
  color: var(--navy);
  font: inherit;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.launch-popup-eyebrow {
  margin: 0;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.launch-popup-card h2 {
  margin: 0.55rem 0 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
  color: var(--navy);
}

.launch-popup-copy {
  max-width: 32rem;
  margin: 0.9rem auto 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.launch-popup-countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.5rem 0 0;
}

.launch-popup-timebox {
  padding: 1rem 0.85rem;
  border: 1px solid rgba(34, 70, 108, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
}

.launch-popup-timebox strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1;
  color: var(--navy);
}

.launch-popup-timebox span {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-popup-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.launch-popup-actions .button {
  min-width: 15rem;
}

body.launch-popup-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .cookie-banner-card {
    width: min(var(--shell-width), calc(100% - 1rem));
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1rem;
  }

  .cookie-banner-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .cookie-settings-dialog {
    width: calc(100% - 1rem);
    max-height: calc(100vh - 1rem);
    margin: 0.5rem auto;
  }

  .launch-popup-card {
    width: min(40rem, calc(100vw - 1.2rem));
    padding: 0.9rem 0.9rem 1.35rem;
  }
}

@media (max-width: 640px) {
  .space-gallery-carousel {
    padding: 0.8rem;
    border-radius: 26px;
  }

  .space-gallery-controls {
    gap: 0.8rem;
  }

  .space-gallery-arrow {
    width: 2.8rem;
    height: 2.8rem;
  }

  .cookie-banner-copy p {
    font-size: 0.94rem;
  }

  .cookie-banner-actions {
    gap: 0.55rem;
  }

  .cookie-action-button {
    flex: 1 1 100%;
    width: 100%;
  }

  .cookie-banner-close {
    align-self: flex-end;
  }

  .cookie-manage-button {
    left: 0.75rem;
    bottom: 0.75rem;
    width: 2.7rem;
    height: 2.7rem;
  }

  .cookie-settings-header,
  .cookie-settings-row,
  .cookie-settings-footer {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .cookie-settings-row-head {
    align-items: start;
  }

  .cookie-settings-row-head h3 {
    font-size: 1.02rem;
  }

  .cookie-settings-row p {
    font-size: 0.93rem;
  }

  .cookie-settings-save {
    width: 100%;
  }

  .launch-popup {
    padding: 0.75rem;
  }

  .launch-popup-card {
    width: 100%;
    padding: 0.8rem 0.8rem 1.15rem;
    border-radius: 24px;
  }

  .launch-popup-media {
    margin-bottom: 1rem;
    border-radius: 18px;
  }

  .launch-popup-card h2 {
    font-size: clamp(1.7rem, 9vw, 2.3rem);
  }

  .launch-popup-copy {
    font-size: 0.98rem;
  }

  .launch-popup-countdown {
    gap: 0.55rem;
  }

  .launch-popup-timebox {
    padding: 0.8rem 0.55rem;
    border-radius: 18px;
  }

  .launch-popup-timebox strong {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .launch-popup-timebox span {
    font-size: 0.72rem;
  }

  .launch-popup-actions {
    flex-direction: column;
  }

  .launch-popup-actions .button {
    width: 100%;
    min-width: 0;
  }
}

.launch-popup {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.launch-popup-card {
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
}

@media (max-width: 640px) {
  .launch-popup {
    place-items: start center;
    padding: 0.65rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .launch-popup-card {
    max-height: none;
    overflow: visible;
    padding-bottom: max(1.15rem, env(safe-area-inset-bottom));
  }

  .launch-popup-media {
    max-height: none;
  }

  .launch-popup-image {
    width: 100%;
    height: auto;
  }
}
