/* Bootstrap Icons — replaces all emoji icons site-wide */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* ── Icon Utilities ───────────────────────────────────── */
/* Spacing helpers (replaces Bootstrap's me-1/me-2) */
.me-1 {
  margin-right: 4px !important;
}

.me-2 {
  margin-right: 8px !important;
}

/* Ensure icons align correctly inside buttons/badges */
[class^="bi-"],
[class*=" bi-"] {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1;
}

/* Icon sizing presets */
.icon-sm {
  font-size: 14px;
}

.icon-md {
  font-size: 20px;
}

.icon-lg {
  font-size: 32px;
}

.icon-xl {
  font-size: 48px;
}

/* Icon color variants */
.icon-blue {
  color: #1D4ED8;
}

.icon-green {
  color: #10b981;
}

.icon-yellow {
  color: #f59e0b;
}

.icon-red {
  color: #ef4444;
}

.icon-muted {
  color: #6B7280;
}

.icon-white {
  color: #ffffff;
}

/* Feature card icon container */
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.feature-icon-wrap.blue {
  background: rgba(29, 78, 216, .1);
  color: #1D4ED8;
}

.feature-icon-wrap.green {
  background: rgba(16, 185, 129, .1);
  color: #10b981;
}

.feature-icon-wrap.yellow {
  background: rgba(245, 158, 11, .1);
  color: #f59e0b;
}

.feature-icon-wrap.purple {
  background: rgba(139, 92, 246, .1);
  color: #8b5cf6;
}


:root {
  /* 🔵 BROKENGADGETS COLOR SYSTEM */
  --primary: #1D4ED8;
  --primary-hover: #1E40AF;
  --cta: #1D4ED8;
  --cta-hover: #1E40AF;

  --g-red: #ea4335;
  --g-green: #34a853;
  --g-yellow: #fbbc04;
  --g-blue: #4285f4;

  --text-primary: #111827;
  --text-sec: #4B5563;
  --text-muted: #6B7280;

  --border: #E5E7EB;
  --stroke: #D1D5DB;
  --bg: #F9FAFB;
  --surface: #FFFFFF;
  --white: #FFFFFF;

  --interactive: var(--primary);
  --link: var(--primary);
  --btn-dark: #111827;

  /* Typography */
  --font-brand: 'Nunito', 'DM Sans', Arial, sans-serif;
  --font-body: 'Roboto', Helvetica, Arial, sans-serif;
  --font-mono: 'Roboto Mono', monospace;

  /* Font Sizes (from audit) */
  --text-hero: clamp(36px, 4vw, 52px);
  --text-h2: clamp(24px, 3vw, 36px);
  --text-h3: 20px;
  --text-body: 16px;
  --text-sm: 14px;
  --text-xs: 12px;
  --text-label: 11px;

  /* Spacing — 8px base */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s6: 48px;
  --s8: 64px;
  --s10: 80px;
  --s12: 96px;

  /* Border Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 100px;

  /* Layout */
  --max-w: 1280px;
  --nav-h: 64px;
  --banner-h: 48px;

  /* Shadows */
  --shadow-nav: 0 1px 6px rgba(0, 0, 0, .12);
  --shadow-card: 0 2px 10px rgba(0, 0, 0, .08);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, .14);

  /* Transitions */
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --dur-fast: 150ms;
  --dur-std: 250ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 80px;
  /* Space for floating action bar */
}

.promo-banner {
  min-height: var(--banner-h);
  height: auto;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 10px 48px 10px 16px;
  z-index: 1002;
  box-sizing: border-box;
}

.promo-banner p {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #fff;
  text-align: center;
}

.promo-banner a {
  color: #8ab4f8;
  text-decoration: underline;
  font-weight: 500;
  cursor: pointer;
}

.promo-dismiss {
  position: absolute;
  right: var(--s4);
  background: none;
  border: none;
  color: rgba(255, 255, 255, .6);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  transition: color var(--dur-fast);
}

.promo-dismiss:hover {
  color: #fff;
}

/* ══ NAV (Section 2 — sticky, 64px) ══ */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  /* Increased to prevent overlap with transformed cards */
  height: var(--nav-h);
  background: rgba(248, 249, 250, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow var(--dur-std) var(--ease), background var(--dur-std) var(--ease);
  display: flex;
  align-items: center;
  padding: 0 var(--s4);
}

