/**
 * Landing Page - Desktop Styles (1728px)
 * Layout and positioning for desktop screens
 */

/* ==========================================================================
   Page Layout
   ========================================================================== */

.landing {
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-bg-end);
  overflow-x: hidden;
  position: relative;
}

.landing__section {
  position: relative;
  width: 100%;
}

.landing__section--constrained {
  max-width: var(--page-max-width);
  margin: 0 auto;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  position: absolute;
  top: 41px;
  left: var(--section-padding-x);
  right: var(--section-padding-x);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  width: 116px;
  height: 25px;
}

/* Language Switcher - Header */
.header__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 24px;
}

.header__lang-link {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 300;
  color: #666;
  text-decoration: none;
  transition: color var(--transition-fast);
  padding: 2px 4px;
}

.header__lang-link:hover {
  color: #333;
}

.header__lang-link--active {
  font-weight: 500;
  color: #333;
}

.header__lang-separator {
  font-size: 18px;
  color: #999;
  user-select: none;
}

/* ==========================================================================
   Section: Hero
   ========================================================================== */

.hero {
  width: 100%;
  height: 1117px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 11%, var(--color-bg-end) 92%);
}

.hero__badge {
  position: absolute;
  top: 281px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}

.hero__badge-text {
  font-size: var(--font-size-h1);
  font-variation-settings: 'wdth' 59;
}

.hero__badge-text--bold {
  font-weight: var(--font-weight-extrabold);
}

.hero__badge-text--light {
  font-weight: var(--font-weight-medium);
}

.hero__title {
  position: absolute;
  top: 328px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}

.hero__description {
  position: absolute;
  top: 469px;
  left: 50%;
  transform: translateX(-50%);
  width: 727px;
  padding: 20px 28px;
}

.hero__description-text {
  font-size: var(--font-size-h2);
  color: var(--color-text-gray);
  font-variation-settings: 'wdth' 59;
  line-height: 1.5;
  text-align: center;
}

.hero__description-text--bold {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-extrabold);
}

/* Hero content wrapper */
.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
}

/* Frame around hero content - SVG border */
.hero__frame {
  position: absolute;
  top: 231px;
  left: 50%;
  transform: translateX(-50%);
  width: 1034px;
  height: 602px;
  pointer-events: none;
  z-index: 0;
}

.hero__frame img {
  width: 100%;
  height: 100%;
}

.hero__cta {
  position: absolute;
  top: 651px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  z-index: 10; /* Above the pink/purple circles */
}

.hero__tagline {
  position: absolute;
  top: 732px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--font-size-caption);
  color: var(--color-text-black);
  text-align: center;
  white-space: nowrap;
}

/* Hero Decorative Shapes */
.hero__shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: visible;
}

