/* =============================================================
   Truck Point – Custom Styles
   Fonts: Hind Siliguri (Bangla) / Poppins (Latin, headings)
============================================================= */

:root {
  --tl-red: #E4232B;
  --tl-red-dark: #B91B22;
  --tl-dark: #16181D;
  --tl-navy: #12181F;
  --tl-cream: #FFF6F1;
  --tl-gray-bg: #F7F8FA;
  --tl-text-muted: #6C7380;
  --tl-radius: 14px;
  --tl-shadow: 0 10px 30px rgba(18, 24, 31, 0.08);
  --font-bn: 'Hind Siliguri', 'Poppins', sans-serif;
  --font-en: 'Poppins', 'Hind Siliguri', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-bn);
  color: var(--tl-dark);
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-bn);
  font-weight: 700;
  color: var(--tl-dark);
}

a { text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }

.text-accent { color: var(--tl-red); }

/* -------------------------------------------------------------
   TOP BAR
------------------------------------------------------------- */
.top-bar {
  background: var(--tl-dark);
  color: #d8dadf;
  font-size: 0.85rem;
}
.top-bar-link {
  color: #d8dadf;
  transition: color .2s;
}
.top-bar-link:hover { color: var(--tl-red); }

/* -------------------------------------------------------------
   NAVBAR
------------------------------------------------------------- */
.main-navbar {
  background: #fff;
  padding: 14px 0;
  transition: box-shadow .25s ease, padding .25s ease;
  z-index: 1030;
}
.main-navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  padding: 8px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--tl-dark);
}
.brand-box {
  background: var(--tl-red);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-en);
  font-size: 0.95rem;
}
.main-menu { gap: 6px; }
.main-menu .nav-link {
  color: var(--tl-dark);
  font-weight: 500;
  padding: 8px 16px !important;
  border-radius: 30px;
  transition: all .2s;
}
.main-menu .nav-link:hover,
.main-menu .nav-link.active {
  color: var(--tl-red);
  background: rgba(228, 35, 43, 0.08);
}
.nav-right { margin-left: 12px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .9rem;
}
.lang-btn {
  background: none;
  border: none;
  color: var(--tl-text-muted);
  padding: 4px 6px;
  cursor: pointer;
  transition: color .2s;
}
.lang-btn.active,
.lang-btn:hover { color: var(--tl-red); }
.lang-sep { color: #cfd3d9; }

.btn-signin {
  background: var(--tl-red);
  color: #fff;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 30px;
  transition: background .2s, transform .2s;
}
.btn-signin:hover {
  background: var(--tl-red-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* -------------------------------------------------------------
   HERO
------------------------------------------------------------- */

.hero-app-btn{
 color: white;
 font-weight: 600;
 background-color: var(--tl-red) !important;
 border-radius: 30px;
 border: none !important;
}

.hero-section {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 0 150px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.svg');
  background-size: cover;
  background-position: center bottom;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(10,12,16,.88) 0%, rgba(10,12,16,.58) 42%, rgba(10,12,16,.18) 68%, rgba(10,12,16,.05) 100%),
    linear-gradient(0deg, rgba(6,8,10,.55) 0%, transparent 35%);
  z-index: -1;
  pointer-events: none;
}
.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.32;
  max-width: 600px;
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.hero-btns .btn {
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 30px;
  font-size: 1rem;
}
.btn-hero-primary {
  background: var(--tl-red);
  color: #fff;
  border: 2px solid var(--tl-red);
}
.btn-hero-primary:hover {
  background: var(--tl-red-dark);
  border-color: var(--tl-red-dark);
  color: #fff;
}
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: #fff;
}

.hero-stats {
  position: relative;
  margin-top: -76px;
  z-index: 2;
}
.hero-stats .container {
  background: #fff;
  border-radius: var(--tl-radius);
  box-shadow: 0 20px 45px rgba(18, 24, 31, 0.18);
  padding: 30px 10px;
}
.hero-stats .col-4 { border-right: 1px solid #eef0f2; }
.hero-stats .col-4:last-child { border-right: none; }
.stat-box h3 {
  font-family: var(--font-en);
  font-size: 1.5rem;
  margin: 10px 0 2px;
  color: var(--tl-dark);
}
.stat-box p {
  font-size: .85rem;
  color: var(--tl-text-muted);
  margin: 0;
}
.stat-icon {
  font-size: 1.6rem;
  color: var(--tl-red);
}

/* -------------------------------------------------------------
   SECTION HEADINGS (shared)
------------------------------------------------------------- */
.section-heading { margin-bottom: 56px; }
.section-heading h2 {
  font-size: 2rem;
  line-height: 1.45;
}
.section-heading p {
  color: var(--tl-text-muted);
  margin-top: 10px;
}
.section-heading.light h2 { color: #fff; }
.section-heading.light .text-accent { color: #ffd7d7; }

/* -------------------------------------------------------------
   HOW IT WORKS
------------------------------------------------------------- */
.how-section { padding: 110px 0 100px; background: #fff; }
.how-item {
  margin-bottom: 42px;
  padding: 0 6px;
}
.how-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(228, 35, 43, .08);
  color: var(--tl-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.how-item h5 { font-size: 1.05rem; margin-bottom: 6px; }
.how-item p { color: var(--tl-text-muted); font-size: .92rem; margin: 0; }

.how-road { display: flex; justify-content: center; }
.road-svg { width: 100%; max-width: 160px; height: auto; }

/* -------------------------------------------------------------
   30-SECOND BOOKING
------------------------------------------------------------- */
.booking-section { padding: 100px 0; background: var(--tl-gray-bg); }
.booking-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--tl-shadow);
  padding: 50px;
}
.booking-card h4 { font-size: 1.6rem; margin-bottom: 14px; }
.booking-card p { color: var(--tl-text-muted); }

.store-badges { flex-wrap: wrap; }
.store-badges a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--tl-dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}
.store-badges a:hover { background: var(--tl-red); transform: translateY(-2px); }
.store-icon-i { font-size: 1.3rem; }

.phone-mock { display: flex; justify-content: center; align-items: center; width: 100%;}
.phone-frame {
  width: 100%;
  max-width: 550px;
  background: #fff;
  border: 1px solid #eceff2;
  border-radius: 20px;
  box-shadow: var(--tl-shadow);
  padding: 22px;
}
.phone-app-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.app-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--tl-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-en);
  flex-shrink: 0;
}
.phone-app-header strong { display: block; font-size: .95rem; line-height: 1.3; }
.stars { color: #ffb400; font-size: .8rem; }
.stars span { color: var(--tl-text-muted); margin-left: 4px; }
.install-btn {
  width: 100%;
  background: #1e88e5;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 16px;
}
.phone-screen-preview {
  background: linear-gradient(135deg, var(--tl-red), #7a1216);
  border-radius: 14px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.phone-screen-preview:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(214, 40, 57, 0.35);
}
.phone-screen-preview video,
.phone-screen-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.phone-screen-preview .play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 18, 24, 0.45);
  z-index: 2;
  transition: background 0.2s ease;
}
.phone-screen-preview:hover .play-btn-overlay {
  background: rgba(15, 18, 24, 0.25);
}
.play-btn {
  font-size: 3.2rem;
  color: #ffffff;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: transform 0.25s ease, color 0.2s ease;
}
.phone-screen-preview:hover .play-btn {
  transform: scale(1.12);
  color: #ffefef;
}
.about-app-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .9rem;
  padding-top: 8px;
  border-top: 1px solid #f0f1f3;
}