@supports not (backdrop-filter: blur(24px)) {
  nav {
    background: rgba(255, 255, 255, 0.98);
    /* Solid fallback for unsupported browsers */
  }
}

nav.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@supports not (backdrop-filter: blur(24px)) {
  nav.scrolled {
    background: #ffffff;
  }
}

.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.nav-logo-text span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: var(--s3);
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  color: var(--text-sec);
  text-decoration: none;
  font-weight: 400;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.nav-link-blue {
  font-size: var(--text-sm);
  color: var(--interactive);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--dur-fast);
}

.nav-link-blue:hover {
  color: var(--primary-hover);
}

/* Buttons — from audit: pill shape, paired CTAs */
.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 12px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  font-family: var(--font-brand);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-dark:hover {
  background: var(--primary-hover);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 36px rgba(29, 78, 216, 0.55);
}

.btn-dark:active {
  transform: translateY(0) scale(0.96);
  transition-duration: 0.08s;
}

.btn-cta {
  background: var(--cta);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 16px 36px;
  font-weight: 700;
  font-family: var(--font-brand);
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

.btn-cta:active {
  transform: translateY(0) scale(0.96);
  transition-duration: 0.08s;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: 15px 34px;
  background: var(--surface);
  /* clean white/gray background */
  color: var(--text-primary);
  /* dark text */
  border: 1px solid var(--border);
  /* subtle gray border */
  border-radius: var(--r-pill);
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-outline:hover {
  background: var(--bg);
  border-color: var(--stroke);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-outline:active {
  transform: translateY(0) scale(0.96);
  transition-duration: 0.08s;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ══ PREMIUM SVG ICONS ══ */
.btn-icon {
  width: 1.15em;
  height: 1.15em;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: text-bottom;
}

.badge-icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

.img-icon {
  width: 22px;
  /* Slightly reduced for better inline fit */
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 4px;
  /* Give it natural space, flex gap will handle the rest */
}

.btn-text-theme {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--interactive);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--dur-fast);
}

.btn-text-theme:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

.btn-text-theme svg {
  transition: transform var(--dur-fast);
}

.btn-text-theme:hover svg {
  transform: translateX(3px);
}

/* Badges */
.badge-new {
  display: inline-block;
  padding: 4px 12px;
  background: var(--interactive);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-brand);
  letter-spacing: .02em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  position: relative;
}

.badge-save {
  display: inline-block;
  padding: 4px 12px;
  background: var(--g-red);
  color: #fff;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-brand);
  letter-spacing: .02em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  position: relative;
}

.badge-eco {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: #EFF6FF;
  color: #1E40AF;
  border: 1px solid #BFDBFE;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .02em;
}

/* Container */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s4);
}

/* ══ HERO (Section 3+4 — centered text block, no image) ══ */
.hero {
  padding: var(--s12) var(--s4) var(--s8);
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--s8);
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-img {
  width: 100%;
  max-width: 460px;
  animation: float 5s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-14px)
  }
}

@media(max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-img {
    display: none;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s3);
}

.hero-eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--border);
  display: inline-block;
}

.hero h1 {
  font-family: var(--font-brand);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text-primary);
  max-width: 720px;
  margin: var(--s2) 0 var(--s2) 0;
}

.hero h1 .highlight-blue {
  color: var(--primary);
}

.hero-sub {
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--text-primary);
  max-width: 600px;
  margin: 0 0 var(--s6) 0;
  line-height: 1.6;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-cta-trust {
  font-size: 13px;
  color: var(--text-sec);
  margin-top: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-cta-trust svg {
  width: 14px;
  height: 14px;
  stroke: var(--g-green);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-search-wrapper {
  margin-bottom: var(--s6);
  width: 100%;
  max-width: 650px;
}

.hero-search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-search-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 10px 40px rgba(29, 78, 216, 0.15);
}

.search-icon {
  width: 22px;
  height: 22px;
  stroke: var(--text-sec);
  flex-shrink: 0;
}

.hero-search-input {
  flex-grow: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  outline: none;
  width: 100%;
}

.hero-search-input::placeholder {
  color: var(--text-muted);
}

.btn-search-submit {
  background: var(--cta);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.btn-search-submit:hover {
  background: #1e3a8a;
  transform: scale(1.02);
}

@media(max-width: 768px) {
  .hero-search-form {
    padding: 6px 6px 6px 16px;
  }

  .hero-search-input {
    font-size: 14px;
    padding: 10px 8px;
  }

  .btn-search-submit {
    padding: 12px 20px;
  }
}

.hero-stats {
  display: flex;
  gap: var(--s8);
  flex-wrap: wrap;
  margin-top: var(--s8);
  padding-top: var(--s6);
  border-top: 1px solid var(--border);
}

.hero-stat-n {
  font-family: var(--font-brand);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}

.hero-stat-n.blue {
  color: var(--primary);
}

.hero-stat-n.red {
  color: var(--text-primary);
}

.hero-stat-n.grn {
  color: var(--text-primary);
}

.hero-stat-l {
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ══ CATEGORY TABS (Section 5 — horizontal scroll) ══ */
.cat-tabs-wrap {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.cat-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s4);
}

.cat-tabs::-webkit-scrollbar {
  display: none;
}

.cat-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: var(--s2) var(--s4);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(.34, 1.56, .64, 1);
  flex-shrink: 0;
  scroll-snap-align: start;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

.cat-tab:hover {
  border-bottom-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px) scale(1.04);
}

.cat-tab-img {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--surface);
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  overflow: hidden;
}

