:root {
  --ink: #07111f;
  --ink-2: #0b2038;
  --ink-3: #123a4a;
  --green: #1f9a7a;
  --green-soft: #9fe0c5;
  --mint: #eefaf5;
  --gold: #d9af4f;
  --gold-soft: #ffe6a3;
  --white: #ffffff;
  --paper: #f7faf9;
  --text: #182536;
  --muted: #68788e;
  --line: rgba(11, 32, 56, 0.1);
  --glass: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 18px 45px rgba(7, 17, 31, 0.08);
  --shadow-card: 0 28px 80px rgba(7, 17, 31, 0.13);
  --shadow-dark: 0 42px 120px rgba(0, 0, 0, 0.36);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 6%, rgba(159, 224, 197, 0.24), transparent 24rem),
    radial-gradient(circle at 92% 0%, rgba(255, 230, 163, 0.2), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbfa 48%, #ffffff 100%);
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(7, 17, 31, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 31, 0.025) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent 55%);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

:focus-visible {
  outline: 3px solid rgba(255, 230, 163, 0.85);
  outline-offset: 4px;
}

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-white {
  background:
    radial-gradient(circle at 0% 10%, rgba(159, 224, 197, 0.12), transparent 22rem),
    var(--white);
}

.section-soft {
  background:
    radial-gradient(circle at 18% 10%, rgba(159, 224, 197, 0.22), transparent 24rem),
    radial-gradient(circle at 90% 22%, rgba(255, 230, 163, 0.16), transparent 22rem),
    linear-gradient(180deg, #f8fcfb 0%, #eef8f4 100%);
}

.section-dark {
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(159, 224, 197, 0.18), transparent 20rem),
    radial-gradient(circle at 84% 20%, rgba(255, 230, 163, 0.18), transparent 22rem),
    linear-gradient(140deg, #050b14 0%, #0a1c31 45%, #0e4348 100%);
}

.icon-svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  width: min(1180px, calc(100% - 28px));
  min-height: 76px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.58));
  box-shadow:
    0 20px 70px rgba(7, 17, 31, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(22px);
  transition: box-shadow 0.24s var(--ease), background 0.24s var(--ease), border-color 0.24s var(--ease);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.95);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(255, 255, 255, 0.76));
  box-shadow:
    0 26px 90px rgba(7, 17, 31, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 900;
}

.brand-image {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 230, 163, 0.8), transparent 30%),
    linear-gradient(135deg, var(--ink), #116457);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 12px 28px rgba(7, 17, 31, 0.14);
}

.brand-image::before {
  content: "N";
  color: var(--white);
  font-weight: 900;
}

.brand-image:has(img:not(.is-missing))::before {
  display: none;
}

.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-size: 1.08rem;
  white-space: nowrap;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 30px;
  color: #405168;
  font-size: 0.9rem;
  font-weight: 850;
}

.header-nav a {
  position: relative;
  transition: color 0.22s var(--ease);
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}

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

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

.top-trust-bar {
  position: fixed;
  top: 102px;
  left: 50%;
  z-index: 45;
  width: min(1100px, calc(100% - 38px));
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 14, 26, 0.64);
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.18);
  backdrop-filter: blur(18px);
}

.top-trust-inner {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.75rem;
  font-weight: 850;
  white-space: nowrap;
}

.top-trust-inner span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.top-trust-inner .icon-svg {
  color: var(--gold-soft);
}

.top-trust-inner span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
  transform: translateY(-50%);
}

.btn {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
  isolation: isolate;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), filter 0.22s var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transition: transform 0.58s var(--ease);
}

