:root {
  --cream: #fffcf8;
  --cream-deep: #f8efe0;
  --latte: #f0e3bf;
  --gold: #b99029;
  --gold-bright: #e9b23d;
  --ink: #242324;
  --muted: #68625b;
  --line: rgba(36, 35, 36, 0.14);
  --white: #ffffff;
  --max: 1120px;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  padding-top: 122px;
}

body.menu-open {
  overflow: hidden;
}

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

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

p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.08;
  font-weight: 200;
  letter-spacing: 0;
}

h1 {
  font-size: 3.2rem;
}

h2 {
  font-size: 2.45rem;
}

h3 {
  font-size: 1.28rem;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 2000;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 48px, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.centered {
  text-align: center;
}

.section-pad {
  padding: 112px 0;
}

section[id] {
  scroll-margin-top: 122px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid rgba(185, 144, 41, 0.14);
}

.header-bar {
  min-height: 42px;
  width: min(100% - 56px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.78rem;
  color: var(--gold);
}

.header-bar p {
  margin: 0;
  color: var(--gold);
}

.header-main {
  width: min(100% - 56px, var(--max));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
}

.brand img {
  width: 210px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 0.86rem;
  color: var(--ink);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 58px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid transparent;
  color: var(--ink);
  opacity: 0.68;
  transition: opacity 180ms ease, border-color 180ms ease, color 180ms ease;
}

.language-link.is-active {
  border-color: rgba(185, 144, 41, 0.36);
  color: var(--gold);
  opacity: 1;
}

.language-link:hover,
.language-link:focus-visible {
  border-color: rgba(185, 144, 41, 0.24);
  opacity: 1;
}

.language-link::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  line-height: 1;
  padding: 8px 10px;
  transition: opacity 180ms ease;
}

.language-link:hover::after,
.language-link:focus-visible::after {
  display: block;
  opacity: 1;
}

.flag-img {
  display: block;
  width: auto;
  height: 15px;
  flex: 0 0 auto;
  object-fit: contain;
  border: 1px solid rgba(36, 35, 36, 0.18);
  background: var(--white);
}

.lang-code {
  line-height: 1;
}

.entry-language {
  gap: 10px;
}

.menu-toggle,
.menu-close {
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span,
.menu-close span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  background: rgba(255, 252, 248, 0.98);
  backdrop-filter: blur(18px);
}

.mobile-panel-inner {
  width: min(100% - 40px, 460px);
  margin: 0 auto;
  padding: 32px 0;
}

.menu-close {
  width: 44px;
  height: 44px;
  margin-left: auto;
  position: relative;
}

.menu-close span {
  position: absolute;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  display: grid;
  gap: 8px;
  padding: 48px 0 28px;
}

.mobile-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.45rem;
  font-weight: 200;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

.button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--white);
}

.button-secondary {
  border-color: rgba(185, 144, 41, 0.48);
  color: var(--gold);
  background: transparent;
}

.button-light {
  background: var(--latte);
  color: var(--ink);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--white);
  background: transparent;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.centered-row {
  justify-content: center;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lead {
  font-size: 1.18rem;
}

.hero {
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, var(--cream) 0%, #fff 48%, var(--cream-deep) 100%);
}

.hero.section-pad {
  padding: 30px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.hero-copy {
  padding: 18px 0;
}

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 390px;
}

.hero-device {
  position: relative;
  width: min(100%, 650px);
  height: auto;
  filter: drop-shadow(0 28px 42px rgba(36, 35, 36, 0.15));
}

.visual-cta,
.patent-section {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.visual-cta-overlay,
.patent-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36, 35, 36, 0.74), rgba(185, 144, 41, 0.38), rgba(36, 35, 36, 0.2));
}

.visual-cta-inner,
.patent-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: 0;
}

.visual-cta h2,
.patent-section h2 {
  color: var(--white);
}

.visual-cta p,
.patent-section p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
}

.align-center {
  align-items: center;
}

.section-copy p {
  font-size: 1.03rem;
}

.product-frame {
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(240, 227, 191, 0.55), rgba(255, 252, 248, 0) 58%);
}

.product-frame img {
  width: min(100%, 680px);
  filter: drop-shadow(0 24px 34px rgba(36, 35, 36, 0.12));
}

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

.fact-list li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
}

.fact-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.five-r {
  padding: 78px 0 48px;
  overflow: hidden;
  background: var(--white);
}

.marquee {
  margin-top: 24px;
  color: var(--gold-bright);
  overflow: hidden;
  white-space: nowrap;
}

.marquee div {
  display: inline-flex;
  animation: marquee 24s linear infinite;
}

.marquee span {
  display: inline-block;
  padding-right: 28px;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 200;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.benefits-section {
  padding: 84px 0 0;
  background: var(--white);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
}

.benefit-card {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.benefit-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
  opacity: 0.82;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 35, 36, 0.1), rgba(36, 35, 36, 0.78));
}

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

