@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-800.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/montserrat-700.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/montserrat-800.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/montserrat-900.ttf") format("truetype");
}

:root {
  --teal-950: #063d40;
  --teal-900: #07575a;
  --teal-800: #086a6d;
  --teal-700: #128485;
  --teal-100: #dff1f0;
  --teal-50: #f0f8f7;
  --gold: #f4b825;
  --gold-dark: #d89a00;
  --ink: #17272a;
  --muted: #5f6d70;
  --line: #d9e2e1;
  --cream: #fbfaf6;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(10, 68, 70, 0.09);
  --shadow-lg: 0 28px 70px rgba(4, 51, 53, 0.17);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.cookie-modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 87, 90, 0.1);
  box-shadow: 0 5px 24px rgba(4, 51, 53, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 220px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.header-contact {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 12px;
}

.header-contact > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-900);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.phone-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--teal-700);
  border-radius: 50%;
  font-size: 15px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.button:focus-visible,
.text-link:focus-visible,
.footer-link:focus-visible,
.button-link:focus-visible {
  outline: 3px solid rgba(244, 184, 37, 0.62);
  outline-offset: 3px;
}

.button-primary {
  color: var(--teal-950);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 12px 26px rgba(216, 154, 0, 0.24);
}

.button-primary:hover {
  background: #ffc83a;
  box-shadow: 0 16px 30px rgba(216, 154, 0, 0.3);
}

.button-secondary {
  color: var(--teal-900);
  background: var(--white);
  border-color: var(--teal-700);
}

.button-secondary:hover {
  background: var(--teal-50);
}

.button-small {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 14px;
}

.button-large {
  min-height: 58px;
  padding: 16px 30px;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 34%, rgba(244, 184, 37, 0.14), transparent 26%),
    linear-gradient(120deg, #f9fbfa 0%, #f2f8f7 54%, #e8f2f1 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(7, 87, 90, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 87, 90, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-shape {
  position: absolute;
  top: -190px;
  right: -180px;
  width: 760px;
  height: 920px;
  background: linear-gradient(150deg, var(--teal-900), var(--teal-950));
  border-radius: 44% 0 0 56%;
  transform: rotate(6deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 690px;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: 52px;
  padding-block: 64px 48px;
}

.hero-copy {
  max-width: 670px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 36px;
  height: 3px;
  background: var(--gold);
  border-radius: 4px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.76);
}

.hero h1,
.section-heading h2,
.contact-copy h2,
.legal-content h1 {
  margin: 0;
  color: var(--teal-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(43px, 5.7vw, 76px);
}

.hero h1 em,
.section-heading h2 em {
  color: var(--teal-700);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 26px 0 30px;
  color: #475c60;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  color: var(--teal-900);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-assurances {
  display: flex;
  margin-top: 38px;
  gap: 26px;
}

.hero-assurances div {
  position: relative;
  display: grid;
  padding-left: 17px;
}

.hero-assurances div::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 3px;
  content: "";
  background: var(--gold);
  border-radius: 5px;
}

