@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap");

:root {
  --ink: #07100b;
  --ink-2: #0c1811;
  --forest: #10251a;
  --forest-light: #1e4631;
  --ivory: #f4f0e7;
  --paper: #ede7dc;
  --paper-deep: #dcd2c2;
  --white: #fffdf8;
  --gold: #d5a84f;
  --gold-light: #f4dda1;
  --gold-deep: #8f6524;
  --green: #27a861;
  --muted: #a3aa9f;
  --line: rgba(223, 190, 119, 0.22);
  --display: "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --body: "DM Sans", "Segoe UI", sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

::selection {
  color: var(--ink);
  background: var(--gold-light);
}

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

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-fill {
  fill: currentColor;
  stroke: none;
}

.whatsapp-mark {
  fill: currentColor;
  stroke: none;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

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

.section {
  position: relative;
  padding-block: 130px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1100;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light), var(--gold));
  box-shadow: 0 0 16px rgba(244, 221, 161, 0.7);
}

.site-header {
  position: fixed;
  top: 18px;
  right: 24px;
  left: 24px;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1340px;
  min-height: 72px;
  margin: auto;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(7, 16, 11, 0.46);
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px) saturate(130%);
  transition: background 0.35s ease, border-color 0.35s ease, top 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(224, 185, 103, 0.18);
  background: rgba(7, 16, 11, 0.9);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: max-content;
  gap: 11px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.3));
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  gap: 9px;
}

.header-cta > svg:first-child {
  width: 20px;
  height: 20px;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: none;
  box-shadow: none;
  filter: none;
  shape-rendering: geometricPrecision;
}

.header-cta:hover > svg:first-child {
  transform: none !important;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  gap: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.button::before {
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  content: "";
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), inset 0 -8px 22px rgba(0, 0, 0, 0.18);
}

.button::after {
  position: absolute;
  top: -80%;
  left: -45%;
  z-index: -1;
  width: 28%;
  height: 260%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: rotate(20deg) translateX(-280%);
  transition: transform 0.85s ease;
}

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

.button:hover::after {
  transform: rotate(20deg) translateX(630%);
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s ease;
}

.button:hover svg:last-child {
  transform: translateX(3px);
}

.button--small {
  min-height: 46px;
  padding-inline: 19px;
  font-size: 10px;
}

.button--lg {
  min-height: 62px;
  padding-inline: 30px;
  font-size: 11px;
}

.button--primary {
  color: #171106;
  border-color: rgba(255, 236, 186, 0.46);
  background: linear-gradient(115deg, #b57a28 0%, #f5dea2 50%, #c69239 100%);
  background-size: 160% 160%;
  box-shadow: 0 14px 38px rgba(183, 124, 42, 0.28), inset 0 0 20px rgba(255, 255, 255, 0.16);
}

.button--primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 18px 50px rgba(213, 168, 79, 0.38), 0 0 0 4px rgba(244, 221, 161, 0.07);
}

.button--whatsapp {
  border-color: rgba(109, 240, 163, 0.35);
  background: linear-gradient(135deg, #1f8f50, #28b766);
  box-shadow: 0 12px 35px rgba(30, 151, 82, 0.2), inset 0 0 18px rgba(255, 255, 255, 0.1);
}

.button--whatsapp:hover {
  box-shadow: 0 16px 44px rgba(37, 190, 100, 0.3), 0 0 0 4px rgba(60, 211, 126, 0.07);
}

.button--whatsapp .whatsapp-mark {
  width: 20px;
  height: 20px;
  flex: none;
  filter: none;
}

.button--whatsapp:hover .whatsapp-mark {
  transform: none;
}

.button--outline {
  border-color: rgba(224, 191, 119, 0.3);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.025);
}

.button--outline:hover {
  border-color: rgba(244, 221, 161, 0.7);
  background: rgba(213, 168, 79, 0.08);
}

.menu-toggle,
.mobile-menu,
.mobile-whatsapp {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  background: #0c160d;
}

.hero__media,
.hero__veil,
.hero__glow {
  position: absolute;
  inset: 0;
}

.hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-image: url("/assets/hero.webp");
  background-position: center;
  background-size: cover;
  pointer-events: none;
  transform: scale(1.035);
  will-change: transform;
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(5, 14, 9, 0.98) 0%, rgba(6, 15, 10, 0.9) 31%, rgba(7, 16, 11, 0.37) 58%, rgba(7, 16, 11, 0.03) 79%),
    linear-gradient(0deg, rgba(5, 12, 8, 0.72) 0%, transparent 35%, rgba(2, 9, 5, 0.18) 100%);
}

