:root {
  --teal: #007481;
  --teal-mid: #0097a8;
  --seafoam: #A5CDD1;
  --lime: #c5d333;
  --white: #ffffff;
  --text: #007481;
  --radius-btn: 53px;
  --radius-card: 30px;
  --radius-panel: 18px;
  --max: 1440px;
  --pad: 1.25rem;
  --font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

h1, h2, h3, p, ul, figure {
  margin: 0;
}

ul {
  padding: 0;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

sup {
  font-size: 0.55em;
  vertical-align: super;
  line-height: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 168px;
  min-height: 50px;
  padding: 0.7rem 1.75rem;
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.btn:link,
.btn:visited,
.btn:hover,
.btn:focus,
.btn:active {
  text-decoration: none;
}

@media (min-width: 768px) {
  .btn {
    min-width: 200px;
    min-height: 52px;
    padding: 0.45rem 2.25rem;
    font-size: 1.4rem;
  }
}

/* Color variants only — size/shape shared via .btn */
.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.btn-white:link,
.btn-white:visited,
.btn-white:focus,
.btn-white:active {
  color: var(--teal);
  background: var(--white);
  border-color: var(--white);
}

.btn-white:hover {
  color: var(--teal);
  background: var(--seafoam);
  border-color: var(--seafoam);
}

.btn-seafoam {
  background: var(--seafoam);
  color: var(--teal);
  border-color: var(--seafoam);
}

.btn-seafoam:link,
.btn-seafoam:visited,
.btn-seafoam:focus,
.btn-seafoam:active {
  color: var(--teal);
  background: var(--seafoam);
  border-color: var(--seafoam);
}

.btn-seafoam:hover {
  color: var(--teal);
  background: #f2f8f9;
  border-color: #f2f8f9;
}

.btn-outline {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.btn-outline:link,
.btn-outline:visited,
.btn-outline:focus,
.btn-outline:active {
  color: var(--teal);
  background: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  color: var(--teal);
  background: var(--seafoam);
  border-color: var(--seafoam);
}

.site-header {
  
  background: var(--teal-mid);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

/* FR coverage note — shared (header, hero, lifestyle) */
.legal-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  text-align: left;
  max-width: 40rem;
  width: 100%;
}

.legal-note-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin-top: 0.1rem;
}

.legal-note-text {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.35;
  font-weight: 400;
  text-align: left;
}

.legal-note--on-dark .legal-note-text {
  color: rgba(255, 255, 255, 0.95);
}

.legal-note--stacked {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
}

.legal-note--stacked .legal-note-icon {
  margin-top: 0;
}

.legal-note--stacked .legal-note-text {
  text-align: center;
}

.legal-note-text strong em {
  font-style: italic;
  font-weight: 700;
}

@media (min-width: 900px) {
  .legal-note-text {
    font-size: 0.95rem;
  }

  .legal-note-icon {
    width: 2rem;
    height: 2rem;
    font-size: 1.1rem;
  }
}

.logo img {
  width: 150px;
  height: auto;
}

@media (min-width: 768px) {
  .header-inner {
    min-height: 110px;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #007481 0%, #016271 100%);
  color: var(--white);
}

.hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  padding: 2.5rem 1.75rem 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.hero-copy h1 {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.16;
  max-width: 500px;
  width: 100%;
}

/* Mobile: "A spacer designed" / "for use on-the-go." */
.hero-br-desktop {
  display: none;
}

.hero-copy p {
  font-size: 1.2rem;
  line-height: 1.45;
  letter-spacing: 0.02em;
  max-width: 500px;
  width: 100%;
}

.hero-copy .legal-note {
  align-self: stretch;
  max-width: 34rem;
}

.hero-copy .legal-note-text {
  font-size: 0.72rem;
  line-height: 1.35;
  letter-spacing: normal;
  max-width: none;
  width: auto;
}

.hero-copy .btn {
  margin-top: 0.35rem;
}

@media (min-width: 900px) {
  .logo img {
    width: 220px;
  }

  :root {
    --pad: clamp(1rem, 4vw, 3.75rem);
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 3.25vw, 3.75rem);
  }

  /* Desktop: "A spacer" / "designed for" / "use on-the-go." */
  .hero-br-desktop {
    display: unset;
  }

  .hero-br-mobile {
    display: none;
  }

  .hero-copy p {
    font-size: 1.45rem;
  }

  .hero-copy .legal-note-text {
    font-size: 0.95rem;
  }

  .hero-media {
    max-height: none;
  }
  .hero {
    flex-direction: row;
    min-height: 645px;
  }

  .hero-media {
    flex: 1 1 57.5%;
    aspect-ratio: auto;
    min-height: 645px;
  }

  .hero-copy {
    flex: 1 1 42.5%;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 70px;
    gap: 1.5rem;
  }

  .hero-copy .btn {
    align-self: flex-start;
  }
}

.get-to-know {
  padding: 3rem 0 48px;
  background: var(--white);
  overflow: hidden;
}

.get-to-know-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.get-to-know-visual {
  order: 1;
}

.get-to-know-copy {
  order: 2;
  padding: 0 1.75rem;
}

.get-to-know-copy h2 {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.75rem;
  color: var(--teal);
  text-align: center;
}

.get-to-know-copy h2 em {
  font-style: italic;
}

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

.feature-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.feature-list img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.feature-list strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.3;
}

.feature-list span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: #4a6b70;
  line-height: 1.4;
}

.get-to-know-visual {
  width: 100%;
  margin: 0;
  padding: 0;
}

.get-to-know-visual img {
  width: 100%;
  max-width: none;
}

@media (min-width: 900px) {
  .get-to-know {
    padding: 4rem 0 3rem;
  }

  .get-to-know-grid {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    column-gap: clamp(0.75rem, 2vw, 1.75rem);
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .get-to-know-copy {
    order: 1;
    width: max-content;
    max-width: 100%;
    padding: 0 0 0 max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
    overflow: visible;
  }

  .get-to-know-copy h2 {
    text-align: left;
    font-size: clamp(2.35rem, 1.4vw + 1.5rem, 3rem);
    margin-bottom: 2.75rem;
    white-space: nowrap;
  }

  .feature-list strong {
    font-size: 1.6rem;
  }

  .feature-list span {
    font-size: 1.45rem;
    font-weight: 400;
  }

  .get-to-know-visual {
    order: 2;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .get-to-know-visual img {
    width: 100%;
    margin-right: 0;
  }

  .feature-list img {
    width: 49px;
    height: 49px;
  }
}

/* Mid desktop: allow title wrap if nowrap would overflow */
@media (min-width: 900px) and (max-width: 1100px) {
  .get-to-know-copy h2 {
    white-space: normal;
  }

  .get-to-know-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .get-to-know-copy {
    width: auto;
  }
}

.why-carry {
  background: var(--teal);
  color: var(--white);
  padding: 3rem 0 0.75rem;
}

.why-carry > .container {
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.why-carry-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-carry-copy h2 {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 1.25rem;
  text-align: center;
}

.why-carry-copy p {
  font-size: 1.2rem;
  line-height: 1.58;
  margin-bottom: 1rem;
  max-width: 34rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

.compare-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; 
}

.compare-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-card > img {
  width: 100%;
  height: auto;
  display: block;
  background: transparent;
}

.compare-label {
  margin: 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.25;
  color: var(--teal);
  padding: 0 0.5rem;
}

.compare-label strong {
  font-weight: 700;
}

.compare-caption {
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.35;
  padding: 0 0.5rem;
  color: var(--white);
  margin: 0;
}

@media (min-width: 900px) {
  .why-carry {
    padding: 4.5rem 0 20px;
  }

  .why-carry > .container {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .why-carry-grid {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .why-carry-copy {
    flex: 0 1 42%;
    padding-top: 0;
    text-align: left;
  }

  .why-carry-copy h2,
  .why-carry-copy p {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .why-carry-copy h2 {
    font-size: 2.8rem;
  }

  .why-carry-copy p {
    font-size: 1.45rem;
  }

  .compare-cards {
    flex: 1 1 58%;
    flex-direction: row;
    gap: 1.5rem; 
  }

  .compare-card {
    flex: 1;
  }
}

.benefits {
  background-color: var(--teal);
  color: var(--white);
  padding: 1.25rem 0 4rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.benefits-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 78%;
  width: auto;
  max-width: none;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
  object-position: left bottom;
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.benefits h2 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 2.5rem;
  padding-top: 0.25rem;
}

.benefits h2 em {
  font-style: italic;
}

.benefit-cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.5rem;
  width: 100%;
}

.benefit-card {
  background: var(--white);
  color: var(--teal);
  border-radius: var(--radius-card);
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.benefit-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.benefit-card p {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.23;
}

@media (min-width: 900px) {
  .benefits {
    padding: 1.5rem 0 5rem;
  }

  .benefits h2 {
    font-size: 2.8rem;
  }

  .benefit-card p {
    font-size: 1.875rem;
  }

  .benefits-bg {
    height: 82%;
  }

  .benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }

  .benefit-card {
    flex: unset;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
  }
}

.inhaler-cta {
  position: relative;
  background-color: var(--white);
  padding: 2rem 0 0;
  overflow-x: clip;
  overflow-y: visible;
}

.inhaler-cta-grid {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.inhaler-cta-copy {
  order: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0;
  width: 100%;
}

.inhaler-cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
}

.inhaler-cta-text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--teal);
  width: 100%;
}

.inhaler-cta-text > p {
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--teal);
  width: 100%;
  margin: 0;
}

.quiz-note {
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--teal);
  margin: 0;
}

.quiz-note a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
}

.inhaler-cta-visual {
  order: 2;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.5rem 0 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  box-sizing: border-box;
  min-height: 0;
}

.inhaler-cta-visual img {
  width: 280px; max-width: 86%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  border-radius: 50%;
}

.inhaler-cta-wave {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  margin-top: -7.5rem;
  line-height: 0;
  pointer-events: none;
}

.inhaler-cta-wave img {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
}

@media (min-width: 900px) {
  .inhaler-cta {
    padding: 4rem 0 4rem;
    /* Tall enough that a full-width wave isn't clipped at the left tip */
    min-height: max(980px, calc(100vw * 1729 / 2940 + 5rem));
    overflow-x: clip;
    overflow-y: visible;
  }

  .inhaler-cta-grid {
    position: relative;
    z-index: 2;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 48px;
    width: fit-content;
    max-width: min(1280px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
    /* Clear the rising right crest of the wave across viewports */
    padding: 1rem 24px max(26rem, calc(100vw * 1729 / 2940 * 0.52));
  }

  .inhaler-cta-visual {
    order: -1;
    flex: 0 0 auto;
    width: clamp(360px, 34vw, 490px);
    max-width: 490px;
    min-height: 0;
    margin: 0;
    padding: 0;
    align-self: auto;
    display: block;
  }

  .inhaler-cta-visual img {
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 50%;
  }

  .inhaler-cta-copy {
    order: 0;
    flex: 0 1 auto;
    width: min(560px, 46vw);
    max-width: 560px;
    text-align: right;
    align-items: flex-end;
    padding: 0;
    gap: 18px;
    align-self: auto;
  }

  .inhaler-cta-text {
    position: relative;
    z-index: 2;
    align-items: flex-end;
    max-width: none;
    background: rgba(255, 255, 255, 0.82);
    padding: 1rem 1.15rem;
    border-radius: 4px;
  }

  .inhaler-cta-text h2,
  .inhaler-cta-text > p,
  .quiz-note {
    text-align: right;
  }

  .inhaler-cta-text h2 {
    font-size: 2.75rem;
  }

  .inhaler-cta-text > p {
    font-size: 1.45rem;
  }

  .quiz-note {
    font-size: 1.45rem;
  }

  .inhaler-cta-copy .btn-quiz-cta {
    position: relative;
    z-index: 2;
    margin-bottom: 0.25rem;
  }

  /* Full-bleed wave; section min-height keeps the left tip from clipping */
  .inhaler-cta-wave {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    margin: 0;
    line-height: 0;
    pointer-events: none;
    overflow: visible;
  }

  .inhaler-cta-wave img {
    width: 100%;
    height: auto;
    display: block;
    object-position: left bottom;
    transform: none;
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  .inhaler-cta {
    min-height: max(860px, calc(100vw * 1729 / 2940 + 5rem));
  }

  .inhaler-cta-grid {
    gap: 36px;
    padding: 1rem 20px max(22rem, calc(100vw * 1729 / 2940 * 0.58));
    max-width: calc(100% - 32px);
  }

  .inhaler-cta-visual {
    width: min(36vw, 380px);
    max-width: 380px;
    margin: 0;
  }

  .inhaler-cta-copy {
    width: min(440px, 44vw);
    max-width: 440px;
    padding-bottom: 0;
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  .inhaler-cta-grid {
    padding-bottom: max(24rem, calc(100vw * 1729 / 2940 * 0.55));
  }
}

/* EN copy is shorter — less bottom clearance than FR */
@media (min-width: 900px) {
  html[lang="en"] .inhaler-cta {
    min-height: max(900px, calc(100vw * 1729 / 2940 + 4rem));
    padding-bottom: 3rem;
  }

  html[lang="en"] .inhaler-cta-grid {
    padding-bottom: max(20rem, calc(100vw * 1729 / 2940 * 0.42));
  }
}

@media (min-width: 900px) and (max-width: 1100px) {
  html[lang="en"] .inhaler-cta {
    min-height: max(780px, calc(100vw * 1729 / 2940 + 4rem));
  }

  html[lang="en"] .inhaler-cta-grid {
    padding-bottom: max(16rem, calc(100vw * 1729 / 2940 * 0.48));
  }
}

@media (min-width: 1101px) and (max-width: 1280px) {
  html[lang="en"] .inhaler-cta-grid {
    padding-bottom: max(18rem, calc(100vw * 1729 / 2940 * 0.45));
  }
}

.testimonials {
  padding: 2rem 0 3.5rem;
  background: var(--white);
}

.godo-mark {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.godo-mark img {
  width: 250px;
  height: auto;
}

/* FR asset has more canvas padding; scale up on desktop so the mark matches EN */
@media (min-width: 900px) {
  .godo-mark--fr img {
    width: 325px;
  }
}

.testimonials h2 {
  text-align: center;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 2rem;
}

.testimonial-carousel {
  width: 100%;
}

.testimonial-viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
}

@media (max-width: 899px) {
  .testimonial-viewport {
    cursor: grab;
  }

  .testimonial-viewport.is-dragging {
    cursor: grabbing;
  }
}

.testimonial-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
}

.testimonial-card {
  background: var(--seafoam);
  border-radius: 36px;
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--teal);
  flex: 0 0 100%;
  box-sizing: border-box;
  min-width: 0;
}

.testimonial-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.35;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.testimonial-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--teal);
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.testimonial-dot.is-active {
  background: var(--teal);
}

.testimonial-dot:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

@media (min-width: 900px) {
  .testimonials {
    padding: 3rem 0 4rem;
  }

  .testimonials h2 {
    font-size: 3.375rem;
  }

  .testimonial-card h3 {
    font-size: 2.5rem;
  }

  .testimonial-card p {
    font-size: 1.5rem;
  }

  .testimonial-viewport {
    overflow: visible;
  }

  .testimonial-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    transform: none !important;
    transition: none;
    will-change: auto;
  }

  .testimonial-card {
    flex: unset;
    min-height: 420px;
    padding: 2.5rem 1.75rem;
  }

  .testimonial-dots {
    display: none;
  }
}

