:root {
  --bg: #f8f3ec;
  --paper: #fffaf3;
  --paper-soft: rgba(255, 251, 245, 0.78);
  --ink: #191714;
  --muted: #706961;
  --gold: #bd8a43;
  --gold-deep: #95692d;
  --gold-soft: #ead6b8;
  --line: rgba(156, 111, 54, 0.22);
  --dark: #12110f;
  --dark-soft: #1e1b17;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(88, 64, 38, 0.16);
  --container: min(1220px, calc(100% - 48px));
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-silk: cubic-bezier(0.22, 0.8, 0.18, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.section {
  position: relative;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 76px);
  background: linear-gradient(180deg, rgba(252, 248, 241, 0.88), rgba(252, 248, 241, 0.54));
  border-bottom: 1px solid transparent;
  transition: height 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(252, 248, 241, 0.92);
  border-color: rgba(189, 138, 67, 0.16);
}

.brand {
  width: clamp(82px, 8vw, 120px);
  flex: 0 0 auto;
}

.site-nav {
  position: absolute;
  left: 50%;
  display: flex;
  gap: clamp(22px, 3.4vw, 56px);
  transform: translateX(-50%);
}

.site-nav a {
  position: relative;
  color: #221f1b;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  padding: 9px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-nav a.active::after,
.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.btn {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 14px 0 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: skewX(-18deg);
}

.btn-primary::before {
  animation: buttonShine 3.4s ease-in-out infinite;
}

.btn span,
.btn i {
  position: relative;
  z-index: 1;
}

.btn i,
.device-list i,
.treatment-card a span,
.trust-card a,
.newsletter button {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
}

.btn-primary {
  background: linear-gradient(135deg, #c9974d, #a97634);
  color: #fff;
  box-shadow: 0 12px 24px rgba(139, 93, 39, 0.24);
}

.btn-primary i {
  background: #fff;
  color: var(--gold-deep);
}

.btn-ghost {
  background: rgba(255, 252, 248, 0.78);
  border-color: rgba(169, 119, 53, 0.36);
  color: #302a22;
}

.btn-ghost i {
  border: 1px solid rgba(169, 119, 53, 0.38);
  color: var(--gold-deep);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(126, 88, 45, 0.2);
}

.menu-toggle {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 13px;
  border: 1px solid rgba(160, 117, 61, 0.24);
  border-radius: 50%;
  background: rgba(255, 248, 239, 0.68);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #4c3a24;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 810px;
  padding: 156px clamp(18px, 4vw, 76px) 70px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250, 247, 241, 0.99) 0%, rgba(250, 247, 241, 0.96) 28%, rgba(250, 247, 241, 0.52) 43%, rgba(250, 247, 241, 0.06) 58%, rgba(250, 247, 241, 0.02) 100%),
    url("../img/hero-background.webp") 58% center / cover no-repeat;
  transform: scale(1.03);
  animation: heroZoom 14s ease-in-out infinite alternate;
  will-change: transform;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: -130px;
  left: 38.8%;
  width: 640px;
  height: 1040px;
  border-left: 2px solid rgba(197, 146, 70, 0.52);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(7deg);
  animation: arcGlow 4.6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 58%;
  height: 100%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 48%, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.7) 30%, transparent 62%),
    linear-gradient(90deg, rgba(252, 249, 244, 0.98) 0%, rgba(252, 249, 244, 0.68) 66%, transparent 100%);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(660px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(58px, 5vw, 82px);
  line-height: 1.02;
}

h1 .title-line {
  display: block;
  white-space: nowrap;
}

h1 .title-gold,
h2 span {
  color: var(--gold);
}

