/* =====================================================
   RUBOKA — Stylesheet v1.0
   Architecture: Section-scoped semantic + utility helpers
   Token family: --brand / --brand-alt / --highlight
   Theme: Dark Premium Navy + Cyan Electric + Pastel Accents
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* =====================================================
   ROOT TOKENS
   ===================================================== */
:root {
  /* Brand colors */
  --brand:           #00c2ff;
  --brand-alt:       #0077b6;
  --brand-dim:       rgba(0, 194, 255, 0.14);
  --brand-glow:      0 0 40px rgba(0, 194, 255, 0.28);
  --highlight:       #a8dadc;
  --pastel-sky:      #bde0fe;
  --pastel-mint:     #caf0f8;
  --pastel-lavender: #c8d8f0;

  /* Backgrounds */
  --bg-base:         #060c18;
  --bg-section:      #0b1526;
  --bg-section-alt:  #0e1c30;
  --bg-card:         #101e34;
  --bg-card-hover:   #152540;
  --bg-glass:        rgba(10, 20, 40, 0.88);
  --bg-overlay:      rgba(6, 12, 24, 0.72);

  /* Borders */
  --border-card:     rgba(0, 194, 255, 0.2);
  --border-subtle:   rgba(255, 255, 255, 0.06);
  --border-pastel:   rgba(168, 218, 220, 0.2);

  /* Text */
  --text-primary:    #deeeff;
  --text-secondary:  #7a9ec0;
  --text-muted:      #3d5a7a;
  --text-on-brand:   #060c18;

  /* Radius */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   36px;
  --radius-pill: 120px;

  /* Shadows */
  --shadow-card:    0 8px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 194, 255, 0.12);
  --shadow-btn:     0 4px 22px rgba(0, 194, 255, 0.38);
  --shadow-section: 0 24px 64px rgba(0, 0, 0, 0.35);

  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  /* Transitions */
  --t-fast:   0.18s ease;
  --t-smooth: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --t-spring: 0.48s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1200px;
  --section-py:    88px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--brand);
  text-decoration: none;
  transition: color var(--t-fast);
}

a:hover { color: var(--pastel-sky); }

ul { list-style: none; }

/* =====================================================
   CONTAINER & LAYOUT UTILITIES
   ===================================================== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.u-text-center { text-align: center; }
.u-text-brand   { color: var(--brand); }
.u-mb-0  { margin-bottom: 0; }
.u-mb-xs { margin-bottom: 8px; }
.u-mb-sm { margin-bottom: 16px; }
.u-mb-md { margin-bottom: 32px; }
.u-mb-lg { margin-bottom: 56px; }

/* =====================================================
   TYPOGRAPHY SYSTEM
   ===================================================== */
.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.heading-md {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.3;
}

.heading-sm {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.35;
}

.body-lg {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
}

.body-md {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.label-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-dim);
  border: 1px solid rgba(0, 194, 255, 0.25);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-on-brand);
  background: var(--brand);
  border: none;
  border-radius: var(--radius-pill);
  padding: 15px 36px;
  cursor: pointer;
  transition: transform var(--t-smooth), box-shadow var(--t-smooth), background var(--t-smooth);
  box-shadow: var(--shadow-btn);
  text-decoration: none;
}

.btn-primary:hover {
  background: #22d4ff;
  color: var(--text-on-brand);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 194, 255, 0.52);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--brand);
  background: transparent;
  border: 1.5px solid rgba(0, 194, 255, 0.45);
  border-radius: var(--radius-pill);
  padding: 14px 30px;
  cursor: pointer;
  transition: all var(--t-smooth);
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--brand-dim);
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-1px);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-on-brand);
  background: var(--brand);
  border: none;
  border-radius: var(--radius-pill);
  padding: 11px 24px;
  cursor: pointer;
  transition: all var(--t-smooth);
  box-shadow: 0 3px 14px rgba(0, 194, 255, 0.32);
  text-decoration: none;
}

.btn-cta:hover {
  background: #22d4ff;
  color: var(--text-on-brand);
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(0, 194, 255, 0.48);
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--t-smooth);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.site-header__logo { flex-shrink: 0; }

.site-header__nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header__nav a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--t-fast);
  text-decoration: none;
}

.site-header__nav a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--t-smooth);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--bg-base);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(0, 119, 182, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0, 194, 255, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(168, 218, 220, 0.06) 0%, transparent 50%);
}

.hero__bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 194, 255, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 80% at 60% 50%, black 30%, transparent 80%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__content { padding-right: 16px; }

.hero__pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-dim);
  border: 1px solid rgba(0, 194, 255, 0.22);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.hero__pretitle::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
  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.7); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero__title .accent {
  color: var(--brand);
  display: block;
}

.hero__desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 40px;
}

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

.hero__note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.hero__note svg { flex-shrink: 0; }

