/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --color-primary:        #c50000;
  --color-blue:           #1a4b8c;
  --color-dark:           #1a1a2e;
  --color-body:           #0d0d0d;
  --color-text:           #5a6a7a;
  --color-text-form:      #4a5565;
  --color-bg-topbar:      #eff4fb;
  --color-bg-section-alt: #f9faff;
  --color-bg-card:        #f7f9fc;
  --color-bg-blue-light:  #e8f0fe;
  --color-border:         #dde4ee;
  --color-white:          #ffffff;
  --color-footer-bg:      #1a1a2e;
  --color-footer-link:    #9aafca;
  --color-green-check:    #2e8b6a;
  --color-required:       #c73333;

  /* Typography */
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Source Sans 3', Arial, sans-serif;
  --font-form:   'Inter', Arial, sans-serif;

  /* Font sizes */
  --fs-xs:   12px;
  --fs-sm:   13px;
  --fs-base: 14px;
  --fs-md:   15px;
  --fs-lg:   16px;
  --fs-xl:   17px;
  --fs-2xl:  18px;
  --fs-3xl:  20px;
  --fs-4xl:  24px;
  --fs-5xl:  28px;
  --fs-6xl:  30px;
  --fs-7xl:  36px;
  --fs-8xl:  52px;

  /* Spacing */
  --pad-section-v:  50px;
  --pad-section-h:  80px;
  --inner-max:      1280px;
  --gap-section:    50px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  color: var(--color-dark);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ============================================================
   UTILITY
   ============================================================ */
.section__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  width: 100%;
}

.section__heading {
  text-align: center;
  font-family: var(--font-serif);
  font-size: var(--fs-7xl);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-dark);
}

.section__disclaimer {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  margin-top: 20px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: var(--fs-2xl);
  font-weight: 700;
  line-height: 27px;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 8px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.btn:hover {
  opacity: 0.9;
}

.btn--primary {
  min-width: 479px;
  padding: 14px 128px;
}

.btn--order {
  display: flex;
  width: 100%;
  font-family: var(--font-sans);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 14px;
  padding: 18px 49px;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--color-bg-topbar);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

.topbar__text {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 19.5px;
  color: var(--color-text);
  text-align: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  height: 80px;
}

.navbar__inner {
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  font-family: var(--font-serif);
  font-size: var(--fs-4xl);
  font-weight: 700;
  line-height: 36px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: 500;
  line-height: 24px;
  color: var(--color-dark);
  transition: color 0.2s;
}

.navbar__link:hover {
  color: var(--color-primary);
}

.navbar__cta--desktop {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 22.5px;
  padding: 0 24px;
  height: 48px;
  border-radius: 8px;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.navbar__cta--desktop:hover {
  opacity: 0.9;
}

.navbar__cta--mobile {
  display: none;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 33px;
  height: 27px;
  padding: 0;
  cursor: pointer;
  background: none;
  border: none;
}

.navbar__burger-bar {
  display: block;
  width: 33px;
  height: 5px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--color-white);
  padding: 50px 80px;
}

.hero__container {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 47px;
}

.hero__info {
  flex: 0 0 717px;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.hero__label {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 19.5px;
  color: var(--color-text);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: var(--fs-8xl);
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-dark);
}

.hero__desc {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  color: var(--color-text);
  max-width: 673px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__trust-icon {
  font-size: var(--fs-lg);
  line-height: 24px;
  color: var(--color-text);
}

.hero__trust-text {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text);
}

.hero__media {
  flex: 0 0 463px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__image-box {
  width: 463px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px 0 rgba(26, 75, 140, 0.14);
  flex-shrink: 0;
}

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

.hero__media-label {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: 400;
  line-height: 18px;
  color: var(--color-text);
}

/* ============================================================
   WHAT IS
   ============================================================ */
.what-is {
  background: var(--color-bg-section-alt);
  padding: var(--pad-section-v) var(--pad-section-h);
}

.what-is .section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  align-items: center;
}

.what-is__content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.what-is__text {
  flex: 0 0 618px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.what-is__para {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 24px;
  color: var(--color-body);
}

.what-is__para--regular { font-weight: 400; }
.what-is__para--light   { font-weight: 300; }

.what-is__disclaimer {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 19.5px;
  color: var(--color-text);
}

.what-is__box {
  flex: 0 0 584px;
  background: var(--color-bg-blue-light);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  min-height: 382px;
}

.what-is__box-title {
  font-family: var(--font-sans);
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 30px;
  color: var(--color-blue);
  align-self: flex-start;
}

.what-is__steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.what-is__step {
  width: 100%;
  max-width: 502px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 15px 104px;
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 24px;
  color: var(--color-dark);
  text-align: center;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.what-is__step--bold {
  font-weight: 700;
}

.what-is__arrow {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-text);
  text-align: center;
}

/* ============================================================
   INGREDIENTS
   ============================================================ */
.ingredients {
  background: var(--color-white);
  padding: var(--pad-section-v) var(--pad-section-h);
}

.ingredients .section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  align-items: center;
}

.ingredients__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.ingredients__row {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.ingredients__card {
  width: 221px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 8px 0 rgba(26, 75, 140, 0.06);
}

.ingredients__row--top .ingredients__card {
  min-height: 183px;
}

.ingredients__row--bottom .ingredients__card {
  min-height: 162px;
}

.ingredients__icon-wrap {
  width: 107px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ingredients__icon {
  font-size: 36px;
  line-height: 54px;
  color: var(--color-dark);
}

.ingredients__name {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 24px;
  color: var(--color-blue);
  text-align: center;
}

.ingredients__desc {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 21px;
  color: var(--color-text);
  text-align: center;
  max-width: 201px;
}

/* ============================================================
   RESULTS
   ============================================================ */
.results {
  background: var(--color-bg-section-alt);
  padding: var(--pad-section-v) var(--pad-section-h);
}

.results .section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  align-items: center;
}

.results__container {
  position: relative;
  width: 100%;
  max-width: 1217px;
}

.results__line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 75%;
  height: 2px;
  background: var(--color-border);
  transform: translate(-50%, 65px);
  z-index: 0;
}

.results__list {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.results__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 37px 37px;
}

.results__circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.results__circle span {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.results__label {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
  color: var(--color-dark);
  text-align: center;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  background: var(--color-white);
  overflow: hidden;
  position: relative;
  min-height: 269px;
}

.cta__inner {
  max-width: 1440px;
  margin: 0 auto;
  min-height: 269px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 80px;
}

.cta__content {
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 0;
  z-index: 1;
}

.cta__heading {
  font-family: var(--font-serif);
  font-size: var(--fs-7xl);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-dark);
}

.cta__desc {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  color: var(--color-body);
  max-width: 605px;
}

.cta__image-wrap {
  position: absolute;
  right: 80px;
  bottom: 0;
  width: 446px;
  height: 326px;
  pointer-events: none;
  z-index: 0;
}

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

/* ============================================================
   FOR WHOM
   ============================================================ */
.for-whom {
  background: var(--color-bg-card);
  padding: var(--pad-section-v) var(--pad-section-h);
}

.for-whom .section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  align-items: center;
}