.lifestyle-cta {
  padding: 1rem 0 1rem;
  overflow: visible;
}

.lifestyle-cta-inner {
  margin: 0 24px;
  background-color: var(--teal);
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1.25rem 0;
  gap: 0.75rem;
  position: relative;
}

.lifestyle-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left bottom;
  z-index: 0;
  pointer-events: none;
  border-radius: 36px;
}

.lifestyle-cta-bg-desktop {
  display: none;
}

.lifestyle-cta-bg-mobile {
  display: block;
}

.lifestyle-cta-copy {
  order: 1;
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 0 0.5rem;
}

.lifestyle-cta-copy h2 {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.16;
}

.lifestyle-cta-copy em {
  font-style: italic;
}

.lifestyle-cta-copy .legal-note {
  align-self: center;
  max-width: 34rem;
}

.lifestyle-cta-photo {
  order: 2;
  position: relative;
  z-index: 1;
  width: min(90%, 360px);
  margin: 0;
  line-height: 0;
  align-self: center;
}

.lifestyle-cta-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}

@media (min-width: 900px) {
  .lifestyle-cta {
    padding: 3.5rem 0 3.5rem;
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  .lifestyle-cta-inner {
    margin: 0 60px;
    width: calc(100% - 120px);
    max-width: calc(var(--max) - 120px);
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-end;
    min-height: 340px;
    padding: 0 3rem 0 0;
    gap: 0;
    overflow: visible;
  }

  .lifestyle-cta-bg-mobile {
    display: none;
  }

  .lifestyle-cta-bg-desktop {
    display: block;
    object-position: left center;
  }

  .lifestyle-cta-photo {
    order: 0;
    position: absolute;
    left: 1.5rem;
    bottom: 0;
    width: clamp(280px, 34%, 400px);
    height: auto;
    max-height: none;
    display: block;
    z-index: 1;
    overflow: visible;
  }

  .lifestyle-cta-photo img {
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    object-fit: contain;
    object-position: bottom center;
  }

  .lifestyle-cta-copy {
    order: 0;
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    width: 52%;
    max-width: none;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem 2.5rem 0;
    align-self: center;
    margin-left: auto;
  }

  .lifestyle-cta-copy h2 {
    font-size: 2.5rem;
  }
}

.product-family {
  background: var(--seafoam);
  padding: 0 0 3rem;
}

.product-family-desktop {
  display: none;
}

.product-family-mobile {
  display: block;
  background: var(--seafoam);
}

.product-family-mobile img {
  width: 100%;
  display: block;
}

@media (min-width: 900px) {
  .product-family {
    padding: 0 0 3.5rem;
    background: var(--seafoam);
  }

  .product-family-mobile {
    display: none;
  }

  .product-family-desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background: var(--seafoam);
  }

  .family-header {
    width: 100%;
    max-width: none;
  }

  .family-products {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
  }
}