/* Hero visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__product-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__product-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.2) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero__product-ring {
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  border: 1px solid rgba(0, 194, 255, 0.15);
  animation: ring-spin 20s linear infinite;
}

.hero__product-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  transform: translateX(-50%);
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__product-img {
  position: relative;
  z-index: 1;
  width: 78%;
  max-width: 340px;
  filter: drop-shadow(0 20px 50px rgba(0, 194, 255, 0.25)) drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  animation: float-product 4s ease-in-out infinite;
}

@keyframes float-product {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* Hero badges */
.hero__badges {
  position: absolute;
  bottom: 16px;
  right: -8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.hero__badge {
  background: var(--bg-glass);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.hero__badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero__badge-text {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero__badge-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* =====================================================
   TRUST STRIP
   ===================================================== */
.trust-strip {
  background: var(--bg-section);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 32px 0;
}

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

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-right: 1px solid var(--border-subtle);
}

.trust-strip__item:last-child { border-right: none; }

.trust-strip__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--brand-dim);
  border: 1px solid rgba(0, 194, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.trust-strip__label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.trust-strip__sublabel {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =====================================================
   SECTION — DE CE RUBOKA
   ===================================================== */
.why-ruboka {
  padding: var(--section-py) 0;
  background: var(--bg-base);
}

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

.why-ruboka__image-wrap {
  position: relative;
}

/* wellness.jpg is LANDSCAPE (~1280×854). Use 4/3 ratio to show it properly */
.why-ruboka__image {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: 62% center;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}

.why-ruboka__image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brand);
  color: var(--text-on-brand);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-family: var(--font-display);
  box-shadow: var(--shadow-btn);
}

.why-ruboka__image-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.why-ruboka__image-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.why-ruboka__checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.why-ruboka__check-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.why-ruboka__check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-dim);
  border: 1.5px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.why-ruboka__check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--brand);
}

.why-ruboka__check-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.why-ruboka__check-text strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* =====================================================
   SECTION — RUTINA SĂNĂTOASĂ (3 CARDS)
   ===================================================== */
.healthy-routine {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

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

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

.routine-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t-smooth), box-shadow var(--t-smooth), border-color var(--t-smooth);
  box-shadow: var(--shadow-card);
}

.routine-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 194, 255, 0.28);
  border-color: rgba(0, 194, 255, 0.35);
}

.routine-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.routine-card__body {
  padding: 24px 24px 28px;
}

.routine-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-dim);
  border: 1px solid rgba(0, 194, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.routine-card__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.routine-card__text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* =====================================================
   SECTION — PRODUSUL RUBOKA
   ===================================================== */
.product-section {
  padding: var(--section-py) 0;
  background: var(--bg-section-alt);
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 119, 182, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.product-section__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.product-section__img-wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
}

.product-section__glow-ring {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.product-section__img {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 16px 40px rgba(0, 194, 255, 0.22)) drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.product-spec-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-align: center;
}

.product-spec-item__value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand);
  display: block;
}

.product-spec-item__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
  display: block;
}

.product-section__content {}

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

.ingredient-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: border-color var(--t-fast);
}

.ingredient-row:hover { border-color: var(--border-card); }

.ingredient-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.ingredient-name {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.ingredient-benefit {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.product-price-box {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.1) 0%, rgba(0, 119, 182, 0.08) 100%);
  border: 1px solid rgba(0, 194, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.product-price {
  display: flex;
  flex-direction: column;
}

.product-price__amount {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
}

.product-price__currency {
  font-size: 1.1rem;
  vertical-align: super;
}

.product-price__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =====================================================
   SECTION — CUM FUNCȚIONEAZĂ
   ===================================================== */
.how-it-works {
  padding: var(--section-py) 0;
  background: var(--bg-base);
}

.how-it-works__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.how-it-works__left {}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 8px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-item__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-dim);
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand);
  flex-shrink: 0;
}

.step-item__body {}

.step-item__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.step-item__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* people.jpg = PORTRAIT — 3/4 ratio fits perfectly in right column */
.how-it-works__image-wrap {
  position: relative;
}

.how-it-works__image {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: center center;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card);
}

.how-it-works__image-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, transparent 55%, rgba(6, 12, 24, 0.65) 100%);
}

/* =====================================================
   SECTION — RECENZII
   ===================================================== */
.reviews-section {
  padding: var(--section-py) 0;
  background: var(--bg-section);
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  transition: transform var(--t-smooth), box-shadow var(--t-smooth);
  box-shadow: var(--shadow-card);
  position: relative;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 194, 255, 0.2);
}

.review-card__quote {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--brand-dim);
  font-family: Georgia, serif;
}

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

.review-stars span {
  color: #f5c518;
  font-size: 0.85rem;
}

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

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

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-alt), var(--brand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-on-brand);
  flex-shrink: 0;
}

.review-card__name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
}

.review-card__location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =====================================================
   SECTION — FAQ
   ===================================================== */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--bg-section-alt);
}

.faq-section__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-fast);
}

.faq-item.is-open { border-color: rgba(0, 194, 255, 0.3); }

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

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