/* -------------------------------------------------------------
   SERVICES (RED SECTION)
------------------------------------------------------------- */
.services-section {
  background: linear-gradient(135deg, var(--tl-red) 0%, #a4171d 100%);
  padding: 100px 0;
}
.service-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background-color: #22262c;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  isolation: isolate;
  transition: transform .3s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card.tall { min-height: 464px; }
.service-card.short { min-height: 220px; }
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.05) 0%, rgba(8,8,10,.55) 55%, rgba(6,6,8,.92) 100%);
  z-index: 0;
}
.service-content { position: relative; z-index: 1; color: #fff; }
.service-content h4 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.service-content p { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 16px; max-width: 320px; }
.btn-service {
  background: #fff;
  color: var(--tl-dark);
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: .9rem;
  transition: background .2s, color .2s;
}
.btn-service:hover { background: var(--tl-red); color: #fff; }

/* -------------------------------------------------------------
   CLIENTS
------------------------------------------------------------- */
.clients-section { padding: 60px 0; background: #fff; }
.clients-heading {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--tl-text-muted);
  font-size: .8rem;
  margin-bottom: 30px;
}
.clients-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.client-logo {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.3rem;
  color: #c7cbd1;
  letter-spacing: 1px;
  transition: color .2s;
}
.client-logo:hover { color: var(--tl-red); }

/* Clients slider */
.clients-slider { overflow: hidden; }
.clients-slider-track {
  display: flex;
  width: 200%;
  transition: transform .6s cubic-bezier(.65,0,.35,1);
}
.clients-slide {
  flex: 0 0 50%;
  width: 50%;
}
.clients-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.clients-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #e3e6ea;
  cursor: pointer;
  transition: background .2s, transform .2s, width .2s;
}
.clients-dot:hover { background: #c7cbd1; }
.clients-dot.active {
  background: var(--tl-red);
  width: 24px;
  border-radius: 5px;
}

/* -------------------------------------------------------------
   TESTIMONIALS
------------------------------------------------------------- */
.testimonial-section { padding: 90px 0; background: var(--tl-cream); }
.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e5c9c8;
  background: #fff;
  color: var(--tl-red);
  margin-left: 10px;
  transition: background .2s, color .2s;
}
.carousel-arrow:hover { background: var(--tl-red); color: #fff; }

.testimonial-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }

.testi-card {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 18px;
  padding: 34px;
  box-shadow: var(--tl-shadow);
}
@media (min-width: 768px) { .testi-card { flex: 0 0 calc(50% - 12px); } }
@media (min-width: 992px) { .testi-card { flex: 0 0 calc(33.333% - 16px); } }

.quote-icon { font-size: 1.8rem; color: var(--tl-red); opacity: .5; }
.testi-card h6 { font-size: 1.05rem; margin: 12px 0 8px; }
.testi-card p { color: var(--tl-text-muted); font-size: .92rem; min-height: 66px; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--tl-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .92rem; }
.testi-role { font-size: .78rem; color: var(--tl-text-muted); }

.testi-card.testi-dark {
  background: linear-gradient(135deg, var(--tl-red), #7a1216);
  color: #fff;
}
.testi-dark .quote-icon { color: #fff; opacity: .55; }
.testi-dark h6 { color: #fff; }
.testi-dark p { color: rgba(255,255,255,.85); }
.testi-dark .testi-role { color: rgba(255,255,255,.7); }
.testi-dark .author-avatar { background: #fff; color: var(--tl-red); }

/* -------------------------------------------------------------
   NEWS
------------------------------------------------------------- */
.news-section { padding: 90px 0; background: #fff; }
.news-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef0f2;
  height: 100%;
  transition: box-shadow .25s, transform .25s;
}
.news-card:hover { box-shadow: var(--tl-shadow); transform: translateY(-4px); }
.news-thumb {
  height: 160px;
  background: linear-gradient(135deg, #eef0f2, #dfe3e7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-weight: 700;
  color: #9aa1ab;
  font-style: italic;
}
.news-body { padding: 20px; }
.news-date { font-size: .78rem; color: var(--tl-red); font-weight: 600; }
.news-body h6 { margin-top: 8px; font-size: 1rem; line-height: 1.5; font-family: var(--font-en); font-weight: 600; }

/* -------------------------------------------------------------
   CTA BANNERS
------------------------------------------------------------- */
.cta-banners { padding: 0 0 90px; }
.cta-card {
  position: relative;
  border-radius: 18px;
  padding: 44px;
  min-height: 220px;
  display: flex;
  align-items: center;
  background-color: var(--tl-red);
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.cta-card.dark { background-color: var(--tl-navy); }
.cta-card > div { position: relative; z-index: 1; }
.cta-card h5 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.cta-card p { color: rgba(255,255,255,.8); margin-bottom: 16px; }
.store-badges-sm i { font-size: 1.6rem; margin-right: 14px; color: #fff; }
.cta-link { color: #fff; font-weight: 700; }
.cta-link i { transition: transform .2s; display: inline-block; }
.cta-link:hover i { transform: translateX(4px); }

/* -------------------------------------------------------------
   TRUCK CATEGORIES
------------------------------------------------------------- */
.category-section { padding: 90px 0; background: var(--tl-gray-bg); }
.category-tabs { gap: 10px; flex-wrap: wrap; }
.category-tabs .nav-link {
  border: 1px solid #e3e6ea;
  background: #fff;
  color: var(--tl-dark);
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
}
.category-tabs .nav-link.active,
.category-tabs .nav-link:hover {
  background: var(--tl-red);
  color: #fff;
  border-color: var(--tl-red);
}
.truck-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: var(--tl-shadow);
  transition: transform .25s;
}
.truck-card:hover { transform: translateY(-6px); }
.truck-icon-wrap {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(228,35,43,.08);
  color: var(--tl-red);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.truck-card h6 { font-size: 1.05rem; margin-bottom: 6px; }
.truck-capacity { color: var(--tl-text-muted); font-size: .85rem; }

/* -------------------------------------------------------------
   APP PROMO
------------------------------------------------------------- */
.app-promo-section {
  padding: 100px 0 0;
  background: var(--tl-navy);
  text-align: center;
  color: #fff;
}
.app-promo-section .section-heading h2 { color: #fff; }
.app-promo-section .section-heading p { color: #9aa1ab; }
.promo-feature {
  color: #d8dadf;
  font-size: .95rem;
  font-weight: 500;
}
.promo-feature i { color: var(--tl-red); margin-right: 6px; }

.promo-trucks-img {
  margin: 0 -1.5rem;
  line-height: 0;
}
.promo-trucks-img img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 340px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
@media (min-width: 768px) {
  .promo-trucks-img { margin: 0; }
}

/* -------------------------------------------------------------
   FOOTER
------------------------------------------------------------- */
.site-footer {
  background: var(--tl-navy);
  color: #b7bcc4;
  padding: 70px 0 24px;
}
.site-footer h6 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-links li { margin-bottom: 12px; font-size: .92rem; }
.footer-links a { color: #b7bcc4; transition: color .2s; }
.footer-links a:hover { color: var(--tl-red); }
.footer-contact li { display: flex; align-items: flex-start; gap: 8px; }
.footer-contact a, .footer-contact span { color: #b7bcc4; }
.footer-contact i { color: var(--tl-red); margin-top: 3px; }
.footer-about-text {
  color: #9aa1ab;
  font-size: .9rem;
  line-height: 1.7;
  max-width: 380px;
  margin: 14px 0 20px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--tl-red); transform: translateY(-2px); }
.footer-divider { border-color: rgba(255,255,255,.08); margin: 50px 0 24px; }
.footer-bottom { color: #8b909a; font-size: .88rem; }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: #8b909a; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--tl-red); }
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
}

/* Scroll to top */
.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--tl-red);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 8px 22px rgba(228,35,43,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 1040;
}
.scroll-top-btn.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--tl-red-dark); }

/* -------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-section { min-height: 520px; padding: 110px 0 130px; }
  .hero-title { font-size: 2.1rem; }
  .hero-stats .container { padding: 22px 6px; }
  .how-item.text-lg-end { text-align: left !important; }
  .section-heading h2 { font-size: 1.7rem; }
  .booking-card { padding: 30px; }
  .service-card.tall { min-height: 260px; }
  .main-menu { margin: 16px 0; }
  .nav-right { margin-left: 0; flex-wrap: wrap; }
}

@media (max-width: 767.98px) {
  .hero-section { min-height: 460px; padding: 90px 0 110px; text-align: center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(10,12,16,.75) 0%, rgba(10,12,16,.35) 55%, rgba(10,12,16,.75) 100%); }
  .hero-title { font-size: 1.7rem; max-width: 100%; }
  .hero-btns { justify-content: center; }
  .hero-stats { margin-top: -60px; }
  .hero-stats .col-4 { border-right: 1px solid #eef0f2; }
  .stat-box h3 { font-size: 1.15rem; }
  .stat-box p { font-size: .72rem; }
  .stat-icon { font-size: 1.3rem; }
  .how-section, .booking-section, .services-section,
  .testimonial-section, .news-section, .category-section,
  .app-promo-section { padding: 60px 0; }
  .section-heading { margin-bottom: 36px; }
  .cta-card { padding: 30px; text-align: center; flex-direction: column; }
  .clients-logo-row { gap: 24px; }
  .promo-trucks { gap: 24px; }
  .promo-truck-icon { font-size: 2rem; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.45rem; }
  .booking-card { padding: 22px; }
  .stat-box p { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--tl-red);
  outline-offset: 2px;
}