/* ============================================================
   HOME PAGE
   ============================================================ */

.text-primary { color: var(--color-primary); }

/* ---------- LIVE STORE STATUS BADGE ---------- */
.live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 7px 14px 7px 12px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-text);
  margin: var(--space-2) 0 0;
  box-shadow: var(--shadow-sm);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  flex-shrink: 0;
  animation: live-pulse 1.8s ease-in-out infinite;
}
.live-status.is-closed .live-dot { background: var(--color-text-secondary); animation: none; }
@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70% { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ---------- STICKY FLOATING CALL BUTTON ---------- */
.floating-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: #fff;
  padding: 14px 20px 14px 16px;
  border-radius: 100px;
  box-shadow: 0 12px 30px -8px rgba(15,118,110,0.5);
  font-weight: 700;
  font-size: var(--fs-sm);
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.floating-cta.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.floating-cta:hover { background: var(--color-primary-dark); }
.floating-cta svg { width: 18px; height: 18px; flex-shrink: 0; animation: cta-ring 2.4s ease-in-out infinite; }
@keyframes cta-ring {
  0%, 85%, 100% { transform: rotate(0deg); }
  88% { transform: rotate(-15deg); }
  91% { transform: rotate(12deg); }
  94% { transform: rotate(-8deg); }
  97% { transform: rotate(0deg); }
}
@media (max-width: 640px) {
  .floating-cta { bottom: 16px; right: 16px; padding: 13px 18px 13px 15px; }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger.in-view > * { animation: reveal-stagger-item 0.6s cubic-bezier(0.22, 1, 0.36, 1) both; }
.reveal-stagger.in-view > *:nth-child(1) { animation-delay: 0.05s; }
.reveal-stagger.in-view > *:nth-child(2) { animation-delay: 0.1s; }
.reveal-stagger.in-view > *:nth-child(3) { animation-delay: 0.15s; }
.reveal-stagger.in-view > *:nth-child(4) { animation-delay: 0.2s; }
.reveal-stagger.in-view > *:nth-child(5) { animation-delay: 0.25s; }
.reveal-stagger.in-view > *:nth-child(6) { animation-delay: 0.3s; }
.reveal-stagger.in-view > *:nth-child(7) { animation-delay: 0.35s; }
.reveal-stagger.in-view > *:nth-child(8) { animation-delay: 0.4s; }
@keyframes reveal-stagger-item {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; animation: none !important; }
  .live-dot, .floating-cta svg { animation: none !important; }
}

/* ---------- HERO AMBIENT BACKGROUND ---------- */
.hero { position: relative; overflow: hidden; }
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.35;
  animation: hero-blob-float 12s ease-in-out infinite;
}
.hero::before {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(34,197,94,0.35), transparent 70%);
  top: -120px; left: -100px;
}
.hero::after {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(249,115,22,0.28), transparent 70%);
  bottom: -100px; right: -80px;
  animation-delay: -6s;
}
.hero .container { position: relative; z-index: 1; }
@keyframes hero-blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}

/* ---------- HERO ---------- */
.hero {
  padding: var(--space-6) 0 var(--space-7);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--space-6);
  align-items: center;
}
.hero-copy h1 {
  font-size: var(--fs-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: var(--space-2) 0 var(--space-3);
}
.hero-tagline {
  font-size: var(--fs-sm);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-2);
}
.hero-lead {
  font-size: var(--fs-md);
  color: var(--color-text-secondary);
  max-width: 480px;
  margin-bottom: var(--space-4);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: var(--space-4); }
