/* ================================================================
   OBSIDIAN THEME — Dark Premium Authority
   Palette: Deep Space Navy + Electric Violet + Cyan + Amber CTA
   Fonts: Sora (headings) + Inter (body)
   Best for: Sleep tech, wellness, wearables, biohacking
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --bg:            #08091A;
  --bg-2:          #0D1130;
  --bg-card:       rgba(255,255,255,0.04);
  --border:        rgba(255,255,255,0.08);
  --border-hi:     rgba(108,99,255,0.30);

  --primary:       #6C63FF;
  --primary-hover: #5A52E0;
  --primary-glow:  rgba(108,99,255,0.35);
  --cyan:          #00D9FF;
  --cyan-glow:     rgba(0,217,255,0.25);
  --cta:           #FFBC00;
  --cta-hover:     #E5A800;
  --cta-glow:      rgba(255,188,0,0.45);
  --green:         #10E896;
  --red:           #FF4757;

  --text:          #F0F2FF;
  --text-muted:    #8892B0;
  --text-dim:      #5A6580;

  --heading-font:  'Sora', -apple-system, sans-serif;
  --body-font:     'Inter', -apple-system, sans-serif;

  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-pill:   9999px;
  --shadow-card:   0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow:   0 0 40px var(--primary-glow);
  --transition:    all 0.28s cubic-bezier(0.16,1,0.3,1);
  --container:     1200px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: dark; }
body {
  font-family: var(--body-font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 80px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--heading-font); line-height: 1.2; color: #fff; }

/* ── UTILS ──────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow {
  display: block; text-align: center; font-size: 11px; font-weight: 700;
  color: var(--cyan); text-transform: uppercase; letter-spacing: .22em; margin-bottom: 14px;
}
.section-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

.gradient-text {
  background: linear-gradient(135deg, #fff 0%, #A5A0FF 60%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── BUTTONS ─────────────────────────────────────────────────  */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--cta) 0%, var(--cta-hover) 100%);
  color: #08091A; font-family: var(--heading-font);
  font-weight: 800; font-size: 15px; padding: 18px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 28px var(--cta-glow), 0 8px 20px rgba(0,0,0,0.4);
  transition: var(--transition); text-transform: uppercase; letter-spacing: .06em;
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.18) 0%, transparent 60%);
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px var(--cta-glow), 0 16px 36px rgba(0,0,0,0.5); }
.btn-sm { font-size: 13px; padding: 11px 22px; }
.btn-full { width: 100%; font-size: 17px; padding: 20px 36px; }

@keyframes pulse-btn {
  0%,100% { box-shadow: 0 0 28px var(--cta-glow), 0 8px 20px rgba(0,0,0,0.4); }
  50%      { box-shadow: 0 0 55px var(--cta-glow), 0 8px 30px rgba(0,0,0,0.5); }
}
.pulse { animation: pulse-btn 2.5s ease-in-out infinite; }

/* ── ANNOUNCEMENT BAR ───────────────────────────────────────── */
.announce-bar {
  background: linear-gradient(90deg, var(--primary) 0%, #3D3BCC 50%, var(--primary) 100%);
  background-size: 200%; animation: barSlide 6s linear infinite;
  color: #fff; font-size: 13px; font-weight: 600;
  padding: 10px 20px; text-align: center;
}
@keyframes barSlide { 0%{background-position:0%} 100%{background-position:200%} }
.code-pill {
  background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.3);
  padding: 2px 10px; border-radius: var(--radius-pill); font-weight: 800;
  letter-spacing: .12em; margin: 0 4px;
}
.countdown {
  background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.25);
  padding: 3px 10px; border-radius: var(--radius-pill);
  font-weight: 800; font-variant-numeric: tabular-nums;
}

