:root {
  --sencor-red: #e3004a;
  --sencor-wine: #782037;
  --ink: #171219;
  --muted: #6b6470;
  --line: #e8e3e7;
  --paper: #ffffff;
  --soft: #f7f5f6;
  --shadow: 0 18px 46px rgba(23, 18, 25, 0.12);
  --radius: 8px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  line-height: 1.55;
  background: var(--paper);
}

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

a {
  color: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--sencor-red);
  border-radius: 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: #fff;
  box-shadow: 0 8px 28px rgba(23, 18, 25, 0.08);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 154px;
  height: 42px;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #2a232c;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--sencor-red);
}

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

.ghost-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--sencor-red);
  text-decoration: none;
  border: 1px solid rgba(227, 0, 74, 0.28);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  cursor: pointer;
  background: var(--ink);
  border: 0;
  border-radius: 4px;
  font-weight: 800;
}

.hero {
  --hero-height: clamp(300px, 27.083vw, 520px);
  --hero-content-left: max(24px, calc((100vw - var(--container)) / 2));
  --hero-slant: clamp(173px, 15.64vw, 300px);
  --hero-content-width: min(620px, calc(60vw - var(--hero-content-left) - var(--hero-slant) - 32px));
  --hero-panel-width: min(calc(var(--hero-content-left) + var(--hero-content-width) + 56px + var(--hero-slant)), 60%);
  position: relative;
  height: var(--hero-height);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: var(--hero-panel-width);
  background: linear-gradient(90deg, #e3004a 0%, #e3004a 30%, #782037 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--hero-slant)) 100%, 0 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--sencor-red), var(--sencor-wine));
  z-index: -1;
}

.hero-detail {
  height: var(--hero-height);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--hero-content-width);
  margin-left: var(--hero-content-left);
  margin-right: auto;
  padding-block: 34px;
}

.hero-detail .hero-content {
  padding-right: 0;
}

.hero-benefit-icon {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  z-index: 2;
  width: 180px;
  height: 180px;
  object-fit: contain;
  pointer-events: none;
}