.btn:hover {
  transform: translateY(-3px) scale(1.012);
  filter: saturate(1.08);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  color: #06111f;
  background: linear-gradient(135deg, #fff7d4 0%, #f4c44d 44%, #bd8217 100%);
  box-shadow:
    0 24px 58px rgba(217, 175, 79, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.btn-primary:hover {
  box-shadow:
    0 34px 76px rgba(217, 175, 79, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.btn-secondary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #137365);
  box-shadow:
    0 18px 42px rgba(31, 154, 122, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-small {
  min-height: 46px;
  padding-inline: 17px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #137365);
  font-size: 0.72rem;
  white-space: nowrap;
}

.btn-large {
  min-height: 64px;
  padding-inline: 34px;
}

.btn .ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.42);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.62s ease-out forwards;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding-top: 154px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 46%, rgba(255, 230, 163, 0.2), transparent 20rem),
    radial-gradient(circle at 18% 14%, rgba(159, 224, 197, 0.16), transparent 22rem),
    linear-gradient(142deg, #050b14 0%, #081e35 48%, #0d444a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 104px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(5, 11, 20, 0.26));
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shape,
.hero-particles span {
  position: absolute;
  pointer-events: none;
}

.hero-shape {
  z-index: 0;
  border-radius: 50%;
  filter: blur(14px);
}

.shape-one {
  right: -120px;
  top: 150px;
  width: 400px;
  height: 400px;
  opacity: 0.62;
  background: rgba(159, 224, 197, 0.16);
}

.shape-two {
  left: -140px;
  bottom: 80px;
  width: 300px;
  height: 300px;
  opacity: 0.34;
  background: rgba(255, 230, 163, 0.14);
}

.hero-particles span {
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  opacity: 0.62;
  background: rgba(255, 230, 163, 0.62);
  box-shadow: 0 0 22px rgba(255, 230, 163, 0.34);
  animation: floatParticle 7s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { top: 28%; left: 8%; }
.hero-particles span:nth-child(2) { top: 24%; right: 18%; animation-delay: 1.2s; }
.hero-particles span:nth-child(3),
.hero-particles span:nth-child(4) { display: none; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 30px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold-soft);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(2.65rem, 8vw, 5.3rem);
  line-height: 0.96;
  text-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(1.9rem, 5.2vw, 3.12rem);
  line-height: 1.06;
}

h3 {
  color: var(--ink);
  line-height: 1.22;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.hero-subtitle {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
  line-height: 1.75;
}

.hero-bullets {
  max-width: 590px;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-bullets li {
  position: relative;
  padding: 13px 16px 13px 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-weight: 750;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--gold-soft), var(--green-soft));
  box-shadow: 0 0 0 5px rgba(255, 230, 163, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 30px;
}

.secure-note {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.hero-proof-row {
  max-width: 570px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.hero-proof-row span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-proof-row strong {
  display: block;
  color: var(--gold-soft);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 1.28rem;
}

.trust-strip {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.trust-item {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.trust-icon,
.pain-card span,
.icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 14px 28px rgba(217, 175, 79, 0.2);
}

.trust-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border-radius: 50%;
}

.trust-icon .icon-svg,
.pain-card .icon-svg,
.benefit-card .icon-svg {
  width: 22px;
  height: 22px;
}

.trust-item strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
}

.product-showcase {
  position: relative;
  width: min(620px, 100%);
  min-height: 560px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  perspective: 1000px;
}

.product-orbit {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  opacity: 0.66;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: conic-gradient(from 130deg, transparent, rgba(255, 230, 163, 0.2), transparent 28%, rgba(159, 224, 197, 0.16), transparent 72%);
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.06);
}

.product-glow {
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 230, 163, 0.46), rgba(159, 224, 197, 0.15), transparent 70%);
  filter: blur(16px);
}

.product-card {
  position: relative;
  width: min(520px, 98%);
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 30px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08) 52%, rgba(255, 255, 255, 0.14));
  box-shadow: var(--shadow-dark), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  animation: productFloat 5.5s ease-in-out infinite;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  will-change: transform;
}

.product-card::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -26px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.24), transparent 68%);
  filter: blur(8px);
  transform: perspective(300px) rotateX(62deg);
}