.where-to-buy {
  padding: 2.5rem 0 0;
  background: var(--white);
}

.where-to-buy-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.where-to-buy h2 {
  text-align: center;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--teal);
  width: 100%;
  margin: 0;
}

.where-intro {
  margin: 0;
  max-width: 40rem;
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--teal);
}

.where-buy-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.where-buy-card {
  background: transparent;
  border-radius: 0;
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  text-align: center;
}

.where-buy-lead {
  margin: 0;
  font-size: clamp(0.95rem, 3.6vw, 1.1rem);
  font-weight: 400;
  line-height: 1.35;
  color: #4a6b70;
  max-width: none;
  width: 100%;
  padding: 0 0.25rem;
}

.where-buy-lead strong {
  font-weight: 700;
  color: #4a6b70;
}

.where-buy-line {
  white-space: nowrap;
}

/* FR (and any) responsive breaks for long Where to Buy lines */
.where-br-desktop {
  display: none;
}

@media (min-width: 900px) {
  .where-br-desktop {
    display: unset;
  }

  .where-br-mobile {
    display: none;
  }
}

/* Matching circle badges for Amazon + storefront */
.where-buy-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  padding: 1.25rem;
  box-sizing: border-box;
  background: var(--teal);
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
}

.where-buy-badge img {
  width: 100%;
  max-width: 150px;
  height: auto;
  display: block;
  object-fit: contain;
}

