/* ============================================================
   VIKORA — css/style.css
   Architecture: Section-scoped semantic
   Variables: --tone family
   Fonts: Cormorant Garant (display) + Outfit (body)
   ============================================================ */

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

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --tone-deepest:   #050b16;
  --tone-deep:      #080f1d;
  --tone-dark:      #0c1628;
  --tone-card:      #101f38;
  --tone-card-alt:  #13243f;
  --tone-navy:      #1b3260;
  --tone-main:      #2563eb;
  --tone-support:   #60a5fa;
  --tone-cta:       #3b82f6;
  --tone-cta-hov:   #1d4ed8;
  --tone-pastel:    #bfdbfe;
  --tone-pale:      #dbeafe;
  --tone-glow:      rgba(96,165,250,0.14);
  --tone-border:    rgba(96,165,250,0.16);
  --tone-border-hi: rgba(96,165,250,0.36);

  --text-bright:  #e8f2ff;
  --text-mid:     #8caacc;
  --text-soft:    #4f6a88;

  --radius-xs:   6px;
  --radius-sm:   10px;
  --radius-md:   16px;
  --radius-lg:   22px;
  --radius-xl:   30px;
  --radius-pill: 999px;

  --shadow-card:  0 6px 36px rgba(0,0,0,0.55);
  --shadow-glow:  0 0 50px rgba(37,99,235,0.18);
  --shadow-cta:   0 4px 22px rgba(59,130,246,0.42);

  --transition: 0.28s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--tone-deep);
  color: var(--text-bright);
  font-family: 'Outfit', sans-serif;
  line-height: 1.72;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--tone-support); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--tone-pastel); }
button { font-family: 'Outfit', sans-serif; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garant', serif;
  line-height: 1.18;
  color: var(--text-bright);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.8vw, 3rem);   font-weight: 600; }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.55rem); font-weight: 500; }
p  { color: var(--text-mid); line-height: 1.82; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

.sec-pad { padding: 6.5rem 0; }
.sec-pad--sm { padding: 3.5rem 0; }

.sec-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 4rem;
}
.sec-head h2 { margin-bottom: 0.9rem; }

.eyelet {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tone-support);
  margin-bottom: 0.75rem;
}

.rule-line {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--tone-main), transparent);
  margin: 0 auto 1.4rem;
}

/* Buttons */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--tone-main);
  color: #fff;
  padding: 0.82rem 2.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-cta);
}
.btn-solid:hover {
  background: var(--tone-cta-hov);
  transform: translateY(-2px);
  box-shadow: 0 7px 30px rgba(59,130,246,0.52);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  color: var(--text-bright);
  padding: 0.82rem 2.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid var(--tone-border);
  cursor: pointer;
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--tone-support);
  color: var(--tone-support);
  background: var(--tone-glow);
}