.hero__glow {
  left: -18%;
  width: 75%;
  background: radial-gradient(circle at 36% 48%, rgba(204, 148, 48, 0.16), transparent 50%);
  mix-blend-mode: screen;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 180px;
  content: "";
  background: linear-gradient(0deg, var(--ink), transparent);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: end;
  padding-top: 142px;
  padding-bottom: 92px;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  gap: 9px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold-light);
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 5px rgba(244, 221, 161, 0.08), 0 0 18px rgba(244, 221, 161, 0.6);
  animation: pulse-dot 2.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  50% { box-shadow: 0 0 0 9px rgba(244, 221, 161, 0), 0 0 25px rgba(244, 221, 161, 0.85); }
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.8rem, 6.2vw, 6.8rem);
  line-height: 0.92;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #b27828 0%, #f7e8b6 24%, #d7a958 48%, #fff0c1 70%, #a76e22 100%);
  background-size: 250% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: gold-flow 7s ease-in-out infinite;
  -webkit-text-fill-color: transparent;
}

@keyframes gold-flow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 2;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.text-link svg {
  width: 15px;
}

.text-link:hover {
  color: var(--gold-light);
  border-color: var(--gold);
}

.hero__assurances {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
  gap: 9px 24px;
}

.hero__assurances span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero__assurances svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
}

.hero__proof {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: 224px;
  padding: 19px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(8, 17, 12, 0.57);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero__proof-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  color: #f5bd45;
  font-size: 11px;
  letter-spacing: 1px;
}

.hero__proof-top strong {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 13px;
}

.hero__proof p {
  margin: 10px 0 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}

.hero__proof a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__proof a svg {
  width: 13px;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.hero__scroll i {
  display: block;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.hero__scroll i::after {
  display: block;
  width: 50%;
  height: 100%;
  content: "";
  background: var(--gold);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  from { transform: translateX(-120%); }
  to { transform: translateX(250%); }
}

.trust-strip {
  position: relative;
  z-index: 5;
  border-block: 1px solid var(--line);
  background: #0a160f;
}

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

.trust-strip__grid > div {
  display: grid;
  min-height: 115px;
  align-content: center;
  justify-items: center;
  border-right: 1px solid var(--line);
  text-align: center;
}

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

.trust-strip strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.trust-strip span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.value-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--ink);
  background-size: 70px 70px;
}

.ambient-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
}

.ambient-orb--one {
  top: -260px;
  right: -120px;
  background: radial-gradient(circle, rgba(193, 139, 54, 0.12), transparent 70%);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 62px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.legacy__copy h2,
.experience__copy h2,
.advantage__intro h2,
.reviews-heading h2,
.qualification__copy h2,
.faq__intro h2,
.final-cta__content h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading p,
.advantage__intro > p,
.qualification__copy > p,
.faq__intro > p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 16px;
  line-height: 1.8;
}

.section-heading--center p {
  margin-inline: auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  position: relative;
  min-height: 380px;
  padding: 38px 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  isolation: isolate;
  transition: background 0.35s ease, transform 0.35s ease;
}

.interactive-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  background: radial-gradient(320px circle at var(--x, 50%) var(--y, 50%), rgba(220, 178, 91, 0.12), transparent 62%);
  transition: opacity 0.35s ease;
}

.interactive-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  background: rgba(255, 255, 255, 0.026);
  transform: translateY(-4px);
}

.value-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 80px;
  place-items: center;
  border: 1px solid rgba(224, 191, 119, 0.3);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(213, 168, 79, 0.06);
  box-shadow: inset 0 0 24px rgba(213, 168, 79, 0.05);
}

.value-card__icon svg {
  width: 23px;
  height: 23px;
}

.bone-mark {
  display: block;
  width: 28px;
  height: 28px;
  background: currentColor;
  -webkit-mask: url("/assets/icon-bone.png") center / contain no-repeat;
  mask: url("/assets/icon-bone.png") center / contain no-repeat;
}

.value-card > span {
  position: absolute;
  top: 39px;
  right: 26px;
  color: rgba(255, 255, 255, 0.16);
  font-family: var(--display);
  font-size: 18px;
}

.value-card h3 {
  margin-bottom: 14px;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
}

.value-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.8;
}

.value-card__line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.45s ease;
}

.value-card:hover .value-card__line {
  transform: scaleX(1);
}

.experience {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 45%, rgba(33, 78, 52, 0.36), transparent 32%),
    var(--ink-2);
}

.experience__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(70px, 11vw, 150px);
}

.experience__copy {
  max-width: 650px;
}

.experience__lead {
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.85;
}

.experience blockquote {
  position: relative;
  margin: 0 0 38px;
  padding: 28px 0 28px 29px;
  border-left: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 23px;
  font-style: italic;
  line-height: 1.55;
}

.experience blockquote::before {
  position: absolute;
  top: -26px;
  left: 14px;
  color: rgba(213, 168, 79, 0.08);
  content: "“";
  font-family: var(--display);
  font-size: 130px;
}