.where-buy-otc .where-buy-badge {
  padding: 1.5rem;
}

.where-buy-otc .where-buy-badge img {
  width: 100%;
  max-width: 130px;
  height: auto;
  object-fit: contain;
}

@media (min-width: 900px) {
  .where-buy-otc .where-buy-badge {
    padding: 1.65rem;
  }

  .where-buy-otc .where-buy-badge img {
    max-width: 140px;
  }
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}

.btn-teal:hover {
  background: var(--teal-mid);
  border-color: var(--teal-mid);
  color: var(--white);
}

.where-disclaimer {
  width: 100%;
  background: var(--teal);
  color: var(--white);
  padding: 2rem 0;
  margin-top: 2.5rem;
}

.where-disclaimer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.where-disclaimer p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
}

.where-disclaimer-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal);
  font-weight: 700;
  font-size: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.where-distributed {
  background: var(--white);
  padding: 1.75rem 0 2.25rem;
}

.where-distributed-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1.25rem;
}

.where-distributed-inner p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #1a1a1a;
}

.where-distributed-inner img {
  width: min(100%, 260px);
  height: auto;
  display: block;
}

@media (min-width: 900px) {
  .where-to-buy {
    padding: 4rem 0 0;
  }

  .where-to-buy h2 {
    font-size: 2.8rem;
  }

  .where-buy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 780px;
  }

  .where-intro {
    font-size: 1.45rem;
    line-height: 1.35;
    max-width: 44rem;
  }

  .where-buy-lead {
    font-size: 1.25rem;
    line-height: 1.4;
    max-width: 22rem;
    width: auto;
    padding: 0;
  }

  .where-buy-line {
    white-space: nowrap;
  }

  .where-buy-badge {
    width: 220px;
    height: 220px;
  }

  .where-buy-badge img {
    max-width: 160px;
  }

  .where-disclaimer {
    margin-top: 3rem;
    padding: 2.5rem 0;
  }

  .where-disclaimer-inner {
    flex-direction: row;
    align-items: center;
    gap: 1.35rem;
    text-align: left;
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
  }

  .where-disclaimer p {
    font-size: 1.25rem;
    text-align: left;
  }

  .where-disclaimer-icon {
    width: 6.5rem;
    height: 6.5rem;
    font-size: 3.4rem;
  }

  .where-distributed {
    padding: 2rem 0 2.5rem;
  }
}