.cat-tab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-tab-label {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-sec);
  letter-spacing: .01em;
}

.cat-tab.active {
  border-bottom-color: var(--primary);
}

.cat-tab.active .cat-tab-label {
  color: var(--text-primary);
  font-weight: 600;
}

/* ══ MARQUEE TICKER ══ */
.ticker-wrap {
  background: var(--surface);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.ticker {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-xs);
  color: var(--text-sec);
  padding: 0 var(--s4);
  letter-spacing: .02em;
}

.ticker-item strong {
  color: var(--text-primary);
  font-weight: 600;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  margin-right: 10px;
}

/* ══ SECTION COMMON ══ */
.section-head {
  text-align: center;
  margin-bottom: var(--s8);
}

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s1);
}

h2.section-title {
  font-family: var(--font-brand);
  font-size: var(--text-h2);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--text-primary);
}

h2.section-title .accent,
.highlight-blue {
  color: var(--primary);
}

/* ══ PRODUCT LISTING (Section 6 — 2 column) ══ */
.products-section {
  padding: var(--s10) var(--s4);
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  max-width: var(--max-w);
  margin: 0 auto;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s3) var(--s3);
  text-align: center;
  transition: transform 0.25s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  cursor: pointer;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--primary);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
}

.product-card:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card-badge {
  position: absolute;
  top: var(--s2);
  left: var(--s2);
}

.product-img-wrap {
  width: 100%;
  height: 220px;
  background: var(--bg);
  border-radius: var(--r-md);
  margin: 0 auto var(--s4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-img-wrap::before {
  content: '🎧';
  position: absolute;
  font-size: 56px;
  z-index: 1;
}

.product-img-wrap img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform var(--dur-std) var(--ease);
  mix-blend-mode: darken;
  /* Hides hard white backgrounds from images */
  position: relative;
  z-index: 2;
  background: var(--bg);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-name {
  font-family: var(--font-brand);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -.01em;
}

.product-tagline {
  font-size: var(--text-sm);
  color: var(--text-sec);
  margin-bottom: var(--s2);
  line-height: 1.5;
}

.product-price {
  font-family: var(--font-brand);
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--s3);
}

.product-price .old {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.product-price .save {
  color: var(--cta);
  font-weight: 600;
  font-size: var(--text-sm);
  margin-left: 4px;
}

.product-card-ctas {
  display: flex;
  gap: var(--s2);
  justify-content: center;
  flex-wrap: wrap;
}

/* Color swatches on product card */
.color-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: var(--s3);
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--dur-fast), transform var(--dur-fast);
}

.color-dot:hover,
.color-dot.active {
  border-color: var(--text-primary);
  transform: scale(1.15);
}

