/* ============================================
   Vanilla Lyrics — Professional Static Site
   Dark Theme | Glassmorphism | Seasonal Launch
   ============================================ */

/* ---------- Google Font ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Brand Palette ---------- */
:root {
  --bg-primary:       #0a0a1a;
  --bg-card:          rgba(255, 255, 255, 0.04);
  --bg-card-hover:    rgba(255, 255, 255, 0.08);
  --border-glass:     rgba(255, 255, 255, 0.08);
  --text-primary:     #f0f0f5;
  --text-secondary:   #a0a0b8;
  --text-muted:       #6a6a80;

  /* Product accent colors */
  --color-pollen:     #f4a261;
  --color-orkid:      #9b5de5;
  --color-vw:         #00d4ff;
  --color-vld:        #00c9a7;
  --color-da:         #ff6b35;
  --color-brand:      #ffd700;

  /* Layout */
  --nav-height:       72px;
  --section-padding:  100px 0;
  --container-width:  1200px;
  --radius:           16px;
  --radius-sm:        10px;
  --transition:       0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul { list-style: none; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-glass);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-brand);
  letter-spacing: -0.02em;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-brand);
  transition: width var(--transition);
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a1a 0%, #141432 25%, #0d1b2a 50%, #1a0a2e 75%, #0a0a1a 100%);
  background-size: 400% 400%;
  animation: gradientShift 16s ease infinite;
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  25%  { background-position: 100% 50%; }
  50%  { background-position: 100% 0%; }
  75%  { background-position: 0% 100%; }
  100% { background-position: 0% 50%; }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(255, 215, 0, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* Page-specific hero gradients */
body.page-pollen .hero {
  background: linear-gradient(135deg, #0a0a1a 0%, #2a1a0a 30%, #1a1005 60%, #0a0a1a 100%);
  background-size: 400% 400%;
  animation: gradientShift 16s ease infinite;
}

body.page-orkid .hero {
  background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 30%, #120832 60%, #0a0a1a 100%);
  background-size: 400% 400%;
  animation: gradientShift 16s ease infinite;
}

body.page-vw .hero {
  background: linear-gradient(135deg, #0a0a1a 0%, #0a1a2e 30%, #051520 60%, #0a0a1a 100%);
  background-size: 400% 400%;
  animation: gradientShift 16s ease infinite;
}

body.page-distrib .hero {
  background: linear-gradient(135deg, #0a0a1a 0%, #0a1a18 30%, #051510 60%, #0a0a1a 100%);
  background-size: 400% 400%;
  animation: gradientShift 16s ease infinite;
}

body.page-da .hero {
  background: linear-gradient(135deg, #0a0a1a 0%, #2a0f05 30%, #1a0a02 60%, #0a0a1a 100%);
  background-size: 400% 400%;
  animation: gradientShift 16s ease infinite;
}

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--color-brand), var(--color-vw), var(--color-orkid));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease infinite;
}

/* ---------- CTA Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-brand), #e6c200);
  color: #0a0a1a;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border-glass);
}

.btn-outline:hover {
  transform: scale(1.05);
  border-color: var(--color-brand);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
}

/* ---------- Sections ---------- */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: center;
}

.section-subtitle {
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
  text-align: center;
}

/* ---------- Product Cards Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card:hover::before {
  opacity: 1;
}

/* Per-product accent on hover */
.product-card[data-product="pollen"]::before  { background: var(--color-pollen); }
.product-card[data-product="pollen"]:hover    { box-shadow: 0 8px 40px rgba(244, 162, 97, 0.15); border-color: rgba(244, 162, 97, 0.25); }

.product-card[data-product="orkid"]::before   { background: var(--color-orkid); }
.product-card[data-product="orkid"]:hover     { box-shadow: 0 8px 40px rgba(155, 93, 229, 0.15); border-color: rgba(155, 93, 229, 0.25); }

.product-card[data-product="vw"]::before      { background: var(--color-vw); }
.product-card[data-product="vw"]:hover        { box-shadow: 0 8px 40px rgba(0, 212, 255, 0.15); border-color: rgba(0, 212, 255, 0.25); }

.product-card[data-product="vld"]::before     { background: var(--color-vld); }
.product-card[data-product="vld"]:hover       { box-shadow: 0 8px 40px rgba(0, 201, 167, 0.15); border-color: rgba(0, 201, 167, 0.25); }

.product-card[data-product="da"]::before      { background: var(--color-da); }
.product-card[data-product="da"]:hover        { box-shadow: 0 8px 40px rgba(255, 107, 53, 0.15); border-color: rgba(255, 107, 53, 0.25); }

.product-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-card p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-card .card-link {
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.product-card .card-link:hover {
  gap: 10px;
}

/* ---------- Stats Row ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 60px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Countdown Section ---------- */
.countdown-section {
  text-align: center;
  padding: var(--section-padding);
  position: relative;
}

.countdown-season {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.countdown-season .season-emoji {
  font-size: 1.2rem;
}

.countdown-product {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.countdown-digits {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.flip-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.flip-card {
  position: relative;
  width: 90px;
  height: 100px;
  perspective: 400px;
}

.flip-card .top,
.flip-card .bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}

.flip-card .top {
  top: 0;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: flex-end;
  padding-bottom: 2px;
}

.flip-card .bottom {
  bottom: 0;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  border-top: none;
  align-items: flex-start;
  padding-top: 2px;
}

.flip-card.flip .top {
  animation: flipTop 0.5s ease-in-out;
}

@keyframes flipTop {
  0%   { transform: rotateX(0); }
  100% { transform: rotateX(-90deg); }
}

.flip-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.launched-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--color-vld), #00a88a);
  color: #0a0a1a;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 20px;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-glass);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 48px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-brand);
  border: 3px solid var(--bg-primary);
  z-index: 1;
}

.timeline-item:nth-child(odd)::before {
  right: -7px;
}

.timeline-item:nth-child(even)::before {
  left: -7px;
}

.timeline-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-item .timeline-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 64px 0 32px;
}

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

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 40px;
    padding-right: 0;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item::before {
    left: -7px !important;
    right: auto !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
    --section-padding: 72px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    border-bottom: 1px solid var(--border-glass);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .countdown-digits {
    gap: 12px;
  }

  .flip-card {
    width: 70px;
    height: 80px;
  }

  .flip-card .top,
  .flip-card .bottom {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .flip-card {
    width: 60px;
    height: 68px;
  }

  .flip-card .top,
  .flip-card .bottom {
    font-size: 1.6rem;
  }

  .flip-label {
    font-size: 0.65rem;
  }

  .stats-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .countdown-product {
    font-size: 1.2rem;
  }
}

/* ============================================
   Additional Component Styles
   ============================================ */

/* --- Nav --- */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-brand);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
}

