/* Page-specific styles extracted from index.html */

/* ═══════════════════════════════════════════
   HERO — Cinematic Premium Experience
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 60px;
  background: linear-gradient(160deg, #FEFCF8 0%, #FFF3E8 25%, #F0EAFF 50%, #E4F8F5 75%, #FEFCF8 100%);
  background-size: 400% 400%;
  animation: heroGradientShift 15s ease infinite;
}
@keyframes heroGradientShift {
  0%, 100% { background-position: 0% 50%; }
  25% { background-position: 50% 0%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 100%; }
}

/* Ambient glow orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  pointer-events: none;
}
.hero-orb-1 { width: 600px; height: 600px; background: rgba(255,107,74,0.15); top: -20%; right: -10%; animation: orbFloat 20s ease-in-out infinite; }
.hero-orb-2 { width: 500px; height: 500px; background: rgba(78,205,196,0.12); bottom: -25%; left: -15%; animation: orbFloat 18s ease-in-out infinite 4s; }
.hero-orb-3 { width: 350px; height: 350px; background: rgba(167,139,250,0.1); top: 30%; left: 40%; animation: orbFloat 22s ease-in-out infinite 8s; }
.hero-orb-4 { width: 200px; height: 200px; background: rgba(255,185,56,0.12); top: 10%; left: 20%; animation: orbFloat 16s ease-in-out infinite 2s; }
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(30px, 10px) scale(1.02); }
}

/* Paint splatter decorations */
.paint-splat {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}
.splat-1 { width: 120px; height: 110px; background: var(--coral); top: 12%; left: 5%; border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%; animation: splatMorph 10s ease-in-out infinite; }
.splat-2 { width: 80px; height: 90px; background: var(--teal); bottom: 15%; right: 8%; border-radius: 60% 40% 45% 55% / 45% 55% 40% 60%; animation: splatMorph 12s ease-in-out infinite 3s; }
.splat-3 { width: 60px; height: 55px; background: var(--gold); top: 60%; left: 48%; border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%; animation: splatMorph 8s ease-in-out infinite 6s; }
@keyframes splatMorph {
  0%, 100% { border-radius: 40% 60% 55% 45% / 55% 45% 60% 40%; transform: rotate(0deg) scale(1); }
  50% { border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%; transform: rotate(10deg) scale(1.1); }
}

/* Hero grid */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero text */
.hero-content { position: relative; z-index: 3; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,74,0.08);
  border: 1px solid rgba(255,107,74,0.15);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.hero h1 .line-2 {
  display: block;
  background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 40%, var(--coral) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 4s ease-in-out infinite;
}
@keyframes shimmerText {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: 19px;
  color: var(--navy-soft);
  max-width: 500px;
  margin: 20px 0 36px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-ctas .btn-primary {
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
}
.hero-ctas .btn-secondary {
  padding: 18px 36px;
  font-size: 16px;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(26,27,58,0.06);
}
.stat b {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  display: block;
  color: var(--navy);
}
.stat span {
  font-size: 13px;
  color: var(--navy-soft);
  font-weight: 500;
  margin-top: 2px;
  display: block;
}

/* ─── Hero 3D Product Showcase ─── */
.hero-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  perspective: 1200px;
  z-index: 2;
}

/* Glowing ring behind products */
.showcase-ring {
  position: absolute;
  top: 50%; left: 50%;
  width: 85%; height: 85%;
  transform: translate(-50%, -50%) rotateX(65deg);
  border-radius: 50%;
  border: 2px solid rgba(255,107,74,0.08);
  box-shadow: 0 0 60px rgba(255,107,74,0.06), 0 0 120px rgba(78,205,196,0.04);
  animation: ringPulse 6s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(255,107,74,0.06), 0 0 120px rgba(78,205,196,0.04); opacity: 0.5; }
  50% { box-shadow: 0 0 80px rgba(255,107,74,0.1), 0 0 160px rgba(78,205,196,0.08); opacity: 0.8; }
}

/* Floating product cards */
.showcase-item {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  box-shadow: 
    0 20px 50px rgba(26,27,58,0.12),
    0 0 0 1px rgba(255,255,255,0.8);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  will-change: transform;
}
.showcase-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.showcase-item:hover::before { opacity: 1; }
.showcase-item:hover {
  transform: translateY(-8px) scale(1.05) !important;
  box-shadow: 0 30px 70px rgba(26,27,58,0.18), 0 0 0 1px rgba(255,255,255,0.9);
}
.showcase-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.showcase-item .item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(0deg, rgba(26,27,58,0.75) 0%, transparent 100%);
  color: white;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}