/* ══ FEATURE CALLOUTS (Section 7 — 4 column icon grid) ══ */
.features-section {
  padding: var(--s10) var(--s4);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.features-q {
  font-family: var(--font-brand);
  font-size: var(--text-h2);
  font-weight: 700;
  text-align: center;
  letter-spacing: -.02em;
  margin-bottom: var(--s8);
  color: var(--text-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s6);
}

.feature-item {
  text-align: center;
  padding: var(--s8) var(--s4);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-xl);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.feature-item:hover {
  background: var(--white);
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  margin: 0 auto var(--s4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  background: #0d1117;
  /* Dark background to blend black images smoothly */
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
}

.feature-icon img {
  width: 130%;
  height: 130%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 15px 35px rgba(29, 78, 216, 0.2);
}

.feature-item:hover .feature-icon img {
  transform: scale(1.1);
}

.feature-item h3 {
  font-family: var(--font-brand);
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.feature-item p {
  font-size: var(--text-sm);
  color: var(--text-sec);
  line-height: 1.6;
}

/* ══ COMPARISON TABLE (Section 8) ══ */
.compare-section {
  padding: var(--s10) var(--s4);
  background: var(--bg);
}

.compare-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: var(--text-sm);
  margin-top: 24px;
}

.compare-table th {
  padding: var(--s3) var(--s3);
  font-family: var(--font-brand);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid var(--text-primary);
  text-align: center;
}

.compare-table th:first-child {
  text-align: left;
  color: var(--text-muted);
  font-weight: 400;
  min-width: 200px;
}

.compare-table th.col-highlight {
  background: rgba(29, 78, 216, .04);
}

.compare-table td {
  padding: 12px var(--s3);
  border-bottom: 1px solid var(--surface-alt);
  text-align: center;
  color: var(--text-sec);
  vertical-align: middle;
}

.compare-table td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}

.compare-table td.col-highlight {
  background: rgba(29, 78, 216, .03);
}

.compare-table tr:hover td {
  background: var(--surface);
}

.compare-table tr:hover td.col-highlight {
  background: rgba(29, 78, 216, .07);
}

.check {
  color: var(--g-green);
  font-size: 18px;
  font-weight: 700;
}

.dash {
  color: var(--text-muted);
  font-size: 18px;
}

.col-head-name {
  font-family: var(--font-brand);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 2px;
}

.col-head-price {
  font-family: var(--font-brand);
  font-size: 13px;
  color: var(--interactive);
  font-weight: 600;
}

.compare-cta {
  text-align: center;
  margin-top: var(--s6);
}

/* ══ CAROUSEL (Sections 9+10 — horizontal scroll) ══ */
.carousel-section {
  padding: var(--s12) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.carousel-head {
  max-width: var(--max-w);
  margin: 0 auto var(--s6);
  padding: 0 var(--s4);
  text-align: center;
}

.carousel-head h2 {
  font-family: var(--font-brand);
  font-size: var(--text-h2);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-primary);
  margin-bottom: var(--s2);
}

.carousel-head p {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 600px;
  margin: 0 auto;
}

.carousel-grid-wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s4) var(--s8);
}

.carousel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--s4);
  justify-items: center;
}

.carousel-grid .carousel-card {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.carousel-card {
  flex-shrink: 0;
  width: 240px;
  scroll-snap-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s4) var(--s4);
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.carousel-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 30px 60px rgba(29, 78, 216, 0.12);
  background: var(--surface);
}

.carousel-card:active {
  transform: translateY(-4px) scale(0.98);
}

.carousel-card-img {
  width: 100px;
  height: 100px;
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
  border-radius: 20px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.carousel-card:hover .carousel-card-img {
  background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
  transform: scale(1.1);
}

.carousel-card-img img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: all 0.4s var(--ease);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.carousel-card:hover .carousel-card-img img {
  transform: scale(1.1);
}

.carousel-card-name {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.carousel-card-sub {
  font-size: var(--text-sm);
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: var(--s4);
}

.carousel-card .btn-text-theme {
  margin-top: auto;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}

.carousel-card:hover .btn-text-theme {
  opacity: 1;
  transform: translateX(4px);
}

/* ══ ECOSYSTEM CROSS-SELL (Section 10) ══ */
.ecosystem-section {
  padding: var(--s12) 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}


/* ══ TRUST SIGNALS (Section 11 — 2 col icon grid) ══ */
.trust-section {
  padding: var(--s8) var(--s4);
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s4);
  max-width: var(--max-w);
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
}

.trust-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.trust-item h4 {
  font-family: var(--font-brand);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.trust-item p {
  font-size: var(--text-xs);
  color: var(--text-sec);
  line-height: 1.5;
}

/* ══ STORIES / REVIEWS ══ */
.reviews-section {
  padding: var(--s10) var(--s4);
  background: var(--bg);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  max-width: var(--max-w);
  margin: var(--s8) auto 0;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s3);
  transition: box-shadow var(--dur-std);
}

.review-card:hover {
  box-shadow: var(--shadow-card);
}

.review-stars {
  color: var(--cta);
  font-size: 15px;
  margin-bottom: var(--s1);
}

.review-text {
  font-size: var(--text-sm);
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: var(--s2);
  font-style: italic;
}

.review-save {
  font-size: var(--text-xs);
  color: var(--primary);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: var(--s2);
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.review-meta {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ══ FAQ (Section) ══ */
.faq-section {
  padding: var(--s10) var(--s4);
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 720px;
  margin: var(--s8) auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s3) 0;
  cursor: pointer;
  gap: var(--s2);
  text-align: left;
}

.faq-q {
  font-family: var(--font-brand);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface-alt);
  color: var(--text-sec);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--dur-std);
}