.hero-text {
  width: min(455px, 100%);
  margin: 24px 0 32px;
  color: #6e6861;
  font-size: 16px;
  line-height: 1.62;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-copy .eyebrow {
  animation: riseIn 1.1s var(--ease-luxury) both;
}

.hero-copy h1 .title-line:first-child {
  animation: titleSweep 1.25s 0.08s var(--ease-luxury) both;
}

.hero-copy h1 .title-line:last-child {
  animation: titleSweep 1.25s 0.24s var(--ease-luxury) both;
}

.hero-text {
  animation: riseIn 1.1s 0.44s var(--ease-luxury) both;
}

.hero-buttons {
  animation: riseIn 1.1s 0.58s var(--ease-luxury) both;
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(640px, 100%);
  grid-template-columns: 1.1fr 0.95fr 1.1fr;
  gap: 0;
  margin-top: 50px;
  animation: riseIn 1.15s 0.74s var(--ease-luxury) both;
}

.proof-card {
  min-width: 0;
  min-height: 58px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}

.proof-card:first-child {
  padding-left: 0;
}

.proof-card:last-child {
  border-right: 0;
}

.proof-card strong {
  display: block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.proof-card span {
  display: block;
  margin-top: 8px;
  color: #4f4943;
  font-size: 13px;
}

.mini-faces {
  display: flex;
  margin-top: -30px;
  margin-left: 112px;
}

.mini-faces img {
  width: 36px;
  height: 36px;
  margin-left: -9px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
}

.rating {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "score stars"
    "label label";
  column-gap: 9px;
  align-items: end;
}

.rating strong {
  grid-area: score;
}

.rating span {
  grid-area: label;
  margin-top: 7px;
}

.rating small {
  grid-area: stars;
  display: block;
  margin: 0 0 1px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}

.certified img {
  width: 164px;
  margin-top: 9px;
}

.trust-card {
  position: absolute;
  right: clamp(18px, 4vw, 76px);
  bottom: 0;
  z-index: 4;
  display: grid;
  width: min(435px, calc(100% - 36px));
  min-height: 112px;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 26px;
  border: 1px solid rgba(189, 138, 67, 0.18);
  border-radius: 26px 26px 0 0;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 18px 50px rgba(58, 43, 28, 0.13);
  animation: trustFloat 4.2s ease-in-out infinite;
}

.shield {
  position: relative;
  width: 56px;
  height: 64px;
  border: 2px solid rgba(183, 129, 57, 0.68);
  border-radius: 28px 28px 22px 22px;
  clip-path: polygon(50% 0, 90% 16%, 86% 68%, 50% 100%, 14% 68%, 10% 16%);
  background: rgba(255, 255, 255, 0.34);
}

.shield::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 21px;
  width: 17px;
  height: 29px;
  border-right: 2px solid rgba(183, 129, 57, 0.58);
  border-bottom: 2px solid rgba(183, 129, 57, 0.58);
  transform: rotate(38deg);
}

.trust-card strong {
  display: block;
  margin-bottom: 8px;
  color: #2c2824;
  font-size: 16px;
}

.trust-card p {
  margin: 0;
  color: #4e4741;
  font-size: 14px;
  line-height: 1.5;
}

.trust-card a {
  border: 1px solid rgba(169, 119, 53, 0.38);
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, background 0.25s ease;
}

.trust-icon {
  display: grid;
  width: 58px;
  height: 64px;
  place-items: center;
  color: var(--gold);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.trust-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-icon path:first-child {
  stroke-width: 2;
}

.trust-card:hover a {
  background: #fff;
  transform: translateX(3px);
}

.scroll-mark {
  position: absolute;
  right: 38px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 42px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: center;
}

.scroll-mark i {
  position: relative;
  display: block;
  width: 70px;
  height: 1px;
  background: rgba(255, 255, 255, 0.78);
}

.scroll-mark i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
}

.scroll-mark i {
  animation: scrollLine 1.6s ease-in-out infinite;
}

.treatments {
  padding: 58px clamp(18px, 4vw, 76px) 66px;
  background: #fbf8f2;
  overflow: hidden;
}

.treatments::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 50%;
  width: min(900px, 80vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 138, 67, 0.72), transparent);
  opacity: 0;
  transform: translateX(-50%) scaleX(0.4);
  transform-origin: center;
}

.treatments.section-in::before {
  animation: goldLineOpen 1.2s ease both;
}

.section-heading {
  text-align: center;
}

.section-heading h2,
.technology h2,
.results h2,
.experience h2 {
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.06;
}

.treatment-grid {
  display: grid;
  max-width: 1260px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 34px auto 0;
  perspective: 1200px;
}

.treatment-card {
  position: relative;
  display: grid;
  min-height: 250px;
  grid-template-columns: 45% 55%;
  overflow: hidden;
  border: 1px solid rgba(180, 129, 66, 0.12);
  border-radius: var(--radius);
  background: #f3eee7;
  box-shadow: 0 10px 28px rgba(93, 66, 39, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  isolation: isolate;
  transform-origin: 50% 100%;
  will-change: transform, opacity, clip-path;
}

.treatment-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.52) 42%, transparent 68%);
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(93, 66, 39, 0.13);
}

.treatment-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.75s ease, filter 0.75s ease;
}

.treatment-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 26px 22px 24px;
}

