@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/cairo-arabic-400.woff2") format("woff2");
}

@font-face {
  font-family: "Cairo";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/cairo-arabic-700.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #26352f;
  --muted: #66736c;
  --paper: #fffdf9;
  --sand: #f5eee3;
  --sand-deep: #eadcc9;
  --line: #ded7cd;
  --brand: #287661;
  --brand-dark: #1d5d4d;
  --accent: #d56849;
  --success: #e6f3ec;
  --danger: #a52a2a;
  --shadow: 0 18px 45px rgba(38, 53, 47, 0.11);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-wrap: break-word;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

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

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

.shell {
  width: min(100% - 30px, 1080px);
  margin-inline: auto;
}

.section {
  padding-block: 58px;
}

.hero {
  padding-block: 18px 52px;
  background: linear-gradient(180deg, var(--sand) 0%, var(--paper) 100%);
}

.hero__grid {
  display: grid;
  gap: 30px;
}

.hero__media {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 40vh;
  margin-inline: auto;
  width: fit-content;
  max-width: 100%;
  border-radius: 28px;
  background: var(--sand-deep);
  box-shadow: var(--shadow);
}

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

.eyebrow {
  margin: 0 0 7px;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 900;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 8vw, 2.4rem);
  line-height: 1.18;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(1.75rem, 8vw, 2.8rem);
  line-height: 1.35;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.35rem;
  line-height: 1.4;
}

.hero__subheadline,
.lead-copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero__subheadline {
  margin-bottom: 26px;
}

.hero__offer-line {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 16px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  touch-action: manipulation;
}

.button--primary {
  width: 100%;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 11px 25px rgba(40, 118, 97, 0.24);
}

.button--primary:active {
  background: var(--brand-dark);
  transform: translateY(1px);
}

.button:focus-visible {
  outline: 3px solid rgba(213, 104, 73, 0.5);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.objections-section {
  padding-block: 24px;
  background: var(--brand-dark);
  color: #fff;
}

.objections-list {
  display: grid;
  gap: 0;
}

.objections-list p {
  position: relative;
  margin: 0;
  padding: 13px 30px 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 800;
  line-height: 1.65;
}

.objections-list p:last-child {
  border-bottom: 0;
}

.objections-list p::before {
  position: absolute;
  top: 13px;
  right: 0;
  content: "✓";
  color: #bce5d2;
  font-weight: 900;
}

.prose-shell {
  max-width: 760px;
}

.prose p {
  margin-bottom: 18px;
  font-size: 1.06rem;
}

.prose p:last-child,
.lead-copy:last-child {
  margin-bottom: 0;
}

.narrative-section {
  padding-top: 76px;
}

.turn-section {
  background: var(--sand);
}

.benefits-section {
  padding-block: 72px;
}

.benefits-list {
  display: grid;
  gap: 16px;
}

.benefit-card {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(38, 53, 47, 0.06);
}

.benefit-card__copy p {
  margin: 0;
  color: var(--muted);
}

.benefit-card__media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: -10px -6px 20px;
  border-radius: 17px;
  background: var(--sand);
}

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

.repeat-cta {
  width: min(100%, 620px);
  margin: 34px auto 0;
}

.how-to-wear-section {
  background: var(--sand);
}

.content-card {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.content-card--accent {
  border-color: #c5dbd2;
  background: var(--success);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-right: 31px;
}

.check-list li::before {
  position: absolute;
  right: 0;
  content: "✓";
  color: var(--brand);
  font-weight: 900;
}

.size-guide__rows {
  display: grid;
  gap: 10px;
}

.size-guide__rows p {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(40, 118, 97, 0.2);
  border-radius: 14px;
  background: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.section-note {
  margin: 20px 0 0;
  color: var(--muted);
}

.after-birth-section {
  background: var(--sand);
}

.offer-section {
  padding-block: 78px;
  background: var(--brand-dark);
  color: #fff;
}

.offer-card {
  max-width: 720px;
  padding: 30px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.07);
}

.offer-card h2 {
  margin-bottom: 10px;
}

.offer-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 14px;
  margin-bottom: 6px;
  color: #fff1c8;
  line-height: 1.1;
}

