/* =========================================
   CLAREON THREE PRODUCTS — Landing Page Styles
   ========================================= */

:root {
  --white: #ffffff;
  --teal: #4faeba;
  --teal-dark: #0099a5;
  --teal-deep: #007a85;
  --green-bright: #b0d039;
  --green-dark: #8aab1e;
  --grey-light: #e9e9e9;
  --grey-mid: #a0a0a0;
  --grey-dark: #555555;
  --black: #1a1a1a;
  --ink-soft: #2d3b3d;
  --gradient-hero: linear-gradient(135deg, #0099a5 0%, #4faeba 50%, #b0d039 100%);
  --gradient-teal: linear-gradient(135deg, #0099a5 0%, #4faeba 100%);
  --font-primary: 'Poppins', sans-serif;
  --section-padding: 84px 0;
  --container-width: 1140px;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-teal: 0 8px 30px rgba(79, 174, 186, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font: inherit;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.js .reveal,
.js .reveal-left,
.js .reveal-right {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.js .reveal {
  transform: translateY(40px);
}

.js .reveal-left {
  transform: translateX(-50px);
}

.js .reveal-right {
  transform: translateX(50px);
}

.js .reveal.visible,
.js .reveal-left.visible,
.js .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border: 0;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.96rem;
  line-height: 1.2;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.btn-primary {
  background: var(--gradient-hero);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover,
.btn-buy:hover,
.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(79, 174, 186, 0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--teal-dark);
  border: 2px solid var(--teal);
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-agent {
  background: var(--white);
  color: var(--teal-dark);
  border: 2px solid rgba(79, 174, 186, 0.5);
}

.btn-agent:hover {
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-arrow svg {
  transition: transform var(--transition-base);
}

.btn-arrow:hover svg {
  transform: translateX(4px);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  background: rgba(79, 174, 186, 0.1);
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 16px 0;
  transition: padding var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo img {
  width: auto;
  height: 40px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header .btn {
  min-height: 40px;
  padding: 10px 22px;
  font-size: 0.85rem;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #f0fafb 0%, #ffffff 48%, #f8fdf0 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
  padding: 108px 0 64px;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 20px;
  border: 1px solid rgba(79, 174, 186, 0.15);
  border-radius: var(--radius-full);
  background: rgba(79, 174, 186, 0.08);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 600;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge img {
  width: auto;
  height: 18px;
}

.hero-badge span {
  white-space: nowrap;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--black);
  font-size: clamp(2.25rem, 4.5vw, 3.65rem);
  font-weight: 800;
  line-height: 1.12;
  animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-subtitle {
  margin-bottom: 24px;
  color: var(--grey-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.42s both;
}

.hero-proof-point {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-proof-point + .hero-proof-point {
  padding-left: 20px;
  border-left: 1px solid rgba(79, 174, 186, 0.34);
}

.hero-proof-point img {
  width: 27px;
  height: 21px;
  padding: 2px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  background: var(--white);
  object-fit: contain;
}

.hero-facts {
  display: flex;
  max-width: 480px;
  margin-bottom: 24px;
  padding: 13px 0;
  border-top: 1px solid rgba(79, 174, 186, 0.22);
  border-bottom: 1px solid rgba(79, 174, 186, 0.22);
  animation: fadeInUp 0.8s ease-out 0.48s both;
}

.hero-fact {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: baseline;
  gap: 8px;
  padding-right: 18px;
}

.hero-fact + .hero-fact {
  padding-right: 0;
  padding-left: 18px;
  border-left: 1px solid rgba(79, 174, 186, 0.28);
}

.hero-fact strong {
  flex-shrink: 0;
  color: var(--teal-deep);
  font-size: 1.14rem;
  font-weight: 800;
  line-height: 1;
}

.hero-fact span {
  color: var(--grey-dark);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeInUp 0.8s ease-out 0.52s both;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-product {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  border: 1px solid rgba(79, 174, 186, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(1.018);
  transition: opacity 0.65s ease, transform 1.8s ease, visibility 0s linear 0.65s;
}

.hero-product.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition-delay: 0s;
}

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

.hero-product span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  padding: 30px 16px 13px;
  background: linear-gradient(180deg, rgba(4, 43, 47, 0) 0%, rgba(4, 43, 47, 0.72) 48%, rgba(4, 43, 47, 0.96) 100%);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product {
    transform: none;
    transition: none;
  }
}

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

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
  align-items: center;
}

.problem-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.problem-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-hero);
}

.problem-image-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.problem-image-wrapper:hover img {
  transform: scale(1.03);
}

.problem-content h2,
.section-header h2,
.benefits-header h2,
.trust-content h2 {
  color: var(--black);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
}

.problem-content h2 {
  margin-bottom: 24px;
}

.problem-content p {
  margin-bottom: 16px;
  color: var(--grey-dark);
  font-size: 1.05rem;
  line-height: 1.85;
}

.problem-content p.emphasis {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-weight: 600;
}

.decision-steps {
  margin: 0 0 30px;
  padding: 20px 22px;
  border: 1px solid rgba(79, 174, 186, 0.14);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(79, 174, 186, 0.08) 0%, rgba(176, 208, 57, 0.06) 100%);
}

.decision-steps-intro {
  margin-bottom: 16px;
  color: var(--grey-dark);
  font-size: 0.98rem;
  line-height: 1.6;
}

.decision-steps-intro strong {
  color: var(--teal-deep);
}

.decision-steps ol {
  position: relative;
  display: flex;
  flex-direction: column;
  list-style: none;
}

.decision-steps ol::before {
  content: '';
  position: absolute;
  top: 17px;
  bottom: 17px;
  left: 15px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal) 0%, var(--green-bright) 100%);
  opacity: 0.32;
}

.decision-steps li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 0;
}

.decision-steps li span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gradient-teal);
  box-shadow: 0 0 0 6px rgba(248, 253, 250, 0.95);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 800;
}

.problem-content .decision-steps li p {
  margin: 0;
  color: var(--grey-dark);
  font-size: 0.92rem;
  line-height: 1.45;
}

.products {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
  background: linear-gradient(180deg, #f0fafb 0%, #ffffff 100%);
}

.products::before,
.purchase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.section-header,
.benefits-header {
  max-width: 700px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-header h2,
.benefits-header h2 {
  margin-bottom: 16px;
}

.section-header p,
.benefits-header p {
  color: var(--grey-dark);
  font-size: 1.05rem;
  line-height: 1.8;
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(79, 174, 186, 0.12);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 174, 186, 0.32);
  box-shadow: var(--shadow-lg);
}

.product-card-featured {
  border-color: rgba(176, 208, 57, 0.56);
  box-shadow: 0 12px 42px rgba(79, 174, 186, 0.12);
}

.product-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  padding: 34px;
  background: linear-gradient(180deg, rgba(79, 174, 186, 0.08) 0%, rgba(176, 208, 57, 0.04) 100%);
}

.product-card-media img {
  max-height: 165px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(79, 174, 186, 0.18));
}

.product-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.product-card-topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.product-card-topline span {
  padding: 6px 10px;
  border-radius: var(--radius-full);
  background: rgba(79, 174, 186, 0.1);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 1.35rem;
  font-weight: 800;
}

.product-card p {
  margin-bottom: 18px;
  color: var(--grey-dark);
  font-size: 0.94rem;
  line-height: 1.65;
}

.product-card ul {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 22px;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 24px;
  color: var(--grey-dark);
  font-size: 0.9rem;
  line-height: 1.45;
}

.product-card li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-bright);
}

