/* ===========================
   SherlockOficialBot — Styles
   =========================== */

/* ----- Variables ----- */
:root {
  --bg:            #0a0f0d;
  --bg-card:       #111a14;
  --bg-card-hover: #162019;
  --accent:        #22c55e;
  --accent-dark:   #16a34a;
  --accent-glow:   rgba(34, 197, 94, 0.12);
  --accent-border: rgba(34, 197, 94, 0.28);
  --text:          #e2e8f0;
  --text-muted:    #94a3b8;
  --border:        rgba(255, 255, 255, 0.08);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.2s ease;
  --max-w:         1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* ----- Container ----- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
  line-height: 1;
}

.btn--primary {
  background: var(--accent);
  color: #0a0f0d;
}
.btn--primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.40);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}

.btn--block {
  width: 100%;
}

/* ===========================
   NAVIGATION
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: rgba(10, 15, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 17px;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.nav__logo:hover { opacity: 0.85; }

.nav__logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Desktop nav links */
.nav__desktop {
  display: flex;
  gap: 4px;
  margin-right: auto;
  list-style: none;
}

/* Mobile drawer — hidden by default, shown via JS */
.nav__menu {
  display: none;
}

.nav__link {
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav__link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__burger--open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger--open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO
   =========================== */
.hero {
  padding: 148px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero__content { position: relative; z-index: 1; }

.hero__badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.badge {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}
.badge--green {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.hero__title {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.stat {
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat__value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
  letter-spacing: -0.02em;
  min-height: 32px; /* reserve space to prevent CLS during counter animation */
}

.stat__online {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.stat__online::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { opacity: 0.5; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}

.stat__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* ===========================
   TRUST BAR
   =========================== */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-item__icon { font-size: 20px; flex-shrink: 0; }

/* ===========================
   SECTIONS (shared)
   =========================== */
.section { padding: 80px 0; }

.section__header {
  text-align: center;
  margin-bottom: 56px;
}

.section__title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===========================
   FEATURES
   =========================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  cursor: default;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 16px;
  row-gap: 6px;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(34, 197, 94, 0.08);
}

.feature-card__icon {
  font-size: 36px;
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  line-height: 1;
}

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

.feature-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  grid-column: 2;
  grid-row: 2;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 28px 20px 24px;
  text-align: center;
  transition: all var(--transition);
  cursor: default;
  height: 100%;
}
.step:hover {
  border-color: var(--accent-border);
  border-top-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.1);
}

.step__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #0a0f0d;
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.1), 0 6px 20px rgba(34, 197, 94, 0.35);
}

.step__icon {
  font-size: 34px;
  margin-bottom: 14px;
  display: block;
}

.step__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.45;
  font-size: 22px;
}

.how-it-works__cta { text-align: center; }

/* ===========================
   USE CASES
   =========================== */
.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.use-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  cursor: default;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 16px;
  row-gap: 6px;
}
.use-case-card:hover {
  border-color: var(--accent-border);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.use-case-card__icon {
  font-size: 32px;
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
  line-height: 1;
}
.use-case-card__title {
  font-size: 16px;
  font-weight: 700;
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  line-height: 1.3;
}
.use-case-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  grid-column: 2;
  grid-row: 2;
}

/* ===========================
   REVIEWS
   =========================== */