.for-whom__grid {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.for-whom__card {
  width: 294px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  box-shadow: 0 2px 8px 0 rgba(26, 75, 140, 0.06);
}

.for-whom__header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.for-whom__icon {
  font-size: 28px;
  line-height: 42px;
  flex-shrink: 0;
}

.for-whom__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  color: var(--color-blue);
}

.for-whom__desc {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 25.6px;
  color: var(--color-text);
  width: 100%;
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews {
  background: var(--color-white);
  padding: var(--pad-section-v) var(--pad-section-h);
}

.reviews .section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
}

.reviews__top,
.reviews__bottom {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.review {
  width: 385px;
  flex-shrink: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 2px 8px 0 rgba(26, 75, 140, 0.06);
}

.review__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--color-blue);
  flex-shrink: 0;
}

.review__name {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: 700;
  line-height: 24px;
  color: var(--color-dark);
}

.review__text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text);
}

.review__photo {
  width: 100%;
  object-fit: cover;
}

.review__disclaimer {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text);
}

/* ============================================================
   ORDER FORM
   ============================================================ */
.order {
  background: var(--color-bg-card);
  padding: var(--pad-section-v) var(--pad-section-h);
}

.order .section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  align-items: center;
}

.order__layout {
  display: flex;
  gap: 101px;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.order__form-col {
  flex: 0 0 387px;
}

.order__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px 41px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 2px 16px 0 rgba(26, 75, 140, 0.08);
}

.order__card-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order__title {
  font-family: var(--font-sans);
  font-size: var(--fs-6xl);
  font-weight: 700;
  line-height: 45px;
  color: #1c1f59;
}

.order__subtitle {
  font-family: var(--font-form);
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 24px;
  color: var(--color-text-form);
}

.order__price-wrap {
  background: var(--color-white);
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 15px 10px;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.10), 0 1px 2px -1px rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.order__price-inner {
  background: var(--color-bg-blue-light);
  border-radius: 14px;
  padding: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order__price-badge {
  background: var(--color-primary);
  border-radius: 8px;
  padding: 6px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.order__price {
  font-family: var(--font-sans);
  font-size: var(--fs-6xl);
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}

.order__price-sub {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
}

.order__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 15px;
}

.order__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.order__label {
  font-family: var(--font-form);
  font-size: var(--fs-xs);
  font-weight: 400;
  color: #262626;
}

.order__required {
  font-weight: 600;
  color: var(--color-required);
}

.order__input {
  width: 100%;
  font-family: var(--font-form);
  font-size: 15px;
  font-weight: 400;
  color: #333;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.5;
}

.order__input::placeholder {
  color: #aaaaaa;
}

.order__input:focus {
  border-color: var(--color-blue);
}

.order__warranty {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.order__warranty-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.order__warranty-item {
  font-family: var(--font-form);
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--color-dark);
}

.order__privacy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: center;
}