.product-card .product-disclaimer {
  margin: -6px 0 20px;
  padding: 10px 12px;
  border-left: 3px solid var(--green-bright);
  border-radius: 0 6px 6px 0;
  background: rgba(176, 208, 57, 0.08);
  color: var(--grey-dark);
  font-size: 0.76rem;
  font-style: italic;
  line-height: 1.45;
}

.btn-card {
  width: 100%;
  min-height: 46px;
  background: var(--gradient-teal);
  color: var(--white);
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  overflow: hidden;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.benefit-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.benefit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.benefit-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag-teal {
  background: var(--teal);
}

.tag-dark-teal {
  background: var(--teal-dark);
}

.tag-green {
  background: var(--green-bright);
  color: var(--black);
}

.benefit-card-body {
  padding: 28px 26px 32px;
}

.benefit-card h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 1.12rem;
  font-weight: 800;
}

.benefit-card p {
  color: var(--grey-dark);
  font-size: 0.9rem;
  line-height: 1.7;
}

.trust {
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
  background: linear-gradient(160deg, #0d2b2e 0%, #0a4a4e 50%, #0d2b2e 100%);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.trust-content .trust-logo {
  width: auto;
  height: 42px;
  margin-bottom: 18px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.trust-proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trust-proof-badge-fda {
  padding-left: 10px;
}

.trust-proof-badge-fda img {
  width: 30px;
  height: 24px;
  padding: 2px;
  border-radius: 3px;
  background: var(--white);
  object-fit: contain;
}

.us-flag-icon {
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 20px;
  overflow: hidden;
  border-radius: 3px;
  background:
    linear-gradient(#b22234 0 7.69%, #fff 7.69% 15.38%, #b22234 15.38% 23.07%, #fff 23.07% 30.76%, #b22234 30.76% 38.45%, #fff 38.45% 46.14%, #b22234 46.14% 53.83%, #fff 53.83% 61.52%, #b22234 61.52% 69.21%, #fff 69.21% 76.9%, #b22234 76.9% 84.59%, #fff 84.59% 92.28%, #b22234 92.28% 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.us-flag-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 10.8px;
  background: #3c3b6e;
}

.trust-content .trust-label {
  margin-bottom: 12px;
  color: var(--green-bright);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trust-content h2,
.trust-content p {
  color: var(--white);
}

.trust-content h2 {
  margin-bottom: 24px;
}

.trust-content p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.85;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.trust-stat-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.trust-stat-number {
  margin-bottom: 8px;
  color: var(--green-bright);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.trust-stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.5;
}

.trust-image-col {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.trust-image-main {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.trust-image-main img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.trust-image-main:hover img {
  transform: scale(1.03);
}

.audiences {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(180deg, #ffffff 0%, #f8fdf0 100%);
}

.audiences::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(90%, var(--container-width));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(79, 174, 186, 0.5), transparent);
}

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

.audience-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(79, 174, 186, 0.16);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 174, 186, 0.38);
  box-shadow: var(--shadow-lg);
}

.audience-card-image {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.audience-card-image::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(4, 43, 47, 0.48));
  pointer-events: none;
}

.audience-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.audience-card:hover .audience-card-image img {
  transform: scale(1.035);
}

.audience-card-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(13, 43, 46, 0.12);
  backdrop-filter: blur(8px);
}

.audience-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 32px 34px;
}

