/* =============================================
   MULTIRIN — CSS CORE
   Architecture: Section-scoped semantic
   Token family: --tone-* / --ui-* / --depth-*
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---- DESIGN TOKENS ---- */
:root {
  /* Depth palette */
  --depth-abyss:    #040e1c;
  --depth-core:     #071628;
  --depth-deep:     #0b1f3a;
  --depth-mid:      #132843;
  --depth-lift:     #1a3458;
  --depth-surface:  #1e3f6e;

  /* Tone / brand palette */
  --tone-main:      #2563eb;
  --tone-hover:     #1d4ed8;
  --tone-bright:    #38bdf8;
  --tone-pastel:    #93c5fd;
  --tone-soft:      #bfdbfe;
  --tone-mist:      #dbeafe;

  /* Text */
  --ui-text-primary:   #f0f9ff;
  --ui-text-secondary: #94a3b8;
  --ui-text-muted:     #64748b;
  --ui-text-accent:    #38bdf8;

  /* Structural */
  --ui-border:      rgba(56, 189, 248, 0.12);
  --ui-border-mid:  rgba(56, 189, 248, 0.22);
  --ui-border-glow: rgba(56, 189, 248, 0.45);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;

  /* Sizing */
  --radius-xs:  6px;
  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  36px;

  /* Shadows */
  --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 48px rgba(37, 99, 235, 0.18);
  --shadow-bright: 0 0 24px rgba(56, 189, 248, 0.25);

  /* Transitions */
  --ease: 0.3s ease;
  --ease-out: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- BASE STYLES ---- */
body {
  font-family: var(--font-body);
  background-color: var(--depth-deep);
  color: var(--ui-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tone-bright);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
}

/* ============================
   HEADER
   ============================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 0;
  transition: background var(--ease), padding var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  background: rgba(7, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--ui-border);
}

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

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

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

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ui-text-secondary);
  transition: color var(--ease);
}

.header-nav a:hover { color: var(--ui-text-primary); }

.header-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tone-main);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  transition: background var(--ease), transform var(--ease);
}

.header-cta:hover {
  background: var(--tone-hover);
  transform: translateY(-1px);
}

.header-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.header-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ui-text-primary);
  border-radius: 2px;
  transition: var(--ease);
}

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--depth-abyss);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.55;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-section:hover .hero-bg { transform: scale(1.0); }

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(4, 14, 28, 0.82) 0%,
    rgba(7, 22, 40, 0.60) 45%,
    rgba(11, 31, 58, 0.30) 100%
  );
}

.hero-grid-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tone-bright);
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.18);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tone-bright);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-section h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ui-text-primary);
  margin-bottom: 22px;
}

.hero-section h1 .highlight {
  color: var(--tone-bright);
  font-style: italic;
}

.hero-section p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ui-text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--tone-main);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 100px;
  transition: all var(--ease);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35);
  letter-spacing: 0.01em;
}

.btn-primary:hover {
  background: var(--tone-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ui-text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 15px 24px;
  border-radius: 100px;
  border: 1px solid var(--ui-border-mid);
  transition: all var(--ease);
}

.btn-secondary:hover {
  border-color: var(--tone-bright);
  color: var(--tone-bright);
}

.hero-trust-strip {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ui-text-secondary);
}

.trust-item svg {
  color: var(--tone-bright);
  flex-shrink: 0;
}

/* Hero floating card */
.hero-float-card {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(11, 28, 52, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 268px;
  box-shadow:
    var(--shadow-card),
    0 0 0 1px rgba(56, 189, 248, 0.06) inset;
}

.float-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background: radial-gradient(ellipse at 50% 60%, rgba(37, 99, 235, 0.18) 0%, rgba(4, 14, 28, 0.8) 75%);
  border: 1px solid rgba(56, 189, 248, 0.14);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.15) inset;
}

.float-card-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.12) inset;
  pointer-events: none;
}

.float-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  filter: drop-shadow(0 8px 24px rgba(56, 189, 248, 0.25));
  transition: transform 0.6s ease;
}

.hero-float-card:hover .float-card-img {
  transform: scale(1.04) translateY(-3px);
}

.float-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ui-text-primary);
  margin-bottom: 4px;
}

.float-card-sub {
  font-size: 0.78rem;
  color: var(--tone-bright);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.float-card-price {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--ui-border);
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ui-text-primary);
}