.order__privacy p {
  font-family: var(--font-form);
  font-size: 8px;
  font-weight: 400;
  line-height: 9.68px;
  color: #6a7282;
  text-align: center;
}

.order__product-col {
  flex: 0 0 542px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order__product-image-box {
  width: 542px;
  height: 400px;
  background: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px 0 rgba(26, 75, 140, 0.14);
}

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

.order__benefits {
  border-top: 1px solid var(--color-border);
  padding-top: 21px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.order__check {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-green-check);
  flex-shrink: 0;
}

.order__benefit-text {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 27px;
  color: var(--color-dark);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--color-white);
  padding: var(--pad-section-v) var(--pad-section-h);
}

.faq .section__inner {
  display: flex;
  flex-direction: column;
  gap: var(--gap-section);
  align-items: center;
}

.faq__list {
  width: 100%;
  max-width: 798px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-bg-card);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
  padding: 10px 24px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  min-height: 44px;
}

.faq-item__question {
  font-family: var(--font-sans);
  font-size: var(--fs-xl);
  font-weight: 600;
  line-height: 23.8px;
  color: var(--color-dark);
  flex: 1;
}

.faq-item__arrow {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform 0.3s;
  transform: rotate(90deg);
  display: block;
  width: 30px;
  text-align: center;
}

.faq-item.is-open .faq-item__arrow {
  transform: rotate(-90deg);
}

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-item__body {
  max-height: 300px;
}

.faq-item__body p {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 25.6px;
  color: var(--color-text);
  padding: 0 24px 20px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-footer-bg);
  padding: 50px 80px;
}

.footer__inner {
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 59px;
  margin-bottom: 50px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 13px;
  width: 100%;
}

.footer__col--brand {
  flex: 0 0 232px;
  gap: 15px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--color-white);
}

.footer__tagline {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 22.4px;
  color: var(--color-footer-link);
}

.footer__heading {
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 700;
  line-height: 21px;
  color: var(--color-white);
}