.audience-card-family .audience-card-label {
  background: rgba(255, 255, 255, 0.92);
  color: #647d12;
}

.audience-card h3 {
  margin-bottom: 12px;
  color: var(--black);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 800;
  line-height: 1.3;
}

.audience-card p {
  color: var(--grey-dark);
  font-size: 0.95rem;
  line-height: 1.75;
}

.purchase {
  position: relative;
  padding: 84px 0 52px;
  background: linear-gradient(180deg, #f8fdf0 0%, #ffffff 50%, #f0fafb 100%);
}

.purchase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.purchase-gallery {
  position: sticky;
  top: 100px;
}

.purchase-main-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(79, 174, 186, 0.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.purchase-main-image img {
  width: 100%;
  max-width: 330px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(79, 174, 186, 0.15));
  transition: transform var(--transition-slow);
}

.purchase-main-image:hover img {
  transform: scale(1.04) rotate(2deg);
}

.purchase-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.purchase-option {
  min-height: 52px;
  padding: 10px 12px;
  border: 2px solid var(--grey-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--grey-dark);
  cursor: pointer;
  font-weight: 800;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), color var(--transition-base);
}

.purchase-option:hover,
.purchase-option.active {
  border-color: var(--teal);
  box-shadow: 0 0 0 2px rgba(79, 174, 186, 0.18);
  color: var(--teal-dark);
}