.treatment-info > img {
  width: 58px;
  height: 58px;
  margin: 0 0 16px auto;
  padding: 13px;
  border: 1px solid rgba(189, 138, 67, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  object-fit: contain;
  transition: transform 0.35s ease;
}

.treatment-card:hover .treatment-info > img {
  transform: rotate(10deg) scale(1.08);
}

.treatment-card:hover .treatment-photo {
  transform: scale(1.13);
  filter: saturate(1.08) contrast(1.02);
}

.treatment-info h3 {
  font-size: 25px;
  line-height: 1.05;
}

.treatment-info p {
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.treatment-info a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 800;
}

.treatment-info a span {
  border: 1px solid rgba(169, 119, 53, 0.38);
}

.detail-trigger {
  cursor: pointer;
}

.technology {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(18px, 1fr) minmax(300px, 500px) minmax(360px, 560px) minmax(280px, 360px) minmax(18px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 72px 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(249, 245, 239, 0.98) 0%, rgba(249, 245, 239, 0.86) 36%, rgba(249, 245, 239, 0.24) 72%, rgba(249, 245, 239, 0.75) 100%),
    url("../img/technology-inovation_background.webp") center / cover no-repeat;
}

.tech-bg-left {
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  background: url("../img/technology-inovation_background-left.webp") left center / cover no-repeat;
  opacity: 0.35;
}

.tech-content {
  position: relative;
  z-index: 2;
  grid-column: 2;
}

.tech-content p:not(.eyebrow) {
  max-width: 440px;
  color: #5f574f;
  line-height: 1.7;
}

.tech-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 32px;
}

.tech-points div {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 96px;
  padding: 0 24px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.tech-points div:first-child {
  padding-left: 0;
}

.tech-points div:last-child {
  border-right: 0;
}

.tech-points img {
  width: 44px;
  height: 44px;
  margin: 0 auto 13px;
  object-fit: contain;
}

.tech-points strong,
.tech-points span {
  display: block;
  font-size: 12px;
  line-height: 1.38;
}

.tech-points strong {
  color: #26211c;
  font-weight: 800;
}

.tech-points span {
  color: #26211c;
  font-weight: 800;
}

.slim {
  min-height: 36px;
  padding-left: 26px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tech-visual {
  position: relative;
  z-index: 1;
  grid-column: 3;
  min-height: 360px;
}

.device-badge {
  position: absolute;
  top: 26%;
  left: 5%;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(189, 138, 67, 0.55);
  border-radius: 50%;
  background: rgba(255, 249, 240, 0.78);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 18px 40px rgba(101, 73, 40, 0.14);
  animation: floatBadge 4s ease-in-out infinite;
}

.device-badge span {
  display: block;
  font-size: 22px;
}

.device-list {
  position: relative;
  z-index: 2;
  grid-column: 4;
  padding: 28px;
  border: 1px solid rgba(173, 120, 53, 0.18);
  border-radius: 28px;
  background: rgba(255, 248, 238, 0.72);
}

.device-list p {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.device-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(159, 111, 52, 0.16);
  transition: color 0.25s ease, transform 0.25s ease;
}

.device-list a:hover {
  color: var(--gold-deep);
  transform: translateX(4px);
}

.device-list a:last-child {
  border-bottom: 0;
}

.device-list strong,
.device-list small {
  display: block;
}

.device-list strong {
  margin-bottom: 5px;
  font-size: 14px;
}

.device-list small {
  color: #6f675f;
  font-size: 11px;
}

.device-list i {
  border: 1px solid rgba(169, 119, 53, 0.28);
  color: var(--gold-deep);
  font-style: normal;
}

.results {
  padding: 42px clamp(18px, 4vw, 76px) 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(18, 17, 15, 0.58), rgba(18, 17, 15, 0.78)),
    url("../img/real-result_background.webp") center / cover no-repeat;
  color: #fff;
}

.results-inner {
  display: grid;
  max-width: 1300px;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin: 0 auto;
}

.results .eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
}

.results h2 {
  font-size: clamp(32px, 2.6vw, 42px);
  line-height: 1.12;
}

.results-copy p:not(.eyebrow) {
  max-width: 270px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.65;
}

.result-slider {
  position: relative;
  min-width: 0;
  overflow: visible;
}

.result-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  will-change: scroll-position;
}

.result-track::-webkit-scrollbar {
  display: none;
}

.result-card {
  position: relative;
  flex: 0 0 clamp(230px, 22vw, 276px);
  aspect-ratio: 1.72;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(219, 177, 103, 0.35);
  border-radius: var(--radius);
  background: #2a251e;
}

.result-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.result-card:hover img {
  transform: scale(1.05);
}

.slider-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(214, 174, 106, 0.76);
  border-radius: 50%;
  background: rgba(28, 24, 19, 0.72);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 0.22s ease, background 0.22s ease;
}

.slider-btn:hover {
  background: rgba(189, 138, 67, 0.92);
  transform: translateY(-50%) scale(1.06);
}