.shape {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Shape positions calculated from 1728px design center (864px) */
/* Shapes 1, 2, 3, 4 overlap the frame - need higher z-index */

.shape--hexagon-blue {
  width: 290px;
  height: 290px;
  top: 90px;
  left: calc(50% - 630px); /* Moved 10px left */
  transform: rotate(-15deg);
  background-image: url('../shapes/shape-hexagon-blue.svg');
  z-index: 15; /* Above content */
}

.shape--triangle-blue {
  width: 189px;
  height: 189px;
  top: 544px;
  left: calc(50% + 268px); /* 1132 - 864 = 268px right of center */
  transform: rotate(10deg);
  background-image: url('../shapes/shape-triangle-blue.svg');
  z-index: 15; /* Above content */
}

.shape--triangle-green {
  width: 400px;
  height: 400px;
  top: 417px;
  left: calc(50% - 994px); /* 864 - (-130) = 994px left of center */
  transform: rotate(-12deg);
  background-image: url('../shapes/shape-triangle-green.svg');
  z-index: 15; /* Above content */
}

.shape--rectangle-peach {
  width: 381px;
  height: 381px;
  top: 611px;
  left: calc(50% + 578px); /* 1442 - 864 = 578px right of center */
  transform: rotate(-90deg);
  background-image: url('../shapes/shape-rectangle-peach.svg');
  z-index: 15; /* Above content */
}

.shape--circle-yellow {
  width: 235px;
  height: 235px;
  top: 175px;
  left: calc(50% + 440px); /* Moved left to overlap "more." */
  background-image: url('../shapes/shape-circle-yellow.svg');
  z-index: 15; /* Above content */
}

.shape--circle-pink {
  width: 105px;
  height: 105px;
  top: 580px;
  left: calc(50% - 420px); /* At corner of description card */
  background-image: url('../shapes/shape-circle-pink.svg');
  z-index: 15; /* Above content */
}

.shape--circle-purple {
  width: 143px;
  height: 143px;
  top: 640px;
  left: calc(50% - 345px); /* 864 - 539 = 325px left of center */
  background-image: url('../shapes/shape-circle-purple.svg');
  z-index: 5; /* Behind the button */
}

.shape--star {
  width: 18px;
  height: 18px;
  background-image: url('../shapes/shape-star.svg');
}

/* ==========================================================================
   Section: Problem
   ========================================================================== */

.problem {
  width: 100%;
  min-height: 730px;
  position: relative;
  background-color: var(--color-bg-end);
  overflow: hidden;
  padding: 58px var(--section-padding-x) 140px;
  display: flex;
  flex-direction: column;
}

/* Decorative pink hexagon */
.problem__shape {
  position: absolute;
  width: 327px;
  height: 327px;
  top: 72px;
  left: -58px;
  transform: rotate(-79deg);
  background-image: url('../shapes/shape-hexagon-pink.svg');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0; /* Behind text content */
}

/* Container for title and question row */
.problem__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto 60px;
  width: 100%;
  position: relative;
  z-index: 1; /* Above decorative shape */
}

.problem__title {
  font-size: 64px;
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wdth' 95;
  line-height: 1.2;
  max-width: 665px;
  flex-shrink: 1;
  min-width: 0;
}

.problem__question {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  text-align: right;
  max-width: 504px;
  flex-shrink: 1;
  min-width: 280px;
}

/* Container for cards row */
.problem__cards {
  display: flex;
  justify-content: center;
  align-items: center; /* Vertically center the highlight card */
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto 40px;
  width: 100%;
  position: relative;
  z-index: 1; /* Above decorative shape */
}

.problem__card {
  width: 866px;
  max-width: 60%;
  min-height: 200px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  flex-shrink: 1;
}

.problem__card-text {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium); /* Match .text-h2 styling */
  font-variation-settings: 'wdth' 59;
  line-height: 1.4; /* Match .text-h2 line-height */
  color: var(--color-text-gray);
}

.problem__highlight-card {
  width: 364px;
  max-width: 35%;
  min-height: 165px;
  padding: 33px 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.problem__highlight-text {
  font-size: 24px; /* Slightly smaller than left box for compact card */
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  line-height: 1.2; /* Tighter line spacing for compact card */
  color: var(--color-text-gray);
}

/* Override text styles inside highlight card for smaller, tighter text */
.problem__highlight-text .text-h2,
.problem__highlight-text .text-h2--bold {
  font-size: inherit; /* Use parent's 24px instead of 28px */
  line-height: inherit; /* Use parent's 1.2 line-height */
}

.problem__stat {
  max-width: 1191px;
  width: 100%;
  margin: 0 auto;
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  text-align: center;
  line-height: 1.3;
  position: relative;
  z-index: 1; /* Above decorative shape */
}

/* ==========================================================================
   Section: Solution
   ========================================================================== */

.solution {
  width: 100%;
  height: 604px;
  position: relative;
  background-color: #151515;
  overflow: hidden;
}

.solution__shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: visible;
}

.shape--hexagon-pink-dark {
  width: 327px;
  height: 327px;
  top: 62px;
  left: calc(50% - 830px);
  transform: rotate(-79deg);
  background-image: url('../shapes/shape-hexagon-pink.svg');
  opacity: 0.6;
}

.shape--triangle-blue-dark {
  width: 416px;
  height: 416px;
  top: 54px;
  left: calc(50% + 480px);
  transform: rotate(10deg);
  background-image: url('../shapes/shape-triangle-teal.svg');
}