.purchase-info {
  display: flex;
  flex-direction: column;
}

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

.purchase-brand img {
  width: auto;
  height: 22px;
}

.purchase-brand span {
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.purchase-title {
  margin-bottom: 8px;
  color: var(--black);
  font-size: clamp(1.75rem, 3vw, 2.3rem);
  font-weight: 800;
  line-height: 1.25;
}

.purchase-subtitle {
  margin-bottom: 22px;
  color: var(--grey-dark);
  font-size: 1rem;
  line-height: 1.7;
}

.purchase-price-block {
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(79, 174, 186, 0.15);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.purchase-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.price-amount {
  color: var(--teal-dark);
  font-size: 2.45rem;
  font-weight: 800;
  line-height: 1;
}

.price-currency {
  color: var(--grey-mid);
  font-weight: 700;
}

.purchase-price-note {
  color: var(--grey-dark);
  font-size: 0.9rem;
  line-height: 1.6;
}

.purchase-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.btn-buy {
  background: var(--gradient-hero);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.purchase-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  list-style: none;
}

.purchase-features li {
  position: relative;
  padding-left: 30px;
  color: var(--grey-dark);
  font-size: 0.94rem;
  line-height: 1.5;
}

.purchase-features li::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gradient-teal);
  box-shadow: 0 0 0 4px rgba(79, 174, 186, 0.1);
}

.purchase-trust-badges {
  display: flex;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-light);
}

.purchase-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--grey-dark);
  font-size: 0.8rem;
}

.purchase-badge-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(79, 174, 186, 0.08);
}

.purchase-badge-icon svg {
  width: 20px;
  height: 20px;
}

.cta-banner {
  padding: 64px 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--gradient-hero);
  color: var(--white);
  padding: 58px 60px;
  text-align: center;
}

.cta-card h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
}