.experience cite {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.experience__mini > div {
  display: flex;
  align-items: center;
  padding: 16px;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
}

.experience__mini svg {
  flex: none;
  color: var(--gold);
}

.experience__mini span {
  display: grid;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  line-height: 1.5;
}

.experience__mini strong {
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.reel-stage {
  position: relative;
  width: min(100%, 390px);
  margin-inline: auto;
}

.reel-stage__halo {
  position: absolute;
  inset: 8% -22%;
  border: 1px solid rgba(222, 180, 93, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(46, 125, 77, 0.16), inset 0 0 80px rgba(215, 169, 75, 0.06);
  animation: halo-rotate 16s linear infinite;
}

@keyframes halo-rotate {
  to { transform: rotate(360deg); }
}

.reel-card {
  position: relative;
  z-index: 1;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255, 229, 172, 0.4);
  border-radius: 34px;
  background: #101712;
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.5), inset 0 0 0 6px rgba(255, 255, 255, 0.03);
}

.reel-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  content: "";
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), inset 0 -80px 80px rgba(4, 10, 6, 0.5);
}

.story-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sound-toggle {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 9px 13px 9px 9px;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(5, 12, 8, 0.5);
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.sound-toggle svg {
  width: 18px;
  height: 18px;
}

.reel-card__meta {
  position: absolute;
  right: 22px;
  bottom: 18px;
  left: 22px;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reel-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 12px 15px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(10, 24, 16, 0.72);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.24);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.reel-note--top {
  top: 16%;
  right: -31%;
}

.reel-note--top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #45c878;
  box-shadow: 0 0 14px #45c878;
}

.reel-note--bottom {
  bottom: 5%;
  left: -30%;
}

.reel-note svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
}

.legacy {
  color: #171a16;
  background: var(--ivory);
}

.legacy__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(70px, 10vw, 135px);
}

.legacy__visual {
  position: relative;
  min-height: 710px;
  isolation: isolate;
}

.legacy__visual::before {
  position: absolute;
  top: 9%;
  right: -4%;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid rgba(141, 99, 34, 0.13);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.legacy__frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(107, 78, 31, 0.24);
  background: #ded6c7;
  box-shadow: 0 35px 70px rgba(42, 32, 17, 0.18);
}

.legacy__frame::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, 0.2);
}

.legacy__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.legacy__frame:hover img {
  transform: scale(1.04);
}

.legacy__frame--main {
  top: 0;
  right: 0;
  width: 82%;
  aspect-ratio: 0.82;
  border-radius: 280px 280px 34px 34px;
  box-shadow: 0 42px 80px rgba(42, 32, 17, 0.2);
}

.legacy__frame--small {
  bottom: 12px;
  left: 0;
  z-index: 2;
  width: 42%;
  aspect-ratio: 0.78;
  border: 10px solid var(--ivory);
  border-radius: 150px 150px 24px 24px;
  box-shadow: 0 28px 65px rgba(42, 32, 17, 0.24);
}

.legacy__seal {
  position: absolute;
  top: 54px;
  left: 0;
  z-index: 3;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border: 1px solid rgba(130, 90, 26, 0.34);
  border-radius: 50%;
  color: var(--gold-deep);
  background: rgba(247, 242, 232, 0.92);
  box-shadow: 0 16px 45px rgba(43, 32, 17, 0.18), inset 0 0 0 5px rgba(172, 122, 42, 0.05);
  text-align: center;
  backdrop-filter: blur(10px);
}

.legacy__seal::before,
.legacy__seal::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--gold-deep);
}

.legacy__seal::before { top: 61px; left: 12px; }
.legacy__seal::after { top: 61px; right: 12px; }

.legacy__seal strong,
.legacy__seal span {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.legacy__seal b {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

.legacy__caption {
  position: absolute;
  right: 0;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 12px 17px;
  gap: 9px;
  border: 1px solid rgba(125, 87, 28, 0.2);
  border-radius: 999px;
  color: #6f5325;
  background: rgba(247, 242, 232, 0.9);
  box-shadow: 0 14px 35px rgba(42, 32, 17, 0.12);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.legacy__caption span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(182, 126, 40, 0.45);
}

.legacy .kicker {
  color: var(--gold-deep);
}

.legacy__copy h2 {
  color: #151a15;
}

.legacy__copy p {
  margin-bottom: 22px;
  color: #5b5d56;
  font-size: 16px;
  line-height: 1.85;
}

.legacy__credentials {
  display: flex;
  align-items: center;
  margin: 34px 0;
  padding: 19px 0;
  gap: 20px;
  border-block: 1px solid rgba(129, 91, 30, 0.18);
}

.credential-logos {
  display: flex;
  align-items: center;
  flex: none;
  gap: 10px;
}

.credential-logos img {
  object-fit: contain;
}

.credential-logos img:first-child {
  width: 58px;
  height: 58px;
}

.credential-logos img:last-child {
  width: 38px;
  height: 38px;
}

.legacy__credentials > div:last-child {
  display: grid;
  gap: 5px;
}

.legacy__credentials strong {
  color: #252a24;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
}

.legacy__credentials span {
  color: #77796f;
  font-size: 11px;
}

.legacy .button--outline {
  color: #1f241e;
  border-color: rgba(109, 76, 24, 0.25);
  background: rgba(255, 255, 255, 0.34);
}

.puppies {
  overflow: hidden;
  background: #07110b;
}

.puppies .section-heading {
  max-width: 880px;
}

.puppy-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.15fr;
  height: min(640px, 54vw);
  gap: 10px;
}

.puppy-gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #172219;
}