.product-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff2ba, var(--gold));
  box-shadow: 0 12px 24px rgba(7, 17, 31, 0.12);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-image {
  position: relative;
  z-index: 1;
  max-height: 625px;
  object-fit: contain;
  transform-origin: center bottom;
  filter: drop-shadow(0 38px 42px rgba(0, 0, 0, 0.38)) drop-shadow(0 0 38px rgba(255, 230, 163, 0.11));
}

.product-info {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 30px rgba(7, 17, 31, 0.16);
}

.product-info strong {
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 0.92rem;
}

.product-info span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-proof {
  position: absolute;
  right: -8px;
  bottom: 34px;
  z-index: 3;
  max-width: 230px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: var(--white);
  background: rgba(5, 14, 26, 0.72);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
}

.floating-proof strong,
.floating-proof span {
  display: block;
}

.floating-proof strong {
  margin-bottom: 4px;
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 0.88rem;
}

.floating-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1.45;
}

.image-placeholder {
  display: none;
  place-items: center;
  text-align: center;
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff, var(--mint));
  border: 1px solid rgba(217, 175, 79, 0.42);
  border-radius: var(--radius-lg);
}

.image-placeholder span {
  color: var(--muted);
  font-size: 0.9rem;
}

img.is-missing {
  display: none;
}

img.is-missing + .image-placeholder,
img.is-missing ~ .image-placeholder {
  display: grid;
}

.product-placeholder {
  position: relative;
  z-index: 1;
  width: min(300px, 88%);
  min-height: 320px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.promo-band {
  position: relative;
  z-index: 5;
  margin-top: -34px;
}

.promo-inner {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(217, 175, 79, 0.32);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
}

.promo-inner .eyebrow {
  margin-bottom: 6px;
  color: var(--green);
}

.promo-inner strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.promo-inner small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.5;
}

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

.promo-timer span {
  min-height: 66px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff7df, #f2d78a);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  font-weight: 800;
}

.promo-timer b {
  display: block;
  font-size: 1.35rem;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.align-left {
  margin: 0;
  text-align: left;
}

.card-grid {
  display: grid;
  gap: 22px;
}

.card,
.step,
.testimonial,
.security-card,
.comparison-card,
.safety-box {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(14, 67, 72, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.card::before,
.step::before,
.testimonial::before,
.security-card::before,
.comparison-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 44%);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.card:hover,
.step:hover,
.testimonial:hover,
.security-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 154, 122, 0.2);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.card:hover::before,
.step:hover::before,
.testimonial:hover::before,
.security-card:hover::before,
.comparison-card:hover::after {
  opacity: 1;
}

.pain-card {
  min-height: 112px;
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.pain-card strong {
  color: var(--ink);
}

.split {
  display: grid;
  gap: 38px;
}

.solution-copy {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  color: var(--muted);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  font-size: 1.02rem;
  line-height: 1.85;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid rgba(31, 154, 122, 0.24);
}

.comparison-grid {
  display: grid;
  gap: 24px;
}

.comparison-card {
  padding: 32px;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.comparison-card.after {
  border-color: rgba(255, 230, 163, 0.48);
  background: radial-gradient(circle at 100% 0%, rgba(255, 230, 163, 0.16), transparent 38%), rgba(255, 255, 255, 0.1);
}

.comparison-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.comparison-card h3 {
  margin-bottom: 18px;
}

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

.comparison-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-soft);
}

.comparison-card.before li::before {
  background: rgba(255, 255, 255, 0.42);
}

.benefit-card {
  min-height: 220px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
}

.benefit-card .icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
}

.benefit-card h3 {
  margin: 20px 0 10px;
  font-size: 1.08rem;
}

.benefit-card p,
.step p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.steps {
  display: grid;
  gap: 22px;
}

.step {
  padding: 32px;
}

.step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--green));
  box-shadow: 0 14px 28px rgba(7, 17, 31, 0.12);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-weight: 900;
}

.offer-grid,
.testimonial-grid {
  display: grid;
  gap: clamp(22px, 2.5vw, 32px);
}