.hero-trust { display: flex; align-items: center; gap: 14px; }
.hero-trust p { font-size: var(--fs-sm); color: var(--color-text-secondary); }
.hero-trust-avatars { display: flex; }
.hero-trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}
.hero-trust-avatars span:first-child { margin-left: 0; }
.hero-trust-avatars span:nth-child(2) { background: linear-gradient(135deg, var(--color-accent), var(--color-highlight)); }
.hero-trust-avatars span:nth-child(3) { background: linear-gradient(135deg, #0EA5E9, var(--color-primary)); }
.hero-trust-avatars span:nth-child(4) { background: linear-gradient(135deg, var(--color-highlight), var(--color-accent)); }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone-mock {
  width: 280px;
  height: 560px;
  background: var(--color-text);
  border-radius: 40px;
  padding: 14px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: var(--color-text);
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.phone-screen {
  background: var(--color-bg-alt);
  width: 100%; height: 100%;
  border-radius: 28px;
  padding: 36px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.app-topbar { display: flex; justify-content: space-between; align-items: center; }
.app-loc {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: var(--color-text);
}
.app-bell { width: 26px; height: 26px; border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); }
.app-search {
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--color-text-secondary);
  box-shadow: var(--shadow-sm);
}
.app-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.app-cat {
  background: #fff;
  border-radius: 12px;
  padding: 10px 6px;
  font-size: 9.5px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.app-cat .dot { display: block; width: 22px; height: 22px; border-radius: 50%; margin: 0 auto 6px; }
.app-banner {
  margin-top: auto;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: 16px;
  padding: 16px;
  color: #fff;
}
.app-banner p { font-size: 11px; opacity: 0.85; }
.app-banner strong { font-size: 20px; font-weight: 800; }

/* Signature element: floating live tracker */
.tracker-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  width: 250px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.22);
  padding: 18px;
  border: 1px solid var(--color-border);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.tracker-head {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
}
.tracker-eta strong { color: var(--color-accent); }
.tracker-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.tracker-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-secondary);
  padding: 5px 0;
  position: relative;
}
.tracker-step::before {
  content: '';
  position: absolute;
  left: 4px;
  top: -6px;
  width: 2px;
  height: 14px;
  background: var(--color-border);
}
.tracker-step:first-child::before { display: none; }
.tracker-node {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  flex-shrink: 0;
  transition: background 0.3s ease;
}
.tracker-step.done { color: var(--color-text); }
.tracker-step.done .tracker-node { background: var(--color-secondary); }
.tracker-step.done::before { background: var(--color-secondary); }
.tracker-step.active .tracker-node {
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: var(--space-5); }
  .hero-copy h1 { font-size: var(--fs-3xl); }
  .tracker-card { left: 50%; transform: translateX(-50%); bottom: -20px; }
  @keyframes float { 0%,100%{ transform: translateX(-50%) translateY(0);} 50%{ transform: translateX(-50%) translateY(-8px);} }
}

/* ---------- FRESHNESS PROCESS ---------- */
.freshness-section { background: var(--color-bg-alt); }
.freshness-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-6);
  align-items: center;
}
.freshness-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.freshness-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.freshness-content .section-head,
.freshness-content .eyebrow,
.freshness-content .section-title,
.freshness-content .section-sub { text-align: left; margin-left: 0; }
.freshness-content .section-title { margin-top: var(--space-2); }
.freshness-content .section-sub { margin-bottom: var(--space-4); }
.freshness-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}
.freshness-step {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.freshness-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.freshness-num {
  font-size: var(--fs-xs);
  font-weight: 800;
  color: var(--color-border);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-2);
}
.freshness-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--color-bg-alt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.freshness-step h3 { font-size: var(--fs-sm); font-weight: 700; margin-bottom: 4px; }
.freshness-step p { font-size: var(--fs-xs); color: var(--color-text-secondary); line-height: 1.55; }

@media (max-width: 900px) {
  .freshness-layout { grid-template-columns: 1fr; }
  .freshness-photo { aspect-ratio: 16/9; }
  .freshness-content .section-head, .freshness-content .eyebrow, .freshness-content .section-title, .freshness-content .section-sub { text-align: center; }
}
@media (max-width: 560px) { .freshness-grid { grid-template-columns: 1fr; } }

