@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

:root {
  --navy:        #2c2c2c;
  --navy-card:   #383838;
  --navy-border: #4a4a4a;
  --blue:        #5bdd6b;
  --cyan:        #34bcd5;
  --cyan-dark:   #157a8f;
  --cyan-dim:    #34bcd522;
  --cyan-glow:   #34bcd555;
  --green:       #5bdd6b;
  --white:       #F5F7FA;
  --muted:       #a8a8a8;
  --muted-on-light: #5a5a5a; /* body copy on white/light sections — var(--muted) is tuned for dark bg */
  --danger:      #FF4D6D;

  --font-display: 'Baloo 2', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET / BASE ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Brand rule: the display typeface (standing in for "ibrand") is
   never set in capitals — headings render lowercase site-wide. */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  text-transform: lowercase;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── UTILITY ─────────────────────────────────────────────── */
.text-cyan   { color: var(--cyan) !important; }
.text-muted-custom { color: var(--muted) !important; }
.bg-navy-card { background: var(--navy-card) !important; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 60px 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-cyan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.btn-cyan:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--cyan-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--navy-border);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* ── NAVBAR ─────────────────────────────────────────────── */
/* Solid white so the logo's white background blends seamlessly,
   with no visible tile/edge around it. */
#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  transition: padding var(--transition), box-shadow var(--transition);
}

#mainNav.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand .brand-dot {
  width: 8px; height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--cyan);
}

.nav-link-custom {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: #4a4a4a !important;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: color var(--transition) !important;
  position: relative;
}
.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--cyan-dark) !important;
}

.navbar-toggler {
  border: 1.5px solid #d8d8d8;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844,44,44,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Nav-specific outline button (Login) — dark variant for the white bar,
   since the default .btn-outline is styled for dark backgrounds. */
.btn-outline-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid #d8d8d8;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline-nav:hover {
  border-color: var(--cyan);
  color: var(--cyan-dark);
  transform: translateY(-2px);
}

/* Mobile menu panel — explicit background (not just inherited) so it
   never renders see-through against the hero/content behind it when
   toggled open on small screens. */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #ffffff;
    margin-top: 14px;
    padding: 16px 18px 20px;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    border: 1px solid #e2e2e2;
  }
  .navbar-nav { margin-bottom: 4px; }
}


/* ── HERO (carousel, full-bleed background slides) ─────────── */
#hero {
  position: relative;
  overflow: hidden;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  min-height: 100vh;
}

.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--navy); /* shows while the image loads */
  padding: 120px 0 80px;
}

/* Dark scrim so text stays legible over any photo, strongest on the
   left where the copy sits and fading out toward the right */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(44,44,44,0.92) 0%,
    rgba(44,44,44,0.72) 45%,
    rgba(44,44,44,0.35) 75%,
    rgba(44,44,44,0.1) 100%
  );
}

/* No photo yet (DB empty / admin hasn't set an image) —
   give it its own atmosphere instead of a flat navy slab,
   reusing the grid + glow motif from the old hero treatment */
.hero-slide-fallback {
  background: var(--navy);
}
.hero-slide-fallback::before,
.hero-slide-fallback::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.hero-slide-fallback::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(52,188,213,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52,188,213,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-slide-fallback::after {
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(91,221,107,0.35) 0%, transparent 70%);
}
.hero-slide-fallback .hero-slide-overlay {
  background: none; /* nothing to darken */
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.hero-title .accent {
  color: var(--cyan);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-grid-bg,
.hero-glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-grid-bg {
  inset: 0;
}

/* ── APP SHOWCASE (image collage + copy, section directly below hero) ── */
#app-showcase .section-title { color: var(--navy); }

.showcase-collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  align-items: start;
}

.showcase-main-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}
.showcase-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-side-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px; /* offsets it against the taller main image */
}

.showcase-sub-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.showcase-sub-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-highlight-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 20px 50px rgba(44,44,44,0.2);
}
.showcase-highlight-card i {
  font-size: 1.6rem;
  color: var(--cyan);
}
.showcase-highlight-card p {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

.showcase-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.showcase-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.showcase-point i {
  color: var(--cyan);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.showcase-point span {
  font-size: 0.92rem;
  color: var(--muted-on-light);
  line-height: 1.6;
}

@media (max-width: 767.98px) {
  .showcase-collage {
    grid-template-columns: 1fr;
  }
  .showcase-side-stack {
    margin-top: 0;
    flex-direction: row;
  }
  .showcase-sub-img,
  .showcase-highlight-card {
    flex: 1;
  }
}

/* ── TRUST STRIP ──────────────────────────────────────────── */
#trust-strip {
  padding: 32px 0;
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  background: rgba(17,24,39,0.6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-item i {
  color: var(--cyan);
  font-size: 1.1rem;
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--navy-border);
}

/* ── FEATURES ─────────────────────────────────────────────── */
#features { background: #fff; }

.feature-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: rgba(52,188,213,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(52,188,213,0.08);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.3rem;
  color: var(--cyan);
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  margin-top: 18px;
  transition: gap var(--transition);
}
.feature-link:hover { gap: 10px; color: var(--cyan); }

/* Image-based feature cards ("What We Offer" — admin-managed) */
.feature-card.feature-card-media { padding: 0; }
.feature-card-img {
  height: 190px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.feature-card-media:hover .feature-card-img img { transform: scale(1.06); }
.feature-card-img-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-card), #1a2340);
  color: var(--navy-border);
  font-size: 2rem;
}
.feature-card-body { padding: 28px 28px 30px; }
.feature-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-card-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}



