﻿:root {
  --bg: #ede9e5;
  --bg-2: #f5f2ef;
  --surface: #ffffff;
  --surface-soft: #f7f4f1;
  --surface-dark: #171211;
  --text: #1d1715;
  --muted: #665c55;
  --line: #ddd2c8;
  --brand: #a20d18;
  --brand-2: #c1121f;
  --brand-dark: #7b0812;
  --green: #c1121f;
  --green-2: #c1121f;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --shadow-soft: 0 20px 48px rgba(24, 17, 14, 0.12);
  --shadow-strong: 0 38px 88px rgba(19, 13, 11, 0.27);
  --container: min(1220px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 0%, rgba(183, 17, 30, 0.08) 0%, rgba(183, 17, 30, 0) 35%),
    radial-gradient(circle at 95% 100%, rgba(126, 93, 72, 0.08) 0%, rgba(126, 93, 72, 0) 30%),
    linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 46%, #f3efeb 100%);
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(76px, 9vw, 126px);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

p {
  margin: 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(162, 13, 24, 0.25);
  background: rgba(162, 13, 24, 0.08);
  color: var(--brand);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  margin-bottom: 20px;
  width: fit-content;
}

.section-tag.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.section-tag.light-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(106, 85, 71, 0.15);
  background: rgba(242, 238, 234, 0.78);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: clamp(160px, 14vw, 220px);
  height: auto;
  object-fit: contain;
}

.brand-line {
  font-size: 0.7rem;
  font-weight: 600;
  color: #6c6059;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a {
  position: relative;
  color: #2a2320;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.28s ease;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1.5px;
  background: var(--brand-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.header-nav a:hover {
  color: var(--brand);
}

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

.btn {
  --btn-bg: #fff;
  --btn-text: #241f1b;
  --btn-border: rgba(39, 31, 26, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-text);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 22px;
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition: transform 0.3s ease, box-shadow 0.35s ease, filter 0.35s ease, background-color 0.3s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: -2px auto -2px -28%;
  width: 34%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0) 100%);
  transform: translateX(-120%) skewX(-15deg);
  transition: transform 0.55s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.05);
}

.btn:hover::before {
  transform: translateX(480%) skewX(-15deg);
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.2);
}

.btn-primary {
  --btn-bg: linear-gradient(145deg, var(--brand-2) 0%, var(--brand-dark) 100%);
  --btn-text: #fff;
  --btn-border: transparent;
  box-shadow: 0 18px 34px rgba(123, 8, 18, 0.36);
}

.btn-primary:hover {
  box-shadow: 0 26px 44px rgba(123, 8, 18, 0.45);
}

.btn-ghost {
  --btn-bg: rgba(255, 255, 255, 0.5);
  --btn-text: #241e1b;
}

.btn-light {
  --btn-bg: #fff;
  --btn-text: #8f0e18;
  --btn-border: transparent;
  box-shadow: 0 20px 40px rgba(57, 10, 15, 0.2);
}

.btn-video {
  --btn-bg: linear-gradient(145deg, var(--green-2) 0%, var(--green) 100%);
  --btn-text: #fff;
  --btn-border: transparent;
  text-transform: none;
  font-size: 1rem;
  padding-inline: 34px;
  box-shadow: 0 20px 42px rgba(153, 35, 35, 0.32);
}

.btn-video:hover {
  box-shadow: 0 28px 50px rgba(153, 35, 35, 0.42);
}

.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(52px, 7vw, 90px);
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 13%, rgba(162, 13, 24, 0.12) 0%, rgba(162, 13, 24, 0) 31%),
    radial-gradient(circle at 10% 94%, rgba(117, 88, 66, 0.12) 0%, rgba(117, 88, 66, 0) 33%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}

.eyebrow {
  color: var(--brand);
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2.5rem, 2.5vw, 4.9rem);
  color: #181210;
  margin-bottom: 22px;
}

.hero-title-line {
  display: block;
}

.hero-subhead {
  max-width: 58ch;
  color: #514742;
  font-size: clamp(0.97rem, 1.28vw, 1.1rem);
}

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

.hero-proof {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-proof li {
  border-radius: 14px;
  border: 1px solid rgba(138, 117, 102, 0.25);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  padding: 14px;
}

.hero-proof strong {
  display: block;
  font-size: 0.84rem;
}

.hero-proof span {
  display: block;
  margin-top: 3px;
  font-size: 0.77rem;
  color: #6a6059;
}

.hero-media {
  position: relative;
  min-height: clamp(460px, 53vw, 660px);
  perspective: 1100px;
}

.hero-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-strong);
  background: #ddd6cf;
}

.hero-photo img {
  transition: transform 0.65s ease;
}