/* ── HEADER ─────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(8,9,26,0.80);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--heading-font); font-size: 1.35rem; font-weight: 800; color: #fff; }
.logo-icon { font-size: 1.5rem; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: var(--transition); }
.nav-links a:hover { color: var(--cyan); }

/* ── MARQUEE ─────────────────────────────────────────────────  */
.marquee-wrap { background: var(--bg-2); border-bottom: 1px solid var(--border); overflow: hidden; padding: 10px 0; }
.marquee-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: marqueeRoll 28s linear infinite;
  width: max-content;
}
.marquee-item { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.marquee-item span { color: var(--primary); }
@keyframes marqueeRoll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── HERO ───────────────────────────────────────────────────── */
.hero { padding: 70px 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* Gallery */
.gallery { display: flex; flex-direction: column; gap: 14px; }
.gallery-main {
  position: relative; background: var(--bg-card);
  border: 1px solid var(--border-hi); border-radius: var(--radius-lg);
  overflow: hidden; padding: 20px;
  box-shadow: var(--shadow-card), 0 0 60px rgba(108,99,255,0.15);
}
.gallery-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--radius-pill); text-transform: uppercase; letter-spacing: .08em;
}
.gallery-main img { border-radius: var(--radius-md); width: 100%; }
.gallery-thumbs { display: flex; gap: 10px; }
.thumb {
  flex: 1; border: 2px solid var(--border); border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer; transition: var(--transition);
  background: var(--bg-card);
}
.thumb:hover, .thumb.active { border-color: var(--primary); }
.thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* Hero Copy */
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 14px; color: var(--text-muted); }
.stars { color: #FFBC00; font-size: 18px; }
.hero-copy h1 { font-size: clamp(2rem,4vw,3.2rem); margin-bottom: 20px; }
.hero-sub { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 28px; line-height: 1.7; }
.benefit-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.benefit-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.check {
  width: 22px; height: 22px; min-width: 22px;
  background: var(--primary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; margin-top: 1px;
}
.price-block { background: var(--bg-card); border: 1px solid var(--border-hi); border-radius: var(--radius-md); padding: 20px 22px; margin-bottom: 22px; }
.price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.price-new { font-size: 2.2rem; font-weight: 800; color: #fff; font-family: var(--heading-font); }
.price-old { font-size: 1.1rem; color: var(--text-dim); text-decoration: line-through; }
.price-save { background: var(--cta); color: #08091A; font-size: 12px; font-weight: 800; padding: 4px 12px; border-radius: var(--radius-pill); text-transform: uppercase; }
.guarantee-note { font-size: 13px; color: var(--text-muted); }
.trust-note { text-align: center; font-size: 12px; color: var(--text-dim); margin-top: 12px; }

/* ── STATS STRIP ────────────────────────────────────────────── */
.stats-strip { background: var(--primary); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { text-align: center; }
.stat-num { font-family: var(--heading-font); font-size: 2rem; font-weight: 800; color: #fff; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ── PROBLEM / VS ───────────────────────────────────────────── */
.problem-section { background: var(--bg); }
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vs-card { border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.vs-bad { background: rgba(255,71,87,0.06); border-color: rgba(255,71,87,0.25); }
.vs-good { background: rgba(16,232,150,0.06); border-color: rgba(16,232,150,0.25); }
.vs-card h3 { font-size: 1.25rem; margin-bottom: 22px; }
.vs-bad h3 { color: var(--red); }
.vs-good h3 { color: var(--green); }
.vs-card ul { display: flex; flex-direction: column; gap: 12px; }
.vs-card li { font-size: 15px; color: var(--text-muted); padding-left: 18px; position: relative; }
.vs-card li::before { content: '—'; position: absolute; left: 0; color: var(--text-dim); }
.vs-good li::before { content: '✓'; color: var(--green); }

/* ── SCIENCE ────────────────────────────────────────────────── */
.science-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.science-content .eyebrow { text-align: left; }
.science-content h2 { font-size: clamp(1.7rem,3vw,2.3rem); margin-bottom: 22px; }
.science-content p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.75; }
.science-img img { border-radius: var(--radius-lg); border: 1px solid var(--border-hi); box-shadow: var(--shadow-card); }

/* ── STEPS ──────────────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.step-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: var(--transition);
}
.step-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.step-num {
  width: 52px; height: 52px; background: var(--primary);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--heading-font); font-size: 1.4rem; font-weight: 800; color: #fff;
  margin: 0 auto 20px;
}
.step-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.step-card p { color: var(--text-muted); font-size: 14px; }

/* ── FEATURE CARDS ──────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 26px;
  transition: var(--transition);
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(108,99,255,0.15); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ── USE CASES ──────────────────────────────────────────────── */
.usecases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.usecase-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 24px; text-align: center;
  transition: var(--transition);
}
.usecase-card:hover { border-color: var(--cyan); }
.usecase-icon { font-size: 2.4rem; margin-bottom: 14px; }
.usecase-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.usecase-card p { color: var(--text-muted); font-size: 13.5px; }

/* ── COMPARISON TABLE ───────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 16px 20px; font-size: 14px; text-align: center; border-bottom: 1px solid var(--border); }
.compare-table th { background: var(--bg-2); font-family: var(--heading-font); font-size: 13px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.compare-table td:first-child { text-align: left; color: var(--text); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.col-ours { background: rgba(108,99,255,0.08); }
.compare-table th.col-ours { color: var(--primary); }
.text-check { color: var(--green); font-weight: 700; }
.cross { color: var(--red); }

/* ── LIFESTYLE BAND ─────────────────────────────────────────── */
.lifestyle-band { position: relative; overflow: hidden; height: 480px; }
.lifestyle-band img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,9,26,0.9) 0%, rgba(8,9,26,0.3) 100%);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 60px;
}
.lifestyle-overlay h2 { font-size: clamp(1.8rem,3vw,2.8rem); max-width: 600px; margin-bottom: 16px; }
.lifestyle-overlay p { color: var(--text-muted); max-width: 500px; margin-bottom: 28px; }

/* ── REVIEWS ────────────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.avatar { border-radius: 50%; border: 2px solid var(--border-hi); object-fit: cover; }
.review-header h4 { font-size: 1rem; margin-bottom: 3px; }
.verified { font-size: 12px; color: var(--green); font-weight: 600; }
.stars { color: #FFBC00; font-size: 16px; margin-bottom: 12px; }
.review-card p { color: var(--text-muted); font-size: 14px; line-height: 1.65; }

/* ── GUARANTEE ──────────────────────────────────────────────── */
.guarantee-box {
  display: flex; align-items: center; gap: 40px;
  background: var(--bg-card); border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg); padding: 48px; 
}
.guarantee-badge { border-radius: 50%; flex-shrink: 0; }
.guarantee-content h3 { font-size: 1.6rem; margin-bottom: 14px; }
.guarantee-content p { color: var(--text-muted); margin-bottom: 20px; }
.security-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.security-badges span { font-size: 13px; font-weight: 600; color: var(--text-muted); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  padding: 20px 24px; font-weight: 600; font-size: 15px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; user-select: none;
}
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--primary); transition: var(--transition); }
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 24px 22px; color: var(--text-muted); font-size: 14.5px; line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner { text-align: center; }
.footer-links { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.footer-links a { font-size: 14px; color: var(--text-muted); }
.footer-links a:hover { color: var(--primary); }
.footer-inner p { font-size: 12.5px; color: var(--text-dim); margin-bottom: 6px; max-width: 700px; margin-inline: auto; }

/* ── MOBILE STICKY BAR ──────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: rgba(13,17,48,0.97);
  border-top: 1px solid var(--border-hi);
  backdrop-filter: blur(14px);
  padding: 12px 20px; transform: translateY(100%); transition: transform .35s ease;
  display: none;
}
.sticky-bar.visible { transform: translateY(0); display: block; }
.sticky-bar-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-price { display: flex; align-items: center; gap: 10px; }
.sticky-new { font-size: 1.4rem; font-weight: 800; color: #fff; font-family: var(--heading-font); }
.sticky-old { font-size: 0.9rem; color: var(--text-dim); text-decoration: line-through; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid, .science-flex { grid-template-columns: 1fr; gap: 40px; }
  .features-grid, .usecases-grid, .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .section { padding: 52px 0; }
  .nav-links { display: none; }
  .hero-copy h1 { font-size: 1.9rem; }
  .features-grid, .usecases-grid, .reviews-grid, .vs-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .guarantee-box { flex-direction: column; text-align: center; padding: 32px 20px; }
  .guarantee-badge { width: 100px; height: 100px; }
  .security-badges { justify-content: center; }
  .lifestyle-band { height: 360px; }
  .lifestyle-overlay { padding: 30px 20px; }
  .sticky-bar { display: block; }
  .compare-table th, .compare-table td { padding: 12px 14px; font-size: 13px; }
}

@media (max-width: 480px) {
  .price-row { flex-wrap: wrap; }
  .gallery-thumbs { gap: 6px; }
  .hero-grid { gap: 28px; }
}

/* -- INBOX (What's in the box) ------------------------------- */
.inbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.inbox-img img { border-radius: var(--radius-lg); border: 1px solid var(--border-hi); box-shadow: var(--shadow-card); }
.inbox-items { display: flex; flex-direction: column; gap: 20px; }
.inbox-item { display: flex; gap: 16px; align-items: flex-start; }
.inbox-icon { font-size: 24px; padding: 12px; background: var(--bg-card); border-radius: var(--radius-md); border: 1px solid var(--border); }
.inbox-item strong { display: block; font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.inbox-item p { font-size: 14px; color: var(--text-muted); }

/* -- SUITABILITY (Perfect for / Not for) -------------------- */
.suitability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.suit-box { padding: 32px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.suit-yes { background: rgba(16, 232, 150, 0.05); border-color: rgba(16, 232, 150, 0.2); }
.suit-no { background: rgba(255, 71, 87, 0.05); border-color: rgba(255, 71, 87, 0.2); }
.suit-box h4 { font-size: 1.25rem; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.suit-box ul { display: flex; flex-direction: column; gap: 10px; }
.suit-box li { font-size: 15px; color: var(--text-muted); }
.suit-yes h4 { color: var(--green); }
.suit-no h4 { color: var(--red); }

/* -- TIMELINE ----------------------------------------------- */
.timeline-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.timeline-card { background: var(--bg-card); padding: 32px 24px; border-radius: var(--radius-lg); border: 1px solid var(--border); position: relative; }
.timeline-period { display: inline-block; padding: 4px 12px; background: var(--primary); color: #fff; font-size: 12px; font-weight: 800; border-radius: var(--radius-pill); text-transform: uppercase; margin-bottom: 16px; box-shadow: 0 4px 12px var(--primary-glow); }
.timeline-card h4 { font-size: 1.1rem; margin-bottom: 8px; color: #fff; }
.timeline-card p { font-size: 14px; color: var(--text-muted); }

/* -- SAFETY ------------------------------------------------- */
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.safety-img img { border-radius: var(--radius-lg); border: 1px solid var(--border-hi); box-shadow: var(--shadow-card); }
.safety-points { display: flex; flex-direction: column; gap: 24px; }
.safety-point { display: flex; gap: 16px; align-items: flex-start; }
.safety-check { width: 32px; height: 32px; min-width: 32px; background: rgba(16, 232, 150, 0.1); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; }
.safety-point h4 { font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.safety-point p { font-size: 14px; color: var(--text-muted); }
.certifications-bar { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.cert-badge { padding: 6px 16px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-pill); font-size: 12px; font-weight: 600; color: var(--text-muted); }

/* -- SHIPPING ----------------------------------------------- */
.shipping-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.shipping-card { background: var(--bg-card); border: 1px solid var(--border); padding: 32px 24px; border-radius: var(--radius-lg); text-align: center; }
.shipping-icon { font-size: 32px; margin-bottom: 16px; }
.shipping-card h4 { font-size: 1.1rem; color: #fff; margin-bottom: 10px; }
.shipping-card p { font-size: 14px; color: var(--text-muted); }

/* -- MEDIA QUERIES FOR NEW SECTIONS -------------------------- */
@media (max-width: 1024px) {
  .inbox-grid, .safety-grid { grid-template-columns: 1fr; }
  .timeline-grid, .shipping-grid { grid-template-columns: repeat(2, 1fr); }
  .suitability-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .timeline-grid, .shipping-grid { grid-template-columns: 1fr; }
}