.float-card-price span {
  font-size: 0.75rem;
  color: var(--ui-text-secondary);
  font-weight: 400;
  font-family: var(--font-body);
}

/* ============================
   WHY VISION MATTERS SECTION
   ============================ */
.vision-why-section {
  background: var(--depth-core);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.vision-why-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1rem;
  color: var(--ui-text-secondary);
  line-height: 1.75;
}

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

.why-card {
  background: var(--depth-mid);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tone-bright), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.why-card:hover {
  border-color: var(--ui-border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

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

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--tone-bright);
  transition: background var(--ease);
}

.why-card:hover .why-icon {
  background: rgba(56, 189, 248, 0.18);
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--ui-text-primary);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--ui-text-secondary);
  line-height: 1.7;
}

/* ============================
   BENEFITS SECTION
   ============================ */
.benefits-section {
  background: var(--depth-deep);
  padding: 96px 0;
}

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

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--depth-mid);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: all var(--ease);
}

.benefit-item:hover {
  border-color: var(--ui-border-mid);
  box-shadow: var(--shadow-card);
}

.benefit-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(37, 99, 235, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-pastel);
}

.benefit-text h4 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ui-text-primary);
  margin-bottom: 6px;
}

.benefit-text p {
  font-size: 0.84rem;
  color: var(--ui-text-secondary);
  line-height: 1.65;
}

/* ============================
   PRODUCT SECTION
   ============================ */
.product-section {
  background: var(--depth-core);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: '';
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.product-image-wrap {
  position: relative;
}

.product-image-glow {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.product-image-frame {
  position: relative;
  background: var(--depth-mid);
  border: 1px solid var(--ui-border-mid);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card), var(--shadow-bright);
}

.product-image-frame img {
  max-width: 280px;
  height: 340px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.product-badge-strip {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

.product-badge {
  background: var(--depth-surface);
  border: 1px solid var(--ui-border-mid);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.73rem;
  font-weight: 600;
  color: var(--tone-pastel);
  letter-spacing: 0.04em;
}

.product-details h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}

.product-details .product-subtitle {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--tone-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-details p {
  font-size: 0.95rem;
  color: var(--ui-text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.product-feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ui-text-secondary);
}

.product-feature-row svg {
  color: var(--tone-bright);
  flex-shrink: 0;
}

.product-feature-row strong {
  color: var(--ui-text-primary);
  font-weight: 600;
}

.product-price-block {
  background: var(--depth-mid);
  border: 1px solid var(--ui-border-mid);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.product-price-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ui-text-primary);
}

.product-price-unit {
  font-size: 0.82rem;
  color: var(--ui-text-secondary);
  font-family: var(--font-body);
}

/* ============================
   ROUTINE / HOW TO USE SECTION
   ============================ */
.routine-section {
  background: var(--depth-deep);
  padding: 96px 0;
}

.routine-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.routine-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.7% + 16px);
  right: calc(16.7% + 16px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ui-border-mid), transparent);
}

.routine-step {
  text-align: center;
  position: relative;
}

.step-number-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--depth-mid);
  border: 2px solid var(--ui-border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all var(--ease);
}

.step-number-wrap:hover {
  border-color: var(--tone-bright);
  box-shadow: var(--shadow-bright);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tone-pastel);
}

.step-illustration {
  width: 100%;
  aspect-ratio: 220 / 160;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  background: radial-gradient(ellipse at 50% 40%, rgba(37,99,235,0.08) 0%, rgba(4,14,28,0.50) 80%);
  border: 1px solid rgba(56,189,248,0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.step-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

.routine-step:hover .step-illustration {
  border-color: rgba(56,189,248,0.28);
  box-shadow: 0 0 28px rgba(37,99,235,0.12);
}

.routine-step h3 {
  font-size: 1.1rem;
  color: var(--ui-text-primary);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
}

.routine-step p {
  font-size: 0.86rem;
  color: var(--ui-text-secondary);
  line-height: 1.7;
}

/* ============================
   AUDIENCE / WHO IT'S FOR SECTION
   ============================ */
.audience-section {
  background: var(--depth-core);
  padding: 96px 0;
}

.audience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 56px;
}

.audience-image-stack {
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
}

.audience-img-main {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--ui-border);
}

.audience-img-secondary {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--ui-border);
  opacity: 0.85;
}

.audience-content h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 16px;
}

.audience-content > p {
  font-size: 0.94rem;
  color: var(--ui-text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ui-text-secondary);
  line-height: 1.6;
}

