:root {
  --dl-bg: #ffffff;
  --dl-soft: #eff2f5;
  --dl-soft-card: #f9fafb;
  --dl-card: #ffffff;
  --dl-text: #0c111d;
  --dl-muted: #475467;
  --dl-muted-2: #667085;
  --dl-line: #e4e7ec;
  --dl-line-strong: #d0d5dd;
  --dl-accent: #17b26a;
  --dl-accent-hover: #12935a;
  --dl-accent-soft: #e9faef;
  --dl-olive: #56ad34;
  --dl-black: #05070a;
  --dl-navy: #182230;
  --dl-star: #f5b301;
  --dl-radius: 10px;
  --dl-radius-lg: 14px;
  --dl-container: 1160px;
  --dl-container-narrow: 860px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--dl-bg);
  color: var(--dl-text);
  font-family: var(--dl-font);
}

.dl-about {
  background: var(--dl-bg);
  color: var(--dl-text);
  font-family: var(--dl-font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.006em;
  overflow: hidden;
}

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

.dl-about a { color: inherit; text-decoration: none; }

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

.dl-section { padding: clamp(52px, 6vw, 88px) 0; }
.dl-section--soft { background: var(--dl-soft); }
.dl-section--compact {
  padding-top: clamp(44px, 5vw, 66px);
  padding-bottom: clamp(44px, 5vw, 68px);
}

.dl-kicker {
  margin-bottom: 12px;
  color: var(--dl-accent);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

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

.dl-about h1 {
  max-width: 820px;
  margin: 0 auto 18px;
  color: var(--dl-text);
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 700;
  text-align: center;
}

.dl-about h2 {
  max-width: 760px;
  margin: 0 auto;
  color: var(--dl-text);
  font-size: clamp(26px, 2.7vw, 30px);
  line-height: 1.16;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.dl-about h3 {
  margin-bottom: 10px;
  color: var(--dl-text);
  font-size: clamp(18px, 1.25vw, 21px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 600;
}

.dl-about p { color: var(--dl-muted); }

.dl-lead {
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: 12px;
  color: var(--dl-muted) !important;
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
}

/* ---- Buttons ---------------------------------------------------------- */
.dl-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.dl-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 26px;
  border: 1.5px solid transparent;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.dl-btn:hover { transform: translateY(-1px); }

.dl-about .dl-btn--primary { background: var(--dl-black); color: #ffffff; }
.dl-about .dl-btn--primary:hover { background: #1a1f27; }

.dl-about .dl-btn--measure { background: var(--dl-accent); color: #ffffff; }
.dl-about .dl-btn--measure:hover { background: var(--dl-accent-hover); }

.dl-about .dl-btn--secondary {
  background: #ffffff;
  border-color: var(--dl-line-strong);
  color: var(--dl-text);
}
.dl-about .dl-btn--secondary:hover { border-color: var(--dl-accent); color: var(--dl-accent); }

/* ---- HERO -------------------------------------------------------------- */
.dl-hero {
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(38px, 5vw, 66px);
}

.dl-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.dl-hero__content { max-width: 580px; margin-inline: 0; text-align: left; }

.dl-hero__content h1 {
  max-width: 580px;
  margin: 0 0 18px;
  text-align: left;
}

.dl-hero__content .dl-lead {
  max-width: 560px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.dl-hero__content > p:not(.dl-lead) {
  max-width: 560px;
  margin: 0;
  color: var(--dl-muted);
  font-size: 16px;
  line-height: 1.55;
}

.dl-hero__content .dl-actions { justify-content: flex-start; }

.dl-hero__visual {
  width: 100%;
  overflow: hidden;
  border-radius: var(--dl-radius-lg);
  background: var(--dl-soft-card);
}

.dl-hero__visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

/* ---- RATING -------------------------------------- */
.dl-rating { padding: 4px 0 clamp(42px, 5vw, 66px); }

.dl-rating__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--dl-muted);
  font-size: 15px;
  line-height: 1.35;
  text-align: center;
}

.dl-rating__bar strong { color: var(--dl-text); font-weight: 600; }

.dl-stars { color: var(--dl-star); font-size: 15px; letter-spacing: 1px; white-space: nowrap; }

/* ---- Sections ---------------------------------- */
.dl-section-head {
  max-width: var(--dl-container-narrow);
  margin: 0 auto clamp(30px, 4vw, 48px);
  text-align: center;
}

.dl-section-head > p {
  max-width: 680px;
  margin: 14px auto 0;
  color: var(--dl-muted);
  font-size: 16px;
  line-height: 1.55;
}

.dl-section-head--row { display: block; max-width: var(--dl-container-narrow); }
.dl-section-head--row p { margin: 14px auto 0; }

.dl-card { border: 0; border-radius: var(--dl-radius); background: var(--dl-card); box-shadow: none; }
.dl-card--text,
.dl-card--large { padding: 0; background: transparent; }
.dl-card--text p:last-child,
.dl-card--large p:last-child { margin-bottom: 0; }

/* ---- INTRO ------------------------------------------------------------- */
.dl-intro {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.dl-intro > div:first-child { text-align: left; }
.dl-intro h2 { margin-left: 0; text-align: left; }

.dl-card--text { color: var(--dl-muted); font-size: 16px; line-height: 1.62; }
.dl-card--text p { font-size: 16px; }

/* ---- STATS ---------------- */
.dl-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 940px;
  margin-inline: auto;
}

.dl-stat { padding: 0 8px; text-align: center; }

.dl-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dl-accent);
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.dl-stat b {
  display: block;
  margin-bottom: 6px;
  color: var(--dl-text);
  font-size: 16px;
  font-weight: 600;
}

.dl-stat span { display: block; color: var(--dl-muted); font-size: 14px; line-height: 1.4; }

/* ---- BENEFITS ------------- */
.dl-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.dl-benefit { padding: 8px 12px 10px; text-align: center; }

.dl-benefit__icon {
  display: inline-grid;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid var(--dl-line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--dl-text);
  box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
}

.dl-benefit__icon svg { width: 24px; height: 24px; stroke: var(--dl-text); }

.dl-benefit h3 { max-width: 220px; margin-inline: auto; font-size: 18px; }

.dl-benefit p {
  max-width: 240px;
  margin: 0 auto;
  color: var(--dl-muted);
  font-size: 15px;
  line-height: 1.5;
}

/* ---- PRODUCTS ---------------------------------------------------------- */
.dl-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.dl-product {
  position: relative;
  min-height: 150px;
  padding: 24px 22px 22px;
  border-radius: var(--dl-radius);
  background: var(--dl-card);
  border: 1px solid var(--dl-line);
  text-align: center;
}

.dl-product::before {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: var(--dl-accent);
}

.dl-product span {
  display: block;
  margin-bottom: 10px;
  color: var(--dl-text);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.dl-product p { margin: 0; color: var(--dl-muted); font-size: 14px; line-height: 1.48; }

/* ---- STEPS ------------------------ */
.dl-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
  max-width: 1080px;
  margin-inline: auto;
}

.dl-step { position: relative; text-align: center; }

.dl-step span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--dl-accent-soft);
  color: var(--dl-accent);
  font-size: 17px;
  font-weight: 600;
}

.dl-step h3 { margin-bottom: 10px; font-size: 19px; }

.dl-step p {
  max-width: 380px;
  margin: 0 auto;
  color: var(--dl-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ---- MATERIALS --------------------------------------------------------- */
.dl-materials {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(400px, 1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.dl-card--large h2 { margin-left: 0; margin-bottom: 16px; text-align: left; }
.dl-card--large p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--dl-muted);
  font-size: 16px;
  line-height: 1.6;
}

.dl-material-list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--dl-line); }

.dl-material-item {
  position: relative;
  padding: 22px 44px 22px 0;
  border-bottom: 1px solid var(--dl-line);
  background: transparent;
}

.dl-material-item::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 4px;
  width: 20px;
  height: 20px;
  background:
    linear-gradient(var(--dl-accent), var(--dl-accent)) center/12px 2px no-repeat,
    linear-gradient(var(--dl-accent), var(--dl-accent)) center/2px 12px no-repeat;
}

.dl-material-item h3 { margin-bottom: 6px; font-size: 17px; }
.dl-material-item p { margin: 0; color: var(--dl-muted); font-size: 15px; line-height: 1.5; }

/* ---- PROJECTS ---------------------------------------------------------- */
.dl-projects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.dl-project {
  display: flex;
  min-height: 232px;
  flex-direction: column;
  padding: 24px 22px;
  border-radius: var(--dl-radius);
  background: #ffffff;
  border: 1px solid var(--dl-line);
}

.dl-project span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 7px 11px;
  border-radius: 8px;
  background: var(--dl-accent-soft);
  color: var(--dl-accent);
  font-size: 12px;
  font-weight: 600;
}

.dl-project h3 { font-size: 18px; }
.dl-project p { margin: auto 0 0; color: var(--dl-muted); font-size: 14px; line-height: 1.5; }

/* ---- REVIEWS ----------------------------------------------------------- */
.dl-reviews {
  display: grid;
  grid-template-columns: minmax(260px, .32fr) minmax(0, .68fr);
  gap: 22px;
  align-items: stretch;
}

.dl-review-score { padding: 30px 28px; border-radius: var(--dl-radius); background: var(--dl-soft-card); text-align: center; }

.dl-review-score strong {
  display: block;
  margin-bottom: 8px;
  color: var(--dl-text);
  font-size: clamp(40px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.dl-review-score p { margin: 16px 0 0; color: var(--dl-muted); font-size: 14px; }

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

.dl-review-list blockquote {
  margin: 0;
  padding: 28px;
  border-radius: var(--dl-radius);
  background: var(--dl-soft-card);
  text-align: left;
}

.dl-review-list p { margin-bottom: 20px; color: var(--dl-text); font-size: 15px; line-height: 1.55; }
.dl-review-list cite { color: var(--dl-muted); font-size: 13px; font-style: normal; font-weight: 600; }

/* ---- SALONS ------------------------------------------------------------ */
.dl-salons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.dl-salon { padding: 26px 24px; border-radius: var(--dl-radius); background: #ffffff; border: 1px solid var(--dl-line); }
.dl-salon h3 { margin-bottom: 12px; font-size: 19px; }
.dl-salon p { min-height: 44px; margin-bottom: 14px; color: var(--dl-muted); font-size: 14px; line-height: 1.5; }
.dl-salon a { display: block; margin-top: 8px; color: var(--dl-accent); font-size: 14px; font-weight: 600; }

/* ---- FINAL CTA  -------------------- */
.dl-section--final {
  padding-top: clamp(44px, 5vw, 66px);
  padding-bottom: clamp(60px, 7vw, 98px);
}

.dl-cta {
  display: block;
  max-width: 1000px;
  margin-inline: auto;
  padding: clamp(44px, 5vw, 64px) 24px;
  border-radius: 14px;
  background: var(--dl-soft);
  text-align: center;
}

.dl-cta .dl-kicker { display: none; }
.dl-cta h2 { max-width: 640px; margin-inline: auto; font-size: clamp(28px, 3vw, 38px); }
.dl-cta p { max-width: 580px; margin: 18px auto 0; color: var(--dl-muted); font-size: 17px; line-height: 1.55; }

.dl-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

/* Phone */
.dl-about .dl-phone {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  color: var(--dl-accent);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.dl-about .dl-phone:hover { color: var(--dl-accent-hover); }

/* ---- Responsive ----------------------------------------------------- */
@media (max-width: 1120px) {
  .dl-benefits,
  .dl-products,
  .dl-projects,
  .dl-stats,
  .dl-steps,
  .dl-salons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .dl-hero__grid,
  .dl-intro,
  .dl-materials,
  .dl-reviews { grid-template-columns: 1fr; }

  .dl-hero__content { max-width: 700px; }
  .dl-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .dl-intro > div:first-child,
  .dl-intro h2,
  .dl-card--large h2 { text-align: center; }

  .dl-card--large p { margin-inline: auto; text-align: center; }
  .dl-salons { grid-template-columns: 1fr; }

  .dl-materials .dl-kicker {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .dl-container { width: min(calc(100% - 32px), var(--dl-container)); }
  .dl-section { padding: 44px 0; }
  .dl-hero { padding-top: 48px; }
  .dl-about h1 { font-size: 33px; }
  .dl-about h2 { font-size: 27px; }

  .dl-benefits,
  .dl-products,
  .dl-steps,
  .dl-stats,
  .dl-projects,
  .dl-review-list { grid-template-columns: 1fr; }

  .dl-products,
  .dl-projects,
  .dl-review-list,
  .dl-salons { gap: 14px; }

  .dl-rating__bar { flex-wrap: wrap; row-gap: 4px; }
  .dl-actions,
  .dl-cta__actions { width: 100%; flex-direction: column; }
  .dl-btn,
  .dl-phone { width: 100%; }
}