.shape--circle-magenta {
  width: 104px;
  height: 104px;
  top: 335px;
  left: calc(50% + 630px);
  background-image: url('../shapes/shape-circle-magenta.svg');
}

.solution__title {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  font-size: 52px;
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wdth' 95;
  line-height: 1.25;
  color: #e3e3e3;
  text-align: center;
}

.solution__card {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translateX(-50%);
  width: 1004px;
  height: 133px;
  background-color: #2f2f2f;
  border: 1.5px solid #5d5d5d;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 106px;
}

.solution__card-text {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: #a4a4a4;
  text-align: center;
  line-height: 1.4;
}

.solution__card-text--bold {
  color: #ffffff;
  font-weight: var(--font-weight-extrabold);
}

.solution__subtitle {
  position: absolute;
  top: 435px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: #a4a4a4;
  text-align: center;
  white-space: nowrap;
}

.solution__subtitle--bold {
  color: #ffffff;
  font-weight: var(--font-weight-extrabold);
}

/* ==========================================================================
   Section: Branding
   ========================================================================== */

.branding {
  width: 100%;
  height: 950px; /* Increased from 800px - 1.5x more space below star */
  position: relative;
  background-color: #151515;
  overflow: hidden;
}

.branding__star {
  position: absolute;
  top: 230px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
}

.branding__title {
  position: absolute;
  top: 306px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 128px;
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  line-height: 1.1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

.branding__subtitle {
  position: absolute;
  top: 446px;
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: #ffffff;
  text-align: center;
}

.branding__star-small {
  position: absolute;
  top: 530px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
}

/* Branding title letter animation */
.branding__letter {
  display: inline-block;
  transition: font-family 0.05s, font-weight 0.05s;
}

.branding__letter--settled {
  font-family: 'Roboto Flex', sans-serif;
  font-weight: 400;
  font-variation-settings: 'wdth' 59;
  transition: all 0.3s ease-out;
}

/* ==========================================================================
   Section: What Is It
   ========================================================================== */

.what-is-it {
  width: 100%;
  min-height: 700px;
  height: auto;
  position: relative;
  background-color: #ffffff;
  overflow: visible;
  padding-bottom: 60px;
}

.what-is-it__header {
  text-align: center;
  padding-top: 175px;
  margin-bottom: 48px;
}

.what-is-it__badge {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-dark);
  margin-bottom: 0;
}

.what-is-it__badge-light {
  font-weight: var(--font-weight-medium);
}

.what-is-it__title {
  font-size: 96px;
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wdth' 95;
  color: var(--color-text-dark);
  margin-top: 0;
}

.what-is-it__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.what-is-it__cards {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
}

.what-is-it__card {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px 48px;
  min-height: 203px; /* Changed to min-height so cards can grow taller */
  height: auto;
  display: flex;
  align-items: center;
}

.what-is-it__card--light {
  background-color: var(--color-card-dark);
  /* Dynamic width: scales with viewport, min 280px, max 560px */
  /* Formula: available space = 100vw - phone(316px) - right(115px) - margins(200px), then /2 for each card */
  width: clamp(280px, calc((100vw - 316px - 250px - 200px) / 2 - 12px), 560px);
}

.what-is-it__card--dark {
  background-color: var(--color-card-very-dark);
  border-color: var(--color-border-dark);
  /* Dynamic width: scales with viewport, min 280px, max 560px */
  /* Formula: available space = 100vw - phone(316px) - right(115px) - margins(200px), then /2 for each card */
  width: clamp(280px, calc((100vw - 316px - 250px - 200px) / 2 - 12px), 560px);
}

.what-is-it__card-text {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  line-height: 1.4;
  color: var(--color-text-gray);
  max-width: 100%;
}

.what-is-it__card--light .what-is-it__card-text--bold {
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-dark);
}

.what-is-it__card--dark .what-is-it__card-text {
  color: var(--color-text-light-gray);
}

.what-is-it__card--dark .what-is-it__card-text--bold {
  font-weight: var(--font-weight-extrabold);
  color: #ffffff;
}

.what-is-it__mockup {
  position: absolute;
  right: 115px;
  top: 180px; /* Moved down */
  width: 316px;
  height: 638px;
  overflow: hidden;
  border-radius: 40px;
  background: transparent;
  filter: drop-shadow(11px 9px 13.1px rgba(0, 0, 0, 0.25));
  z-index: 10;
}