.hero h1 {
  max-width: 100%;
  margin: 0 0 14px;
  font-size: clamp(1.72rem, 3.4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero p {
  max-width: 100%;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.96rem, 1.2vw, 1.1rem);
  line-height: 1.36;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  background: var(--sencor-red);
  border: 1px solid var(--sencor-red);
  border-radius: 4px;
  font-weight: 800;
}

.button:hover,
.button:focus-visible {
  background: var(--sencor-wine);
  border-color: var(--sencor-wine);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.section {
  padding-block: clamp(42px, 7vw, 86px);
}

.section-soft {
  background: var(--soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head h2,
.content-copy h2,
.content-copy h3 {
  margin: 0 0 10px;
  line-height: 1.15;
  letter-spacing: 0;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.section-head p,
.content-copy p {
  margin: 0;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-tile {
  position: relative;
  min-height: clamp(210px, 25vw, 310px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius);
  isolation: isolate;
  box-shadow: var(--shadow);
}

.benefit-tile::before,
.benefit-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}

.benefit-tile::before {
  background-image:
    linear-gradient(180deg, rgba(23, 18, 25, 0.02) 0%, rgba(23, 18, 25, 0.76) 100%),
    var(--tile-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
  transition: transform 0.24s ease;
}

.benefit-tile::after {
  z-index: -1;
  background: linear-gradient(0deg, rgba(227, 0, 74, 0.92), rgba(227, 0, 74, 0.86));
  opacity: 0;
  transition: opacity 0.16s ease-out;
}

.benefit-tile:hover::before,
.benefit-tile:focus-visible::before {
  transform: scale(1.05);
}

.benefit-tile:hover::after,
.benefit-tile:focus-visible::after {
  opacity: 1;
}

.tile-content {
  width: 100%;
  padding: 22px 104px 22px 22px;
}

.tile-icon {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: 70px;
  height: 70px;
  pointer-events: none;
}

.tile-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tile-kicker {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tile-title {
  display: block;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
  font-weight: 700;
}

.section-care {
  padding-block: 0 clamp(42px, 7vw, 86px);
}

.care-message {
  padding: clamp(28px, 5vw, 52px);
  color: #fff;
  background: linear-gradient(135deg, var(--sencor-wine), var(--sencor-red));
  border-radius: var(--radius);
}

.care-message h2 {
  max-width: 840px;
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.care-message p {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.breadcrumb {
  padding-block: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--sencor-red);
  text-decoration: none;
  font-weight: 800;
}

.detail-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: start;
}

.content-copy {
  max-width: 790px;
}

.content-copy h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.content-copy h3 {
  margin-top: 32px;
  font-size: 1.25rem;
}

.content-copy p + p {
  margin-top: 12px;
}

.lead {
  color: #342d35;
  font-size: 1.16rem;
}

.check-list,
.plain-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  background: var(--sencor-red);
  border-radius: 50%;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 14px;
  height: 2px;
  background: var(--sencor-red);
}

.side-box {
  position: sticky;
  top: 104px;
  padding: 24px;
  background: var(--soft);
  border-top: 4px solid var(--sencor-red);
  border-radius: var(--radius);
}

.side-box h2 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

.side-box p {
  margin: 0 0 18px;
  color: var(--muted);
}

.side-box .button {
  width: 100%;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.summary-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.summary-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  color: #fff;
  background: var(--sencor-red);
  border-radius: 50%;
  font-weight: 900;
}

.summary-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.summary-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.terms-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--sencor-red);
  font-weight: 900;
  text-decoration: none;
}

.terms-link:hover,
.terms-link:focus-visible {
  color: var(--sencor-wine);
  text-decoration: underline;
}

.mock-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 18, 25, 0.07);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: #2b242d;
  font-size: 0.92rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  min-height: 44px;
  width: 100%;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #d8d0d6;
  border-radius: 4px;
}

.field textarea {
  min-height: 104px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(227, 0, 74, 0.2);
  border-color: var(--sencor-red);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.consent input {
  margin-top: 5px;
  accent-color: var(--sencor-red);
}

.form-status {
  min-height: 24px;
  color: var(--sencor-wine);
  font-weight: 800;
}

.product-placeholder {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.product-item {
  min-height: 112px;
  display: grid;
  align-content: end;
  padding: 18px;
  color: #fff;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(23, 18, 25, 0.1), rgba(23, 18, 25, 0.7)),
    linear-gradient(135deg, var(--sencor-wine), var(--sencor-red));
  font-weight: 900;
}

.footer {
  color: #fff;
  background: #201a22;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 1fr));
  gap: 34px;
  padding-block: 44px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 38px;
  margin-bottom: 14px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.74);
}

.footer p {
  margin: 0;
}

.footer h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
}

.copyright {
  padding-block: 16px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

@media (max-width: 1020px) {
  .detail-wrap {
    grid-template-columns: 1fr;
  }

  .side-box {
    position: static;
  }

  .summary-grid,
  .product-placeholder {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: #fff;
    box-shadow: 0 16px 28px rgba(23, 18, 25, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .ghost-link {
    display: none;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    --hero-content-width: min(390px, calc(60vw - var(--hero-content-left) - var(--hero-slant) - 20px));
  }

  .hero-content {
    padding-block: 14px;
  }

  .hero h1 {
    margin: 0 0 8px;
    font-size: clamp(1.45rem, 3.55vw, 2.1rem);
    line-height: 1.04;
  }

  .hero p {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 10px;
  }

  .hero-actions .button {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    width: 134px;
    height: 38px;
  }

  .main-nav {
    top: 68px;
  }

  .hero {
    --hero-content-width: min(calc(100vw - 24px), 430px);
    --hero-content-left: 12px;
    min-height: 360px;
    background-position: center;
  }

  .hero::before {
    width: 100%;
    clip-path: none;
  }

  .hero-content {
    width: var(--hero-content-width);
    margin-left: var(--hero-content-left);
  }

  .benefit-grid,
  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .tile-content,
  .mock-form {
    padding: 20px;
  }

  .tile-content {
    padding-right: 92px;
  }

  .tile-icon {
    right: 14px;
    bottom: 14px;
    width: 62px;
    height: 62px;
  }

  .hero-detail .hero-content {
    padding-right: 0;
    padding-bottom: 130px;
  }

  .hero-benefit-icon {
    right: 12px;
    width: 104px;
    height: 104px;
  }
}