.benefit-content {
  position: absolute;
  z-index: 1;
  inset: auto 28px 28px;
}

.benefit-content h3,
.benefit-content p {
  color: var(--white);
}

.technology-section {
  background: var(--cream);
}

.tech-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 66px;
  align-items: start;
}

.tech-media {
  position: sticky;
  top: 150px;
  min-height: 620px;
}

.tech-media img:first-child {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

.tech-media img:last-child {
  width: 82%;
  margin: -48px auto 0;
  filter: drop-shadow(0 20px 34px rgba(36, 35, 36, 0.15));
}

.tech-copy {
  padding: 40px 0;
}

.tech-block {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.tech-block h3 {
  font-size: 1.35rem;
}

.patent-section {
  min-height: 560px;
  background-position: center;
}

.solution-section {
  background: var(--white);
}

.face-section {
  background: var(--cream);
}

.solution-image img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: var(--cream);
}

.point-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: var(--line);
}

.point-grid article {
  min-height: 220px;
  padding: 30px;
  background: var(--cream);
}

.point-grid h3 {
  font-size: 1.18rem;
}

.treatment-grid {
  margin-top: 86px;
  align-items: center;
}

.treatment-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.treatment-copy h3 {
  margin-top: 24px;
}

.muted-list li {
  color: var(--muted);
}