/* Fade-up animation helper */
.fadein {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fadein.show {
  opacity: 1;
  transform: translateY(0);
}
.fadein.d1 { transition-delay: 0.10s; }
.fadein.d2 { transition-delay: 0.20s; }
.fadein.d3 { transition-delay: 0.30s; }
.fadein.d4 { transition-delay: 0.40s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.3rem 0;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(8,15,29,0.96);
  backdrop-filter: blur(20px);
  padding: 0.85rem 0;
  border-bottom-color: var(--tone-border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.nav-logo-text {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  gap: 2.2rem;
}
.nav-links a {
  color: var(--text-mid);
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--transition);
  text-decoration: none;
}
.nav-links a:hover { color: var(--text-bright); }
.nav-order {
  background: var(--tone-main);
  color: #fff;
  padding: 0.5rem 1.45rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
.nav-order:hover { background: var(--tone-cta-hov); transform: translateY(-1px); color: #fff; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-bright);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--tone-deepest);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--text-bright);
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--tone-support); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-bright);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   HERO
   ============================================================ */
/* ============================================================
   HERO — split layout
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--tone-base);
}
.hero-glow {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(37,99,235,0.13) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-glow--left {
  right: auto;
  left: -120px;
  top: 30%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(96,165,250,0.07) 0%, transparent 70%);
}

/* Two-column split */
.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 0 5rem;
}

/* Text column */
.hero-text { max-width: 560px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(37,99,235,0.13);
  border: 1px solid var(--tone-border);
  color: var(--tone-pastel);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.38rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.6rem;
}
.hero-pill svg { flex-shrink: 0; }
.hero h1 { margin-bottom: 1.15rem; }
.hero h1 span { color: var(--tone-support); }
.hero-lead {
  font-size: 1.04rem;
  max-width: 520px;
  margin-bottom: 2.6rem;
  line-height: 1.92;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}
.hero-trust-item svg { color: var(--tone-support); }

/* Image card (right column) */
.hero-card {
  display: flex;
  justify-content: center;
}
.hero-card-inner {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(96,165,250,0.18);
  box-shadow:
    0 0 0 1px rgba(37,99,235,0.10),
    0 24px 64px rgba(0,0,0,0.55),
    0 0 80px rgba(37,99,235,0.08);
  background: rgba(14,22,42,0.7);
  max-width: 520px;
  width: 100%;
}
.hero-card-img {
  display: block;
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: 1.8rem;
  transition: transform 0.55s ease;
}
.hero-card-inner:hover .hero-card-img {
  transform: scale(1.03);
}
/* gradient overlay at bottom of card */
.hero-card-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(8,15,29,0.82) 0%, transparent 100%);
  border-radius: 0 0 1.8rem 1.8rem;
  pointer-events: none;
}
/* badge pinned inside card */
.hero-card-badge {
  position: absolute;
  bottom: 1.6rem;
  left: 1.6rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(96,165,250,0.3);
  color: var(--tone-pastel);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
}
.hero-card-badge svg { color: var(--tone-support); flex-shrink: 0; }

/* ============================================================
   AWARENESS
   ============================================================ */
.awareness { background: var(--tone-dark); }

.awareness-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.awareness-text h2 { margin-bottom: 1.1rem; }
.awareness-text p { margin-bottom: 0.9rem; font-size: 0.96rem; }

.awareness-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.stat-box {
  background: var(--tone-card);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-md);
  padding: 1.3rem 1rem;
  text-align: center;
  transition: border-color var(--transition);
}
.stat-box:hover { border-color: var(--tone-border-hi); }
.stat-num {
  display: block;
  font-family: 'Cormorant Garant', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--tone-support);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.76rem; color: var(--text-soft); }

.awareness-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.aware-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 340px;
  border: 1px solid rgba(96,165,250,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.aware-img-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
  display: block;
}
.aware-img-card:hover img { transform: scale(1.04); }

/* ============================================================
   LIFESTYLE CARDS
   ============================================================ */
.lifestyle { background: var(--tone-deep); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.tip-card {
  background: var(--tone-card);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.tip-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  border-color: var(--tone-border-hi);
}
.tip-card-img {
  height: 172px;
  overflow: hidden;
}
.tip-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.tip-card:hover .tip-card-img img { transform: scale(1.07); }
.tip-card-body { padding: 1.35rem; }
.tip-card-icon {
  width: 34px; height: 34px;
  background: rgba(37,99,235,0.18);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-support);
  margin-bottom: 0.75rem;
}
.tip-card-title {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.4rem;
  font-family: 'Outfit', sans-serif;
}
.tip-card-text {
  font-size: 0.81rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ============================================================
   PRODUCT
   ============================================================ */
.product-sec {
  background: var(--tone-dark);
  position: relative;
  overflow: hidden;
}
.product-sec::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(37,99,235,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}
.product-visual { text-align: center; position: relative; }
.product-glow-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.product-img {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin: 0 auto;
  filter: drop-shadow(0 24px 56px rgba(37,99,235,0.32));
  animation: floatProduct 5s ease-in-out infinite;
}
@keyframes floatProduct {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37,99,235,0.18);
  border: 1px solid var(--tone-border);
  color: var(--tone-pastel);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.36rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-top: 1.4rem;
}
.product-info h2 { margin-bottom: 1rem; }
.product-desc { font-size: 0.96rem; margin-bottom: 1.8rem; line-height: 1.88; }
.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
  margin-bottom: 2rem;
}
.pf-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.pf-icon {
  width: 20px; height: 20px;
  background: rgba(37,99,235,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--tone-support);
}
.pf-icon svg { width: 10px; height: 10px; }
.product-price-row {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.price-main {
  font-family: 'Cormorant Garant', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-bright);
  line-height: 1;
}
.price-note {
  font-size: 0.78rem;
  color: var(--text-soft);
  max-width: 160px;
  line-height: 1.55;
  padding-bottom: 0.2rem;
}