.hero-assurances strong {
  color: var(--teal-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.hero-assurances span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.door-stage {
  position: relative;
  display: grid;
  width: min(100%, 390px);
  height: 560px;
  place-items: end center;
}

.door-stage::after {
  position: absolute;
  right: 15%;
  bottom: 4px;
  left: 15%;
  height: 28px;
  content: "";
  background: rgba(1, 24, 25, 0.45);
  border-radius: 50%;
  filter: blur(12px);
}

.door-stage img {
  position: relative;
  z-index: 2;
  max-height: 555px;
  width: auto;
  filter: drop-shadow(0 25px 32px rgba(1, 27, 29, 0.27));
}

.door-glow {
  position: absolute;
  z-index: 0;
  width: 410px;
  height: 410px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.visual-badge {
  position: absolute;
  top: 26px;
  left: 10px;
  z-index: 4;
  display: grid;
  padding: 16px 20px;
  color: var(--teal-950);
  background: var(--gold);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
}

.visual-badge strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.visual-badge span {
  font-size: 12px;
  font-weight: 700;
}

.visual-note {
  position: absolute;
  right: -8px;
  bottom: 32px;
  z-index: 5;
  display: flex;
  width: 285px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.check {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--teal-700);
  border-radius: 50%;
  font-weight: 900;
}

.visual-note div {
  display: grid;
}

.visual-note strong {
  color: var(--teal-950);
  font-size: 13px;
}

.visual-note small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.trust-strip {
  position: relative;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 108px;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-900);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.trust-grid p {
  display: grid;
  margin: 0;
}

.trust-grid strong {
  color: var(--teal-950);
  font-size: 14px;
}

.trust-grid small {
  color: var(--muted);
  font-size: 11px;
}

.section {
  padding-block: 110px;
}

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

.promise-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(0, 1.18fr);
  column-gap: 90px;
  row-gap: 48px;
}

.promise-copy {
  align-self: end;
}

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(38px, 4vw, 57px);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.promise-points {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-points article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.promise-points article:first-child {
  padding-left: 0;
}

.promise-points article:last-child {
  padding-right: 0;
  border-right: 0;
}

.promise-points article > span {
  color: var(--gold-dark);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.promise-points h3 {
  margin: 0 0 4px;
  color: var(--teal-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
}

.promise-points p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.products-section {
  background:
    radial-gradient(circle at 8% 6%, rgba(244, 184, 37, 0.12), transparent 20%),
    var(--cream);
}

.section-heading.centered {
  max-width: 800px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered .section-lead {
  max-width: 690px;
  margin: 22px auto 0;
}

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

.product-card {
  position: relative;
  display: grid;
  min-height: 610px;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.product-card-featured {
  border: 2px solid var(--teal-700);
  box-shadow: var(--shadow-lg);
}

.product-label {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  padding: 7px 12px;
  color: var(--teal-900);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card-featured .product-label {
  color: var(--teal-950);
  background: var(--gold);
  border-color: var(--gold);
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(155deg, #e9f2f1, #d3e8e6);
}

.product-visual::before {
  position: absolute;
  width: 320px;
  height: 320px;
  content: "";
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.product-visual img {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 510px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(4, 51, 53, 0.22));
}

.product-content {
  display: flex;
  flex-direction: column;
  padding: 78px 30px 30px;
}

.product-kicker {
  margin: 0 0 7px;
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-content h3 {
  margin: 0;
  color: var(--teal-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 28px;
  line-height: 1.12;
}

.product-content > p:not(.product-kicker) {
  margin: 17px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.product-content ul {
  display: grid;
  margin: 0 0 18px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.product-content li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #405457;
  font-size: 13px;
  font-weight: 650;
}

.product-content li span {
  color: var(--teal-700);
  font-weight: 900;
}

.product-prices {
  display: grid;
  margin: 0 0 20px;
  gap: 7px;
}

.product-price {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 9px 11px;
  gap: 12px;
  color: #526467;
  background: #f6f8f8;
  border: 1px solid #e4ebea;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.product-price strong {
  color: var(--teal-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
}

.product-price-complete {
  color: var(--teal-900);
  background: var(--teal-50);
  border-color: #b9d9d5;
}

.product-prices small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
  text-align: right;
}

.product-button {
  width: 100%;
  margin-top: auto;
}

.decor-showcase {
  margin-top: 48px;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(244, 184, 37, 0.16), transparent 26%),
    linear-gradient(135deg, var(--teal-900), var(--teal-950));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.decor-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 50px;
  align-items: end;
}

.decor-intro .product-kicker {
  color: var(--gold);
}

.decor-intro h3 {
  margin: 4px 0 0;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(30px, 3vw, 43px);
  line-height: 1.08;
}

.decor-intro > p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.decor-group {
  margin-top: 32px;
}

.decor-group-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.decor-group-heading strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
}

.decor-group-heading span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.decor-grid {
  display: grid;
  gap: 12px;
}

.decor-grid-basic {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.decor-grid-premium {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.decor-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
}

.decor-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.decor-card figcaption {
  padding: 11px 12px 12px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.decor-card figcaption small {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
}

.decor-note {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  text-align: center;
}

.product-disclaimer {
  max-width: 810px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.process-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 10%, rgba(244, 184, 37, 0.13), transparent 24%),
    linear-gradient(135deg, var(--teal-900), var(--teal-950));
}

.process-section .section-heading h2 {
  color: var(--white);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-grid::before {
  position: absolute;
  top: 37px;
  right: 16%;
  left: 16%;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.24);
}

.process-grid article {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  text-align: center;
}

.step-number {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 22px;
  place-items: center;
  color: var(--teal-950);
  background: var(--gold);
  border: 8px solid var(--teal-900);
  border-radius: 50%;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
  font-weight: 900;
}

.process-grid h3 {
  margin: 0 0 10px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 19px;
}

.process-grid p {
  max-width: 290px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: 110px;
  color: var(--white);
  background: #0d484b;
}

.contact-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 46px 46px;
}

.contact-glow {
  position: absolute;
  top: 10%;
  left: -180px;
  width: 560px;
  height: 560px;
  background: rgba(244, 184, 37, 0.12);
  border-radius: 50%;
  filter: blur(2px);
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 0.8fr);
  align-items: center;
  gap: 90px;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  max-width: 610px;
  margin: 23px 0 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.contact-copy ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 14px;
  list-style: none;
}

.contact-copy li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-copy li > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--teal-950);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}

.contact-copy li div {
  display: grid;
}

.contact-copy li strong {
  font-size: 14px;
}

.contact-copy li small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.contact-phone {
  display: flex;
  margin-top: 34px;
  align-items: baseline;
  gap: 13px;
}

.contact-phone span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.contact-phone a {
  color: var(--gold);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
}

.lead-form {
  display: grid;
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px rgba(1, 28, 29, 0.32);
  gap: 16px;
}

.form-heading {
  margin-bottom: 6px;
  text-align: center;
}

.form-heading > span {
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 4px 0 5px;
  color: var(--teal-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 29px;
  line-height: 1.15;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.lead-form > label:not(.consent-row):not(.honeypot) {
  display: grid;
  gap: 6px;
}

.lead-form label > span {
  color: #314649;
  font-size: 12px;
  font-weight: 800;
}

.lead-form label small {
  color: var(--muted);
  font-weight: 500;
}

.lead-form input[type="text"],
.lead-form input[type="tel"],
.lead-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  color: var(--ink);
  background: #f9fbfb;
  border: 1px solid #cbd8d7;
  border-radius: 10px;
  outline: 0;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.lead-form input:focus {
  background: var(--white);
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(18, 132, 133, 0.13);
}

.lead-form input[aria-invalid="true"] {
  border-color: #bd3636;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.consent-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: flex-start;
  gap: 9px;
  margin-top: 2px;
}

.consent-row input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--teal-700);
}

.consent-row span {
  color: var(--muted) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.5;
}

.consent-row a {
  color: var(--teal-700);
  font-weight: 700;
}

.selected-variant {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 12px;
  color: var(--teal-900);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: 10px;
  font-size: 11px;
}

.selected-variant strong {
  font-size: 12px;
}

.selected-variant button {
  display: grid;
  width: 24px;
  height: 24px;
  margin-left: auto;
  place-items: center;
  padding: 0;
  color: var(--teal-900);
  background: transparent;
  border: 0;
  border-radius: 50%;
  font-size: 18px;
}

.form-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 2px;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}

.form-reassurance {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.form-message {
  display: none;
  padding: 11px 13px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 700;
}

.form-message.is-error {
  display: block;
  color: #7c1f1f;
  background: #fff0f0;
  border: 1px solid #f2b9b9;
}

.form-success {
  display: grid;
  min-height: 420px;
  place-items: center;
  padding: 35px 10px;
  text-align: center;
}

.success-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  place-items: center;
  color: var(--white);
  background: var(--teal-700);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(18, 132, 133, 0.28);
  font-size: 34px;
  font-weight: 900;
  animation: success-pop 450ms ease both;
}

.form-success h3 {
  margin: 0 0 10px;
  color: var(--teal-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 29px;
}

.form-success p {
  max-width: 390px;
  margin: 0 auto 18px;
  color: var(--muted);
}

.form-success a {
  color: var(--teal-700);
  font-weight: 900;
  text-decoration: none;
}

@keyframes success-pop {
  from {
    opacity: 0;
    transform: scale(0.6) rotate(-10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #082f31;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.3fr 0.8fr;
  gap: 38px;
  padding-block: 62px 42px;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer-grid h3 {
  margin: 0 0 13px;
  color: var(--white);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
}

.footer-grid p,
.footer-grid a,
.footer-link {
  display: block;
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.7;
  text-decoration: none;
}

.footer-grid a:hover,
.footer-link:hover {
  color: var(--gold);
}

.footer-link {
  padding: 0;
  background: transparent;
  border: 0;
  text-align: left;
}

.footer-bottom {
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 900;
  display: flex;
  max-width: 1040px;
  margin-inline: auto;
  align-items: center;
  gap: 24px;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(1, 32, 34, 0.24);
}

.cookie-banner > div:first-child {
  flex: 1;
}

.cookie-banner strong {
  color: var(--teal-950);
  font-size: 14px;
}

.cookie-banner p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}

.button-link {
  padding: 6px;
  color: var(--teal-700);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 800;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(1, 29, 31, 0.68);
  backdrop-filter: blur(5px);
}

.cookie-dialog {
  position: relative;
  width: min(100%, 570px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 34px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--muted);
  background: var(--teal-50);
  border: 0;
  border-radius: 50%;
  font-size: 22px;
}

.modal-kicker {
  margin: 0;
  color: var(--teal-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-dialog h2 {
  margin: 3px 0 8px;
  color: var(--teal-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 30px;
}

.cookie-dialog > p:not(.modal-kicker) {
  margin: 0 0 23px;
  color: var(--muted);
  font-size: 13px;
}

.cookie-option {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.cookie-option > div {
  display: grid;
}

.cookie-option strong {
  color: var(--teal-950);
  font-size: 14px;
}

.cookie-option small {
  color: var(--muted);
  font-size: 11px;
}

.always-on {
  color: var(--teal-700);
  font-size: 10px;
  font-weight: 900;
}

.cookie-option input {
  position: absolute;
  opacity: 0;
}

.toggle {
  position: relative;
  width: 46px;
  height: 26px;
  background: #cbd5d4;
  border-radius: 99px;
  transition: background-color 150ms ease;
}

.toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.17);
  transition: transform 150ms ease;
}

.cookie-option input:checked + .toggle {
  background: var(--teal-700);
}

.cookie-option input:checked + .toggle::after {
  transform: translateX(20px);
}

.cookie-option input:focus-visible + .toggle {
  outline: 3px solid rgba(244, 184, 37, 0.55);
  outline-offset: 3px;
}

.cookie-dialog-actions {
  display: flex;
  margin-top: 18px;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.mobile-sticky-cta {
  display: none;
}

.legal-main {
  min-height: 70vh;
  padding-block: 80px 110px;
  background: var(--cream);
}

.legal-content {
  max-width: 820px;
  padding: 55px 62px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-content h1 {
  font-size: clamp(38px, 5vw, 58px);
}

.legal-intro {
  margin-bottom: 40px !important;
  color: var(--muted);
  font-size: 18px;
}

.legal-content h2 {
  margin: 34px 0 8px;
  color: var(--teal-950);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 20px;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--teal-700);
  font-weight: 700;
}

.legal-note {
  margin-top: 44px !important;
  padding: 20px;
  background: var(--teal-50);
  border-radius: 12px;
  font-size: 13px;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
    gap: 24px;
  }

  .hero-shape {
    right: -290px;
  }

  .hero h1 {
    font-size: clamp(42px, 6vw, 64px);
  }

  .hero-assurances {
    gap: 15px;
  }

  .visual-note {
    right: 0;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .promise-grid {
    column-gap: 55px;
  }

  .product-card {
    grid-template-columns: 180px 1fr;
  }

  .product-content {
    padding-inline: 24px;
  }

  .contact-grid {
    gap: 55px;
  }

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

@media (max-width: 820px) {
  html {
    scroll-padding-top: 82px;
  }

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

  .brand {
    width: 180px;
  }

  .header-contact > span,
  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-shape {
    top: auto;
    right: -260px;
    bottom: -320px;
    width: 760px;
    height: 850px;
    transform: rotate(18deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 60px 22px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .door-stage {
    height: 500px;
  }

  .door-stage img {
    max-height: 500px;
  }

  .visual-badge {
    left: calc(50% - 290px);
  }

  .visual-note {
    right: calc(50% - 270px);
  }

  .promise-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .decor-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .promise-grid {
    gap: 42px;
  }

  .promise-points {
    grid-template-columns: 1fr;
  }

  .promise-points article,
  .promise-points article:first-child,
  .promise-points article:last-child {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-points article:last-child {
    border-bottom: 0;
  }

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

  .product-card {
    max-width: 650px;
    margin-inline: auto;
  }

  .contact-grid {
    gap: 48px;
  }

  .contact-copy {
    max-width: 650px;
  }

  .lead-form {
    width: min(100%, 600px);
    margin-inline: auto;
  }

  .mobile-sticky-cta {
    right: 16px;
    bottom: 14px;
    left: 16px;
    z-index: 800;
  }

  .mobile-sticky-cta.is-visible {
    position: fixed;
    display: inline-flex;
    min-height: 52px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-actions {
    justify-content: flex-end;
  }
}

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

  .header-inner {
    gap: 10px;
  }

  .brand {
    width: 153px;
  }

  .header-contact {
    margin-left: auto;
  }

  .header-contact a {
    font-size: 13px;
  }

  .phone-icon {
    width: 30px;
    height: 30px;
  }

  .hero-grid {
    padding-top: 44px;
  }

  .hero-shape {
    bottom: -420px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 51px);
  }

  .hero-lead {
    margin-block: 20px 24px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .text-link {
    text-align: center;
  }

  .hero-assurances {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
  }

  .hero-assurances div {
    padding-left: 10px;
  }

  .hero-assurances strong {
    font-size: 13px;
  }

  .hero-assurances span {
    font-size: 8px;
    line-height: 1.35;
  }

  .hero-visual {
    min-height: 500px;
    place-items: end center;
  }

  .door-stage {
    width: 280px;
    height: 430px;
  }

  .door-stage img {
    max-height: 430px;
  }

  .door-glow {
    width: 310px;
    height: 310px;
  }

  .visual-badge {
    top: 4px;
    left: 50%;
    padding: 12px 14px;
    transform: translateX(-50%) rotate(-3deg);
  }

  .visual-badge strong {
    font-size: 14px;
  }

  .visual-note {
    right: -3px;
    bottom: 16px;
    width: 245px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding-block: 5px;
  }

  .trust-grid > div,
  .trust-grid > div:first-child,
  .trust-grid > div:nth-child(2) {
    min-height: 80px;
    padding: 14px 8px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .section,
  .contact-section {
    padding-block: 78px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: 37px;
  }

  .section-lead {
    font-size: 16px;
  }

  .promise-points article {
    grid-template-columns: 42px 1fr;
  }

  .product-card {
    display: flex;
    min-height: auto;
    flex-direction: column;
    border-radius: 24px;
  }

  .product-visual {
    min-height: 350px;
  }

  .product-visual img {
    max-width: 100%;
    max-height: 300px;
  }

  .product-content {
    padding: 35px 22px 24px;
  }

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

  .product-label {
    top: 15px;
    right: 15px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-grid::before {
    display: none;
  }

  .step-number {
    margin-bottom: 14px;
  }

  .lead-form {
    padding: 28px 20px;
  }

  .form-heading h3 {
    font-size: 25px;
  }

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

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions .button {
    grid-column: 1 / -1;
  }

  .cookie-dialog {
    padding: 30px 20px 24px;
  }

  .cookie-dialog-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .legal-main {
    padding-block: 35px 80px;
  }

  .legal-content {
    padding: 35px 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;
  }
}