.reviews {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  cursor: default;
}
.review-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  color: #fff;
  letter-spacing: 0.02em;
}
.avatar--blue   { background: #3b82f6; }
.avatar--green  { background: #22c55e; color: #0a0f0d; }
.avatar--orange { background: #f97316; }
.avatar--purple { background: #a855f7; }
.avatar--red    { background: #ef4444; }
.avatar--cyan   { background: #06b6d4; }

.review-card__name  { font-weight: 600; font-size: 14px; }
.review-card__city  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.review-card__stars { margin-left: auto; color: #f59e0b; font-size: 14px; flex-shrink: 0; }

.review-card__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.review-card__date {
  font-size: 12px;
  color: #475569;
}

/* ===========================
   TRUST NUMBERS
   =========================== */
.trust-numbers {
  background: linear-gradient(160deg, #0a0f0d 0%, #0e1d12 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-number__value {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  line-height: 1.2;
}

.trust-number__label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===========================
   FAQ
   =========================== */
.faq__list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item--open { border-color: var(--accent-border); }

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
  line-height: 1.4;
}
.faq-item__question:hover { color: var(--accent); }

.faq-item__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  width: 24px;
  text-align: center;
}
.faq-item--open .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.2s ease;
  opacity: 0;
}
.faq-item--open .faq-item__answer {
  max-height: 400px;
  opacity: 1;
}

.faq-item__answer p {
  padding: 0 20px 20px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  background: linear-gradient(135deg, #0d1f10 0%, #142318 100%);
  border-top: 1px solid var(--accent-border);
  border-bottom: 1px solid var(--accent-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__content { position: relative; z-index: 1; }

.cta-banner__title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.cta-banner__subtitle {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer__brand-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 16px 0 24px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__nav-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer__nav a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--accent); }

.footer__bottom { text-align: center; }
.footer__bottom p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer__disclaimer { font-size: 12px; color: #475569; }

/* ===========================
   MOBILE STICKY CTA
   =========================== */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(10, 15, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.mobile-sticky--visible { transform: translateY(0); }

/* ===========================
   RESPONSIVE — Tablet (≤1024px)
   =========================== */
@media (max-width: 1024px) {
  .features__grid,
  .use-cases__grid,
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:last-child,
  .stat:nth-child(2) { border-bottom: none; }
  .stat:nth-child(even) { border-right: none; }
  .stat:nth-child(odd)  { border-right: 1px solid var(--border); }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

/* ===========================
   RESPONSIVE — Mobile (≤768px)
   =========================== */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Navbar */
  .nav > .btn--primary { display: none; }
  .nav__burger         { display: flex; }
  .nav__desktop        { display: none; }

  /* Drawer (always flex, slides via transform) */
  .nav__menu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 86vw);
    background: #0d1410;
    border-left: 1px solid var(--border);
    z-index: 1001;
    padding: 0 0 32px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: -16px 0 48px rgba(0,0,0,0.5);
    overflow: hidden;
  }
  .nav__menu--open {
    transform: translateX(0);
    pointer-events: auto;
  }

  /* Drawer header with logo */
  .nav__menu::before {
    content: '🔍 SherlockOficialBot';
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
    letter-spacing: -0.01em;
    background: rgba(34,197,94,0.04);
  }

  /* Nav links as full-height rows */
  .nav__menu li:not(.nav__menu-cta) {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav__menu .nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    font-size: 15px;
    font-weight: 600;
    padding: 0 24px;
    width: 100%;
    color: var(--text);
    border-left: 3px solid transparent;
    border-radius: 0;
    transition: all var(--transition);
  }
  .nav__menu .nav__link::after {
    content: '→';
    font-size: 14px;
    color: var(--text-muted);
    transition: all var(--transition);
  }
  .nav__menu .nav__link:hover {
    color: var(--accent);
    background: rgba(34, 197, 94, 0.06);
    border-left-color: var(--accent);
  }
  .nav__menu .nav__link:hover::after {
    color: var(--accent);
    transform: translateX(4px);
  }

  /* CTA button at bottom */
  .nav__menu-cta {
    margin-top: auto;
    padding: 20px 20px 0;
    width: 100%;
    border-top: 1px solid var(--border);
  }
  .nav__menu-cta .btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }

  /* Overlay behind drawer */
  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(2px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .nav__overlay--open {
    display: block;
    opacity: 1;
  }

  /* Hero */
  .hero { padding: 108px 0 60px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { text-align: center; }

  /* Features / Use-cases / Reviews */
  .features__grid,
  .use-cases__grid,
  .reviews__grid {
    grid-template-columns: 1fr;
  }

  /* Trust bar */
  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .trust-item {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .trust-item__icon { padding-top: 2px; }

  /* Steps */
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step__arrow {
    transform: rotate(90deg);
    padding: 8px 0;
    font-size: 20px;
    justify-self: center;
  }
  .step { max-width: 100%; }

  /* Trust numbers */
  .trust-numbers__grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__top  { gap: 32px; }

  /* Mobile sticky */
  .mobile-sticky { display: block; }

  /* Extra bottom padding so footer isn't hidden behind sticky CTA */
  .footer { padding-bottom: 88px; }
}

/* ===========================
   RESPONSIVE — Small (≤480px)
   =========================== */
@media (max-width: 480px) {
  .container  { padding: 0 16px; }
  .hero__title { font-size: 26px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }

  .trust-numbers__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer__nav          { grid-template-columns: 1fr; }

  .section__title { font-size: 22px; }
  .cta-banner__title { font-size: 22px; }

  .hero__badges { gap: 6px; }
  .badge { font-size: 12px; padding: 5px 10px; }
}