.slider-btn.prev {
  left: -19px;
}

.slider-btn.next {
  right: -19px;
}

.more-results {
  display: flex;
  max-width: 650px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 28px auto 0;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.more-results::before,
.more-results::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(214, 174, 106, 0.46);
}

.experience {
  display: grid;
  grid-template-columns: minmax(18px, 1fr) minmax(300px, 380px) minmax(390px, 560px) minmax(430px, 560px) minmax(18px, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding: 58px 0;
  background: #fbf8f2;
}

.experience-copy {
  grid-column: 2;
}

.experience-copy p:not(.eyebrow) {
  max-width: 385px;
  color: #625b53;
  font-size: 14px;
  line-height: 1.72;
}

.experience-copy h2 {
  font-size: clamp(38px, 3.5vw, 52px);
  line-height: 1.1;
}

.experience-features {
  grid-column: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 34px);
  align-items: start;
}

.experience-features div {
  min-width: 0;
  text-align: center;
}

.experience-features span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  margin: 0 auto 18px;
  border: 1px solid rgba(189, 138, 67, 0.18);
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.78);
  color: var(--gold);
  font-size: 24px;
}

.experience-features strong {
  display: block;
  max-width: 120px;
  margin: 0 auto 10px;
  color: #2d2925;
  font-size: 13px;
  line-height: 1.25;
}

.experience-features p {
  margin: 0;
  color: #6c655d;
  font-size: 11px;
  line-height: 1.55;
}

.experience-gallery {
  grid-column: 4;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(110px, 1fr);
  gap: 12px;
}

.experience-gallery img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(95, 67, 38, 0.12);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.experience-gallery img:hover {
  transform: translateY(-8px) scale(1.025);
  filter: saturate(1.06);
}

.experience-gallery > div {
  display: grid;
  gap: 12px;
}

.gallery-main {
  min-height: 300px;
}

.site-footer {
  padding: 58px clamp(18px, 4vw, 76px) 20px;
  background: radial-gradient(circle at 20% 0%, rgba(191, 137, 65, 0.14), transparent 30%), #11100e;
  color: #fff;
}

.footer-grid {
  display: grid;
  max-width: 1180px;
  grid-template-columns: 1.3fr 0.75fr 0.95fr 0.9fr 1fr 1.55fr;
  gap: 42px;
  margin: 0 auto;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 22px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links h3,
.footer-contact h3 {
  margin: 0 0 20px;
  color: #d2a05c;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.newsletter {
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(210, 160, 92, 0.52);
  border-radius: var(--radius);
}

.newsletter label {
  display: block;
  margin-bottom: 18px;
  color: #d7af74;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.newsletter div:first-of-type {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 48px;
  padding: 4px;
  border: 1px solid rgba(210, 160, 92, 0.28);
  border-radius: 999px;
}

.newsletter input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  padding: 0 16px;
  font-size: 13px;
}

.newsletter button {
  border: 0;
  background: linear-gradient(135deg, #d4a25b, #9d7136);
  color: #fff;
  cursor: pointer;
}

.form-note {
  min-height: 18px;
  margin: 10px 0 0;
  color: #d7af74;
  font-size: 12px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(210, 160, 92, 0.42);
  border-radius: 50%;
  color: #d7af74;
  font-size: 10px;
  font-weight: 900;
}

.copyright {
  max-width: 1180px;
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  text-align: center;
}

.detail-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.32s var(--ease-silk), visibility 0.32s var(--ease-silk);
}

.detail-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.detail-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 12%, rgba(190, 142, 73, 0.16), transparent 34%),
    rgba(20, 17, 14, 0.58);
}

.detail-modal__dialog {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(190, 142, 73, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(247, 239, 226, 0.96)),
    #fffaf3;
  box-shadow: 0 34px 86px rgba(28, 20, 13, 0.28);
  opacity: 0;
  transform: translateY(36px) scale(0.94);
  transition: opacity 0.42s var(--ease-luxury), transform 0.42s var(--ease-luxury);
}