.offer-card {
  position: relative;
  min-height: 420px;
  display: grid;
  align-content: start;
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.offer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--green-soft), var(--gold-soft));
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.offer-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 230, 163, 0.42);
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.28);
}

.offer-card:hover::after {
  opacity: 1;
}

.offer-card.featured {
  min-height: 466px;
  border-color: rgba(255, 230, 163, 0.95);
  background:
    radial-gradient(circle at 52% 0%, rgba(255, 230, 163, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 230, 163, 0.12));
  box-shadow:
    0 48px 118px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 230, 163, 0.24),
    0 0 92px rgba(255, 230, 163, 0.16);
}

.offer-card.featured::before {
  height: 6px;
  background: linear-gradient(90deg, #fff3c2, var(--gold), var(--green-soft));
  box-shadow: 0 0 28px rgba(255, 230, 163, 0.38);
}

.kit-label,
.offer-detail {
  color: rgba(255, 255, 255, 0.72);
}

.kit-label {
  margin-bottom: 14px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.78rem;
}

.offer-detail {
  min-height: 48px;
  line-height: 1.55;
}

.kit-value {
  width: max-content;
  margin: 2px 0 10px;
  padding: 8px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
  font-weight: 900;
}

.kit-value.highlight {
  color: var(--ink);
  background: linear-gradient(135deg, #fff0b9, var(--gold));
}

.price {
  margin: 8px 0 24px;
  color: var(--gold-soft);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: clamp(2.65rem, 8vw, 3.45rem);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.badge {
  width: max-content;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--ink);
  background: linear-gradient(135deg, #fff0b9, var(--gold));
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.badge-soft {
  margin-left: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.offer-highlights {
  display: grid;
  gap: 9px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.offer-highlights li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
}

.offer-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 5px rgba(255, 230, 163, 0.1);
}

.offer-seals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.offer-seals span {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
}

.testimonial {
  padding: 30px;
  border-color: rgba(31, 154, 122, 0.12);
  background: radial-gradient(circle at 90% 0%, rgba(159, 224, 197, 0.2), transparent 30%), var(--white);
}

.testimonial img,
.avatar-placeholder {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 50%;
  object-fit: cover;
}

.avatar-placeholder {
  display: none;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--ink));
  font-weight: 900;
}

.testimonial img.is-missing + .avatar-placeholder {
  display: grid;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: -4px 0 12px;
}

.stars span {
  width: 14px;
  height: 14px;
  display: block;
  background: linear-gradient(135deg, #ffe7a0, #d8a733);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.testimonial p {
  color: var(--muted);
  line-height: 1.75;
}

.testimonial strong {
  color: var(--ink);
}

.safety-box {
  display: grid;
  gap: 26px;
  align-items: center;
  padding: 34px;
  background: rgba(255, 255, 255, 0.82);
}

.safety-image {
  width: 138px;
  min-height: 138px;
}

.seal-placeholder {
  width: 138px;
  height: 138px;
  border-radius: 50%;
  font-weight: 900;
}

.safety-box p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}

.security-grid {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.security-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.security-card strong,
.security-card span {
  display: block;
}

.security-card strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
}

.security-card span {
  color: var(--muted);
  line-height: 1.6;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 14px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 17, 31, 0.06);
  overflow: hidden;
  transition: border-color 0.24s var(--ease), box-shadow 0.24s var(--ease), transform 0.24s var(--ease);
}

.faq-item.active {
  border-color: rgba(31, 154, 122, 0.24);
  box-shadow: 0 18px 44px rgba(7, 17, 31, 0.1);
}

.faq-item button {
  width: 100%;
  min-height: 70px;
  padding: 19px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: background 0.24s var(--ease);
}

.faq-item button:hover {
  background: rgba(238, 250, 245, 0.5);
}

.faq-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--mint);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.24s var(--ease);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item p {
  max-height: 0;
  margin: 0;
  padding: 0 22px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.7;
  opacity: 0;
  transition: max-height 0.34s var(--ease), padding 0.34s var(--ease), opacity 0.24s var(--ease);
}