.what-is-it__mockup-image {
  position: absolute;
  width: 498.35%;
  height: 164.78%;
  left: -141.15%;
  top: -39.43%;
  max-width: none;
}

/* Decorative ellipse for What Is It section */
.what-is-it__shape {
  position: absolute;
  width: 167px;
  height: 167px;
  top: 134px; /* Moved down with phone */
  right: 23px;
  z-index: 15;
}

/* ==========================================================================
   Gradient Wrapper (Best Fit to Want to see if)
   ========================================================================== */

.gradient-wrapper {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #e3e3e3 100%);
}

.gradient-wrapper--contact {
  width: 100%;
  position: relative;
  background: linear-gradient(180deg, #e3e3e3 0%, #ffffff 100%);
}

/* ==========================================================================
   Section: Details (Best Fit, What You Get, How It Works, Features)
   ========================================================================== */

.details {
  width: 100%;
  position: relative;
  background: transparent;
  padding: 66px 124px 100px;
  overflow: hidden;
}

/* Decorative shapes for details section */
.details__shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: visible;
}

/* Decorative polygon - top left of What you get (green triangle) */
.details__shape--polygon-green {
  position: absolute;
  width: 296px;
  height: 267px;
  top: 670px;
  left: calc(50% - 630px);
  transform: rotate(-12deg);
  z-index: 0;
}

/* Decorative polygon - right side (peach rectangle) */
.details__shape--polygon-peach {
  position: absolute;
  width: 410px;
  height: 410px;
  top: 290px;
  left: calc(50% + 270px);
  transform: rotate(-90deg);
  z-index: 0;
}

/* Decorative circle - near How it works (purple ellipse) */
.details__shape--ellipse-pink {
  position: absolute;
  width: 167px;
  height: 167px;
  top: 1120px;
  left: calc(50% - 530px);
  z-index: 15;
}

/* Decorative circle - near What you get (pink/magenta ellipse) */
.details__shape--ellipse-blue {
  position: absolute;
  width: 135px;
  height: 135px;
  top: 930px;
  left: calc(50% + 370px);
  z-index: 0;
}

/* Decorative triangle - near Key Features (blue triangle) */
.details__shape--triangle-blue {
  position: absolute;
  width: 353px;
  height: 307px;
  top: 1750px;
  left: calc(50% + 350px);
  transform: rotate(10deg);
  z-index: 15;
}

.details__section {
  margin-bottom: 49px;
  max-width: 876px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.details__section:last-of-type {
  margin-bottom: 0;
}

.details__title {
  font-size: 64px;
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wdth' 60;
  color: var(--color-text-dark);
  margin-bottom: 42px;
}

.details__card {
  background-color: var(--color-card-dark);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 35px 48px;
  width: 100%;
  min-height: 246px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details__card-text {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  line-height: 1.5;
  color: var(--color-text-gray);
}

.details__card-text--bold {
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-dark);
}

/* What You Get - Grid */
.details__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 31px;
  width: 100%;
}

.details__grid-card {
  background-color: var(--color-card-dark);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 9px 10px 20px 0px rgba(80, 80, 80, 0.18);
}

.details__grid-card .details__card-text {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  line-height: 1.4;
  color: var(--color-text-dark);
  text-align: center;
}

.details__grid-card .details__card-text--light {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-gray);
}

/* How It Works */
.how-it-works__container {
  position: relative;
  width: 100%;
}

/* Decorative circle inside container - hidden on desktop, shown on mobile */
.how-it-works__shape-circle {
  display: none;
}

.how-it-works__progress {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 47px;
  height: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
}

.how-it-works__progress-track {
  width: 47px;
  height: 125px;
  background-color: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: 65px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 6px;
  cursor: pointer;
}

/* Progress Indicators */
.how-it-works__progress-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--color-border);
  box-shadow: 9px 10px 30.3px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}

.how-it-works__progress-indicator--active {
  height: 42px;
  background-color: #9452ff;
  border-radius: 65px;
}