.hero-media:hover .hero-photo img {
  transform: scale(1.03);
}

.hero-photo.main {
  position: absolute;
  inset: 0 16% 13% 0;
}

.hero-photo.secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 47%;
  border: 8px solid #f0ebe7;
}

.hero-floating {
  position: absolute;
  display: inline-flex;
  align-items: center;
  background: rgba(14, 10, 10, 0.86);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-a {
  top: 5%;
  right: -6%;
}

.badge-b {
  bottom: 38%;
  left: -7%;
}

.authority {
  position: relative;
  background: linear-gradient(128deg, #b7111d 0%, #980c17 44%, #ba111e 100%);
  color: #f7f2ed;
  overflow: hidden;
}

.authority::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 100% 10%, rgba(193, 18, 31, 0.18), transparent 38%);
}

.authority-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 50px);
}

.authority-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  margin-bottom: 16px;
}

.authority-copy p {
  color: rgba(248, 241, 235, 0.86);
}

.trust-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-strip article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 14px 15px;
}

.trust-strip span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.42rem;
}

.trust-strip p {
  margin-top: 6px;
  font-size: 0.81rem;
}

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

.point-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  padding: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.point-card:nth-child(5) {
  grid-column: span 2;
}

.point-card h3 {
  font-size: 1.17rem;
  margin-bottom: 8px;
}

.point-card p {
  color: rgba(248, 241, 235, 0.82);
  font-size: 0.9rem;
}

.point-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 24px 56px rgba(8, 6, 6, 0.42);
}

.icon-badge {
  width: 58px;
  aspect-ratio: 1;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgb(188 18 31);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.icon-badge svg,
.icon-badge i {
  width: 30px;
  height: 30px;
  font-size: 30px;
  color: #fff;
}

.point-card:hover .icon-badge,
.value-card:hover .icon-badge {
  transform: scale(1.06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 0 24px rgba(255, 216, 220, 0.4);
}

.products {
  position: relative;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.section-head h2 {
  font-size: clamp(2rem, 2.6vw, 3.5rem);
  max-width: 36ch;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  grid-auto-rows: 520px;
}

.product-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 46px rgba(28, 20, 17, 0.16), 0 10px 24px rgba(28, 20, 17, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.42s ease, box-shadow 0.42s ease, border-color 0.35s ease;
  will-change: transform;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(193, 18, 31, 0.32);
  box-shadow: 0 42px 82px rgba(30, 21, 17, 0.28), 0 18px 36px rgba(30, 21, 17, 0.22);
}

.product-media {
  position: relative;
  height: 250px;
  overflow: hidden;
  margin: 0;
  width: 100%;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 10, 10, 0.06) 8%, rgba(13, 10, 10, 0.38) 100%);
  opacity: 0.64;
  transition: opacity 0.42s ease;
}

.product-media img {
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.96) contrast(1.03);
}

.product-card:hover .product-media img {
  transform: scale(1.07);
  filter: saturate(1.06) contrast(1.08);
}

.product-card:hover .product-media::after {
  opacity: 0.48;
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(7px);
  box-shadow: 0 14px 30px rgba(25, 18, 15, 0.14);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-icon svg,
.product-icon i {
  width: 36px;
  height: 36px;
  font-size: 36px;
  color: #8d0b15;
}

.product-card:hover .product-icon {
  transform: scale(1.06);
  box-shadow: 0 0 0 1px rgba(193, 18, 31, 0.18), 0 0 24px rgba(193, 18, 31, 0.2), 0 16px 30px rgba(25, 18, 15, 0.18);
}

.product-body h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 6px;
}

.product-body p {
  color: #706660;
  font-size: 0.86rem;
  line-height: 1.72;
  margin-bottom: 10px;
}

.product-body a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  background: rgba(193, 18, 31, 0.1);
  border: 1px solid rgba(193, 18, 31, 0.16);
  border-radius: 999px;
  padding: 9px 14px;
  width: fit-content;
  transition: transform 0.3s ease, letter-spacing 0.28s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.product-body a:hover {
  transform: translateX(4px) scale(1.04);
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--brand-2);
  box-shadow: 0 12px 24px rgba(193, 18, 31, 0.3);
}

.p1 {
  grid-column: span 4;
}

.p2,
.p3,
.p4,
.p5,
.p6 {
  grid-column: span 4;
}

.value-break {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, #8f0e18 0%, #c1121f 54%, #d12a35 100%);
  overflow: hidden;
}

.value-break::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.18), transparent 34%),
    radial-gradient(circle at 95% 100%, rgba(255, 255, 255, 0.12), transparent 38%);
}

.value-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.value-copy h2 {
  font-size: clamp(2.2rem, 2.3vw, 3.8rem);
  margin-bottom: 16px;
}

