/* ===== VELORIA — HOMEPAGE CSS ===== */

/* ── Hero Section ────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--color-dark-bg);
  color: var(--color-white);
  overflow: hidden;
  padding-block: var(--space-12);
}

.hero-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.hero-bg-shape--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #4A2C8A 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float-1 8s ease-in-out infinite;
}

.hero-bg-shape--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #C4956A 0%, transparent 70%);
  bottom: -100px;
  left: 20%;
  animation: float-2 10s ease-in-out infinite;
}

.hero-bg-shape--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #F4D5E7 0%, transparent 70%);
  top: 30%;
  left: -50px;
  opacity: 0.15;
  animation: float-3 7s ease-in-out infinite;
}

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-30px, 20px) scale(1.1); }
}
@keyframes float-2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, -30px); }
}
@keyframes float-3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%       { transform: translate(15px, 15px) rotate(15deg); }
}

.hero-section .container { position: relative; z-index: 1; }

.hero-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary-light);
  margin-bottom: var(--space-4);
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 1px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-4xl), 6vw, var(--text-6xl));
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-5);
}

.hero-title__accent {
  display: block;
  font-style: italic;
  color: var(--color-secondary-light);
  text-shadow: 0 0 40px rgba(196,149,106,0.4);
}

.hero-subtitle {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 50ch;
  margin-bottom: var(--space-7);
}

.hero-cta-group {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.hero-cta-primary {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
  font-size: var(--text-base);
  padding: 1rem 2rem;
  box-shadow: 0 8px 30px rgba(196,149,106,0.35);
}

.hero-cta-primary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  box-shadow: 0 12px 40px rgba(196,149,106,0.5);
  transform: translateY(-3px);
  color: var(--color-white);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat__number {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.hero-stat__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.2);
}

/* ── Hero Visual (CSS Product) ───────────────────────────── */
.hero-section__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-product-visual {
  position: relative;
  width: 380px;
  height: 460px;
}

.hero-product-circle {
  position: absolute;
  border-radius: 50%;
}

.hero-product-circle--outer {
  width: 360px;
  height: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(196,149,106,0.08);
  border: 1px solid rgba(196,149,106,0.25);
  animation: pulse-ring 3s ease-in-out infinite;
}

.hero-product-circle--inner {
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(196,149,106,0.12);
  border: 1px solid rgba(196,149,106,0.3);
}

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

.hero-product-bottle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bottle-float 4s ease-in-out infinite;
}

@keyframes bottle-float {
  0%, 100% { transform: translate(-50%, -55%); }
  50%       { transform: translate(-50%, -60%); }
}

.bottle-cap {
  width: 32px;
  height: 20px;
  background: linear-gradient(135deg, #C4956A, #A07050);
  border-radius: 4px 4px 0 0;
}

.bottle-neck {
  width: 24px;
  height: 30px;
  background: linear-gradient(135deg, #D4A070, #B07550);
  margin: 0 auto;
}

.bottle-body {
  width: 90px;
  height: 200px;
  background: linear-gradient(160deg, #2D1B69, #4A2C8A, #2D1B69);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: inset -8px 0 20px rgba(0,0,0,0.2), 0 20px 50px rgba(45,27,105,0.5);
  position: relative;
  overflow: hidden;
}

.bottle-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  width: 20%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 100%);
  border-radius: 0 0 4px 4px;
}

.bottle-label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-white);
  text-transform: uppercase;
}

.bottle-sublabel {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--color-secondary-light);
  text-transform: uppercase;
  text-align: center;
  padding: 0 8px;
}

/* Floating Badges */
.hero-float-badge {
  position: absolute;
  background: var(--color-white);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  animation: badge-float var(--duration, 5s) ease-in-out infinite;
}

.hero-float-badge--1 {
  top: 10%;
  left: -10%;
  --duration: 4s;
  color: var(--color-success);
}

.hero-float-badge--2 {
  top: 20%;
  right: -5%;
  --duration: 5.5s;
  animation-delay: -2s;
}

.hero-float-badge--3 {
  bottom: 20%;
  right: 0;
  --duration: 4.5s;
  animation-delay: -1s;
  color: var(--color-secondary);
}

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

/* ── Scroll Indicator ────────────────────────────────────── */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  animation: scroll-anim 1.5s ease-in-out infinite;
}

@keyframes scroll-anim {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

/* ── Promo Banner ────────────────────────────────────────── */
.promo-banner {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, #6A3DAA 100%);
  color: var(--color-white);
  padding: var(--space-9) 0;
  overflow: hidden;
}

.promo-banner__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.promo-banner__shape {
  position: absolute;
  border-radius: 50%;
}

.promo-banner__shape--1 {
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  top: -200px;
  right: -100px;
}

.promo-banner__shape--2 {
  width: 300px;
  height: 300px;
  background: rgba(196,149,106,0.12);
  bottom: -150px;
  left: 10%;
}

.promo-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.promo-banner__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary-light);
  background: rgba(196,149,106,0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.promo-banner__title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-3);
  font-family: var(--font-heading);
}

.promo-banner__subtitle {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.promo-banner__code {
  background: rgba(255,255,255,0.15);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  font-size: var(--text-lg);
}

.promo-banner__action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--space-5);
}

.promo-countdown {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.promo-countdown__label {
  font-size: var(--text-sm);
  font-weight: 600;
  opacity: 0.8;
}

.promo-banner .veloria-countdown .countdown-unit {
  background: rgba(255,255,255,0.15);
  min-width: 64px;
}

.promo-banner .veloria-countdown .countdown-unit span {
  font-size: var(--text-2xl);
}

/* ── Newsletter Section ──────────────────────────────────── */
.newsletter-section {
  position: relative;
  background: var(--color-dark-bg);
  color: var(--color-white);
  padding: var(--space-12) 0;
  overflow: hidden;
}

.newsletter-section__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.newsletter-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.newsletter-bg-shape--1 {
  width: 500px;
  height: 500px;
  background: var(--color-primary);
  top: -200px;
  left: -100px;
}

.newsletter-bg-shape--2 {
  width: 350px;
  height: 350px;
  background: var(--color-secondary);
  bottom: -100px;
  right: 5%;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-9);
  align-items: center;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.newsletter-subtitle {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-5);
}

.newsletter-perks {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.newsletter-perks li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
}

.newsletter-perks li svg { color: var(--color-secondary); flex-shrink: 0; }

.newsletter-form-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-2xl);
  padding: var(--space-7);
  backdrop-filter: blur(16px);
}

.newsletter-form__fields { display: flex; flex-direction: column; gap: var(--space-3); }

.newsletter-form__name-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--color-white);
}

.newsletter-form input[type="text"]::placeholder,
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form input:focus {
  border-color: var(--color-secondary);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(196,149,106,0.2);
}

.newsletter-form__email-row {
  display: flex;
  gap: 0;
  flex-direction: row;
}

.newsletter-form__email-row input {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  border-right: none;
  flex: 1;
}

.newsletter-form__submit {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.newsletter-form__response {
  margin-top: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
}

.newsletter-form__response.is-success {
  background: rgba(39,174,96,0.15);
  color: #6FE89B;
  border: 1px solid rgba(39,174,96,0.3);
}

.newsletter-form__response.is-error {
  background: rgba(231,76,60,0.15);
  color: #F1948A;
  border: 1px solid rgba(231,76,60,0.3);
}

.newsletter-form__privacy {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  text-align: center;
}

.newsletter-form__privacy-link { color: var(--color-secondary-light); }