/* Slides Container */
.how-it-works__slides {
  position: relative;
  width: 100%;
  height: 246px;
  overflow: hidden;
}

.how-it-works__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.how-it-works__slide--active {
  opacity: 1;
  visibility: visible;
}

.how-it-works__card {
  background-color: var(--color-card-dark);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  width: 100%;
  height: 246px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 48px;
  position: relative;
  overflow: hidden;
}

.how-it-works__content {
  position: absolute;
  left: 65px;
  top: 49px;
  width: 345px;
}

.how-it-works__content--centered {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  text-align: center;
}

.how-it-works__step-title {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-dark);
  line-height: 1;
  margin: 0 0 4px 0;
}

.how-it-works__step-subtitle {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-gray);
  line-height: 1;
  margin: 0;
}

/* Mockup Container Base */
.how-it-works__mockup {
  width: 276px;
  height: 221px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  position: absolute;
  right: 21px;
  bottom: 0;
}

.how-it-works__mockup-image {
  position: absolute;
  max-width: none;
}

/* Step 1: Start the dialogue - shows banner */
.how-it-works__mockup--step1 {
  height: 221px;
}

.how-it-works__mockup--step1 .how-it-works__mockup-image {
  width: 498.35%;
  height: 414.86%;
  left: -141.15%;
  top: -99.28%;
}

/* Step 2: Ask questions - shows usage questions */
.how-it-works__mockup--step2 {
  height: 246px;
}

.how-it-works__mockup--step2 .how-it-works__mockup-image {
  width: 498.35%;
  height: 372.7%;
  left: -141.15%;
  top: -195%;
}

/* Step 3: Show shortlist - cropped phone mockup at bottom-right */
.how-it-works__mockup--step3 {
  height: 232px;
  overflow: visible;
}

.how-it-works__mockup--step3 .how-it-works__mockup-image {
  width: 276px;
  height: auto;
  max-height: none;
  left: auto;
  right: 0;
  top: -12px;
  bottom: auto;
  transform: none;
}

/* Step 4: Convert with smart offers - centered text with shapes */
.how-it-works__card--step4 {
  justify-content: center;
  align-items: center;
}

.how-it-works__shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.how-it-works__shape {
  position: absolute;
}

/* Hexagon - bottom left, extends below card */
.how-it-works__shape--hexagon {
  width: 202px;
  height: 202px;
  left: 56px;
  bottom: -80px; /* Extends below the card */
  transform: rotate(15deg);
}

/* Star - top right area */
.how-it-works__shape--star {
  width: 118px;
  height: 122px;
  top: 23px;
  left: 666px;
}

/* Circle - right side, partially behind star */
.how-it-works__shape--circle {
  width: 81px;
  height: 81px;
  top: 84px;
  left: 744px;
}

/* Mobile navigation buttons - hidden on desktop */
.how-it-works__nav--mobile {
  display: none;
}

.details__note {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-dark);
  margin-top: 21px;
  margin-left: 28px;
}

.details__note-light {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-gray);
}

/* Features List */
.details__features {
  background-color: var(--color-card-dark);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 35px 48px;
  width: 100%;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.details__features-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.details__features-item {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  line-height: 2;
  color: var(--color-text-dark);
  margin-bottom: 0;
}

.details__features-item:last-child {
  margin-bottom: 0;
}

.details__features-item--light {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-gray);
}

/* CTA in Details */
.details__cta {
  text-align: center;
  margin-top: 49px;
  padding: 0 0 40px 0;
  max-width: 876px;
  margin-left: auto;
  margin-right: auto;
}

.details__cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}

.details__cta-tagline {
  font-size: var(--font-size-caption);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-black);
}

/* ==========================================================================
   Section: Q&A
   ========================================================================== */

.qa {
  width: 100%;
  position: relative;
  background: transparent;
  padding: 0 124px 60px;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center children horizontally */
}

/* Decorative shapes container for Q&A */
.qa__shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: visible;
}

.qa__shape--purple {
  position: absolute;
  width: 283px;
  height: 283px;
  top: 210px;
  left: calc(50% - 640px);
  transform: rotate(-45deg);
  z-index: 15;
}