.detail-modal.is-open .detail-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.detail-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(169, 119, 53, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--gold-deep);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.detail-modal__eyebrow {
  margin: 0 0 12px;
  color: var(--gold-deep);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.detail-modal h2 {
  max-width: 480px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05;
}

.detail-modal__summary {
  margin: 18px 0 26px;
  color: #665e55;
  font-size: 15px;
  line-height: 1.75;
}

.detail-modal__body {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 22px;
  margin-bottom: 26px;
}

.detail-modal__body > div {
  padding: 20px;
  border: 1px solid rgba(190, 142, 73, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
}

.detail-modal__body h3 {
  margin-bottom: 14px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.detail-modal__body ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-modal__body li {
  position: relative;
  padding-left: 22px;
  color: #5f574f;
  font-size: 14px;
  line-height: 1.55;
}

.detail-modal__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.detail-modal__body p {
  margin: 0;
  color: #5f574f;
  font-size: 14px;
  line-height: 1.65;
}

.detail-modal__cta {
  width: auto;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal.is-waiting {
  opacity: 0.001;
  transform: translateY(26px);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.js-ready .treatments .section-heading.is-waiting {
  transform: translateY(34px) scale(0.96);
}

.js-ready .treatment-card.is-waiting {
  opacity: 0.001;
  clip-path: inset(18% 0 0 0 round 8px);
  transform: translateY(76px) scale(0.92) rotateX(12deg);
}

.js-ready .treatment-card.is-visible {
  clip-path: inset(0 0 0 0 round 8px);
  animation: treatmentReveal 0.95s cubic-bezier(0.18, 0.9, 0.22, 1) both, cardBreath 5.4s ease-in-out 1.05s infinite;
}

.js-ready .treatment-card.is-visible::before {
  animation: cardSweep 1.25s 0.18s ease both;
}

.js-ready .treatment-card.is-visible:nth-child(2) {
  animation-delay: 0.1s, 1.3s;
}

.js-ready .treatment-card.is-visible:nth-child(2)::before {
  animation-delay: 0.28s;
}

.js-ready .treatment-card.is-visible:nth-child(3) {
  animation-delay: 0.2s, 1.55s;
}

.js-ready .treatment-card.is-visible:nth-child(3)::before {
  animation-delay: 0.38s;
}

.js-ready .treatment-card.is-visible:nth-child(4) {
  animation-delay: 0.3s, 1.8s;
}

.js-ready .treatment-card.is-visible:nth-child(4)::before {
  animation-delay: 0.48s;
}

.treatments.section-in .section-heading h2 {
  animation: headingGlow 1.7s ease both;
}

.treatments.section-in .treatment-info > img {
  animation: iconPulse 1.8s ease-in-out infinite;
}

.technology.section-in .tech-points div {
  animation: pointRise 0.75s ease both;
}

.technology.section-in .tech-points div:nth-child(2) {
  animation-delay: 0.12s;
}

.technology.section-in .tech-points div:nth-child(3) {
  animation-delay: 0.24s;
}

.technology.section-in .tech-points div:nth-child(4) {
  animation-delay: 0.36s;
}

.technology.section-in .device-list a {
  animation: listSlide 0.7s ease both;
}

.technology.section-in .device-list a:nth-child(3) {
  animation-delay: 0.1s;
}

.technology.section-in .device-list a:nth-child(4) {
  animation-delay: 0.2s;
}

.technology.section-in .device-list a:nth-child(5) {
  animation-delay: 0.3s;
}

.results.section-in .results-copy h2 {
  animation: darkTitleGlow 1.8s ease both;
}

.results.section-in .result-card {
  animation: resultLift 0.75s ease both;
}

.results.section-in .result-card:nth-child(2) {
  animation-delay: 0.08s;
}

.results.section-in .result-card:nth-child(3) {
  animation-delay: 0.16s;
}

.results.section-in .result-card:nth-child(4) {
  animation-delay: 0.24s;
}

.experience.section-in .experience-features div {
  animation: featurePop 0.8s ease both;
}

.experience.section-in .experience-features div:nth-child(2) {
  animation-delay: 0.1s;
}

.experience.section-in .experience-features div:nth-child(3) {
  animation-delay: 0.2s;
}

.experience.section-in .experience-features div:nth-child(4) {
  animation-delay: 0.3s;
}

.experience.section-in .experience-gallery img {
  animation: imageFloatIn 0.9s ease both;
}

/* Premium motion pass: smooth transition-based reveals, no hard pop-in. */
.js-ready .reveal {
  transition:
    opacity 1.25s var(--ease-luxury),
    transform 1.25s var(--ease-luxury);
  will-change: opacity, transform;
}

.js-ready .scroll-motion,
.js-ready .scroll-motion.is-waiting,
.js-ready .scroll-motion.is-visible,
.js-ready .treatment-card.scroll-motion.is-waiting,
.js-ready .treatment-card.scroll-motion.is-visible {
  animation: none !important;
  clip-path: none !important;
  transition: none !important;
  will-change: opacity, transform;
}

.js-ready .scroll-motion::before {
  animation: none !important;
}

.js-ready .reveal.is-waiting {
  opacity: 0.001;
  transform: translate3d(0, 54px, 0) scale(0.985);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js-ready .treatments .section-heading.is-waiting {
  transform: translate3d(0, 44px, 0) scale(0.985);
}

.js-ready .treatment-card.is-waiting {
  opacity: 0.001;
  clip-path: inset(8% 0 0 0 round 8px);
  transform: translate3d(0, 72px, 0) scale(0.965);
}

.js-ready .treatment-card.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 8px);
  transform: translate3d(0, 0, 0) scale(1);
  animation: none;
  transition:
    opacity 1.35s var(--ease-luxury),
    transform 1.35s var(--ease-luxury),
    clip-path 1.35s var(--ease-luxury),
    box-shadow 0.55s var(--ease-silk);
}

.js-ready .treatment-card.is-visible:nth-child(2) {
  transition-delay: 0.12s;
  animation-delay: 0s;
}

.js-ready .treatment-card.is-visible:nth-child(3) {
  transition-delay: 0.24s;
  animation-delay: 0s;
}

.js-ready .treatment-card.is-visible:nth-child(4) {
  transition-delay: 0.36s;
  animation-delay: 0s;
}

.js-ready .treatment-card.is-visible::before {
  animation: cardSweepLuxury 1.7s var(--ease-silk) both;
}

.js-ready .treatment-card.is-visible:nth-child(2)::before {
  animation-delay: 0.2s;
}

.js-ready .treatment-card.is-visible:nth-child(3)::before {
  animation-delay: 0.36s;
}

.js-ready .treatment-card.is-visible:nth-child(4)::before {
  animation-delay: 0.52s;
}

.treatments.section-in::before {
  animation: none;
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
  transition: opacity 1.4s var(--ease-luxury), transform 1.4s var(--ease-luxury);
}

.treatments.section-in .section-heading h2 {
  animation: none;
}

.treatments.section-in .treatment-photo {
  animation: imageDrift 8s ease-in-out infinite alternate;
}

.treatments.section-in .treatment-info > img {
  animation: iconBreathe 3.8s ease-in-out infinite;
}

.js-ready .technology .tech-points div,
.js-ready .technology .device-list a,
.js-ready .results .result-card,
.js-ready .experience .experience-features div,
.js-ready .experience .experience-gallery img {
  opacity: 0.001;
  transform: translate3d(0, 44px, 0) scale(0.985);
  transition:
    opacity 1.2s var(--ease-luxury),
    transform 1.2s var(--ease-luxury);
  will-change: opacity, transform;
}

.js-ready .technology.section-in .tech-points div,
.js-ready .technology.section-in .device-list a,
.js-ready .results.section-in .result-card,
.js-ready .experience.section-in .experience-features div,
.js-ready .experience.section-in .experience-gallery img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  animation: none;
}

.technology.section-in .tech-points div:nth-child(2),
.technology.section-in .device-list a:nth-child(3),
.results.section-in .result-card:nth-child(2),
.experience.section-in .experience-features div:nth-child(2) {
  transition-delay: 0.12s;
  animation-delay: 0s;
}

.technology.section-in .tech-points div:nth-child(3),
.technology.section-in .device-list a:nth-child(4),
.results.section-in .result-card:nth-child(3),
.experience.section-in .experience-features div:nth-child(3) {
  transition-delay: 0.24s;
  animation-delay: 0s;
}

.technology.section-in .tech-points div:nth-child(4),
.technology.section-in .device-list a:nth-child(5),
.results.section-in .result-card:nth-child(4),
.experience.section-in .experience-features div:nth-child(4) {
  transition-delay: 0.36s;
  animation-delay: 0s;
}

.results.section-in .results-copy h2 {
  animation: softGoldGlow 2.2s ease both;
}

@keyframes cardSweepLuxury {
  0% {
    opacity: 0;
    transform: translateX(-135%);
  }
  28% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: translateX(135%);
  }
}

@keyframes imageDrift {
  from {
    transform: scale(1.035) translateX(0);
  }
  to {
    transform: scale(1.08) translateX(-8px);
  }
}

@keyframes iconBreathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(189, 138, 67, 0);
  }
  50% {
    transform: translateY(-5px) scale(1.055);
    box-shadow: 0 14px 28px rgba(189, 138, 67, 0.12);
  }
}