.audience-list-item svg {
  color: var(--tone-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================
   LIFESTYLE CARDS SECTION
   ============================ */
.lifestyle-section {
  background: var(--depth-deep);
  padding: 96px 0;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.lifestyle-card {
  background: var(--depth-mid);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--ease);
}

.lifestyle-card:hover {
  border-color: var(--ui-border-mid);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.lifestyle-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity var(--ease);
}

.lifestyle-card:hover .lifestyle-card-img { opacity: 0.95; }

.lifestyle-card-body {
  padding: 20px;
}

.lifestyle-card-icon {
  color: var(--tone-bright);
  margin-bottom: 10px;
}

.lifestyle-card-body h4 {
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ui-text-primary);
  margin-bottom: 8px;
}

.lifestyle-card-body p {
  font-size: 0.8rem;
  color: var(--ui-text-secondary);
  line-height: 1.65;
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.reviews-section {
  background: var(--depth-core);
  padding: 96px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.review-card {
  background: var(--depth-mid);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--ease);
  position: relative;
}

.review-card:hover {
  border-color: var(--ui-border-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-stars svg { color: #fbbf24; }

.review-text {
  font-size: 0.92rem;
  color: var(--ui-text-secondary);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

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

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--depth-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--tone-pastel);
  flex-shrink: 0;
  border: 1px solid var(--ui-border-mid);
}

.review-author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ui-text-primary);
}

.review-author-info span {
  font-size: 0.78rem;
  color: var(--ui-text-muted);
}

.review-verified {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 0.7rem;
  color: var(--tone-bright);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

/* ============================
   ORDER FORM SECTION
   ============================ */
.order-section {
  background: var(--depth-abyss);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.order-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.order-info p {
  font-size: 0.95rem;
  color: var(--ui-text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

.order-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.order-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--ui-text-secondary);
}

.order-perk svg { color: var(--tone-bright); flex-shrink: 0; }

.order-price-display {
  background: var(--depth-mid);
  border: 1px solid var(--ui-border-mid);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.order-price-display .price-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ui-text-primary);
}

.order-price-display .price-label {
  font-size: 0.8rem;
  color: var(--ui-text-secondary);
}

/* Form */
.order-form-block {
  background: var(--depth-mid);
  border: 1px solid var(--ui-border-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ui-text-primary);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ui-text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--depth-lift);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-sm);
  color: var(--ui-text-primary);
  font-size: 0.92rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--ease);
}

.form-group input::placeholder { color: var(--ui-text-muted); }

.form-group input:focus,
.form-group select:focus {
  border-color: var(--tone-bright);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2338bdf8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option { background: var(--depth-mid); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--tone-main);
}

.form-consent label {
  font-size: 0.78rem;
  color: var(--ui-text-muted);
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 0;
}

.form-consent a { color: var(--tone-pastel); text-decoration: underline; }

.btn-submit {
  width: 100%;
  background: var(--tone-main);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 15px 24px;
  border-radius: 100px;
  transition: all var(--ease);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit:hover {
  background: var(--tone-hover);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.75rem;
  color: var(--ui-text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* ============================
   FAQ SECTION
   ============================ */
.faq-section {
  background: var(--depth-deep);
  padding: 96px 0;
}

.faq-list {
  max-width: 760px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--depth-mid);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease);
}

.faq-item.open {
  border-color: var(--ui-border-mid);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ui-text-primary);
  font-family: var(--font-body);
  transition: color var(--ease);
}

.faq-trigger:hover { color: var(--tone-pastel); }

.faq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-bright);
  transition: transform var(--ease), background var(--ease);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
  background: rgba(56, 189, 248, 0.18);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-inner {
  padding: 0 24px 20px;
  font-size: 0.89rem;
  color: var(--ui-text-secondary);
  line-height: 1.75;
}

/* ============================
   CONTACT / TRUST SECTION
   ============================ */
.contact-section {
  background: var(--depth-core);
  padding: 80px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 14px;
}

.contact-info p {
  font-size: 0.92rem;
  color: var(--ui-text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ui-text-secondary);
}

.contact-row svg { color: var(--tone-bright); flex-shrink: 0; }

.contact-row a {
  color: var(--tone-pastel);
  transition: color var(--ease);
}

.contact-row a:hover { color: var(--tone-bright); }