/* ── HOW IT WORKS ────────────────────────────────────────── */
#how-it-works { background: linear-gradient(180deg, var(--navy) 0%, #1c1c1c 100%); }

.steps-connector {
  position: relative;
}
.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 23px;
  top: 72px;
  bottom: -28px;
  width: 1px;
  background: linear-gradient(180deg, var(--cyan-glow), transparent);
}
.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cyan-dim);
  border: 1.5px solid var(--cyan-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--cyan);
}
.step-content h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

.device-mockup {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 540 / 1170; /* matches the actual screenshot, avoids cropping */
  max-width: 260px;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(52,188,213,0.08);
}
.device-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* safe now — frame ratio == image ratio, so nothing gets cut */
  display: block;
}

/* ── SOCIAL PROOF ────────────────────────────────────────── */
#social-proof { background: var(--navy-card); }

.stat-card {
  text-align: center;
  padding: 40px 24px;
}
.stat-card .big-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card .big-num .accent { color: var(--cyan); }
.stat-card .stat-desc {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
#testimonials { background: var(--white); }
#testimonials .section-title { color: var(--navy); }

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(52,188,213,0.2);
  transform: translateY(-3px);
}
.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: var(--cyan);
  font-family: Georgia, serif;
  margin-bottom: 12px;
  opacity: 0.5;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--navy);
  flex-shrink: 0;
}
.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}
.author-role {
  font-size: 0.78rem;
  color: var(--muted);
}
.star-row {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #FACC15;
  font-size: 0.85rem;
}

/* ── ROI / COST SAVINGS CALCULATOR ──────────────────────────── */
.roi-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
}
.roi-input-group { margin-bottom: 26px; }
.roi-input-group:last-of-type { margin-bottom: 0; }
.roi-input-label {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
}
.roi-input-value {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--cyan);
  white-space: nowrap;
}
.roi-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 4px;
  background: var(--navy-border);
  outline: none;
  cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(52,188,213,0.18);
  cursor: pointer;
  transition: box-shadow var(--transition);
}
.roi-slider::-webkit-slider-thumb:hover { box-shadow: 0 0 0 6px rgba(52,188,213,0.25); }
.roi-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  border: none;
  box-shadow: 0 0 0 4px rgba(52,188,213,0.18);
  cursor: pointer;
}
.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--navy-border);
}
.roi-result { text-align: center; }
.roi-result-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  transition: color .2s ease;
}
.roi-result-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .roi-results { grid-template-columns: 1fr; gap: 18px; }
  .roi-card { padding: 28px 22px; }
}

/* ── BLOG ─────────────────────────────────────────────────── */
#blog { background: linear-gradient(180deg, var(--white) 0%, #cecfd2 100%); }
#blog .section-title { color: var(--navy); }

.blog-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: rgba(52,188,213,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-card), #1c1c1c);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.blog-card-img .img-icon {
  font-size: 3rem;
  opacity: 0.15;
}
.blog-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--cyan-dim);
  border: 1px solid var(--cyan-glow);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.blog-card-body { padding: 24px; }
.blog-card-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.blog-meta {
  font-size: 0.76rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 14px;
}
.blog-read-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.blog-read-link:hover { gap: 9px; color: var(--cyan); }

/* ── DOWNLOAD CTA ────────────────────────────────────────── */
#download {
  background: linear-gradient(135deg, #232323 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
#download::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(91,221,107,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-card);
  border: 1.5px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 12px 22px;
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all var(--transition);
  min-width: 160px;
}
.store-btn i {
  font-size: 1.5rem;
  color: var(--cyan);
}
.store-btn:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52,188,213,0.12);
  color: var(--white);
}
.store-label { display: flex; flex-direction: column; }
.store-label small { font-size: 0.68rem; color: var(--muted); }
.store-label strong { font-size: 0.9rem; font-weight: 700; }

/* ── FOOTER ──────────────────────────────────────────────── */
/* White background so the logo's white background blends
   seamlessly, matching the navbar treatment. */
#footer {
  background: #ffffff;
  border-top: 1px solid #e2e2e2;
  padding: 64px 0 32px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: #5a5a5a;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}
.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.88rem;
  color: #5a5a5a;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cyan-dark); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #5a5a5a;
}
.footer-contact-item a { color: #5a5a5a; }
.footer-contact-item a:hover { color: var(--cyan-dark); }
.footer-contact-item i { color: var(--cyan-dark); margin-top: 2px; flex-shrink: 0; }

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  border: 1px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d8d8d8;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.social-icon:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: #222222;
}

.footer-bottom {
  border-top: 1px solid #e2e2e2;
  padding-top: 24px;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: #7a7a7a;
}
.footer-bottom a {
  color: #7a7a7a;
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--cyan-dark); }

/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes scan-move {
  0%, 100% { top: 15%; }
  50%       { top: 82%; }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
@keyframes progress-bar {
  0%   { width: 0%; }
  60%  { width: 90%; }
  100% { width: 0%; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  animation: fade-up 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .trust-divider { display: none; }
}

@media (max-width: 767.98px) {
  .hero-slide { padding: 100px 0 60px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-desc { max-width: 100%; }
  .section-pad { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}