.puppy-gallery__item:first-child { border-radius: 0 20px 20px 0; }
.puppy-gallery__item:last-child { border-radius: 20px 0 0 20px; }

.puppy-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.03);
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.6s ease;
}

.puppy-gallery__item::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 12, 8, 0.72), transparent 45%);
}

.puppy-gallery__item:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.045);
}

.puppy-gallery__item figcaption {
  position: absolute;
  bottom: 24px;
  left: 25px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--display);
  font-size: 22px;
  font-style: italic;
}

.puppies__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 36px;
}

.puppies__cta p {
  display: flex;
  align-items: center;
  max-width: 570px;
  margin: 0;
  gap: 12px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.puppies__cta p span {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46c97b;
  box-shadow: 0 0 18px rgba(70, 201, 123, 0.8);
}

.advantage {
  overflow: hidden;
  background: #0b1710;
}

.ambient-orb--two {
  bottom: -210px;
  left: -180px;
  background: radial-gradient(circle, rgba(45, 112, 72, 0.16), transparent 70%);
}

.advantage__grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(60px, 9vw, 120px);
}

.advantage__intro {
  position: sticky;
  top: 150px;
  align-self: start;
}

.advantage__intro h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
}

.advantage__list {
  border-top: 1px solid var(--line);
}

.advantage-row {
  display: grid;
  grid-template-columns: 54px 1fr 48px;
  align-items: center;
  min-height: 180px;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.advantage-row > b {
  align-self: start;
  padding-top: 47px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
}

.advantage-row h3 {
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
}

.advantage-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.7;
}

.advantage-row > svg {
  width: 34px;
  height: 34px;
  color: rgba(224, 186, 104, 0.5);
}

.process {
  color: #161b16;
  background: var(--paper);
}

.process .kicker {
  color: var(--gold-deep);
}

.process .section-heading p {
  color: #686c64;
}

.process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process__steps li {
  position: relative;
  min-height: 300px;
  padding: 30px 26px 28px;
  overflow: hidden;
  border: 1px solid rgba(126, 88, 29, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 95% 5%, rgba(193, 143, 55, 0.12), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(244, 238, 227, 0.7));
  box-shadow: 0 18px 45px rgba(70, 51, 21, 0.08), inset 0 1px 0 #fff;
  text-align: left;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.process__steps li::before {
  display: none;
}

.process__steps li:not(:last-child)::after {
  display: none;
}

.process__steps li:hover {
  border-color: rgba(157, 110, 36, 0.32);
  box-shadow: 0 24px 58px rgba(70, 51, 21, 0.13), inset 0 1px 0 #fff;
  transform: translateY(-7px);
}

.process__steps li > span {
  position: absolute;
  top: 50%;
  right: 10px;
  bottom: auto;
  z-index: 0;
  color: rgba(116, 81, 27, 0.05);
  font-family: var(--display);
  font-size: 172px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.8;
  pointer-events: none;
  transform: translateY(-50%);
  user-select: none;
}

.process__icon {
  position: relative;
  z-index: 2;
  display: block;
  width: fit-content;
  height: auto;
  margin: 15px 0 74px;
  border: 0;
  border-radius: 0;
  color: var(--gold-deep);
  background: none;
  box-shadow: none;
}

.process__icon::before {
  display: none;
}

.process__icon::after {
  display: none;
}

.process__icon svg {
  width: 31px;
  height: 31px;
  filter: none;
  shape-rendering: geometricPrecision;
}

.process__steps li:first-child .process__icon svg {
  width: 29px;
  height: 29px;
}

.process__steps h3 {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
}

.process__steps p {
  position: relative;
  z-index: 2;
  color: #70736d;
  font-size: 12px;
  line-height: 1.7;
}

.reviews-section {
  background: #08130c;
}

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 55px;
  gap: 45px;
}

.reviews-heading h2 {
  max-width: 820px;
  margin: 0;
}