.faq-item.active p {
  max-height: 250px;
  padding: 0 22px 22px;
  opacity: 1;
}

.final-cta {
  padding: 76px 0;
}

.final-cta-box {
  display: grid;
  gap: 26px;
  align-items: center;
  padding: 42px 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
  text-align: left;
}

.final-cta-box h2 {
  margin: 0 0 16px;
  color: var(--white);
}

.final-cta-box p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.final-product {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.final-product::before {
  content: "";
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 230, 163, 0.32), rgba(159, 224, 197, 0.14), transparent 68%);
  filter: blur(8px);
}

.final-product img {
  position: relative;
  z-index: 1;
  max-height: 300px;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.28));
}

.final-placeholder {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  padding: 12px;
  border-top: 1px solid rgba(7, 17, 31, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.94));
  box-shadow: 0 -16px 34px rgba(7, 17, 31, 0.14);
  backdrop-filter: blur(14px);
}

.mobile-sticky-cta .btn {
  width: 100%;
}

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #041325;
  font-size: 0.86rem;
  text-align: center;
}

.site-footer p {
  margin-bottom: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

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

@keyframes floatParticle {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(-18px); opacity: 1; }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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

@media (min-width: 680px) {
  .header-nav {
    display: flex;
  }

  .trust-strip,
  .comparison-grid,
  .promo-inner,
  .card-grid,
  .offer-grid,
  .testimonial-grid,
  .steps,
  .security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .promo-inner {
    grid-template-columns: 1fr 320px;
  }

  .safety-box {
    grid-template-columns: 170px 1fr;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 0.94fr 1.06fr;
  }

  .split {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

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

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

  .offer-card.featured {
    transform: translateY(-30px) scale(1.065);
  }

  .offer-card.featured:hover {
    transform: translateY(-36px) scale(1.075);
  }

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

  .final-cta-box {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 48px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding: 10px;
  }

  .brand-text {
    display: none;
  }

  .brand-image {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .btn-small {
    min-height: 42px;
    max-width: 190px;
    padding-inline: 12px;
    font-size: 0.66rem;
  }

  .top-trust-bar {
    top: 84px;
    width: calc(100% - 20px);
    border-radius: 18px;
  }

  .top-trust-inner {
    justify-content: flex-start;
    min-height: 42px;
    padding: 0 14px;
    overflow-x: auto;
  }

  .top-trust-inner .icon-svg {
    width: 15px;
    height: 15px;
  }

  .hero {
    min-height: auto;
    padding-top: 138px;
  }

  .hero-grid {
    gap: 24px;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.05rem);
    line-height: 1.02;
  }

  .hero-subtitle {
    font-size: 1.02rem;
  }

  .hero-bullets li {
    border-radius: 18px;
    padding-left: 42px;
    font-size: 0.9rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .product-showcase {
    min-height: 430px;
    margin-top: 4px;
  }

  .product-card {
    width: min(390px, 98%);
    min-height: 385px;
    border-radius: 30px;
  }

  .product-image {
    max-height: 450px;
  }

  .product-orbit {
    width: 94%;
  }

  .product-info {
    left: 14px;
    bottom: 14px;
  }

  .floating-proof {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 300px);
    margin: -10px auto 0;
  }

  .comparison-card,
  .offer-card,
  .final-cta-box {
    border-radius: 24px;
  }

  .offer-card,
  .offer-card.featured {
    min-height: 420px;
    padding: 28px;
  }

  .offer-card.featured {
    box-shadow:
      0 30px 78px rgba(0, 0, 0, 0.28),
      0 0 0 1px rgba(255, 230, 163, 0.24);
  }

  .badge-soft {
    margin-left: 0;
  }

  .safety-box {
    padding: 28px;
  }

  .final-cta-box {
    text-align: center;
  }

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