.faq-item.open .faq-icon {
  background: var(--text-primary);
  color: #fff;
  transform: rotate(45deg);
}

.faq-ans {
  max-height: 0;
  overflow: hidden;
  font-size: var(--text-sm);
  color: var(--text-sec);
  line-height: 1.7;
  transition: max-height .4s var(--ease), padding .3s;
}

.faq-item.open .faq-ans {
  max-height: 200px;
  padding-bottom: var(--s3);
}

/* ══ NEWSLETTER (Section 13) ══ */
.newsletter-section {
  padding: var(--s6) var(--s4);
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}

.newsletter-section p {
  font-size: var(--text-sm);
  color: var(--text-sec);
  margin-bottom: var(--s2);
}

/* ══ FOOTER (Section 12 — multi-column) ══ */
.footer-top {
  background: #111827;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--s8) var(--s4) var(--s6);
}

.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: var(--s8);
}

.footer-brand .footer-logo {
  font-family: var(--font-brand);
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  margin-bottom: var(--s2);
}

.footer-brand .footer-logo span {
  color: var(--primary);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: #D1D5DB;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-brand);
  font-size: var(--text-sm);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: var(--s2);
}

.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: #D1D5DB;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color var(--dur-fast);
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: var(--s3) var(--s4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s2);
}

.footer-bottom p {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: var(--s3);
}

.footer-bottom-links a {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--dur-fast);
}

.footer-bottom-links a:hover {
  color: var(--interactive);
}

/* Google color dots in footer */
.g-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.g-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

/* ══ MODAL ══ */
.modal-bg {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(32, 33, 36, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s3);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-std);
  backdrop-filter: blur(2px);
}

.modal-bg.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--bg);
  max-width: 540px;
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .2);
  transform: translateY(20px) scale(.98);
  transition: transform var(--dur-std) var(--ease);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-bg.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: var(--s4) var(--s4) var(--s3);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-family: var(--font-brand);
  font-size: var(--text-h3);
  font-weight: 700;
  color: var(--text-primary);
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 22px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur-fast), color var(--dur-fast);
}

.modal-close:hover {
  background: var(--surface);
  color: var(--text-primary);
}

.modal-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
}

.mtab {
  flex: 1;
  padding: var(--s2);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-brand);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-sec);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.mtab.active {
  color: var(--interactive);
  border-bottom-color: var(--interactive);
}

.modal-body {
  padding: var(--s4);
}

.tcontent {
  display: none;
}

.tcontent.active {
  display: block;
}

.fg {
  margin-bottom: var(--s2);
}

.fg label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-sec);
  margin-bottom: 6px;
  letter-spacing: .04em;
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  background: var(--bg);
  color: var(--text-primary);
  border: 1.5px solid var(--stroke);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
  appearance: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--interactive);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, .15);
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.modal-submit {
  width: 100%;
  background: var(--btn-dark);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 18px;
  font-family: var(--font-brand);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  margin-top: var(--s1);
  transition: background var(--dur-fast);
}

.modal-submit:hover {
  background: var(--interactive);
}

.modal-success {
  display: none;
  padding: var(--s8) var(--s4);
  text-align: center;
}

.modal-success.show {
  display: block;
}

.ms-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--s2);
}