.value-copy p {
  color: rgba(255, 246, 246, 0.88);
  max-width: 56ch;
}

.value-copy .btn-light {
  margin-top: 28px;
}

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

.value-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  padding: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 42px rgba(44, 5, 10, 0.35);
  background: rgba(255, 255, 255, 0.16);
}

.value-card h3 {
  font-size: 1.12rem;
  margin-bottom: 7px;
}

.value-card p {
  color: rgba(255, 247, 247, 0.86);
  font-size: 0.9rem;
}

.icon-badge.light {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.36);
}

.custom {
  background: linear-gradient(180deg, #f0ece8 0%, #f8f6f4 100%);
}

.custom-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.custom-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: clamp(390px, 46vw, 610px);
  box-shadow: var(--shadow-strong);
}

.custom-copy h2 {
  font-size: clamp(2rem, 1.8vw, 3.6rem);
  margin-bottom: 15px;
}

.custom-copy > p {
  color: #5b514a;
}

.custom-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.custom-list article {
  border-radius: 14px;
  border: 1px solid #dfd2c7;
  border-left: 3px solid var(--brand-2);
  background: #fff;
  padding: 15px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.custom-list article:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(34, 26, 22, 0.14);
}

.list-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 13px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(162, 13, 24, 0.2);
  background: linear-gradient(145deg, rgba(193, 18, 31, 0.1), rgba(193, 18, 31, 0.03));
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.list-icon svg,
.list-icon i {
  width: 30px;
  height: 30px;
  font-size: 30px;
  color: #8f0a14;
}

.custom-list article:hover .list-icon {
  transform: scale(1.05);
  box-shadow: 0 0 0 1px rgba(193, 18, 31, 0.16), 0 0 20px rgba(193, 18, 31, 0.24);
}

.custom-list h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.custom-list p {
  color: #655b54;
  font-size: 0.88rem;
}

.custom-copy .btn {
  margin-top: 26px;
}

.video-showroom {
    background: #fffaf5;
}
.video-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(25px, 4vw, 46px);
  align-items: center;
}

.video-media {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(24, 32, 39, 0.15);
  box-shadow: 0 34px 70px rgba(17, 22, 25, 0.2);
}

.video-media iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  border: 0;
}

.video-copy h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
  margin-bottom: 14px;
  max-width: 17ch;
}

.video-copy > p {
  color: #4a5864;
  max-width: 52ch;
}

.video-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(35, 153, 93, 0.35);
  background: rgba(45, 180, 114, 0.12);
  color: #14814a;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  margin-bottom: 14px;
}

.video-proof {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.video-proof strong {
  color: #a22020;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
  line-height: 1;
  font-family: "Poppins", sans-serif;
}

.video-proof span {
  color: #22313c;
  font-size: 1.02rem;
  line-height: 1.35;
}

.video-copy .btn-video {
  margin-top: 30px;
}

.reviews {
  background: #efeae7;
  overflow: hidden;
}

.reviews-head {
  text-align: center;
  margin-bottom: clamp(26px, 4vw, 44px);
}

.reviews-kicker {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #8f141c;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: #b1121c;
}

.reviews-head h2 {
  margin-top: 15px;
  font-size: clamp(2.2rem, 4.8vw, 4.2rem);
  line-height: 1.08;
}

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

.reviews-column {
  position: relative;
  height: clamp(560px, 58vw, 680px);
  overflow: hidden;
}

.reviews-column::before,
.reviews-column::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 92px;
  pointer-events: none;
  z-index: 5;
}