.qa__shape--pink {
  position: absolute;
  width: 283px;
  height: 283px;
  top: 110px;
  left: calc(50% + 290px);
  transform: rotate(-45deg);
  z-index: 0;
}

.qa__shape--green {
  position: absolute;
  width: 283px;
  height: 283px;
  top: 480px;
  left: calc(50% - 580px);
  transform: rotate(-45deg);
  z-index: 0;
}

.qa__shape--blue {
  position: absolute;
  width: 283px;
  height: 283px;
  top: 330px;
  left: calc(50% + 260px);
  transform: rotate(-45deg);
  z-index: 15;
}

.qa__title {
  font-size: 96px;
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wdth' 95;
  color: var(--color-text-dark);
  text-align: center;
  margin: 0 0 40px 0;
  padding: 0;
  position: relative;
  z-index: 1;
  white-space: nowrap; /* Keep title on one line */
}

.qa__card {
  width: 876px;
  max-width: 100%;
  margin: 0 auto;
  background-color: var(--color-card-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 40px 48px;
  box-shadow: 9px 19px 27.1px 0px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
}

.qa__list {
  margin: 0;
}

.qa__item {
  margin-bottom: 8px;
}

.qa__item:last-child {
  margin-bottom: 0;
}

.qa__question {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 4px 0;
  transition: opacity var(--transition-fast);
}

.qa__question:hover {
  opacity: 0.7;
}

.qa__question-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  position: relative;
}

/* Checkmark icon (V-shape) for open items */
.qa__question-icon::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-left: 3px solid #151515;
  border-bottom: 3px solid #151515;
  border-radius: 2px;
  transform: rotate(-45deg);
  top: 0;
  left: 4px;
}

/* For collapsed items, show a ">" chevron instead */
.qa__item:not(.is-open) .qa__question-icon::before {
  border: none;
  border-right: 3px solid var(--color-text-dark);
  border-bottom: 3px solid var(--color-text-dark);
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
  top: 5px;
  left: 4px;
}

.qa__item.is-open .qa__question-icon::before {
  border-left-color: #151515;
  border-bottom-color: #151515;
}

.qa__question-text {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-dark);
}

.qa__answer {
  padding: 8px 80px 16px 38px;
  display: none;
}

.qa__item.is-open .qa__answer {
  display: block;
}

.qa__answer-text {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-dark);
  line-height: 1.5;
}

/* ==========================================================================
   Section: Think About
   ========================================================================== */

.think-about {
  width: 100%;
  position: relative;
  background: transparent;
  padding: 0 124px 60px;
  text-align: center;
  overflow: visible;
}

/* Decorative shapes container for Think About */
.think-about__shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: visible;
}

.think-about__shape--pink {
  position: absolute;
  width: 283px;
  height: 283px;
  top: 300px;
  left: calc(50% - 570px);
  transform: rotate(-45deg);
  z-index: 0;
}

.think-about__shape--yellow {
  position: absolute;
  width: 283px;
  height: 283px;
  top: 100px;
  left: calc(50% + 250px);
  transform: rotate(-45deg);
  z-index: 0;
}

.think-about__title {
  font-size: 96px;
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wdth' 95;
  color: var(--color-text-dark);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.think-about__card {
  max-width: 876px;
  margin: 0 auto;
  background-color: var(--color-card-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 35px 48px;
  box-shadow: 9px 19px 27.1px 0px rgba(0, 0, 0, 0.12);
  text-align: left;
  min-height: 435px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.think-about__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.think-about__item {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-gray);
  line-height: 1.5;
  margin-bottom: 16px;
}

.think-about__item:last-child {
  margin-bottom: 0;
}

.think-about__item--bold {
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-dark);
}

/* ==========================================================================
   Section: Pricing
   ========================================================================== */

.pricing {
  width: 100%;
  position: relative;
  background: transparent;
  padding: 0 124px 60px;
  overflow: visible;
}

/* Decorative shapes container for Pricing */
.pricing__shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: visible;
}

.pricing__shape--purple {
  position: absolute;
  width: 283px;
  height: 283px;
  top: 50px;
  left: calc(50% - 530px);
  transform: rotate(-45deg);
  z-index: 0;
}