.modal-success h4 {
  font-family: var(--font-brand);
  font-size: var(--text-h3);
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-success p {
  font-size: var(--text-sm);
  color: var(--text-sec);
}

/* ══ ANIMATIONS ══ */
@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

/* Page entry */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.hero h1 {
  animation: fadeUp .7s .05s var(--ease) both;
}

.hero-sub {
  animation: fadeUp .7s .15s var(--ease) both;
}

.hero-ctas {
  animation: fadeUp .7s .25s var(--ease) both;
}

.hero-stats {
  animation: fadeUp .7s .35s var(--ease) both;
}

/* ══ RESPONSIVE ══ */
@media(max-width:1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media(max-width:768px) {
  nav {
    padding: 0 12px;
    height: auto;
    min-height: var(--nav-h);
    padding: 8px 12px;
  }

  .nav-inner {
    gap: 8px;
    padding: 0;
  }

  .nav-logo-text {
    font-size: 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 6px;
    flex-shrink: 0;
  }

  .nav-actions .btn-outline,
  .nav-actions .btn-dark {
    padding: 8px 14px;
    font-size: 12px;
    white-space: nowrap;
  }

  .hero-cta-group {
    width: 100%;
    align-items: center;
  }

  .btn-cta,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: var(--s10) var(--s2) var(--s6);
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s4);
  }

  .compare-table th:nth-child(3),
  .compare-table td:nth-child(3) {
    display: none;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stats {
    gap: var(--s4);
  }

  .fg-row {
    grid-template-columns: 1fr;
  }
}

@media(max-width:480px) {
  .nav-logo-text {
    display: none !important;
  }

  .nav-logo img {
    height: 24px;
  }

  .nav-inner {
    justify-content: space-between;
    gap: 4px;
  }

  .nav-actions {
    gap: 4px;
    margin-left: auto;
  }

  .nav-actions .btn-outline,
  .nav-actions .btn-dark {
    padding: 6px 8px;
    font-size: 10px;
    letter-spacing: -0.01em;
    border-radius: 6px;
    min-width: 0;
  }

  .promo-banner {
    padding: 10px 40px 10px 12px;
  }

  .promo-banner p {
    font-size: 10px;
    line-height: 1.3;
    max-width: 85%;
  }

  .promo-dismiss {
    right: 8px;
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: 1;
  }
}

/* ══ FLOATING ACTION BAR ══ */
.floating-action-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  padding: 8px 8px 8px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: slideUpFloat 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  opacity: 0;
  max-width: 90%;
  width: max-content;
}

.fab-content {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.fab-text {
  display: flex;
  flex-direction: column;
}

.fab-text strong {
  font-family: var(--font-brand);
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.2;
}

.fab-text span {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.2;
}

.fab-btn {
  padding: 12px 24px !important;
  font-size: 15px !important;
  white-space: nowrap;
}

@keyframes slideUpFloat {
  0% {
    transform: translate(-50%, 50px) scale(0.9);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
  }
}

@media(max-width: 600px) {
  .floating-action-bar {
    bottom: 16px;
    padding: 8px;
    width: calc(100% - 32px);
    border-radius: 24px;
  }

  .fab-content {
    gap: 12px;
  }

  .fab-text strong {
    font-size: 13px;
    white-space: nowrap;
  }

  .fab-text span {
    display: none;
  }

  .fab-btn {
    padding: 10px 16px !important;
    font-size: 14px !important;
  }
}

/* ══ MOBILE BOTTOM NAV & HAMBURGER SYSTEM ══ */

/* 1. Mobile Bottom Nav (App-like) */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text-sec);
  width: 25%;
  height: 100%;
  gap: 4px;
  transition: color var(--dur-fast);
}

.mobile-bottom-nav .nav-item i {
  font-size: 22px;
  line-height: 1;
}

.mobile-bottom-nav .nav-item span {
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-brand);
}

.mobile-bottom-nav .nav-item.active,
.mobile-bottom-nav .nav-item:hover {
  color: var(--primary);
}

/* 2. Hamburger menu toggle button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  color: var(--text-primary);
  cursor: pointer;
}

/* 3. Mobile Hamburger Overlay Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100%;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  padding: var(--s4);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  transition: right 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s6);
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  background: rgba(17, 24, 39, 0.05);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-sec);
  transition: background var(--dur-fast), color var(--dur-fast);
}

.mobile-menu-close:hover {
  background: rgba(17, 24, 39, 0.1);
  color: var(--text-primary);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  flex-grow: 1;
}

.mobile-menu-links a {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-brand);
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  width: fit-content;
}

.mobile-menu-links a:hover {
  color: var(--primary);
}

.mobile-menu-links a i {
  color: var(--primary);
}

.mobile-menu-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: var(--s4);
}

/* Hide parts and show mobile nav on small screens */
@media (max-width: 900px) {
  .nav-links {
    display: none !important;
  }

  .desktop-actions {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .mobile-bottom-nav {
    display: flex !important;
  }

  body {
    padding-bottom: calc(80px + 64px) !important;
  }
}