.reviews-rating {
  display: flex;
  align-items: center;
  flex: none;
  padding: 18px 22px;
  gap: 17px;
  border: 1px solid rgba(223, 185, 104, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.reviews-rating > strong {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.reviews-rating > div {
  display: grid;
  gap: 5px;
}

.reviews-rating .stars {
  font-size: 13px;
}

.reviews-rating small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reviews-carousel {
  --review-gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(223, 185, 104, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(56, 130, 81, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(210, 165, 75, 0.065), transparent 40%),
    #0c1b12;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.reviews-viewport {
  padding: 30px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: var(--review-gap);
}

.review-card {
  position: relative;
  display: flex;
  width: calc((100% - (var(--review-gap) * 2)) / 3);
  min-width: calc((100% - (var(--review-gap) * 2)) / 3);
  min-height: 285px;
  padding: 25px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  scroll-snap-align: start;
}

.review-card::after {
  position: absolute;
  right: 12px;
  bottom: -45px;
  color: rgba(224, 186, 104, 0.06);
  content: "“";
  font-family: var(--display);
  font-size: 180px;
  line-height: 1;
}

.review-card__top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.review-card__top > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(224, 186, 104, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(221, 176, 86, 0.08);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.review-card__top > div {
  display: grid;
  gap: 4px;
}

.review-card__top strong {
  font-size: 12px;
}

.review-card__top small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card > .stars {
  margin-bottom: 18px;
  font-size: 12px;
}

.review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.42;
}

.reviews-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 30px;
  gap: 25px;
}

.reviews-footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
}

.reviews-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(224, 186, 104, 0.24);
  border-radius: 50%;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, opacity 0.25s ease;
}

.reviews-controls button:hover {
  border-color: rgba(224, 186, 104, 0.65);
  background: rgba(224, 186, 104, 0.08);
}

.reviews-controls button:disabled {
  opacity: 0.28;
  cursor: default;
}

.reviews-controls button:first-child svg {
  transform: rotate(180deg);
}

.reviews-controls svg {
  width: 16px;
  height: 16px;
}

.reviews-controls > span {
  width: 90px;
  height: 2px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.reviews-controls i {
  display: block;
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #b57a28, #f5dea2);
  transition: width 0.2s ease;
}

.reviews-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 28px;
}

.reviews-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.qualification {
  background: var(--ink-2);
}

.qualification__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: clamp(70px, 9vw, 120px);
}

.qualification__copy h2 {
  font-size: clamp(2.7rem, 4.4vw, 4.5rem);
}

.qualification__copy ul {
  display: grid;
  margin: 35px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.qualification__copy li {
  display: flex;
  align-items: center;
  padding: 15px 17px;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.018);
  font-size: 12px;
}

.qualification__copy li svg {
  color: var(--gold);
}

.qualification__copy li strong {
  color: rgba(255, 255, 255, 0.84);
}

.quiz-card {
  overflow: hidden;
  border: 1px solid rgba(224, 188, 107, 0.22);
  border-radius: var(--radius);
  background: #f4f0e7;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 #fff;
}

.quiz-card__top {
  display: flex;
  align-items: center;
  padding: 22px 28px;
  gap: 25px;
  border-bottom: 1px solid rgba(109, 81, 39, 0.13);
}

.quiz-card__top > div:first-child {
  display: grid;
  min-width: 120px;
  color: #6b6d67;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.quiz-card__top strong {
  margin-top: 4px;
  color: #1b201a;
  font-size: 11px;
}

.quiz-progress {
  flex: 1;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(73, 62, 43, 0.1);
}

.quiz-progress span {
  display: block;
  width: 25%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transition: width 0.35s ease;
}

#lead-quiz {
  min-height: 560px;
  padding: 34px 38px 28px;
  color: #1d231d;
}

.quiz-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
  animation: step-in 0.35s ease both;
}

.quiz-step.is-active {
  display: block;
}