/* ============================================================
   ROUTINE STEPS
   ============================================================ */
.routine-sec { background: var(--tone-deep); }

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.step-box {
  background: var(--tone-card);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-lg);
  padding: 2.6rem 1.8rem;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.step-box:hover {
  transform: translateY(-5px);
  border-color: var(--tone-border-hi);
}
.step-num {
  width: 54px; height: 54px;
  background: linear-gradient(140deg, var(--tone-main), var(--tone-support));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1.3rem;
}
.step-box h3 { font-size: 1.05rem; color: var(--text-bright); margin-bottom: 0.55rem; }
.step-box p  { font-size: 0.84rem; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-sec { background: var(--tone-dark); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.rev-card {
  background: var(--tone-card);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform var(--transition), border-color var(--transition);
}
.rev-card:hover {
  transform: translateY(-5px);
  border-color: var(--tone-border-hi);
}
.rev-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.82rem;
  margin-bottom: 0.9rem;
}
.rev-quote {
  font-size: 1.85rem;
  font-family: 'Cormorant Garant', serif;
  color: var(--tone-main);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.rev-text {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.rev-author {
  border-top: 1px solid var(--tone-border);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.rev-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--tone-navy), var(--tone-main));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garant', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.rev-name { font-size: 0.88rem; font-weight: 600; color: var(--text-bright); }
.rev-meta { font-size: 0.74rem; color: var(--text-soft); }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip-sec {
  background: var(--tone-deepest);
  border-top: 1px solid var(--tone-border);
  border-bottom: 1px solid var(--tone-border);
}
.trust-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.4rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
  min-width: 180px;
}
.trust-icon {
  width: 46px; height: 46px;
  background: rgba(37,99,235,0.14);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-support);
  flex-shrink: 0;
}
.trust-copy strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.1rem;
}
.trust-copy span { font-size: 0.78rem; color: var(--text-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-sec { background: var(--tone-dark); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.faq-item {
  background: var(--tone-card);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open { border-color: var(--tone-border-hi); }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--text-bright);
  font-size: 0.94rem;
  font-weight: 500;
}
.faq-icon {
  width: 26px; height: 26px;
  background: rgba(37,99,235,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tone-support);
  flex-shrink: 0;
  transition: transform 0.32s, background 0.22s;
}
.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: rgba(37,99,235,0.28);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s ease;
}
.faq-body-inner {
  padding: 0 1.6rem 1.35rem;
  padding-top: 1rem;
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.82;
  border-top: 1px solid var(--tone-border);
}

/* ============================================================
   ORDER FORM
   ============================================================ */
.order-sec {
  background: var(--tone-deep);
  position: relative;
  overflow: hidden;
}
.order-sec::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.order-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: center;
}
.order-info h2 { margin-bottom: 1.1rem; }
.order-info p  { font-size: 0.96rem; margin-bottom: 1.6rem; }
.order-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
}
.order-detail svg { color: var(--tone-support); flex-shrink: 0; margin-top: 3px; }