.trust-badges-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-badge-card {
  background: var(--depth-mid);
  border: 1px solid var(--ui-border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: all var(--ease);
}

.trust-badge-card:hover {
  border-color: var(--ui-border-mid);
  transform: translateY(-2px);
}

.trust-badge-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: var(--radius-sm);
  background: rgba(56, 189, 248, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-bright);
}

.trust-badge-card h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--ui-text-primary);
  margin-bottom: 4px;
}

.trust-badge-card p {
  font-size: 0.75rem;
  color: var(--ui-text-muted);
}

/* ============================
   DISCLAIMER BANNER
   ============================ */
.disclaimer-banner {
  background: var(--depth-abyss);
  border-top: 1px solid var(--ui-border);
  padding: 20px 0;
}

.disclaimer-banner p {
  font-size: 0.75rem;
  color: var(--ui-text-muted);
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--depth-abyss);
  border-top: 1px solid var(--ui-border);
  padding: 56px 0 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 0.84rem;
  color: var(--ui-text-muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 240px;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ui-text-secondary);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.84rem;
  color: var(--ui-text-muted);
  transition: color var(--ease);
}

.footer-col ul li a:hover { color: var(--tone-pastel); }

.footer-divider {
  height: 1px;
  background: var(--ui-border);
  margin-bottom: 28px;
}

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

.footer-copyright {
  font-size: 0.78rem;
  color: var(--ui-text-muted);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 0.78rem;
  color: var(--ui-text-muted);
  transition: color var(--ease);
}

.footer-legal-links a:hover { color: var(--tone-pastel); }

/* ============================
   COOKIE BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(11, 31, 58, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--ui-border-mid);
  padding: 20px 0;
  transform: translateY(0);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.cookie-banner.hidden { transform: translateY(120%); }

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

.cookie-banner-text {
  flex: 1;
  min-width: 260px;
}

.cookie-banner-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ui-text-primary);
  margin-bottom: 5px;
}

.cookie-banner-text p {
  font-size: 0.8rem;
  color: var(--ui-text-secondary);
  line-height: 1.6;
}

.cookie-banner-text a {
  color: var(--tone-pastel);
  text-decoration: underline;
}

.cookie-btn-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--tone-main);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 10px 22px;
  border-radius: 100px;
  transition: background var(--ease);
}

.cookie-btn-accept:hover { background: var(--tone-hover); }

.cookie-btn-reject {
  color: var(--ui-text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 10px 18px;
  border-radius: 100px;
  border: 1px solid var(--ui-border);
  transition: all var(--ease);
}

.cookie-btn-reject:hover {
  color: var(--ui-text-primary);
  border-color: var(--ui-border-mid);
}

/* ============================
   LEGAL PAGES SHARED STYLES
   ============================ */
.legal-hero {
  background: var(--depth-core);
  padding: 120px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--ui-border);
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.legal-hero p {
  font-size: 0.88rem;
  color: var(--ui-text-muted);
}

.legal-body {
  padding: 64px 0 96px;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  color: var(--ui-text-primary);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--ui-border);
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--tone-pastel);
  margin: 24px 0 10px;
}

.legal-content p,
.legal-content li {
  font-size: 0.9rem;
  color: var(--ui-text-secondary);
  line-height: 1.85;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--tone-pastel);
  text-decoration: underline;
}

/* ============================
   SUCCESS PAGE
   ============================ */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--depth-deep);
  padding: 40px 24px;
}

.success-card {
  background: var(--depth-mid);
  border: 1px solid var(--ui-border-mid);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.1);
  border: 2px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--tone-bright);
}

.success-card h1 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.success-card p {
  font-size: 0.94rem;
  color: var(--ui-text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}

.success-card .btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tone-main);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  margin-top: 20px;
  transition: all var(--ease);
}

.success-card .btn-back:hover {
  background: var(--tone-hover);
  transform: translateY(-2px);
}

/* ============================
   ANIMATIONS
   ============================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .hero-float-card { display: none; }
  .hero-content-wrap { max-width: 100%; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .lifestyle-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; gap: 48px; }
  .product-image-frame { max-width: 360px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(7, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--ui-border);
  }
  .header-menu-btn { display: flex; }
  .header-cta { display: none; }

  .why-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .routine-steps { grid-template-columns: 1fr; }
  .routine-steps::before { display: none; }
  .audience-layout { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .order-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .trust-badges-block { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-trust-strip { gap: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .order-form-block { padding: 28px 20px; }
  .success-card { padding: 40px 24px; }
}