.did-you-know-section {
  background: var(--white);
  padding: 2rem 0 0.5rem;
}

.did-you-know {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  background: var(--seafoam);
  /* Mobile: softer rectangle; desktop uses asymmetric pill */
  border-radius: 28px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-sizing: border-box;
  overflow: visible;
}

.did-you-know-stat {
  position: relative;
  width: 150px;
  height: 155px;
  flex-shrink: 0;
  overflow: visible;
}

.did-you-know-stat-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 138px;
  height: 138px;
  margin: 0;
  display: block;
  transform: translate(-50%, -50%) rotate(7.26deg);
  pointer-events: none;
}

.did-you-know-stat-fill {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112px;
  height: 112px;
  margin: 0;
  border-radius: 50%;
  background: #dde18f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  line-height: 1;
  transform: translate(-50%, -50%);
}

.did-you-know-stat-num {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Right edge sits in the ring gap (Figma: left 50%+offset, translateX -100%) */
.did-you-know-stat-pct {
  position: absolute;
  left: calc(50% + 49%);
  top: calc(50% - 24%);
  transform: translateX(-100%);
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.16;
  z-index: 1;
}

.did-you-know-divider {
  display: none;
  width: 5px;
  height: 5.5rem;
  align-self: center;
  background: var(--teal);
  flex-shrink: 0;
  border-radius: 999px;
}

.did-you-know-copy {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.did-you-know-heading {
  margin: 0;
  color: var(--teal);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}

.did-you-know-text {
  margin: 0;
  color: var(--teal);
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 400;
}

@media (min-width: 900px) {
  .did-you-know-section {
    padding: 2.5rem 0 0.75rem;
  }

  .did-you-know {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 3rem;
    /* Figma: fully round left (circle end), softer right */
    border-radius: 140px 32px 32px 140px;
    padding: 0.75rem 2.5rem 0.75rem 0.75rem;
    text-align: left;
  }

  .did-you-know-stat {
    width: 187px;
    height: 193px;
  }

  .did-you-know-stat-ring {
    width: 182px;
    height: 182px;
  }

  .did-you-know-stat-fill {
    width: 148px;
    height: 148px;
  }

  .did-you-know-stat-num {
    font-size: 4.4rem;
  }

  .did-you-know-stat-pct {
    left: calc(50% + 91.5px);
    top: calc(50% - 44.5px);
    font-size: 2.85rem;
  }

  .did-you-know-divider {
    display: block;
    width: 5px;
    height: 6.5rem;
    align-self: center;
  }

  .did-you-know-heading {
    font-size: 2.5rem;
    line-height: 1.15;
  }

  .did-you-know-text {
    font-size: 1.75rem;
    line-height: 1.35;
  }
}

.how-it-works {
  background: var(--white);
  padding: 2.5rem 0 3rem;
}

.how-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 0;
}

.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 320px;
  margin: 0;
}