.form-card {
  background: var(--tone-card);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-xl);
  padding: 2.6rem;
}
.form-card-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 0.3rem;
}
.form-card-sub {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 1.9rem;
}
.f-field { margin-bottom: 1.15rem; }
.f-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 0.38rem;
  letter-spacing: 0.025em;
}
.f-field input {
  width: 100%;
  background: var(--tone-dark);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-sm);
  padding: 0.76rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-bright);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.f-field input:focus {
  border-color: var(--tone-main);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.14);
}
.f-field input::placeholder { color: var(--text-soft); }
.form-submit {
  width: 100%;
  background: var(--tone-main);
  color: #fff;
  border: none;
  padding: 0.95rem;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-cta);
  margin-top: 0.4rem;
}
.form-submit:hover {
  background: var(--tone-cta-hov);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.52);
}
.form-note {
  font-size: 0.72rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: 0.95rem;
  line-height: 1.65;
}
.form-note a { color: var(--tone-support); font-size: 0.72rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--tone-deepest); border-top: 1px solid var(--tone-border); }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4.5rem 0 3rem;
}
.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-soft);
  margin-top: 1rem;
  max-width: 240px;
  line-height: 1.72;
}
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mid);
  margin-bottom: 1.3rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col ul li a { font-size: 0.84rem; color: var(--text-soft); }
.footer-col ul li a:hover { color: var(--tone-support); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
  line-height: 1.55;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--tone-support); }

.footer-bottom {
  border-top: 1px solid var(--tone-border);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.76rem; color: var(--text-soft); }
.footer-legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.76rem; color: var(--text-soft); }
.footer-legal a:hover { color: var(--tone-support); }
.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-soft);
  padding: 1.5rem 0;
  line-height: 1.65;
  border-top: 1px solid rgba(96,165,250,0.08);
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--tone-card);
  border-top: 1px solid var(--tone-border);
  padding: 1.1rem 0;
  transform: translateY(100%);
  transition: transform 0.44s ease;
}
.cookie-bar.visible { transform: translateY(0); }
.cookie-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-text {
  font-size: 0.82rem;
  color: var(--text-mid);
  flex: 1;
  min-width: 200px;
  line-height: 1.6;
}
.cookie-text a { font-size: 0.82rem; }
.cookie-btns { display: flex; gap: 0.65rem; flex-shrink: 0; }
.cb-accept {
  background: var(--tone-main);
  color: #fff;
  border: none;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.cb-accept:hover { background: var(--tone-cta-hov); }
.cb-decline {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--tone-border);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all var(--transition);
}
.cb-decline:hover { border-color: var(--text-soft); color: var(--text-bright); }

/* ============================================================
   LEGAL PAGES SHARED
   ============================================================ */
.legal-hero {
  background: var(--tone-dark);
  padding: 9rem 0 4rem;
  border-bottom: 1px solid var(--tone-border);
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

.legal-body {
  padding: 4rem 0 6rem;
  background: var(--tone-deep);
}
.legal-content {
  max-width: 820px;
}
.legal-content h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--text-bright);
}
.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.8rem 0 0.6rem;
  color: var(--tone-pastel);
}
.legal-content p {
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  color: var(--text-mid);
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.6rem;
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.legal-content ul li { margin-bottom: 0.4rem; }
.legal-content a { color: var(--tone-support); }

/* Success page */
.success-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: var(--tone-deep);
}
.success-card {
  background: var(--tone-card);
  border: 1px solid var(--tone-border);
  border-radius: var(--radius-xl);
  padding: 4rem 3rem;
  text-align: center;
  max-width: 520px;
  width: 100%;
}
.success-icon {
  width: 70px; height: 70px;
  background: rgba(37,99,235,0.16);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--tone-support);
}
.success-card h1 { font-size: 2rem; margin-bottom: 1rem; }
.success-card p  { font-size: 0.92rem; margin-bottom: 1.8rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 7rem 0 4rem;
  }
  .hero-text { max-width: 100%; }
  .hero-card { justify-content: flex-start; }
  .hero-card-img { height: 420px; }
}

@media (max-width: 820px) {
  .awareness-grid,
  .product-layout,
  .order-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .product-visual { order: -1; }
  .steps-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-order { display: none; }
  .nav-burger { display: flex; }
  :root { --space-xl: 4rem; }
  .trust-strip { flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { flex-direction: column; gap: 0.7rem; }
  .cookie-bar-inner { flex-direction: column; align-items: flex-start; }
  .cookie-btns { width: 100%; }
  .cb-accept, .cb-decline { flex: 1; text-align: center; }
  .form-card { padding: 1.8rem; }
  .success-card { padding: 2.5rem 1.6rem; }
  .aware-img-card { height: 220px; }
}
