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

:root {
  --pink: #e88d94;
  --pink-light: #f5c4c8;
  --pink-bg: #fde8ea;
  --brown: #8b5e3c;
  --brown-dark: #6b4528;
  --bg: #fff9f5;
  --bg-warm: #f5ede6;
  --text: #3d2e28;
  --text-muted: #7a6558;
  --white: #ffffff;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --om-primary: var(--pink);
  --om-primary-hover: #d67a82;
  --om-accent: var(--brown);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 2rem;
}

.section-title--left {
  text-align: left;
}

/* Placeholders */
.media-ph {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pink-bg), var(--bg-warm));
  border: 2px dashed rgba(139, 94, 60, 0.2);
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: center;
}

.media-ph span {
  padding: 1rem;
}

.media-ph--1x1 { aspect-ratio: 1 / 1; }
.media-ph--4x3 { aspect-ratio: 4 / 3; }
.media-ph--5x6 { aspect-ratio: 5 / 6; }
.media-ph--7x5 { aspect-ratio: 7 / 5; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn--primary {
  background: var(--pink);
  color: var(--white);
}

.btn--primary:hover {
  background: #d67a82;
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--brown-dark);
}

.btn--white:hover {
  background: var(--bg);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 3rem 0 4rem;
  background: var(--bg-warm);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.25rem;
  background: var(--pink-bg);
  color: var(--pink);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 1rem;
}

.hero__accent {
  color: var(--pink);
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 28rem;
}

.hero__price {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 1.5rem;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Features */
.features {
  padding: 4rem 0;
  background: var(--bg);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(139, 94, 60, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
}

.feature {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(139, 94, 60, 0.12);
}

.feature:last-child {
  border-right: none;
}

.feature__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  color: var(--pink);
}

.feature__icon svg {
  width: 100%;
  height: 100%;
}

.feature__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 0.5rem;
}

.feature__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* How it works */
.how-it-works {
  padding: 3rem 0;
  background: var(--bg-warm);
}

.how-it-works__inner {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: 2rem 2rem;
  align-items: start;
}

.how-it-works__content .section-title {
  margin-bottom: 1.25rem;
}

.how-it-works__visual {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  justify-self: end;
  width: 100%;
  max-width: 280px;
}

.how-it-works__visual-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brown-dark);
  text-align: center;
}

.how-it-works__usage {
  width: 100%;
  max-height: 300px;
  border-radius: var(--radius-lg);
  object-fit: contain;
  background: var(--bg-warm);
  box-shadow: none;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.steps-list__item {
  display: grid;
  grid-template-columns: auto 5rem 1fr;
  gap: 0.875rem;
  align-items: center;
}

.steps-list__num {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  background: var(--pink);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 700;
}

.steps-list__image {
  width: 5rem;
  height: 5rem;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(139, 94, 60, 0.08);
}

.steps-list__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 0.125rem;
}

.steps-list__text {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Design detail */
.design-detail {
  padding: 5rem 0;
  background: var(--bg-warm);
}

.design-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.design-detail__image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.design-detail__text {
  font-size: 1.0625rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.design-detail__highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.highlight {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.highlight__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--pink);
}

.highlight__icon svg {
  width: 100%;
  height: 100%;
}

.highlight__title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 0.25rem;
}

.highlight__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Specs */
.specs {
  padding: 5rem 0;
  background: var(--bg);
}

.specs__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.specs__list {
  display: flex;
  flex-direction: column;
}

.specs__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(139, 94, 60, 0.12);
  font-size: 0.9375rem;
}

.specs__row dt {
  font-weight: 600;
  color: var(--brown-dark);
}

.specs__row dd {
  color: var(--text-muted);
}

.specs__colors {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.specs__dot {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
}

.specs__dot--pink { background: var(--pink); }
.specs__dot--brown { background: var(--brown); }

.specs__image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Footer CTA */
.footer-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
}

.footer-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.footer-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.footer-cta__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
}

.footer-cta__price {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-cta__image {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner,
  .how-it-works__inner,
  .design-detail__inner,
  .specs__inner,
  .footer-cta__inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }

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

  .how-it-works__inner {
    grid-template-columns: 1fr;
  }

  .how-it-works__visual {
    max-width: 280px;
    margin-inline: auto;
    justify-self: center;
  }

  .how-it-works__content .section-title {
    text-align: center;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid rgba(139, 94, 60, 0.12);
  }

  .features__grid .feature:nth-child(odd) {
    border-right: 1px solid rgba(139, 94, 60, 0.12);
  }

  .section-title--left,
  .footer-cta__content {
    text-align: center;
  }
}

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

  .features__grid .feature:nth-child(odd) {
    border-right: none;
  }
}