.pricing__shape--green {
  position: absolute;
  width: 283px;
  height: 283px;
  top: -20px;
  left: calc(50% + 150px);
  transform: rotate(-45deg);
  z-index: 0;
}

.pricing__shape--blue {
  position: absolute;
  width: 283px;
  height: 283px;
  top: 330px;
  left: calc(50% + 260px);
  transform: rotate(-45deg);
  z-index: 0;
}

.pricing__title {
  font-size: 64px;
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wdth' 60;
  color: var(--color-text-dark);
  margin-bottom: 10px;
  max-width: 876px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.pricing__card {
  max-width: 876px;
  margin: 0 auto;
  background-color: var(--color-card-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 35px 48px;
  box-shadow: 9px 19px 27.1px 0px rgba(0, 0, 0, 0.12);
  min-height: 341px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pricing__price {
  font-size: 40px;
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.pricing__price-light {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-gray);
}

.pricing__description {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-gray);
  line-height: 1.5;
  margin-bottom: 24px;
}

.pricing__description:last-of-type {
  margin-bottom: 0;
}

.pricing__description--bold {
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-dark);
}

/* ==========================================================================
   Section: Final CTA
   ========================================================================== */

.final-cta {
  width: 100%;
  position: relative;
  background: transparent;
  padding: 50px 124px 100px;
  text-align: center;
  overflow: hidden;
}

.final-cta__title {
  font-size: 64px;
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wdth' 60;
  color: var(--color-text-dark);
  max-width: 950px;
  margin: 0 auto 24px;
  line-height: 1.2;
}

.final-cta__subtitle {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-gray);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
}

.final-cta__subtitle--bold {
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-dark);
}

.final-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}

.final-cta__tagline {
  font-size: var(--font-size-caption);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-black);
}

/* ==========================================================================
   Section: Contact Form
   ========================================================================== */

.contact {
  width: 100%;
  position: relative;
  background: transparent;
  padding: 30px 124px 80px;
  overflow: visible;
}

/* Decorative shapes for contact section */
.contact__shape {
  position: absolute;
  width: 143px;
  height: 143px;
  z-index: 5;
}

.contact__shape--purple {
  top: 230px;
  left: calc(50% - 590px);
}

.contact__shape--green {
  top: 500px;
  left: calc(50% + 450px);
  z-index: 0;
}

.contact__title {
  font-size: 96px;
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wdth' 95;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 30px;
}

.contact__form {
  max-width: 995px;
  margin: 0 auto;
  background-color: #ffffff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 50px 64px;
  position: relative;
  z-index: 1;
}

.contact__form-grid {
  display: grid;
  grid-template-columns: 419px 393px;
  gap: 45px;
  margin-bottom: 0;
}

.contact__field {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.contact__field:first-child {
  min-height: 409px; /* Match platform container height */
}

.contact__field-content {
  flex: 1;
}

/* Pill-shaped input containers */
.contact__input-container,
.contact__email-container {
  background-color: #e3e3e3;
  border: 1px solid var(--color-border);
  border-radius: 61px;
  height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact__input-container + .contact__email-container,
.contact__email-container + .contact__input-container,
.contact__input-container + .contact__input-container {
  margin-top: 12px;
}

.contact__label {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-dark);
  white-space: nowrap;
}

.contact__label-asterisk {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-gray);
}

.contact__input {
  flex: 1;
  padding: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-dark);
  border: none;
  background: transparent;
}

.contact__input::placeholder {
  color: var(--color-text-gray);
  font-weight: var(--font-weight-medium);
}

.contact__input:focus {
  outline: none;
}

/* Platform selection container */
.contact__platform-container {
  background-color: #e3e3e3;
  border: 1px solid var(--color-border);
  border-radius: 32px;
  min-height: 409px;
  padding: 15px 35px;
}

.contact__platform-label {
  display: block;
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-dark);
  margin-bottom: 14px;
}

.contact__platform-label .contact__label-asterisk,
.contact__label-asterisk {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-gray);
}

.contact__radio-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.contact__radio-input {
  width: 20px;
  height: 20px;
  accent-color: var(--color-text-dark);
  cursor: pointer;
  display: none;
}