.faq-item__question {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-dim);
  border: 1px solid rgba(0, 194, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-smooth), background var(--t-smooth);
}

.faq-item__icon svg {
  width: 12px;
  height: 12px;
  color: var(--brand);
  transition: transform var(--t-smooth);
}

.faq-item.is-open .faq-item__icon {
  background: var(--brand);
}

.faq-item.is-open .faq-item__icon svg {
  transform: rotate(45deg);
  color: var(--text-on-brand);
}

.faq-item__body {
  display: none;
  padding: 0 22px 20px;
}

.faq-item.is-open .faq-item__body { display: block; }

.faq-item__answer {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

/* =====================================================
   SECTION — COMANDĂ (ORDER FORM)
   ===================================================== */
.order-section {
  padding: var(--section-py) 0;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.order-section::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.order-section__info {}

.order-includes {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.order-include-item svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

.order-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}

.order-form-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.order-form-card__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

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

.form-control {
  width: 100%;
  background: var(--bg-section);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-control::placeholder { color: var(--text-muted); }

.form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.12);
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300c2ff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

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

.order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--brand-dim);
  border: 1px solid rgba(0, 194, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 22px 0;
}

.order-total__label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.order-total__value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--brand);
}

.form-submit {
  width: 100%;
  padding: 17px 24px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

/* =====================================================
   SECTION — CONTACT
   ===================================================== */
.contact-section {
  padding: 64px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-subtle);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-dim);
  border: 1px solid rgba(0, 194, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item__value {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--bg-base);
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0 28px;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.site-footer__links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  transition: color var(--t-fast), background var(--t-fast);
}

.site-footer__links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.site-footer__disclaimer {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  opacity: 0.7;
}

/* =====================================================
   COOKIE BANNER
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 16, 32, 0.97);
  border-top: 1px solid var(--border-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

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

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
  min-width: 250px;
}

.cookie-banner__text a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  cursor: pointer;
  transition: all var(--t-fast);
  border: none;
}

.cookie-btn--accept {
  background: var(--brand);
  color: var(--text-on-brand);
}

.cookie-btn--accept:hover { background: #22d4ff; }

.cookie-btn--decline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.cookie-btn--decline:hover {
  color: var(--text-primary);
  border-color: var(--border-card);
}

/* =====================================================
   LEGAL PAGES
   ===================================================== */
.legal-page {
  padding: 100px 0 80px;
  min-height: 100vh;
}

.legal-page__header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-subtle);
}

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

.legal-page__content h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 36px 0 14px;
}

.legal-page__content h2:first-child { margin-top: 0; }

.legal-page__content p {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-page__content ul {
  margin: 12px 0 16px 20px;
  list-style: disc;
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.7;
}

.legal-page__content a { color: var(--brand); }

/* =====================================================
   SUCCESS PAGE
   ===================================================== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.success-page::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.success-card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  width: calc(100% - 48px);
  box-shadow: var(--shadow-card);
}

.success-card__check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-btn);
  animation: success-pop 0.6s var(--t-spring);
}

@keyframes success-pop {
  from { transform: scale(0.3); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__content { padding-right: 0; text-align: center; }
  .hero__desc { margin: 0 auto 40px; }
  .hero__actions { justify-content: center; }
  .hero__note { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__badges { display: none; }

  .why-ruboka__inner { grid-template-columns: 1fr; gap: 40px; }
  .why-ruboka__image-badge { bottom: 12px; right: 12px; }

  .product-section__inner { grid-template-columns: 1fr; gap: 48px; }
  .product-section__visual { order: -1; }

  .how-it-works__inner { grid-template-columns: 1fr; gap: 40px; }
  .how-it-works__image-wrap { max-width: 420px; width: 100%; }

  .order-section__inner { grid-template-columns: 1fr; gap: 40px; }

  .contact-section__inner { grid-template-columns: 1fr 1fr; }

  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__item:nth-child(2) { border-right: none; }
  .trust-strip__item { padding: 12px 16px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  .site-header__nav,
  .site-header > .container > .site-header__inner > .btn-cta { display: none; }

  .site-header__burger { display: flex; }

  .site-header__nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 16px 24px;
  }

  .site-header__nav.is-open ul {
    flex-direction: column;
    gap: 4px;
  }

  .site-header__nav.is-open a {
    padding: 12px 16px;
    display: block;
  }

  .routine-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .reviews-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-strip__item:nth-child(2) { border-right: none; }
  .trust-strip__item:nth-child(3) { border-right: 1px solid var(--border-subtle); }
  .trust-strip__item:nth-child(4) { border-right: none; }

  .contact-section__inner { grid-template-columns: 1fr; }

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

  .site-footer__top { flex-direction: column; align-items: flex-start; }

  .cookie-banner__inner { flex-direction: column; gap: 14px; }
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }

  .order-form-card { padding: 26px 20px; }

  .hero__badges { display: none; }

  .product-specs { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .product-price-box { flex-direction: column; gap: 16px; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-strip__item { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .trust-strip__item:last-child { border-bottom: none; }
}