@keyframes step-in {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz-step legend {
  max-width: 470px;
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.quiz-step > p {
  margin-bottom: 23px;
  color: #74776f;
  font-size: 12px;
}

.choice {
  position: relative;
  display: block;
  margin-bottom: 9px;
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice span {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: 13px 48px 13px 18px;
  border: 1px solid rgba(67, 72, 64, 0.14);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.4);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.choice span::after {
  position: absolute;
  right: 18px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(66, 71, 63, 0.3);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 4px #f4f0e7;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.choice:hover span {
  border-color: rgba(151, 104, 32, 0.38);
  transform: translateX(2px);
}

.choice input:focus-visible + span {
  outline: 2px solid rgba(150, 104, 31, 0.45);
  outline-offset: 2px;
}

.choice input:checked + span {
  border-color: rgba(148, 101, 31, 0.5);
  background: rgba(207, 166, 87, 0.12);
}

.choice input:checked + span::after {
  border-color: var(--gold-deep);
  background: var(--gold-deep);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.field--full {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 7px;
}

.field span {
  color: #64675f;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  min-height: 55px;
  padding: 0 16px;
  border: 1px solid rgba(67, 72, 64, 0.15);
  border-radius: 10px;
  outline: none;
  color: #1a201a;
  background: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field input:focus {
  border-color: rgba(148, 101, 31, 0.52);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(174, 122, 42, 0.08);
}

.field input::placeholder {
  color: #999b94;
}

.consent {
  display: flex;
  align-items: flex-start;
  margin-top: 20px;
  gap: 10px;
  color: #777a72;
  font-size: 10px;
  line-height: 1.5;
  cursor: pointer;
}

.consent input {
  margin-top: 2px;
  accent-color: var(--gold-deep);
}

.quiz-error {
  min-height: 20px;
  padding-top: 12px;
  color: #a54738;
  font-size: 10px;
  font-weight: 600;
}

.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.quiz-back {
  display: inline-flex;
  align-items: center;
  padding: 12px 8px;
  gap: 7px;
  border: 0;
  color: #6d7069;
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
}

.quiz-back svg {
  width: 15px;
  transform: rotate(180deg);
}

.quiz-back:disabled {
  opacity: 0;
  pointer-events: none;
}

.quiz-actions .button {
  min-width: 170px;
}

.faq {
  background: #07110b;
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.05fr;
  gap: clamp(70px, 10vw, 130px);
}

.faq__intro {
  align-self: start;
}

.faq__intro h2 {
  font-size: clamp(2.7rem, 4.3vw, 4.4rem);
}

.faq__intro .button {
  margin-top: 31px;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  padding-right: 8px;
  gap: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  position: relative;
  flex: none;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(220, 182, 100, 0.2);
  border-radius: 50%;
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--gold-light);
  transition: transform 0.25s ease;
}

.faq summary span::after {
  transform: rotate(90deg);
}

.faq details[open] summary span::after {
  transform: rotate(0);
}

.faq details p {
  max-width: 680px;
  margin: -4px 56px 28px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  line-height: 1.8;
}

.final-cta {
  display: flex;
  min-height: 740px;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.final-cta__image,
.final-cta__overlay {
  position: absolute;
  inset: 0;
}

.final-cta__image {
  background: url("/assets/slide-5.jpg") center 38% / cover;
  transform: scale(1.08);
}

.final-cta__overlay {
  background:
    radial-gradient(circle at center, rgba(7, 16, 11, 0.3), rgba(7, 16, 11, 0.86) 72%),
    linear-gradient(0deg, #07110b, transparent 28%, transparent 75%, #07110b);
}

.final-cta__content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.final-cta__content h2 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.98;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.45);
}

.final-cta__content > p {
  max-width: 680px;
  margin: 0 auto 35px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.8;
}

.final-cta__micro {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  gap: 24px;
}

.final-cta__micro span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta__micro svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
}

.site-footer {
  padding: 70px 0 26px;
  border-top: 1px solid var(--line);
  background: #050d08;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.5fr;
  align-items: center;
  padding-bottom: 50px;
  gap: 40px;
}

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

.footer-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.footer-brand > div {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact {
  display: grid;
  gap: 13px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--gold-light);
}

.footer-contact svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.footer-social span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--gold-light);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  border-color: rgba(225, 188, 107, 0.46);
  background: rgba(213, 168, 79, 0.08);
  transform: translateY(-2px);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  gap: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.27);
  font-size: 8px;
  letter-spacing: 0.06em;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.value-grid .reveal:nth-child(2),
.process__steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.value-grid .reveal:nth-child(3),
.process__steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.value-grid .reveal:nth-child(4),
.process__steps .reveal:nth-child(4) { transition-delay: 0.24s; }

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1500;
  max-width: 360px;
  padding: 14px 18px;
  border: 1px solid rgba(224, 189, 110, 0.28);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(8, 17, 12, 0.94);
  box-shadow: var(--shadow);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(14px);
}

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