/* --- Hero variants --- */
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-overlay {
  position: relative;
}

.hero-product {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* --- About section --- */
.about-content {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.about-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px;
  backdrop-filter: blur(12px);
}

.about-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.about-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
}

/* --- Product cards on home --- */
.product-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.product-name {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- Services grid (product pages) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Stats --- */
.section-stats {
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 32px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.stat-number {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-glass);
}

.timeline-item {
  position: relative;
  padding: 0 0 32px 32px;
}

.timeline-marker {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-brand);
  border: 3px solid var(--bg-primary);
}

.timeline-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.timeline-season {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Approach / text blocks --- */
.approach-content,
.text-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.approach-content p,
.text-block p {
  margin-bottom: 16px;
}

/* --- CTA section --- */
.section-cta,
.cta-box {
  text-align: center;
  padding: 80px 24px;
}

.section-alt {
  background: rgba(255,255,255,0.02);
}

/* --- Feature list --- */
.feature-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 0;
}

.feature-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.feature-list li::before {
  content: '✓ ';
  color: var(--color-vld);
  font-weight: 700;
}

/* --- Steps / process --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 32px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-vld);
  color: var(--bg-primary);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* --- Platforms tags --- */
.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 700px;
  margin: 24px auto 0;
}

.platform-tag {
  padding: 8px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  backdrop-filter: blur(8px);
}

/* --- Pricing (DA Delivery) --- */
.pricing-block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 40px;
  backdrop-filter: blur(12px);
  margin-bottom: 24px;
}

.pricing-formula {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-da);
  margin-bottom: 8px;
}

.pricing-detail {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-coverage {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- CTA buttons row --- */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  border: 2px solid var(--text-secondary);
  color: var(--text-primary);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--text-primary);
}

/* --- Footer extras --- */
.footer-heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* --- Grids --- */
.grid {
  display: grid;
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* --- Responsive additions --- */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-product {
    min-height: 60vh;
    padding: 100px 20px 60px;
  }

  .nav-menu {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}