/* ---------- BULK & CORPORATE ORDERS ---------- */
.bulk-orders-card {
  background: var(--color-text);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.bulk-orders-icon {
  width: 72px; height: 72px;
  border-radius: 18px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bulk-orders-text { flex: 1; }
.bulk-orders-text h2 { color: #fff; font-size: var(--fs-lg); font-weight: 800; margin-bottom: 6px; letter-spacing: -0.01em; }
.bulk-orders-text p { color: rgba(255,255,255,0.7); font-size: var(--fs-sm); line-height: 1.6; }
.bulk-orders-card .btn { flex-shrink: 0; white-space: nowrap; }

@media (max-width: 700px) {
  .bulk-orders-card { flex-direction: column; text-align: center; padding: var(--space-4); }
  .bulk-orders-icon { margin: 0 auto; }
}

/* ---------- SHOP BY CATEGORY ---------- */
.category-section { padding-top: var(--space-6); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.category-tile {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  cursor: default;
}
.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cat-color, var(--color-primary));
}
.category-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--cat-bg, var(--color-bg-alt));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-2);
  transition: transform 0.2s ease;
}
.category-tile:hover .category-icon { transform: scale(1.08); }
.category-tile h3 { font-size: var(--fs-sm); font-weight: 700; color: var(--color-text); }

@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- DISCOUNT BANNER ---------- */
.discount-banner-section { padding: var(--space-5) 0 0; }
.discount-banner {
  background-color: var(--color-primary);
  background-image: linear-gradient(120deg, rgba(15,118,110,0.92) 0%, rgba(34,197,94,0.88) 100%), var(--banner-photo, none);
  background-size: cover;
  background-position: center 30%;
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  overflow: hidden;
  position: relative;
}
.discount-banner-overlay { display: none; }
.discount-banner-text { color: #fff; max-width: 560px; }
.discount-banner-text h2 { font-size: var(--fs-xl); font-weight: 800; margin: 6px 0 10px; letter-spacing: -0.01em; }
.discount-banner-text p { font-size: var(--fs-sm); opacity: 0.92; margin-bottom: var(--space-3); line-height: 1.6; }
.discount-banner-icon {
  flex-shrink: 0;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 700px) {
  .discount-banner { flex-direction: column; text-align: center; padding: var(--space-4); }
  .discount-banner-text { max-width: none; }
  .discount-banner-icon { width: 90px; height: 90px; }
  .discount-banner-icon svg { width: 60px; height: 60px; }
}

/* ---------- STORE GALLERY ---------- */
.gallery-section { padding-top: var(--space-6); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: var(--space-2);
}
.gallery-item-large { grid-row: span 2; grid-column: span 1; }
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(150deg, rgba(15,118,110,0.1), rgba(34,197,94,0.12));
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item.gallery-fallback img { display: none; }
.gallery-item.gallery-fallback::after {
  content: 'THE MART';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  opacity: 0.35;
}
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 150px); }
  .gallery-item-large { grid-row: span 1; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(2, 130px); }
}