.cta-card p {
  max-width: 600px;
  margin: 0 auto 34px;
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.92;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.faq {
  position: relative;
  padding: var(--section-padding);
  background: linear-gradient(180deg, #ffffff 0%, #f0fafb 100%);
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(90%, var(--container-width));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(79, 174, 186, 0.55), transparent);
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(79, 174, 186, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(79, 174, 186, 0.42);
  box-shadow: var(--shadow-md);
}

.faq-item[open] {
  transform: translateY(-1px);
}

.faq-item summary {
  position: relative;
  padding: 21px 64px 21px 24px;
  color: var(--black);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
}

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

.faq-item summary:focus-visible {
  outline: 3px solid rgba(79, 174, 186, 0.42);
  outline-offset: -3px;
  border-radius: 10px;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(176, 208, 57, 0.22);
  color: var(--teal-deep);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  place-items: center;
  transition: transform var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  background: var(--teal-dark);
  color: var(--white);
}

.faq-answer {
  border-top: 1px solid rgba(79, 174, 186, 0.12);
  background: linear-gradient(135deg, rgba(79, 174, 186, 0.055), rgba(176, 208, 57, 0.045));
}

.faq-answer p {
  margin: 0;
  padding: 18px 24px 22px;
  color: var(--grey-dark);
  font-size: 0.94rem;
  line-height: 1.75;
}

.footer {
  padding: 40px 0;
  background: var(--black);
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-logo img {
  width: auto;
  height: 32px;
  opacity: 0.8;
}

.footer-copy {
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-badges img {
  width: auto;
  height: 24px;
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .hero-grid,
  .problem-grid,
  .trust-grid,
  .purchase-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
    padding: 100px 0 56px;
    text-align: center;
  }

  .hero-content {
    max-width: none;
  }

  .hero-cta-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-content: center;
  }

  .hero-proof-points {
    justify-content: center;
  }

  .hero-facts {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .hero-cta-group .btn {
    width: auto;
    min-height: 44px;
    padding: 11px 10px;
    font-size: 0.78rem;
  }

  .hero-visual {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
  }

  .product-cards,
  .benefits-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .purchase-gallery {
    position: static;
  }

  .purchase-main-image {
    min-height: 330px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 58px 0;
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(28px);
  }

  .reveal-left.visible,
  .reveal-right.visible {
    transform: translateY(0);
  }

  .header {
    padding: 12px 0;
  }

  .header-logo img {
    height: 32px;
  }

  .header-actions .btn-secondary {
    display: none;
  }

  .header .btn {
    min-height: 36px;
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .hero-grid {
    padding: 88px 0 44px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-visual {
    width: min(100%, 360px);
    margin-bottom: 8px;
  }

  .hero-product span {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 26px 10px 10px;
    font-size: 0.68rem;
  }

  .problem-grid {
    gap: 36px;
  }

  .problem-image-wrapper img {
    min-height: 300px;
  }

  .product-card-body,
  .benefit-card-body {
    padding: 24px 22px;
  }

  .product-card-media {
    height: 210px;
  }

  .audience-grid {
    gap: 20px;
  }

  .audience-card-image {
    height: 260px;
  }

  .audience-card-body {
    padding: 24px 22px 27px;
  }

  .faq-item summary {
    padding: 18px 54px 18px 18px;
    font-size: 0.9rem;
  }

  .faq-item summary::after {
    right: 14px;
    width: 28px;
    height: 28px;
  }

  .faq-answer p {
    padding: 16px 18px 19px;
    font-size: 0.86rem;
  }

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

  .trust-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .trust-stat-card {
    padding: 16px 10px;
  }

  .trust-stat-number {
    font-size: 1.85rem;
  }

  .trust-stat-label {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .purchase-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .purchase-option {
    min-height: 42px;
    padding: 8px 6px;
    font-size: 0.78rem;
  }

  .purchase-trust-badges {
    flex-direction: column;
    gap: 14px;
  }

  .cta-card {
    padding: 42px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: 92%;
  }

  .btn {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-cta-group .btn {
    width: auto;
  }

  .header-actions .btn {
    width: auto;
  }

  .hero-proof-points {
    gap: 12px;
  }

  .hero-facts {
    width: 100%;
    margin-bottom: 20px;
    padding: 11px 0;
  }

  .hero-fact {
    flex-direction: column;
    gap: 3px;
    align-items: center;
    padding-right: 10px;
    text-align: center;
  }

  .hero-fact + .hero-fact {
    padding-left: 10px;
  }

  .hero-fact strong {
    font-size: 1rem;
  }

  .hero-fact span {
    font-size: 0.62rem;
  }

  .hero-proof-point {
    font-size: 0.66rem;
  }

  .hero-proof-point + .hero-proof-point {
    padding-left: 12px;
  }

  .purchase-main-image {
    min-height: 280px;
    padding: 28px;
  }
}

@media (max-width: 360px) {
  .hero-proof-points {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-proof-point + .hero-proof-point {
    padding-left: 0;
    border-left: 0;
  }
}

/* Legal and corporate navigation, shared across public pages. */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .82rem;
  color: #dedede;
}
.footer-links a { padding: 6px 0; text-underline-offset: 4px; }
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-links a:focus-visible { outline: 2px solid var(--green-bright); outline-offset: 5px; }
@media (max-width: 600px) {
  .footer-links { flex-direction: column; align-items: center; gap: 6px; }
}