.footer__link {
  font-family: var(--font-sans);
  font-size: var(--fs-lg);
  font-weight: 400;
  line-height: 24px;
  color: var(--color-footer-link);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__contact {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 22.4px;
  color: var(--color-footer-link);
}

.footer__legal {
  text-align: center;
  max-width: var(--inner-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__legal p {
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 20.8px;
  color: var(--color-text);
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --pad-section-v: 40px;
    --pad-section-h: 30px;
  }

  /* Navbar */
  .navbar {
    height: auto;
  }

  .navbar__inner {
    padding: 10px 15px;
    height: 57px;
    flex-wrap: wrap;
  }

  .navbar__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    order: 3;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 0;
    margin-top: 11px;
    transition: max-height 0.35s ease, opacity 0.35s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .navbar__nav.is-open {
    display: flex;
    max-height: 400px;
    opacity: 1;
    pointer-events: unset;
  }

  .navbar__link {
    padding: 12px 15px;
    width: 100%;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--fs-lg);
  }

  .navbar__cta--desktop {
    display: none;
  }

  .navbar__cta--mobile {
    display: block;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--fs-2xl);
    font-weight: 700;
    padding: 14px 15px;
    text-align: center;
    width: 100%;
    border-radius: 0;
    line-height: 27px;
  }

  .navbar__burger {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 30px;
  }

  .hero__container {
    flex-direction: column-reverse;
    gap: 25px;
  }

  .hero__info {
    flex: none;
    width: 100%;
    gap: 14px;
  }

  .hero__media {
    flex: none;
    width: 100%;
    align-items: center;
  }

  .hero__image-box {
    width: 100%;
    max-width: 480px;
    height: 317px;
  }

  .hero__title {
    font-size: 42px;
  }

  .hero__desc {
    font-size: 18px;
    line-height: 28px;
  }

  .btn--primary {
    min-width: 100%;
    padding: 14px 24px;
  }

  .hero__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* What is */
  .what-is__content {
    flex-direction: column;
  }

  .what-is__text {
    flex: none;
    width: 100%;
  }

  .what-is__box {
    flex: none;
    width: 100%;
  }

  .what-is__step {
    padding: 15px 20px;
    text-align: center;
  }

  /* Ingredients */
  .ingredients__row {
    flex-wrap: wrap;
  }

  .ingredients__card {
    width: calc(50% - 20px);
    flex: 0 0 calc(50% - 20px);
  }

  .ingredients__row--bottom {
    flex-wrap: wrap;
  }

  /* Results */
  .results__list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .results__line {
    display: none;
  }

  .results__item {
    padding: 0;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    max-width: 400px;
    gap: 20px;
  }

  .results__label {
    text-align: left;
  }

  /* CTA */
  .cta__inner {
    padding: 25px 30px;
    flex-direction: column;
    align-items: flex-start;
    min-height: unset;
  }

  .cta {
    min-height: unset;
  }

  .cta__image-wrap {
    position: relative;
    right: auto;
    bottom: auto;
    width: 265px;
    height: 194px;
    margin: 0 auto;
  }

  .cta__heading {
    font-size: var(--fs-5xl);
  }

  .cta__desc {
    font-size: 18px;
    line-height: 26px;
  }

  /* For whom */
  .for-whom__grid {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .for-whom__card {
    width: 100%;
    max-width: 400px;
  }

  /* Reviews */
  .reviews__top,
  .reviews__bottom {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .review {
    width: 100%;
    max-width: 480px;
  }

  /* Order */
  .order__layout {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .order__form-col {
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .order__product-col {
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .order__product-image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 330 / 317;
  }

  .order__card {
    padding: 20px 10px;
  }

  /* Footer */
  .footer__inner {
    flex-wrap: wrap;
    gap: 30px;
  }

  .footer__col--brand {
    flex: 0 0 100%;
  }

  .footer__col {
    flex: 0 0 calc(50% - 15px);
  }

  /* FAQ */
  .faq__list {
    max-width: 100%;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --pad-section-v: 25px;
    --pad-section-h: 15px;
    --gap-section: 25px;
    --fs-7xl: 28px;
    --fs-8xl: 32px;
  }

  /* Topbar */
  .topbar {
    height: auto;
    padding: 10px 15px;
  }

  .topbar__text {
    font-size: var(--fs-sm);
    line-height: 19.5px;
    text-align: center;
  }

  /* Navbar */
  .navbar__inner {
    padding: 10px 15px;
    height: 57px;
  }

  /* Hero */
  .hero {
    padding: 20px 15px;
  }

  .hero__image-box {
    height: 317px;
  }

  .hero__title {
    font-size: 32px;
    line-height: 1.33;
  }

  .hero__desc {
    font-size: 20px;
    line-height: 28.48px;
  }

  /* What is */
  .what-is {
    padding: 25px 15px;
  }

  .what-is__box {
    padding: 20px;
    min-height: unset;
  }

  .what-is__step {
    padding: 15px 10px;
  }

  /* Ingredients */
  .ingredients .section__inner {
    gap: 25px;
  }

  .ingredients__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .ingredients__card {
    width: 100%;
    max-width: 330px;
    flex: none;
  }

  /* Results */
  .results .section__inner {
    gap: 25px;
    align-items: flex-start;
  }

  .results__item {
    max-width: 100%;
  }

  /* CTA */
  .cta__inner {
    padding: 25px 15px;
    align-items: center;
    gap: 25px;
  }

  .cta {
    background: var(--color-bg-card);
  }

  .cta__content {
    align-items: flex-start;
    width: 100%;
    order: 2;
  }

  .cta__image-wrap {
    order: 1;
    width: 265px;
    height: 194px;
  }

  .cta__heading {
    font-size: 28px;
    line-height: 37.32px;
  }

  .cta__desc {
    font-size: 18px;
    line-height: 25.63px;
  }

  .btn--primary {
    min-width: unset;
    width: 100%;
    padding: 14px 24px;
  }

  /* For whom */
  .for-whom .section__inner {
    gap: 25px;
  }

  .for-whom__card {
    max-width: 100%;
  }

  /* Reviews */
  .reviews .section__inner {
    gap: 25px;
  }

  .review {
    max-width: 100%;
  }

  /* Order */
  .order .section__inner {
    gap: 25px;
  }

  .order__layout {
    flex-direction: column;
  }

  .order__form-col {
    max-width: 100%;
  }

  .order__product-col {
    max-width: 100%;
  }

  .order__product-image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 330 / 317;
  }

  .order__card {
    padding: 20px 10px;
  }

  /* FAQ */
  .faq .section__inner {
    gap: 25px;
  }

  .faq__list {
    max-width: 100%;
  }

  .faq-item__question {
    font-size: var(--fs-xl);
    line-height: 23.8px;
  }

  /* Footer */
  .footer {
    padding: 40px 15px;
  }

  .footer__inner {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 25px;
  }

  .footer__col {
    flex: none;
    width: 100%;
  }

  .footer__col--brand {
    flex: none;
    width: 100%;
  }
}