@keyframes softGoldGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(214, 174, 106, 0));
  }
  50% {
    filter: drop-shadow(0 0 14px rgba(214, 174, 106, 0.16));
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.03) translateX(0);
  }
  to {
    transform: scale(1.08) translateX(-12px);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleSweep {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonShine {
  0%,
  36% {
    left: -55%;
  }
  62%,
  100% {
    left: 120%;
  }
}

@keyframes arcGlow {
  0%,
  100% {
    opacity: 0.58;
    filter: drop-shadow(0 0 0 rgba(189, 138, 67, 0));
  }
  50% {
    opacity: 0.92;
    filter: drop-shadow(0 0 10px rgba(189, 138, 67, 0.22));
  }
}

@keyframes trustFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes scrollLine {
  0%,
  100% {
    opacity: 0.55;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(10px);
  }
}

@keyframes softFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes goldLineOpen {
  from {
    opacity: 0;
    transform: translateX(-50%) scaleX(0.2);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes treatmentReveal {
  0% {
    opacity: 0;
    clip-path: inset(18% 0 0 0 round 8px);
    transform: translateY(76px) scale(0.92) rotateX(12deg);
  }
  72% {
    opacity: 1;
    transform: translateY(-8px) scale(1.015) rotateX(0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 8px);
    transform: translateY(0) scale(1) rotateX(0);
  }
}

@keyframes cardBreath {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes cardSweep {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  20% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

@keyframes headingGlow {
  0% {
    text-shadow: 0 0 0 rgba(189, 138, 67, 0);
  }
  45% {
    text-shadow: 0 16px 34px rgba(189, 138, 67, 0.2);
  }
  100% {
    text-shadow: 0 0 0 rgba(189, 138, 67, 0);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 rgba(189, 138, 67, 0);
  }
  50% {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 24px rgba(189, 138, 67, 0.16);
  }
}

@keyframes pointRise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes listSlide {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes darkTitleGlow {
  0% {
    filter: drop-shadow(0 0 0 rgba(214, 174, 106, 0));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(214, 174, 106, 0.24));
  }
  100% {
    filter: drop-shadow(0 0 0 rgba(214, 174, 106, 0));
  }
}

@keyframes resultLift {
  from {
    opacity: 0;
    transform: translateY(36px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes featurePop {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.9);
  }
  70% {
    opacity: 1;
    transform: translateY(-4px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes imageFloatIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1180px) {
  .header-actions .btn {
    display: none;
  }

  .site-nav {
    gap: 28px;
  }

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

  .technology {
    grid-template-columns: minmax(24px, 1fr) minmax(300px, 470px) minmax(300px, 1fr) minmax(24px, 1fr);
  }

  .tech-content {
    grid-column: 2;
  }

  .tech-visual {
    grid-column: 3;
  }

  .device-list {
    grid-column: 2 / 4;
    max-width: 700px;
    justify-self: end;
  }

  .experience {
    grid-template-columns: minmax(24px, 1fr) minmax(280px, 410px) minmax(380px, 1fr) minmax(24px, 1fr);
  }

  .experience-copy {
    grid-column: 2;
  }

  .experience-features {
    grid-column: 3;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-gallery {
    grid-column: 2 / 4;
    display: grid;
    margin-top: 28px;
  }

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

@media (max-width: 900px) {
  .site-header {
    height: 74px;
  }

  .site-nav {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(172, 119, 51, 0.22);
    border-radius: 16px;
    background: rgba(255, 250, 243, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 15px 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 52px;
    align-items: start;
  }

  .hero-bg {
    position: absolute;
    inset: auto -34% 0 auto;
    width: min(560px, 96vw);
    height: 58%;
    min-height: 560px;
    margin: 0;
    background:
      linear-gradient(90deg, rgba(250, 247, 241, 0.25), rgba(250, 247, 241, 0.05)),
      url("../img/hero-background.webp") 64% bottom / cover no-repeat;
    opacity: 0.34;
    animation: none;
    transform: none;
  }

  .hero::before,
  .scroll-mark {
    display: none;
  }

  .hero::after {
    width: 100%;
    /* background:
      linear-gradient(180deg, rgba(252, 249, 244, 0.96) 0%, rgba(252, 249, 244, 0.82) 48%, rgba(252, 249, 244, 0.42) 76%, rgba(252, 249, 244, 0.88) 100%),
      linear-gradient(90deg, rgba(252, 249, 244, 0.98) 0%, rgba(252, 249, 244, 0.64) 58%, rgba(252, 249, 244, 0.2) 100%); */
  }

  .hero-copy,
  .hero-proof {
    width: 100%;
  }

  h1 {
    font-size: clamp(46px, 14vw, 72px);
  }

  h1 .title-line {
    white-space: normal;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 34px;
  }

  .proof-card {
    padding: 0 14px;
  }

  .mini-faces,
  .rating small {
    margin-left: 0;
    margin-top: 10px;
  }

  .rating small {
    margin: 0 0 1px;
  }

  .trust-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 22px;
    border-radius: 20px;
  }

  .technology,
  .experience,
  .results-inner {
    display: block;
  }

  .technology {
    padding: 58px 24px;
    background:
      linear-gradient(180deg, rgba(249, 245, 239, 0.98), rgba(249, 245, 239, 0.72)),
      url("../img/technology-inovation_background.webp") 56% center / cover no-repeat;
  }

  .tech-bg-left {
    width: 100%;
    opacity: 0.18;
    /* display: none; */
    left: -40vw;
  }

  .tech-content,
  .tech-visual,
  .device-list {
    max-width: 720px;
    margin-inline: auto;
  }

  .tech-visual {
    min-height: 230px;
  }

  .device-badge {
    left: auto;
    right: 18%;
  }

  .device-list {
    margin-top: 22px;
  }

  .results-copy {
    max-width: 620px;
    margin-bottom: 28px;
  }

  .slider-btn.prev {
    left: -4px;
  }

  .slider-btn.next {
    right: -4px;
  }

  .experience {
    display: block;
    padding: 58px 24px;
  }

  .experience-copy {
    max-width: 620px;
  }

  .experience-features {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 32px 0 0;
  }

  .experience-gallery {
    display: grid;
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 32px);
  }

  .site-header {
    padding: 0 16px;
  }

  .brand {
    width: 90px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: clamp(46px, 13.5vw, 62px);
    line-height: 1.02;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding-left: 18px;
  }

  .hero-bg {
    right: 0%;
    width: 132vw;
    height: 100%;
    min-height: 730px;
    background-position: 61% top;
    opacity: 1;
    top: -4%;
    background-size: auto;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proof-card {
    display: grid;
    grid-template-columns: auto;
    column-gap: 14px;
    align-items: center;
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-card:last-child {
    border-bottom: 0;
  }

  .proof-card span,
  .certified img,
  .mini-faces,
  .rating small {
    grid-column: 2;
  }

  .proof-card.rating {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "score stars"
      "label label";
  }

  .rating span {
    grid-area: label;
    grid-column: 1 / -1;
  }

  .rating small {
    grid-area: stars;
    grid-column: 2;
    margin: 0 0 1px;
  }

  .trust-card {
    grid-template-columns: auto 1fr;
    margin-top: 20px;
    padding: 20px;
  }

  .trust-card a {
    display: none;
  }

  .treatments {
    padding: 48px 16px;
  }

  .section-heading h2,
  .technology h2,
  .results h2,
  .experience h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

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

  .treatment-card {
    min-height: 230px;
  }

  .technology,
  .experience,
  .results {
    padding-left: 16px;
    padding-right: 16px;
    /* opacity: 1; */
  }

  .tech-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
  }

  .tech-points div:nth-child(2) {
    border-right: 0;
  }

  .tech-points div:nth-child(3) {
    padding-left: 0;
  }

  .device-badge {
    right: 8%;
    width: 108px;
    height: 108px;
    font-size: 10px;
  }

  .device-list {
    padding: 22px;
    border-radius: 18px;
  }

  .results {
    padding-top: 50px;
  }

  .results h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .results-copy p:not(.eyebrow) {
    max-width: none;
    margin-top: 18px;
  }

  .result-track {
    gap: 14px;
    padding: 0 6px;
    scroll-snap-type: x mandatory;
  }

  .result-card {
    flex-basis: 82%;
    aspect-ratio: 1.72;
  }

  .result-card {
    scroll-snap-align: center;
  }

  .more-results {
    gap: 14px;
    font-size: 10px;
    text-align: center;
  }

  .experience-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .experience-gallery {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .experience-gallery > div {
    grid-template-columns: 1fr 1fr;
  }

  .experience-gallery img,
  .gallery-main {
    min-height: 180px;
  }

  .site-footer {
    padding-inline: 16px;
  }

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

  .footer-brand,
  .newsletter {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-links h3,
  .footer-contact h3 {
    margin-bottom: 14px;
  }

  .footer-links a,
  .footer-contact a {
    margin-bottom: 11px;
    font-size: 12px;
  }

  .footer-brand img {
    width: 124px;
  }

  .detail-modal {
    padding: 14px;
  }

  .detail-modal__dialog {
    max-height: calc(100vh - 28px);
    border-radius: 18px;
  }

  .detail-modal__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 44px;
  }

  .treatment-card {
    grid-template-columns: 42% 58%;
  }

  .treatment-info {
    padding: 18px 16px;
  }

  .treatment-info > img {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
    padding: 10px;
  }

  .treatment-info h3 {
    font-size: 21px;
  }

  .experience-features {
    grid-template-columns: 1fr;
  }

  .newsletter {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
