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

:root {
  --sky-light: #e8f4ff;
  --sky-mid: #a8d8f0;
  --sky-deep: #4a90c2;
  --sky-dark: #0a2e4a;
  --azure: #00b4ff;
  --azure-glow: #00d4ff;
  --sunset: #ff8c42;
  --med-green: #2ecc71;
  --med-green-glow: #4aff8c;
  --med-green-deep: #0a6e3a;
  --med-mint: #e8f9f0;
  --med-red: #ff4757;
  --med-red-glow: #ff6b81;
  --med-red-deep: #c0392b;
  --med-rose: #fff0f0;
  --indigo-deep: #1a1a4e;
  --white: #ffffff;
  --text-dark: #0a1e30;
  --text-light: #f0f7ff;
  --text-mid: #5a7a90;
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-soft: 0 10px 40px rgba(10, 46, 74, 0.15);
  --shadow-glow: 0 0 60px rgba(0, 212, 255, 0.3);
  --radius: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--sky-light);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Climate Crisis', 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ===== Navigation ===== */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(232, 244, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(74, 144, 194, 0.1);
  transition: all 0.3s ease;
}

#nav.scrolled {
  padding: 12px 48px;
  background: rgba(232, 244, 255, 0.92);
  box-shadow: 0 2px 20px rgba(10, 46, 74, 0.08);
}

.nav-logo {
  font-family: 'Climate Crisis', sans-serif;
  font-size: 22px;
  color: var(--sky-dark);
  letter-spacing: -0.03em;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a:hover {
  color: var(--sky-dark);
}

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

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--sky-dark);
  color: white;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: var(--med-red-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.3);
}

/* ===== Hero ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 48px 60px;
  background: linear-gradient(180deg, #fde8ea 0%, #eefaf4 25%, #e8f4ff 60%, #f5fbff 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.cloud {
  position: absolute;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.5);
  filter: blur(30px);
  animation: drift 40s infinite ease-in-out;
}

.cloud-1 { width: 300px; height: 100px; top: 15%; left: 5%; animation-delay: 0s; }
.cloud-2 { width: 200px; height: 80px; top: 40%; right: 10%; animation-delay: -10s; }
.cloud-3 { width: 250px; height: 90px; bottom: 20%; left: 15%; animation-delay: -20s; }
.cloud-4 { width: 180px; height: 70px; top: 60%; right: 25%; animation-delay: -30s; }

@keyframes drift {
  0%, 100% { transform: translateX(0) translateY(0); }
  33% { transform: translateX(30px) translateY(-15px); }
  66% { transform: translateX(-20px) translateY(10px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s forwards;
}

.hero-text h1 {
  font-size: clamp(48px, 6.5vw, 92px);
  color: var(--sky-dark);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.gradient-text {
  background: linear-gradient(120deg, var(--med-red-glow), var(--med-green-glow), var(--azure), var(--med-red));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 5s ease infinite;
}

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

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 520px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 100px;
  background: var(--sky-dark);
  color: white;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--med-red);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 71, 87, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  border-radius: 100px;
  background: transparent;
  color: var(--sky-dark);
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--sky-deep);
  transition: all 0.25s;
}

.btn-secondary:hover {
  background: var(--sky-deep);
  color: white;
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.hero-stats {
  display: flex;
  gap: 48px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: 'Climate Crisis', sans-serif;
  font-size: 36px;
  color: var(--sky-dark);
  line-height: 1;
}

.hero-stats span {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 6px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Image */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.capsule-orb {
  position: relative;
  width: 420px;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s 0.3s forwards;
}

.capsule-orb img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(255, 71, 87, 0.2)) drop-shadow(0 10px 20px rgba(46, 204, 113, 0.2));
}

.orb-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 129, 0.2), rgba(74, 255, 140, 0.18), rgba(0, 212, 255, 0.12), transparent 70%);
  filter: blur(40px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.scroll-hint span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--med-red);
}

.scroll-arrow {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--sky-deep), transparent);
  position: relative;
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--sky-deep);
  border-bottom: 2px solid var(--sky-deep);
  transform: translateX(-50%) rotate(45deg);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== Section Header ===== */
.section-header {
  text-align: center;
  padding: 100px 48px 60px;
  max-width: 800px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--med-red);
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--sky-dark);
}

/* ===== How It Works ===== */
#how {
  background: linear-gradient(180deg, #f5fbff 0%, #f0f9f5 100%);
  padding-bottom: 100px;
}

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

.how-step {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.how-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--med-red-glow), var(--med-red), var(--med-green), var(--azure));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.how-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10, 46, 74, 0.15);
}

.how-step:hover::before {
  transform: scaleX(1);
}