.contact__radio-label {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-gray);
  transition: color var(--transition-fast);
}

.contact__radio:hover .contact__radio-label {
  color: var(--color-text-dark);
}

.contact__radio-input:checked + .contact__radio-label {
  color: var(--color-text-dark);
  font-weight: var(--font-weight-extrabold);
}

.contact__privacy {
  font-size: 20px;
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-dark);
  margin-top: 24px;
  margin-bottom: 0;
  margin-left: 22px;
  line-height: 1.5;
}

.contact__privacy-note {
  font-weight: var(--font-weight-medium);
  color: var(--color-text-gray);
}

.contact__error {
  font-size: 20px;
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: #d32f2f;
  margin-top: 16px;
  margin-bottom: 24px;
  margin-left: 22px;
  line-height: 1.5;
}

.contact__success {
  font-size: 20px;
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-dark);
  margin-top: 16px;
  margin-bottom: 24px;
  margin-left: 22px;
  line-height: 1.5;
}

.contact__submit-btn {
  align-self: flex-start;
  margin-top: auto;
}

/* reCAPTCHA attribution notice */
.contact__recaptcha-notice {
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-gray);
  text-align: center;
  margin-top: 16px;
}

.contact__recaptcha-notice a {
  color: var(--color-text-gray);
  text-decoration: underline;
}

.contact__recaptcha-notice a:hover {
  color: var(--color-text-dark);
}

/* Hide default reCAPTCHA badge (attribution shown via text instead) */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* ==========================================================================
   Section: About
   ========================================================================== */

.about {
  width: 100%;
  position: relative;
  background: transparent;
  padding: 0 124px 120px;
  text-align: center;
}

.about__title {
  font-size: 96px;
  font-weight: var(--font-weight-black);
  font-variation-settings: 'wdth' 95;
  color: var(--color-text-dark);
  margin-bottom: 48px;
}

.about__title-light {
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 72;
}

.about__card {
  max-width: 876px;
  min-height: 246px;
  margin: 0 auto;
  background-color: #e3e3e3;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 35px 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__text {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: var(--color-text-gray);
  line-height: 1.7;
  margin-bottom: 0;
}

.about__text--bold {
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-dark);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  width: 100%;
  position: relative;
  background-color: #151515;
  padding: 80px 124px 48px;
}

.footer__content {
  max-width: 1480px;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__column--left {
  min-width: 420px; /* Account for full "Contact us: assistant@agios.io" width */
}

.footer__column--center {
  min-width: 250px;
  gap: 28px; /* Match logo margin-bottom to align Icons with Contact row */
  margin-left: auto; /* Center between Contact and Partners */
  margin-right: auto;
}

.footer__logo {
  width: 148px;
  height: 32px;
  margin-bottom: 28px;
}

.footer__contact {
  font-size: 28px;
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: #ffffff;
}

.footer__contact a {
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer__contact a:hover {
  opacity: 0.7;
}

.footer__credits {
  font-size: 28px;
  font-weight: var(--font-weight-extrabold);
  font-variation-settings: 'wdth' 59;
  color: #ffffff;
}

/* Align Icons row with Contact us row */
.footer__credits:first-child {
  margin-bottom: -12px;
}

.footer__credits a {
  font-weight: 300;
  color: #ffffff;
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.footer__credits a:hover {
  opacity: 0.7;
}

.footer__partners {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 14px;
  flex: 1;
  justify-content: center;
}

.footer__partner-logo {
  height: 72px;
  width: auto;
}

.footer__partner-logo--seeds {
  margin-right: 40px;
}

.footer__partner-logo--eu {
  width: 64px;
  height: 63px;
  object-fit: contain;
}

.footer__funding {
  display: flex;
  align-items: center;
  gap: 19px;
}

.footer__funding-text {
  font-family: 'Lexend', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  max-width: 212px;
  line-height: 1.3;
  text-align: left;
}

.footer__disclaimer {
  font-size: var(--font-size-body);
  font-weight: var(--font-weight-medium);
  font-variation-settings: 'wdth' 59;
  color: #ffffff;
  line-height: 1.6;
  padding-top: 32px;
  text-align: center;
  max-width: 1232px;
  margin: 0 auto;
}