/* Layout positions — orbital arrangement */
.showcase-item:nth-child(1) { width: 180px; height: 180px; top: 2%; left: 50%; transform: translateX(-50%) rotate(-3deg); z-index: 5; animation: showcaseFloat1 7s ease-in-out infinite; }
.showcase-item:nth-child(2) { width: 150px; height: 150px; top: 25%; right: 0; transform: rotate(4deg); z-index: 4; animation: showcaseFloat2 8s ease-in-out infinite; }
.showcase-item:nth-child(3) { width: 140px; height: 140px; bottom: 20%; right: 5%; transform: rotate(-2deg); z-index: 3; animation: showcaseFloat3 9s ease-in-out infinite; }
.showcase-item:nth-child(4) { width: 130px; height: 130px; bottom: 8%; left: 50%; transform: translateX(-50%) rotate(3deg); z-index: 4; animation: showcaseFloat4 6s ease-in-out infinite; }
.showcase-item:nth-child(5) { width: 140px; height: 140px; bottom: 25%; left: 0; transform: rotate(-4deg); z-index: 3; animation: showcaseFloat5 8.5s ease-in-out infinite; }
.showcase-item:nth-child(6) { width: 150px; height: 150px; top: 22%; left: 2%; transform: rotate(2deg); z-index: 4; animation: showcaseFloat6 7.5s ease-in-out infinite; }

/* Center hero piece */
.showcase-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(255,243,232,0.9));
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 
    0 20px 60px rgba(255,107,74,0.12),
    0 0 0 1px rgba(255,255,255,0.6),
    inset 0 -4px 12px rgba(255,107,74,0.05);
  z-index: 10;
  animation: centerPulse 4s ease-in-out infinite;
}
.showcase-center svg { width: 60%; height: 60%; }
@keyframes centerPulse {
  0%, 100% { box-shadow: 0 20px 60px rgba(255,107,74,0.12), 0 0 0 1px rgba(255,255,255,0.6), inset 0 -4px 12px rgba(255,107,74,0.05); }
  50% { box-shadow: 0 24px 70px rgba(255,107,74,0.18), 0 0 0 2px rgba(255,255,255,0.8), inset 0 -4px 12px rgba(255,107,74,0.08); }
}

@keyframes showcaseFloat1 { 0%,100%{transform:translateX(-50%) rotate(-3deg) translateY(0)} 50%{transform:translateX(-50%) rotate(1deg) translateY(-14px)} }
@keyframes showcaseFloat2 { 0%,100%{transform:rotate(4deg) translateY(0)} 50%{transform:rotate(0deg) translateY(-18px)} }
@keyframes showcaseFloat3 { 0%,100%{transform:rotate(-2deg) translateY(0)} 50%{transform:rotate(3deg) translateY(-12px)} }
@keyframes showcaseFloat4 { 0%,100%{transform:translateX(-50%) rotate(3deg) translateY(0)} 50%{transform:translateX(-50%) rotate(-2deg) translateY(-16px)} }
@keyframes showcaseFloat5 { 0%,100%{transform:rotate(-4deg) translateY(0)} 50%{transform:rotate(1deg) translateY(-14px)} }
@keyframes showcaseFloat6 { 0%,100%{transform:rotate(2deg) translateY(0)} 50%{transform:rotate(-3deg) translateY(-18px)} }

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 2;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(26,27,58,0.04);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}
.trust-bar p {
  font-size: 13px;
  color: var(--navy-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 20px;
}
.trust-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.trust-item:hover { opacity: 1; }
.trust-item .trust-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.scroll-indicator span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy-soft);
  opacity: 0.5;
}
.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(26,27,58,0.2);
  border-radius: 12px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--coral);
  border-radius: 4px;
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { top: 6px; opacity: 1; }
  50% { top: 18px; opacity: 0.3; }
}

/* ── Responsive hero ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-showcase { max-width: 450px; margin: 0 auto; }
}
@media (max-width: 680px) {
  .hero { min-height: auto; padding: 60px 0 40px; }
  .hero h1 { font-size: clamp(36px, 10vw, 48px); }
  .hero-showcase { display: none; }
  .trust-icons { gap: 24px; }
  .scroll-indicator { display: none; }
}