@media (max-width: 1100px) {
  :root { --container: min(100% - 40px, 980px); }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .experience__grid { grid-template-columns: 1fr 360px; gap: 70px; }
  .reel-note--top { right: -12%; }
  .reel-note--bottom { left: -14%; }
  .qualification__grid { grid-template-columns: 0.75fr 1fr; gap: 55px; }
  .legacy__seal { left: 10px; }
  .review-card { width: calc((100% - var(--review-gap)) / 2); min-width: calc((100% - var(--review-gap)) / 2); }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 32px, 720px); }
  .section { padding-block: 96px; }
  .site-header { right: 14px; left: 14px; min-height: 64px; padding: 6px 8px 6px 10px; }
  .brand img { width: 44px; height: 44px; }
  .brand-copy small { display: none; }
  .header-cta { display: none; }
  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
  }
  .menu-toggle span { display: block; width: 17px; height: 1px; background: #fff; transition: transform 0.25s ease; }
  .menu-toggle.is-active span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle.is-active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 990;
    display: grid;
    align-content: center;
    padding: 100px 30px 40px;
    background: rgba(6, 14, 9, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .mobile-menu.is-open { opacity: 1; pointer-events: auto; }
  .mobile-menu nav { display: grid; margin-bottom: 35px; }
  .mobile-menu nav a { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); font-family: var(--display); font-size: 27px; }
  body.menu-open { overflow: hidden; }
  .hero { min-height: 920px; align-items: flex-end; }
  .hero__media { object-position: 63% center; background-position: 63% center; }
  .hero__veil {
    background:
      linear-gradient(0deg, rgba(5, 13, 8, 1) 0%, rgba(5, 13, 8, 0.92) 34%, rgba(5, 13, 8, 0.24) 72%, rgba(5, 13, 8, 0.12) 100%),
      linear-gradient(90deg, rgba(5, 13, 8, 0.75), transparent 80%);
  }
  .hero__content { display: block; padding-top: 250px; padding-bottom: 80px; }
  .hero h1 { font-size: clamp(3.5rem, 10vw, 5.6rem); }
  .hero__proof { display: none; }
  .hero__scroll { display: none; }
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__grid > div:nth-child(3) { border-left: 1px solid var(--line); }
  .trust-strip__grid > div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .experience__grid,
  .legacy__grid,
  .advantage__grid,
  .qualification__grid,
  .faq__grid { grid-template-columns: 1fr; }
  .experience__grid { gap: 75px; }
  .reel-stage { width: 350px; }
  .legacy__grid { gap: 70px; }
  .legacy__visual { width: min(100%, 610px); min-height: 660px; }
  .legacy__copy { max-width: 650px; }
  .puppy-gallery { grid-template-columns: repeat(2, 1fr); height: 900px; }
  .puppy-gallery__item:first-child,
  .puppy-gallery__item:last-child { border-radius: 0; }
  .advantage__intro { position: static; }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .process__steps li:not(:last-child)::after { display: none; }
  .reviews-heading { align-items: flex-start; flex-direction: column; margin-bottom: 42px; gap: 25px; }
  .reviews-rating { align-self: flex-start; }
  .qualification__grid { gap: 60px; }
  .qualification__copy { max-width: 650px; }
  .faq__grid { gap: 55px; }
  .faq__intro { max-width: 650px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 600px) {
  :root { --container: calc(100% - 30px); --radius: 18px; }
  html { scroll-padding-top: 76px; }
  body { padding-bottom: 74px; }
  .section { padding-block: 78px; }
  .brand-copy strong { font-size: 12px; }
  .hero { min-height: max(760px, 100svh); align-items: flex-start; background: #051008; }
  .hero__media {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    height: clamp(390px, 67svh, 520px);
    object-position: 66% 42%;
    background-position: 66% 42%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #0b160e;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 64%, rgba(0, 0, 0, 0.96) 70%, rgba(0, 0, 0, 0.72) 80%, rgba(0, 0, 0, 0.28) 91%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 64%, rgba(0, 0, 0, 0.96) 70%, rgba(0, 0, 0, 0.72) 80%, rgba(0, 0, 0, 0.28) 91%, transparent 100%);
    transform: scale(1.01);
  }
  .hero__veil {
    background:
      linear-gradient(0deg, rgba(5, 16, 8, 1) 0%, rgba(5, 16, 8, 1) 42%, rgba(5, 16, 8, 0.96) 51%, rgba(5, 16, 8, 0.68) 62%, rgba(5, 16, 8, 0.26) 75%, rgba(5, 16, 8, 0.07) 100%),
      linear-gradient(90deg, rgba(5, 13, 8, 0.34), transparent 82%);
  }
  .hero__content { padding-top: clamp(236px, 41svh, 282px); padding-bottom: 96px; }
  .eyebrow, .kicker { margin-bottom: 17px; font-size: 8px; }
  .hero h1 { margin-bottom: 20px; font-size: clamp(3rem, 13.2vw, 4.2rem); line-height: 0.95; }
  .hero__lead { margin-bottom: 25px; font-size: 14px; line-height: 1.65; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hero__actions .button { width: 100%; }
  .text-link { align-self: center; }
  .hero__assurances { margin-top: 25px; gap: 8px 15px; }
  .hero__assurances span { font-size: 8px; }
  .trust-strip__grid > div { min-height: 92px; }
  .trust-strip strong { font-size: 22px; }
  .trust-strip span { font-size: 7px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2,
  .legacy__copy h2,
  .experience__copy h2,
  .advantage__intro h2,
  .reviews-heading h2,
  .qualification__copy h2,
  .faq__intro h2 { font-size: clamp(2.55rem, 12vw, 3.6rem); }
  .section-heading p,
  .advantage__intro > p,
  .qualification__copy > p,
  .faq__intro > p { font-size: 14px; line-height: 1.75; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 300px; padding: 28px 24px; }
  .value-card__icon { margin-bottom: 56px; }
  .experience__mini { grid-template-columns: 1fr; }
  .experience__lead { font-size: 15px; }
  .experience blockquote { font-size: 20px; }
  .reel-stage { width: min(88%, 340px); }
  .reel-note--top { right: -7%; }
  .reel-note--bottom { left: -8%; }
  .legacy__visual { min-height: 540px; }
  .legacy__frame--main { width: 84%; }
  .legacy__frame--small { width: 43%; border-width: 7px; }
  .legacy__seal { top: 35px; left: 0; width: 108px; height: 108px; }
  .legacy__seal b { font-size: 29px; }
  .legacy__seal::before, .legacy__seal::after { top: 54px; }
  .legacy__caption { right: 0; bottom: 6px; max-width: 58%; padding: 10px 13px; font-size: 7px; }
  .legacy__credentials { align-items: flex-start; }
  .puppy-gallery { height: 720px; gap: 5px; }
  .puppy-gallery__item figcaption { bottom: 14px; left: 15px; font-size: 17px; }
  .puppies__cta { align-items: stretch; flex-direction: column; gap: 22px; }
  .puppies__cta .button { width: 100%; }
  .advantage__grid { gap: 40px; }
  .advantage-row { grid-template-columns: 38px 1fr 28px; min-height: 155px; gap: 13px; }
  .advantage-row > b { padding-top: 42px; }
  .advantage-row h3 { font-size: 15px; }
  .advantage-row p { font-size: 11px; }
  .advantage-row > svg { width: 25px; height: 25px; }
  .process__steps { grid-template-columns: 1fr; gap: 14px; }
  .process__steps li { min-height: 250px; padding: 26px 23px; }
  .process__icon { margin-bottom: 52px; }
  .reviews-heading { margin-bottom: 32px; }
  .reviews-rating { width: 100%; justify-content: center; }
  .reviews-rating > strong { font-size: 42px; }
  .reviews-carousel { border-radius: 20px; }
  .reviews-viewport { padding: 16px; }
  .review-card { width: 88%; min-width: 88%; min-height: 280px; padding: 22px; }
  .review-card blockquote { font-size: 19px; }
  .reviews-footer { align-items: flex-start; padding: 0 16px 18px; flex-direction: column; }
  .reviews-footer > p { max-width: 260px; line-height: 1.55; }
  .reviews-controls { width: 100%; justify-content: space-between; }
  .reviews-controls > span { flex: 1; }
  .reviews-cta { align-items: stretch; flex-direction: column; gap: 16px; text-align: center; }
  .reviews-cta .button { width: 100%; }
  #lead-quiz { min-height: 590px; padding: 28px 19px 22px; }
  .quiz-card__top { padding: 18px 20px; }
  .quiz-step legend { font-size: 25px; }
  .choice span { min-height: 54px; padding-left: 15px; font-size: 11px; }
  .field-grid { grid-template-columns: 1fr; gap: 12px; }
  .field--full { grid-column: auto; }
  .quiz-actions { gap: 8px; }
  .quiz-actions .button { min-width: 0; flex: 1; padding-inline: 12px; font-size: 9px; }
  .quiz-back { flex: none; }
  .faq summary { min-height: 80px; font-size: 12px; }
  .faq details p { margin-right: 0; font-size: 12px; }
  .final-cta { min-height: 680px; }
  .final-cta__content h2 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .final-cta__content > p { font-size: 14px; }
  .final-cta__content .button { width: 100%; }
  .final-cta__micro { align-items: center; flex-direction: column; gap: 8px; }
  .site-footer { padding-top: 55px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-social { grid-column: auto; }
  .site-footer__bottom { flex-direction: column; gap: 12px; }
  .mobile-whatsapp {
    position: fixed;
    right: 10px;
    bottom: 9px;
    left: 10px;
    z-index: 980;
    display: grid;
    grid-template-columns: 34px 1fr 24px;
    align-items: center;
    min-height: 62px;
    padding: 7px 15px 7px 12px;
    gap: 11px;
    border: 1px solid rgba(106, 239, 161, 0.35);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(25, 133, 71, 0.96), rgba(38, 176, 96, 0.96));
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
    transition: opacity 0.25s ease, transform 0.32s var(--ease);
  }
  .mobile-whatsapp.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .mobile-whatsapp__icon { display: grid; width: 34px; height: 44px; place-items: center; color: #fff; }
  .mobile-whatsapp__icon svg { width: 28px; height: 28px; filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.16)); }
  .mobile-whatsapp > span:nth-child(2) { display: grid; line-height: 1.25; }
  .mobile-whatsapp small { color: rgba(255, 255, 255, 0.7); font-size: 8px; letter-spacing: 0.07em; text-transform: uppercase; }
  .mobile-whatsapp strong { font-family: var(--sans); font-size: 12px; }
  .mobile-whatsapp__arrow { width: 19px; }
  .toast { right: 15px; bottom: 86px; left: 15px; max-width: none; }
}

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