.how-step img {
  width: 100%;
  height: auto;
  display: block;
}

.how-step-badge {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 0.5rem 2rem;
  border-radius: var(--radius-btn);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}

@media (min-width: 900px) {
  .how-it-works {
    padding: 3.5rem 0 4.5rem;
  }

  .how-steps {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .how-step {
    flex: 1 1 0;
    max-width: none;
  }

  .how-step-badge {
    font-size: 1.375rem;
    padding: 0.55rem 2rem;
  }
}

.site-footer {
  background: var(--teal-mid);
  color: var(--white);
  padding: 2.5rem 0 3rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  justify-content: center;
  width: 100%;
}

.footer-brand img {
  width: min(100%, 280px);
  height: auto;
}

.footer-refs {
  width: 100%;
}

.footer-refs p {
  font-size: 0.7rem;
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.footer-lang {
  width: 100%;
  margin-top: 1.75rem;
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.footer-lang a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer-lang a:hover {
  opacity: 0.85;
}

.footer-lang a[aria-current="page"] {
  font-weight: 700;
  text-decoration: none;
  pointer-events: none;
}

.footer-lang .footer-lang-sep {
  margin: 0 0.4rem;
  opacity: 0.75;
}

@media (min-width: 900px) {
  .footer-grid {
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
  }

  .footer-brand {
    flex: 0 0 28%;
    justify-content: flex-start;
    width: auto;
  }

  .footer-refs {
    flex: 1 1 34%;
  }

  .footer-refs p {
    font-size: 0.6875rem;
    line-height: 1.55;
  }
}