.step-number {
  font-family: 'Climate Crisis', sans-serif;
  font-size: 14px;
  color: var(--med-red);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.how-step h3 {
  font-size: 24px;
  color: var(--sky-dark);
  margin-bottom: 12px;
}

.how-step p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

.blueprint-wrap {
  max-width: 600px;
  margin: 80px auto 0;
  text-align: center;
}

.blueprint-wrap img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(10, 46, 74, 0.2);
}

.blueprint-caption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-mid);
  font-style: italic;
}

/* ===== Variants ===== */
#variants {
  background: linear-gradient(180deg, #0a2e4a 0%, #103a5c 100%);
  padding-bottom: 100px;
  color: var(--text-light);
}

#variants .section-eyebrow {
  color: var(--med-red-glow);
}

#variants .section-header h2 {
  color: white;
}

.variants-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 48px;
}

.variant-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: all 0.3s;
  position: relative;
  backdrop-filter: blur(10px);
}

.variant-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  border-color: rgba(46, 204, 113, 0.5);
}

.variant-featured {
  background: rgba(46, 204, 113, 0.08);
  border-color: rgba(46, 204, 113, 0.35);
}

.variant-featured .variant-color {
  box-shadow: 0 0 40px rgba(46, 204, 113, 0.5), 0 0 60px rgba(0, 212, 255, 0.2);
}

.variant-badge {
  position: absolute;
  top: -12px;
  right: 32px;
  background: linear-gradient(135deg, var(--med-red-glow), var(--med-green-glow));
  color: var(--sky-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.variant-color {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.variant-sky {
  background: radial-gradient(circle at 35% 35%, #ffb3ba, #ff4757, #c0392b);
  box-shadow: 0 0 30px rgba(255, 71, 87, 0.4);
}

.variant-azure {
  background: radial-gradient(circle at 35% 35%, #a0eaff, #00d4ff, #0080c0);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.5);
}

.variant-indigo {
  background: radial-gradient(circle at 35% 35%, #5a6aff, #2a2a8e, #0a0a3e);
}

.variant-card h3 {
  font-size: 32px;
  color: white;
  margin-bottom: 8px;
}

.variant-tagline {
  font-size: 14px;
  color: var(--med-red-glow);
  margin-bottom: 20px;
}

.variant-desc {
  font-size: 15px;
  color: rgba(240, 247, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.variant-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.variant-specs span {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(240, 247, 255, 0.8);
}

.variant-price {
  font-family: 'Climate Crisis', sans-serif;
  font-size: 36px;
  color: var(--med-red-glow);
}

.variants-image {
  max-width: 500px;
  margin: 60px auto 0;
}

.variants-image img {
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* ===== Testimonials ===== */
#voices {
  background: linear-gradient(180deg, #fff8f8 0%, #f0f9f5 100%);
  padding-bottom: 100px;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 48px;
}

.testimonial {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: all 0.3s;
  border-top: 3px solid transparent;
}

.testimonial:nth-child(1) { border-top-color: var(--med-red); }
.testimonial:nth-child(2) { border-top-color: var(--med-green); }
.testimonial:nth-child(3) { border-top-color: var(--med-red-deep); }

.testimonial:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10, 46, 74, 0.12);
}

.quote-mark {
  font-family: 'Climate Crisis', serif;
  font-size: 64px;
  color: var(--sky-mid);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.4;
}

.testimonial p:nth-child(2) {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 144, 194, 0.12);
}

.testimonial-author strong {
  font-size: 15px;
  color: var(--sky-dark);
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-mid);
}

.voices-image {
  max-width: 500px;
  margin: 60px auto 0;
}

.voices-image img {
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(10, 46, 74, 0.2);
}

/* ===== FAQ ===== */
#faq {
  background: linear-gradient(180deg, #fff5f5 0%, #fde8ea 100%);
  padding-bottom: 100px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 48px;
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 46, 74, 0.06);
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(10, 46, 74, 0.1);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--sky-dark);
  text-align: left;
}

.faq-icon {
  font-size: 24px;
  color: var(--med-red);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 32px;
}

.faq-item.active .faq-a {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-a p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ===== Order ===== */
#order {
  background: linear-gradient(180deg, #fff0f0 0%, #fde8ea 100%);
  padding: 80px 48px 100px;
}

.order-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.order-content h2 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--sky-dark);
  margin-bottom: 20px;
}

.order-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 56px;
}

.order-box {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  text-align: left;
}

.order-left {
  background: white;
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
}

.order-left h3 {
  font-size: 20px;
  color: var(--sky-dark);
  margin-bottom: 24px;
}

.order-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 16px;
  border: 2px solid #e0eaf5;
  cursor: pointer;
  transition: all 0.2s;
}