.offer-price__compare {
  color: #d5eee6;
  font-size: 1.35rem;
  font-weight: 700;
  opacity: 0.82;
}

.offer-price__current {
  font-size: clamp(2.7rem, 15vw, 4.5rem);
  font-weight: 900;
}

.offer-price__saving {
  flex-basis: 100%;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.offer-price-note {
  margin-bottom: 24px;
  color: #d5eee6;
  font-weight: 800;
}

.offer-card .check-list li::before {
  color: #bce5d2;
}

.order-section {
  padding-block: 64px;
  background: var(--sand);
}

.order-grid {
  display: grid;
  gap: 24px;
}

.order-intro p:last-child {
  color: var(--muted);
}

.order-card,
.success-card {
  display: grid;
  gap: 16px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-size: 1rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 51px;
  padding: 10px 12px;
  border: 1px solid #c9cec9;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  outline: none;
}

.field textarea {
  resize: vertical;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-option {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-inline-size: 120px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}

.variant-option input {
  position: absolute;
  opacity: 0;
}

.variant-option:has(input:checked) {
  border-color: var(--brand);
  background: var(--success);
  color: var(--brand-dark);
}

.variant-option:has(input:focus-visible) {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(40, 118, 97, 0.13);
}

.shipping-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 11px;
  background: var(--success);
  color: var(--brand-dark);
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--danger);
  font-size: 1rem;
  font-weight: 700;
}

.success-card {
  place-items: center;
  padding-block: 42px;
  text-align: center;
}

.success-card__icon,
.guarantee-card__icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--success);
  color: var(--brand);
  font-size: 1.5rem;
  font-weight: 900;
}

.serial {
  margin: 0;
  padding: 9px 15px;
  border-radius: 10px;
  background: var(--sand);
}

.faq-section {
  padding-block: 72px;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.faq-item summary {
  padding: 17px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  padding: 0 17px 17px;
  margin: 0;
  color: var(--muted);
}

.guarantee-section {
  padding-top: 0;
}

.guarantee-card {
  display: flex;
  gap: 15px;
  padding: 23px;
  border: 1px solid #b8dfcf;
  border-radius: 22px;
  background: var(--success);
}

.guarantee-card h2,
.guarantee-card p {
  margin-bottom: 4px;
}

.final-cta-section {
  padding-block: 18px 78px;
}

.final-cta-section .shell {
  max-width: 620px;
}

.fatal-error {
  margin-block: 40px;
  padding: 20px;
  border: 1px solid #e8b3ad;
  border-radius: 14px;
  background: #fff2ef;
  color: var(--danger);
  text-align: center;
}

[hidden] {
  display: none !important;
}

@media (min-width: 760px) {
  .section {
    padding-block: 88px;
  }

  .hero {
    min-height: 92vh;
    padding-block: 42px;
  }

  h1 {
    font-size: clamp(3rem, 6vw, 4.3rem);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    align-items: center;
    gap: 58px;
  }

  .hero__media {
    aspect-ratio: 1 / 1;
    max-height: none;
    width: 100%;
  }

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

  .objections-list p {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .objections-list p:last-child {
    border-left: 0;
  }

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

  .benefit-card {
    padding: 28px;
  }

  .benefit-card--with-media {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 32px;
  }

  .benefit-card--with-media:nth-child(even) .benefit-card__media {
    order: 2;
  }

  .benefit-card__media {
    margin: 0;
  }

  .content-card,
  .offer-card {
    padding: 40px;
  }

  .order-grid {
    grid-template-columns: 0.7fr 1.3fr;
    align-items: start;
    gap: 52px;
  }

  .order-card {
    grid-template-columns: 1fr 1fr;
    padding: 29px;
  }

  .field--wide,
  .shipping-row,
  .form-status {
    grid-column: 1 / -1;
  }

  .success-card {
    grid-column: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