.experience-band {
  width: min(100% - 48px, var(--max));
  margin: 82px auto 0;
  padding: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.results-section {
  background: var(--white);
}

.result-intro-panel {
  align-self: center;
  padding: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.result-intro-panel h3 {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 5rem;
  line-height: 0.9;
}

.results-gallery {
  position: relative;
  margin-top: 72px;
}

.results-gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 24px;
}

.result-nav {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(185, 144, 41, 0.36);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  transition: background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

.result-nav:hover,
.result-nav:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.result-nav span {
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.results-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 46%);
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0 0 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(185, 144, 41, 0.55) rgba(185, 144, 41, 0.12);
}

.result-card {
  scroll-snap-align: start;
  min-width: 0;
}

.result-card-head {
  min-height: 118px;
  padding: 0 0 20px;
  border-top: 1px solid var(--line);
}

.result-card-head span {
  display: block;
  margin: 18px 0 10px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.result-card-head h3 {
  margin-bottom: 6px;
  font-size: 1.32rem;
}

.result-card-head p {
  margin: 0;
  color: var(--muted);
}

.comparison-slider {
  position: relative;
  aspect-ratio: 497 / 735;
  overflow: hidden;
  background: var(--cream);
  touch-action: pan-y;
}

.comparison-image,
.comparison-after-wrap {
  position: absolute;
  inset: 0;
}

.comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after-wrap {
  overflow: hidden;
  clip-path: inset(0 0 0 var(--compare-position));
}

.comparison-after {
  width: 100%;
}

.compare-label {
  position: absolute;
  z-index: 3;
  top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  background: rgba(255, 252, 248, 0.9);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.compare-label-before {
  left: 16px;
}

.compare-label-after {
  right: 16px;
}

.compare-handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--compare-position);
  width: 2px;
  background: rgba(255, 252, 248, 0.92);
  box-shadow: 0 0 0 1px rgba(36, 35, 36, 0.12);
  transform: translateX(-1px);
  pointer-events: none;
}

.compare-handle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(185, 144, 41, 0.6);
  background:
    linear-gradient(45deg, transparent 42%, var(--gold) 42% 58%, transparent 58%) 9px 50% / 7px 7px no-repeat,
    linear-gradient(225deg, transparent 42%, var(--gold) 42% 58%, transparent 58%) 18px 50% / 7px 7px no-repeat,
    rgba(255, 252, 248, 0.94);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.compare-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.result-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.result-dot {
  width: 30px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.result-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(36, 35, 36, 0.28);
  transition: width 200ms var(--ease), border-radius 200ms var(--ease), background 200ms var(--ease);
}

.result-dot.is-active::before {
  width: 22px;
  border-radius: 99px;
  background: var(--gold);
}

.result-note {
  max-width: 820px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 0.9rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-list li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
}

.partner-section {
  background: var(--cream-deep);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: rgba(185, 144, 41, 0.24);
}

.pillar {
  min-height: 280px;
  padding: 34px;
  background: var(--cream);
}

.pillar span {
  display: block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.partner-cta {
  margin-top: 44px;
  text-align: center;
}

.partner-cta p {
  max-width: 720px;
  margin: 22px auto 0;
  font-size: 0.92rem;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 68px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.contact-card {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.contact-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-card p {
  margin-bottom: 0.5rem;
}

.contact-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
}

.contact-markets li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(185, 144, 41, 0.28);
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1;
}

.contact-card a {
  display: table;
  color: var(--gold);
}

.lead-form {
  display: grid;
  gap: 18px;
  padding: 38px;
  background: var(--cream);
  border: 1px solid rgba(185, 144, 41, 0.16);
}

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

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(36, 35, 36, 0.16);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 132px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(185, 144, 41, 0.32);
  outline-offset: 2px;
}

.lead-form .is-invalid {
  border-color: #9d2f2f;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  font-weight: 400;
}

.consent-row input {
  min-height: 18px;
  margin-top: 4px;
}

.form-status {
  min-height: 24px;
  color: #7a1e1e;
  font-size: 0.9rem;
}

.form-status.is-success {
  color: #326140;
}

.submit-button {
  justify-self: start;
}

.site-footer {
  padding: 58px 0;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 42px;
  align-items: start;
}

.site-footer img {
  width: 210px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer li {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cookie-banner {
  position: fixed;
  z-index: 1400;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(100% - 48px, 920px);
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 252, 248, 0.97);
  border: 1px solid rgba(185, 144, 41, 0.22);
  box-shadow: 0 22px 60px rgba(36, 35, 36, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.language-entry {
  min-height: 100vh;
  padding: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, #fff 0%, var(--cream) 50%, var(--cream-deep) 100%);
}

.entry-panel {
  width: min(100% - 40px, 760px);
  text-align: center;
}

.entry-panel > img {
  width: 280px;
  margin: 0 auto 28px;
}

.entry-panel h1 {
  font-size: 2.4rem;
}

@media (max-width: 1100px) {
  body {
    padding-top: 66px;
  }

  section[id] {
    scroll-margin-top: 66px;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .header-bar,
  .main-nav,
  .desktop-language {
    display: none;
  }

  .header-main {
    min-height: 66px;
    width: min(100% - 32px, var(--max));
  }

  .brand,
  .brand img {
    width: 168px;
  }

  .menu-toggle,
  .menu-close {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 70px;
  }

  .hero-grid,
  .split-grid,
  .tech-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 340px;
    order: -1;
  }

  .hero-device {
    width: min(86%, 620px);
  }

  .section-pad {
    padding: 82px 0;
  }

  .visual-cta,
  .patent-section {
    min-height: 460px;
  }

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

  .result-intro-panel {
    padding: 36px;
  }

  .result-intro-panel h3 {
    font-size: 4rem;
  }

  .results-track {
    grid-auto-columns: minmax(330px, 62%);
  }

  .tech-media {
    position: relative;
    top: auto;
    min-height: 0;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 15px;
    padding-top: 58px;
  }

  section[id] {
    scroll-margin-top: 58px;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .header-main {
    min-height: 58px;
    width: min(100% - 28px, var(--max));
  }

  .brand,
  .brand img {
    width: 144px;
  }

  .hero {
    padding: 22px 0 50px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-media {
    min-height: 242px;
  }

  .hero-device {
    width: 92%;
  }

  .hero-copy {
    padding: 0;
  }

  .lead {
    font-size: 1rem;
  }

  .cta-row,
  .cookie-actions {
    width: 100%;
    align-items: stretch;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .language-link {
    min-width: 0;
  }

  .mobile-language .language-link {
    justify-content: center;
    min-height: 42px;
    min-width: 62px;
    padding: 0 12px;
  }

  .mobile-language .flag-img {
    height: 16px;
  }

  .visual-cta,
  .patent-section {
    min-height: 420px;
  }

  .visual-cta-inner,
  .patent-inner {
    max-width: 100%;
  }

  .marquee span {
    font-size: 2.35rem;
  }

  .benefit-grid,
  .point-grid,
  .pillar-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 420px;
  }

  .tech-media img:first-child,
  .treatment-photo img {
    height: 310px;
  }

  .point-grid article,
  .pillar {
    min-height: auto;
    padding: 26px;
  }

  .experience-band {
    width: min(100% - 28px, var(--max));
    padding: 34px 0;
  }

  .result-intro-panel {
    padding: 28px 0;
  }

  .result-intro-panel h3 {
    font-size: 3.3rem;
  }

  .results-gallery {
    margin-top: 46px;
  }

  .results-gallery-controls {
    justify-content: center;
  }

  .results-track {
    grid-auto-columns: minmax(274px, 88%);
    gap: 18px;
  }

  .result-card-head {
    min-height: 106px;
  }

  .compare-label {
    top: 12px;
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .compare-label-before {
    left: 12px;
  }

  .compare-label-after {
    right: 12px;
  }

  .lead-form {
    padding: 24px;
  }

  .submit-button {
    justify-self: stretch;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }
}

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

  .marquee div {
    animation: none;
  }

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

  .button,
  .benefit-card img {
    transition: none;
  }
}