.order-option:hover {
  border-color: var(--med-red);
  background: #fff5f5;
}

.order-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--med-red);
  cursor: pointer;
}

.order-option input[type="radio"]:checked + .option-content strong {
  color: var(--med-red);
}

.option-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.option-content strong {
  font-size: 16px;
  color: var(--sky-dark);
  transition: color 0.2s;
}

.option-content small {
  font-size: 13px;
  color: var(--text-mid);
}

.option-price {
  font-family: 'Climate Crisis', sans-serif;
  font-size: 20px;
  color: var(--med-red);
}

.order-right {
  display: flex;
  align-items: stretch;
}

.order-summary {
  background: var(--sky-dark);
  color: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.order-summary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.15), transparent 60%);
  pointer-events: none;
}

.summary-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--med-red-glow);
  margin-bottom: 16px;
  position: relative;
}

.summary-product {
  font-family: 'Climate Crisis', sans-serif;
  font-size: 28px;
  margin-bottom: 4px;
  position: relative;
}

.summary-detail {
  font-size: 14px;
  color: rgba(240, 247, 255, 0.6);
  margin-bottom: 24px;
  position: relative;
}

.summary-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
  position: relative;
}

.summary-total {
  font-size: 16px;
  font-weight: 500;
  color: rgba(240, 247, 255, 0.8);
  margin-bottom: 24px;
  position: relative;
}

.summary-total span {
  font-family: 'Climate Crisis', sans-serif;
  font-size: 32px;
  color: var(--med-red-glow);
}

.order-summary .btn-primary {
  background: linear-gradient(135deg, var(--med-red), var(--med-green));
  margin-bottom: 16px;
  position: relative;
}

.order-summary .btn-primary:hover {
  background: linear-gradient(135deg, var(--med-red-glow), var(--med-green-glow));
}

.summary-fineprint {
  font-size: 12px;
  color: rgba(240, 247, 255, 0.4);
  text-align: center;
  position: relative;
}

/* ===== Footer ===== */
footer {
  background: #061a2e;
  color: rgba(240, 247, 255, 0.7);
  padding: 60px 48px 30px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
  font-size: 28px;
  color: white;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 4px;
}

.footer-tag {
  color: var(--med-red-glow) !important;
  font-style: italic;
  margin-top: 12px !important;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(240, 247, 255, 0.5);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--azure-glow);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(240, 247, 255, 0.3);
  text-align: center;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--sky-dark);
  color: white;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 10px 40px rgba(255, 71, 87, 0.3);
  border: 1px solid rgba(255, 107, 129, 0.3);
  z-index: 200;
  opacity: 0;
  transition: all 0.4s ease;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== Medicine Capsule Decoration ===== */
.medicine-cross {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0.08;
  pointer-events: none;
}

.medicine-cross::before,
.medicine-cross::after {
  content: '';
  position: absolute;
  background: var(--med-red);
  border-radius: 4px;
}

.medicine-cross::before {
  width: 8px;
  height: 24px;
  left: 8px;
  top: 0;
}

.medicine-cross::after {
  width: 24px;
  height: 8px;
  left: 0;
  top: 8px;
}

.medicine-cross-green {
  position: absolute;
  width: 24px;
  height: 24px;
  opacity: 0.08;
  pointer-events: none;
}

.medicine-cross-green::before,
.medicine-cross-green::after {
  content: '';
  position: absolute;
  background: var(--med-green);
  border-radius: 4px;
}

.medicine-cross-green::before {
  width: 8px;
  height: 24px;
  left: 8px;
  top: 0;
}

.medicine-cross-green::after {
  width: 24px;
  height: 8px;
  left: 0;
  top: 8px;
}

.floating-pill {
  position: absolute;
  width: 50px;
  height: 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--med-red), var(--med-green));
  opacity: 0.12;
  pointer-events: none;
  animation: floatPill 8s ease-in-out infinite;
}

@keyframes floatPill {
  0%, 100% { transform: translateY(0) rotate(20deg); }
  50% { transform: translateY(-30px) rotate(40deg); }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .variants-grid { grid-template-columns: 1fr; max-width: 500px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; }
  .order-box { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  #nav { padding: 14px 20px; }
  .nav-links { display: none; }
  #hero { padding: 90px 20px 60px; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; gap: 32px; }
  .hero-stats strong { font-size: 28px; }
  .capsule-orb { width: 300px; height: 300px; }
  .section-header { padding: 80px 20px 40px; }
  .how-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .variants-grid { padding: 0 20px; }
  .testimonials-grid { padding: 0 20px; }
  .faq-list { padding: 0 20px; }
  #order { padding: 60px 20px 80px; }
  .footer-links { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 40px 20px 20px; }
}