/* ---------- TRUST GRID ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.trust-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.trust-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.trust-card h3 { font-size: var(--fs-md); font-weight: 700; margin-bottom: 6px; }
.trust-card p { font-size: var(--fs-sm); color: var(--color-text-secondary); }

@media (max-width: 900px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- HOW IT WORKS (home summary) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.step-item {
  padding: var(--space-3);
  border-left: 2px solid var(--color-border);
}
.step-num {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.step-item h3 { font-size: var(--fs-md); font-weight: 700; margin-bottom: 6px; }
.step-item p { font-size: var(--fs-sm); color: var(--color-text-secondary); }
.steps-cta { text-align: center; margin-top: var(--space-5); }

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ---------- FEATURES ---------- */
.features-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-6);
  align-items: start;
}
.features-list { display: flex; flex-direction: column; gap: var(--space-3); }
.feature-row { display: flex; gap: var(--space-2); align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-row h4 { font-size: var(--fs-md); font-weight: 700; margin-bottom: 4px; }
.feature-row p { font-size: var(--fs-sm); color: var(--color-text-secondary); }

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

/* ---------- COVERAGE ---------- */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.coverage-list { margin: var(--space-3) 0; display: flex; flex-direction: column; gap: 10px; }
.coverage-list li {
  font-size: var(--fs-sm);
  color: var(--color-text);
  padding-left: 26px;
  position: relative;
}
.coverage-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid var(--color-secondary);
}
.coverage-card {
  background: var(--color-primary);
  background-image: linear-gradient(145deg, var(--color-primary), var(--color-primary-dark));
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}
.coverage-stat strong { display: block; font-size: var(--fs-2xl); font-weight: 800; color: #fff; }
.coverage-stat span { font-size: var(--fs-xs); color: rgba(255,255,255,0.75); font-weight: 600; }

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

/* ---------- STATS BAND ---------- */
.stats-band { background: var(--color-text); padding: var(--space-6) 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-block strong { display: block; font-size: var(--fs-3xl); font-weight: 800; color: #fff; }
.stat-block span { font-size: var(--fs-sm); color: rgba(255,255,255,0.6); }

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
}

/* ---------- REVIEWS MARQUEE (auto-scroll) ---------- */
.reviews-marquee {
  overflow: hidden;
  margin-top: var(--space-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.reviews-track {
  display: flex;
  gap: var(--space-3);
  width: max-content;
  animation: reviews-scroll 45s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.reviews-track .review-card {
  flex: 0 0 340px;
}
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track { animation: none; }
}
@media (max-width: 700px) {
  .reviews-track .review-card { flex-basis: 280px; }
}

/* ---------- REVIEWS ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
}
.stars { color: var(--color-highlight); letter-spacing: 2px; margin-bottom: 10px; }
.review-card p { font-size: var(--fs-sm); color: var(--color-text); margin-bottom: var(--space-2); line-height: 1.6; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.1);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
}
.reviewer strong { display: block; font-size: 13px; }
.reviewer span { font-size: 12px; color: var(--color-text-secondary); }
.reviews-cta { text-align: center; margin-top: var(--space-5); }

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

/* ---------- SECURITY ---------- */
.security-grid {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.security-visual { display: flex; justify-content: center; }
.security-badge {
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(15, 118, 110, 0.08);
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 900px) {
  .security-grid { grid-template-columns: 1fr; text-align: center; }
  .security-copy .coverage-list li { text-align: left; }
}

/* ---------- FAQ ---------- */
/* FAQ styles moved to css/pages.css (shared across all pages) */

/* ---------- VISIT & DOWNLOAD (two-panel) ---------- */
.visit-download-band {
  background: var(--color-bg-alt);
  padding: var(--space-7) 0;
}
.visit-download-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: var(--space-4);
}
.vd-panel {
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vd-visit { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); }
.vd-app { background: linear-gradient(135deg, var(--color-accent) 0%, #C2560F 100%); }
.vd-eyebrow {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 6px;
}
.vd-panel h2 { font-size: var(--fs-xl); font-weight: 800; margin-bottom: 10px; }
.vd-panel p { font-size: var(--fs-sm); opacity: 0.9; margin-bottom: var(--space-3); line-height: 1.6; }
.vd-panel .store-badges { flex-wrap: wrap; }
.vd-panel .store-badge { background: rgba(255,255,255,0.16); }
.vd-panel .store-badge:hover { background: rgba(255,255,255,0.26); }
.vd-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vd-divider span {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 800;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .visit-download-grid { grid-template-columns: 1fr; }
  .vd-divider { padding: 4px 0; }
}

/* ---------- DOWNLOAD BAND (legacy, unused but kept for reference) ---------- */
.download-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
}
.download-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.download-band h2 { font-size: var(--fs-2xl); font-weight: 800; margin-bottom: 10px; }
.download-band p { font-size: var(--fs-md); opacity: 0.85; margin-bottom: var(--space-3); }
.download-qr { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.qr-box { background: #fff; padding: 10px; border-radius: 14px; }
.download-qr p { font-size: var(--fs-xs); opacity: 0.85; }

@media (max-width: 700px) {
  .download-grid { flex-direction: column; text-align: center; }
}