.reviews-column::before {
  top: 0;
  background: linear-gradient(to bottom, #efeae7 2%, rgba(239, 234, 231, 0) 100%);
}

.reviews-column::after {
  bottom: 0;
  background: linear-gradient(to top, #efeae7 2%, rgba(239, 234, 231, 0) 100%);
}

.reviews-track {
  display: grid;
  gap: 16px;
  animation: reviews-up 34s linear infinite;
  will-change: transform;
}

.reviews-track-mid {
  animation-duration: 38s;
  animation-delay: -8s;
}

.reviews-track-right {
  animation-duration: 36s;
  animation-delay: -13s;
}

@keyframes reviews-up {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.review-card {
  background: #fff;
  border: 1px solid #e6deda;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(33, 24, 21, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 40px rgba(33, 24, 21, 0.14);
}

.review-profile {
  padding-block: 17px;
}

.review-stars {
  color: #f2b100;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.review-text {
  margin-top: 10px;
  color: #4b423d;
  font-size: clamp(0.98rem, 1.1vw, 1.05rem);
  line-height: 1.46;
}

.review-author {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-author strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1.2;
}

.review-author > div > span {
  color: #786d66;
  font-size: 0.9rem;
}

.review-avatar {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: #92080f;
}

.review-avatar.tone-soft {
  background: linear-gradient(145deg, #d8a6a7, #b67b7e);
}

.review-avatar.tone-wine {
  background: #8f0a11;
}

.review-avatar.tone-dark {
  background: #672023;
}

.final-cta {
  background: linear-gradient(160deg, #efe9e3 0%, #f8f5f2 100%);
}

.final-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.final-copy h2 {
  font-size: clamp(2.15rem, 3.9vw, 3.7rem);
  margin-bottom: 16px;
}

.final-copy > p {
  color: #5a5048;
}

.final-bullets {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.final-bullets span {
  border-radius: 999px;
  border: 1px solid rgba(136, 109, 89, 0.34);
  background: rgba(255, 255, 255, 0.74);
  padding: 8px 13px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  gap: 10px;
}

.cta-form h3 {
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.cta-form label {
  color: #423832;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-form input,
.cta-form textarea,
.cta-form select {
  width: 100%;
  font: inherit;
  font-size: 0.93rem;
  border: 1px solid #d9cfc7;
  border-radius: 12px;
  padding: 12px 13px;
  color: #1c1715;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-form input:focus,
.cta-form textarea:focus,
.cta-form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(177, 18, 28, 0.1);
}

.cta-form textarea {
  resize: vertical;
  min-height: 116px;
}

.form-note {
  color: #6f645d;
  font-size: 0.8rem;
}

.form-status {
  min-height: 1.2em;
  color: #1d6f3f;
  font-size: 0.84rem;
  font-weight: 700;
}

.site-footer {
  background: #120f0f;
  color: rgba(243, 236, 229, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer-content p {
  font-size: 0.78rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: linear-gradient(145deg, #25d366 0%, #1ba94f 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 36px rgba(14, 102, 45, 0.45);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
  animation: whatsapp-pulse 2.1s ease-in-out infinite;
}

.whatsapp-float-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.whatsapp-float-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 26px 44px rgba(14, 102, 45, 0.52);
  filter: saturate(1.07);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 18px 36px rgba(14, 102, 45, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.35);
  }

  70% {
    box-shadow: 0 18px 36px rgba(14, 102, 45, 0.45), 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 18px 36px rgba(14, 102, 45, 0.45), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

[data-aos="zoom-blur"] {
  opacity: 0;
  transform: scale(1.06);
  filter: blur(10px);
  transition-property: transform, opacity, filter;
}

[data-aos="zoom-blur"].aos-animate {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

@media (max-width: 1120px) {
  :root {
    --container: min(1220px, calc(100% - 34px));
  }

  .hero-grid,
  .authority-layout,
  .value-layout,
  .custom-layout,
  .video-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

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

  .point-card:nth-child(5) {
    grid-column: auto;
  }

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

  .section-head h2,
  .video-copy h2 {
    max-width: 100%;
  }

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

  .reviews-column:last-child {
    grid-column: span 2;
  }

  .p1,
  .p2,
  .p3,
  .p4,
  .p5,
  .p6 {
    grid-column: span 6;
  }

  .product-grid {
    grid-auto-rows: 500px;
  }
}

@media (max-width: 920px) {
  .site-header {
    position: static;
  }

  .header-nav,
  .btn-header {
    display: none;
  }

  .brand-line {
    display: none;
  }

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

  .hero-photo.main {
    inset: 0 12% 17% 0;
  }

  .hero-photo.secondary {
    width: 55%;
  }

  .badge-a {
    right: 0;
    top: 12px;
  }

  .badge-b {
    left: 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .p1,
  .p2,
  .p3,
  .p4,
  .p5,
  .p6 {
    grid-column: span 12;
  }

  .product-grid {
    grid-auto-rows: auto;
  }

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

  .reviews-column,
  .reviews-column:last-child {
    grid-column: auto;
  }

  .reviews-column {
    height: 520px;
  }
}

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

  .section-pad {
    padding-block: 72px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

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

  .hero-photo.main {
    inset: 0 8% 20% 0;
  }

  .hero-photo.secondary {
    width: 58%;
    border-width: 6px;
  }

  .hero-floating {
    font-size: 0.67rem;
    padding: 7px 10px;
  }

  .product-media {
    height: 230px;
  }

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

  .cta-form h3 {
    font-size: 1.4rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 11px 13px;
  }

  .whatsapp-float > span:last-child {
    display: none;
  }
}

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

  .reviews-track {
    animation: none;
  }
}
.video-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgb(153 35 35 / 35%);
    background: rgb(180 45 45 / 12%);
    color: #14814a;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 14px;
    margin-bottom: 14px;
}
