/* Critical CSS (small, safe): hero and basic layout */
.hero-animate-target{font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;}
.site-header{display:block;}
/* Minimal safe reset */
img{max-width:100%;height:auto;display:block;}






/* Final Hero heading size – matches screenshot */
#hero-heading {
    font-size: clamp(1.4rem, 3.2vw, 3rem) !important;
    font-weight: 400 !important;
    line-height: 1.08 !important;
    letter-spacing: -0.5px !important;
}


/* ============================
   HERO — FINAL POLISH
   ============================ */

.hero {
    padding: 32px 0 38px !important;
    gap: 32px !important;
}

.hero > div {
    max-width: 680px;
}

.hero .kicker {
    margin-bottom: 12px !important;
}

#hero-heading {
    font-size: clamp(2.4rem, 2.4vw, 2.4rem) !important;
    line-height: 1.08 !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.4px !important;
}

.hero p.lead {
    font-size: 1.02rem !important;
    line-height: 1.45 !important;
    color: var(--muted) !important;
    margin-bottom: 18px !important;
    max-width: 560px;
}

.hero .muted {
    margin-top: 12px !important;
}

.hero-actions {
    gap: 10px !important;
}

@media (max-width: 480px) {
    .hero {
        padding: 22px 0 28px !important;
    }
    #hero-heading {
        font-size: 1.85rem !important;
        line-height: 1.12 !important;
        margin-bottom: 10px !important;
    }
    .hero p.lead {
        font-size: 0.98rem !important;
        margin-bottom: 14px !important;
    }
    .hero .kicker {
        font-size: 0.75rem !important;
        padding: 6px 12px !important;
        margin-bottom: 10px !important;
    }
    .hero-actions a {
        padding: 8px 14px !important;
    }
}




.site-logo { height: 70px; width: auto; object-fit: contain; display: block; }

.site-logo { height: 70px; width: auto; object-fit: contain; display: block; }

/* ----------------------
   Testimonials
   ---------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.testimonial-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(16,24,40,0.04);
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(16,24,40,0.08);
}

.testimonial-stars i {
  color: #f5b100;
  margin-right: 2px;
  font-size: 1rem;
}

.testimonial-text {
  color: var(--muted);
  margin: 14px 0 18px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.fade-in.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity .6s ease, transform .6s ease;
}

/* Mobile tweaks */
@media (max-width:600px) {
  .testimonial-card { padding: 20px; }
  .testimonial-text { font-size: .95rem; }
}

/* --- FIXED & PERFECTLY ALIGNED STATS --- */
#company-stats {
  padding: 40px 0;
}

#company-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
  align-items: center;
}

#company-stats .stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#company-stats .stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(90deg, #8a2be2, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

#company-stats .stat-label {
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 10px; /* Reduced gap */
}

.commerce-pill {
  display: inline-block;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 0 auto;
}

.tablet-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: white;

  background: linear-gradient(
    90deg,
    #6a3df0 0%,
    #b54ce1 50%,
    #ff79b0 100%
  );
}

    /* ----------------------
       Reset & base
       ---------------------- */
    * { box-sizing: border-box; }
    html,body { height: 100%; margin: 0; }
    body {
      font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      background: #f7f7fb;
      color: #111827;
      -webkit-font-smoothing: antialiased;
      line-height: 1.5;
      -webkit-tap-highlight-color: transparent;
      scroll-behavior: smooth;
    }

    /* small screen readable focus */
    .sr-only {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }

    /* Optional CSS offset for non-JS fallback */
    section[id] {
      scroll-margin-top: 120px;
    }

    img{ max-width:100%; height:auto; display:block; }
    a{ color:inherit; text-decoration:none; }
    .container{ max-width:1180px; margin:0 auto; padding:0 20px; }

    :root{
      --bg: #f7f7fb;
      --surface: #ffffff;
      --muted: #6b6f86;
      --text: #111827;
      --accent: #6b3dd6;
      --accent-2: #ff6fa3;
      --glass: rgba(255,255,255,0.6);
      --radius: 14px;
      --container: 1180px;
      --easing: cubic-bezier(.2,.9,.3,1);
      --shadow-soft: 0 8px 24px rgba(34,40,54,0.06);
    }

    @media (prefers-reduced-motion: reduce){
      * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
    }

    /* ----------------------
       Header (sticky + animated)
       Key fixes: ensure header sits above hero and doesn't let page content show through
       ---------------------- */
    header {
      position: sticky;
      top: 0;
      z-index: 120; /* raised to ensure header above floating/hero elements */
      background: rgba(255,255,255,0.0); /* start transparent, but we'll show subtle glass when scrolled */
      transition: background-color .35s var(--easing), padding .35s var(--easing), box-shadow .35s var(--easing), backdrop-filter .35s var(--easing);
      -webkit-backdrop-filter: blur(0px);
      backdrop-filter: blur(0px);
    }

    /* container inside header provides the visible band so it won't overlay oddly */
.topbar {
    padding: 3px 0 !important; /* gives enough room */
    min-height: 100px; /* ensures no clipping */
}
.topbar { display:flex; align-items:center; justify-content:space-between; gap:24px; }

    .brand { display:flex; align-items:center; gap:12px; }
    
    .brand h1 { font-size:1rem; margin:0; font-weight:700; color:var(--text); letter-spacing:-0.2px; }

    nav.primary { margin-left:auto; display:flex; align-items:center; gap:18px; }
    nav.primary a { padding:8px 10px; border-radius:10px; font-weight:600; color:var(--muted); font-size:.95rem; transition: color .25s, background-color .25s; }
    nav.primary a:hover, nav.primary a[aria-current='true'] { color:var(--accent); background:linear-gradient(90deg, rgba(107,61,214,0.06), transparent); }

    .ctas { display:flex; gap:12px; align-items:center; margin-left:12px; }
    .btn { display:inline-flex; align-items:center; gap:10px; padding:10px 16px; border-radius:12px; font-weight:700; border:0; cursor:pointer; text-decoration:none; }
    .btn--ghost { background:transparent; color:var(--accent); border:1px solid rgba(107,61,214,0.12); }
    .btn--primary { background:linear-gradient(90deg,var(--accent),#7f4de0); color:white; box-shadow:var(--shadow-soft); }

    .menu-toggle { display:none; background:transparent; border:0; padding:8px; border-radius:8px; }
    .menu-toggle:focus { outline:2px solid rgba(107,61,214,0.18); }

    /* scrolled header appearance */
    header.scrolled {
      background: rgba(255,255,255,0.78);
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      box-shadow: 0 6px 28px rgba(16,24,40,0.06);
    }
    header.scrolled .topbar { 
    padding: 18px 0; 
    min-height: 90px; /* prevents clipping when sticky/shrunk */
}

header.scrolled 

    /* ensure header elements don't wrap weirdly on wide screens */
    .topbar .brand, .topbar nav, .topbar .ctas { flex-shrink: 0; }

    /* ----------------------
       Hero / layout
       ---------------------- */
    .hero{ display:grid; grid-template-columns:1fr 380px; gap:40px; align-items:center; padding:48px 0; }
    .hero .kicker{ display:inline-block; background:linear-gradient(90deg,#e7defb, #fbe7f0); color:var(--accent); padding:8px 14px; border-radius:999px; font-weight:700; font-size:.9rem; margin-bottom:18px; }
    .hero h2{ font-size:clamp(2.4rem,5vw,4rem); margin:0 0 18px; font-weight:900; line-height:1.05; }
    .hero p.lead{ color:var(--muted); font-size:1.05rem; margin-bottom:22px; }
    .hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }

    .hero-card{ background:linear-gradient(180deg,rgba(255,255,255,0.85),var(--surface)); padding:20px; border-radius:18px; box-shadow:var(--shadow-soft); }

    /* ----------------------
       Hero animations (replayable)
       - we animate 3 main elements: .kicker, #hero-heading, .lead + .hero-actions
       ---------------------- */

    /* initial state for animated hero elements */
    .hero-animate-target {
      transform: translateY(12px);
      opacity: 0;
      will-change: transform, opacity;
    }

    /* when .in-view is added we play the animation */
    .hero-in-view .hero-animate-target {
      transform: translateY(0);
      opacity: 1;
      transition: transform 520ms var(--easing), opacity 520ms var(--easing);
    }

    /* add stagger using data attributes and nth-child fallback */
    .hero-in-view .kicker.hero-animate-target { transition-delay: 80ms; }
    .hero-in-view h2#hero-heading.hero-animate-target { transition-delay: 200ms; }
    .hero-in-view .lead.hero-animate-target { transition-delay: 360ms; }
    .hero-in-view .hero-actions.hero-animate-target { transition-delay: 500ms; }

    /* micro-interaction for buttons */
    .hero-actions a { transition: transform .18s var(--easing), box-shadow .18s var(--easing); }
    .hero-actions a:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(16,24,40,0.08); }

    /* Respect reduced motion by disabling transitions if requested */
    @media (prefers-reduced-motion: reduce) {
      .hero-animate-target, .hero-in-view .hero-animate-target {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
      }
      .hero-actions a { transform: none !important; box-shadow: none !important; }
    }

    /* ----------------------
       Cards / features
       ---------------------- */
    .features{ padding:32px 0; }
    .features-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:18px; }
    .card{ background:var(--surface); padding:18px; border-radius:12px; box-shadow:0 6px 18px rgba(16,24,40,0.04); border:1px solid rgba(16,24,40,0.03); transition:transform .28s var(--easing),box-shadow .28s var(--easing),opacity .6s var(--easing); }
    .card:hover{ transform:translateY(-10px) scale(1.02); box-shadow:0 22px 46px rgba(16,24,40,0.12); }
    .card .icon{ height:48px; width:48px; border-radius:12px; display:inline-grid; place-items:center; background:linear-gradient(135deg, rgba(107,61,214,0.22), rgba(255,111,163,0.18)); color:var(--accent); font-size:1.25rem; transition:transform .3s var(--easing), box-shadow .3s var(--easing); }

    .tag-new{ background:var(--accent-2); color:white; padding:4px 8px; border-radius:999px; font-size:.75rem; font-weight:700; animation:pulseTag 2.2s infinite ease-in-out; }
    @keyframes pulseTag{ 0%,100%{ transform:scale(1); opacity:1; } 50%{ transform:scale(1.13); opacity:.88; } }

    /* ----------------------
       About / Timeline
       ---------------------- */
    .about{ background:var(--surface); padding: 20px 48px 48px 48px; border-radius:16px; box-shadow:var(--shadow-soft); }

    /* ----------------------
       NEW TIMELINE — Design B
       ---------------------- */
    .timeline-new {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 40px;
      margin-top: 40px;
      text-align: left;
    }

    .timeline-head {
      display: flex;
      align-items: center;
      margin-bottom: 16px;
    }

    .timeline-dot {
      width: 14px;
      height: 14px;
      border: 3px solid #6b4eff;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .timeline-line {
      height: 2px;
      flex-grow: 1;
      margin-left: 10px;
      background: linear-gradient(
        to right,
        rgba(107, 78, 255, 0.4),
        rgba(107, 78, 255, 0.12),
        transparent
      );
    }

    .timeline-year {
      color: #6b4eff;
      font-weight: 600;
      margin: 0 0 6px;
      font-size: 0.92rem;
    }

    .timeline-item-new h4 {
      font-size: 1.1rem;
      margin: 0 0 8px;
      font-weight: 700;
      color: #111827;
    }

    .timeline-desc {
      color: #6b6f86;
      font-size: 0.92rem;
      line-height: 1.55;
      max-width: 260px;
    }

    @media (max-width: 900px) {
      .timeline-new {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }
    }

    @media (max-width: 600px) {
      .timeline-new {
        grid-template-columns: 1fr;
      }
    }

    /* ----------------------
       Mobile navigation sheet (hidden by default)
       ---------------------- */
    .mobile-nav {
      position: fixed;
      inset: 0;
      background: rgba(10,10,12,0.45);
      backdrop-filter: blur(4px);
      display: none; /* hidden unless .open */
      align-items: flex-start;
      justify-content: flex-end;
      padding: 28px;
      z-index: 200;
    }
    .mobile-nav.open { display:flex; }
    .mobile-sheet {
      width: 320px;
      background: var(--surface);
      border-radius: 12px;
      padding: 18px;
      box-shadow: 0 24px 60px rgba(10,10,12,0.25);
      transform: translateY(0);
      transition: transform .28s var(--easing), opacity .28s var(--easing);
    }
    .mobile-sheet nav a { display:block; padding:12px; border-radius:8px; color:var(--muted); font-weight:700; }

    /* floating support button */
    .floating{ position:fixed; right:20px; bottom:20px; background:linear-gradient(90deg,var(--accent),#7f4de0); color:white; padding:12px 16px; border-radius:999px; box-shadow:0 12px 30px rgba(107,61,214,0.15); display:inline-flex; gap:10px; align-items:center; z-index:80; }

    .muted{ color:var(--muted); }
    .stack{ display:flex; flex-direction:column; gap:12px; }

    a { transition: color .25s ease, background-color .25s ease; }

    header .actions a { padding: 0.4rem 0.9rem; font-size: 0.875rem; white-space: nowrap; }

    /* ----------------------
       Responsive adjustments
       ---------------------- */
    @media (min-width:1400px){
      .container{ max-width:1400px; }
      .hero{ grid-template-columns:1fr 420px; gap:60px; }
      nav.primary a{ font-size:1rem; }
      .btn{ padding:12px 20px; font-size:1rem; }
    }

    @media (max-width:1399px){
      .hero{ grid-template-columns:1fr 380px; }
    }

    @media (max-width:1023px){
      .hero{ grid-template-columns:1fr; grid-auto-rows:auto; }
      .hero-card{ max-width:420px; margin-top:20px; }
      nav.primary{ display:none; }
      .menu-toggle{ display:inline-flex; margin-left:auto; }
      .ctas a{ padding:8px 14px; font-size:0.9rem; }
    }

    @media (max-width:480px){
      .hero h2{ font-size:1.55rem; }
      .hero-card{ padding:16px; }
      .chat-bubble{ max-width:95%; font-size:.9rem; }
      .btn{ padding:7px 12px; font-size:.85rem; }
    }
  
/* FAQ chat bubble fade + slide */
.faq-chat {
  opacity: 0 !important;
  transform: translateY(20px) !important;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.faq-chat.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Bigger gradient counters */
.counter {
  font-size: 3rem !important;
  font-weight: 800 !important;
  background: linear-gradient(90deg,#6b3dd6,#9c4df1,#ff6fa3);
  -webkit-background-clip: text;
  color: transparent !important;
}

/* -------------------------
   Professional Footer
   ------------------------- */

.site-footer {
  background: #ffffff;
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 -6px 22px rgba(0,0,0,0.04);
}

.footer-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 14px;
}

.footer-brand p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color .25s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-icons a {
  font-size: 1.4rem;
  color: var(--muted);
  transition: color .25s ease, transform .25s ease;
}

.social-icons a:hover {
  color: var(--accent);
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
  color: var(--muted);
  font-size: 0.9rem;
}

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

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .footer-logo {
    margin: 0 auto;
  }
}




.faq-wrapper {
  margin-top: 20px;
}

.faq-header {
  background: #e8ecf3;
  padding: 16px 20px;
  border-radius: 18px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-toggle-arrow {
  transition: transform 0.3s ease;
}

.faq-wrapper.active .faq-toggle-arrow {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  margin-top: 10px;
}

.faq-wrapper.active .faq-content {
  max-height: 5000px; /* plenty of space */
}

/* Bigger gradient counters */
.counter {
  font-size: 3rem !important;
  font-weight: 800 !important;
  background: linear-gradient(90deg,#6b3dd6,#9c4df1,#ff6fa3);
  -webkit-background-clip: text;
  color: transparent !important;
}

.faq-header span:first-child {
    color: #6a11cb;
    font-weight: 700;
}

/* -----------------------------
   CLIENT LOGO SLIDER SECTION
   ----------------------------- */

.clients-section {
  padding: 60px 0;
  text-align: center;
}

.clients-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #6b3dd6, #ff6fa3);
  -webkit-background-clip: text;
  color: transparent;
}

.clients-slider {
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
  position: relative;
}

.clients-track {
  display: flex;
  gap: 60px;
  animation: scroll 26s linear infinite;
}

.clients-track img {
  height: 50px;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: opacity .3s ease, filter .3s ease, transform .3s ease;
}

.clients-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

/* Infinite loop animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .clients-track {
    gap: 40px;
  }
  .clients-track img {
    height: 38px;
  }
}


/* ============================
   ULTRA-COMPACT MOBILE OPTIMIZATIONS
   ============================ */

/* Global reductions */
@media (max-width: 600px) {
  :root {
    --container: 100%;
    --radius: 10px;
    --shadow-soft: 0 6px 14px rgba(34,40,54,0.04);
  }

  /* Header: make compact */
  header, .topbar {
    padding: 6px 12px !important;
    min-height: 56px !important;
  }
  .site-logo { height: 48px !important; }

  nav.primary { display: none !important; }
  .menu-toggle { display: inline-flex !important; }

  .ctas .btn { padding: 6px 10px !important; font-size: 0.86rem !important; }
  .btn--primary { padding: 8px 12px !important; border-radius: 10px !important; }

  /* Hero: tighter */
  .hero { padding: 18px 10px !important; gap: 18px !important; grid-template-columns: 1fr !important; }
  .hero > div { max-width: 100% !important; }
  #hero-heading { font-size: clamp(1.45rem, 4.2vw, 1.95rem) !important; line-height:1.08 !important; margin-bottom:8px !important; }
  .hero p.lead { font-size: 0.95rem !important; margin-bottom:10px !important; }
  .hero-card { padding:12px !important; border-radius:12px !important; max-width:100% !important; }

  /* Features grid: single column, tighter cards */
  .features-grid { grid-template-columns: 1fr !important; gap:12px !important; padding: 6px 0 !important; }
  .card { padding:12px !important; border-radius:12px !important; }
  .card .icon { height:40px; width:40px; font-size:1.05rem; }

  /* Stats: 2 columns */
  #company-stats .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap:12px !important; }
  .stat-number { font-size:2.2rem !important; }

  /* Testimonials: stack single column with smaller cards */
  .testimonials-grid { grid-template-columns: 1fr !important; gap:14px !important; padding: 8px 0 !important; }
  .testimonial-card { padding:12px !important; border-radius:12px !important; }

  /* FAQ chat bubbles: reduce width and font */
  .faq-chat { max-width: 92% !important; font-size: 0.95rem !important; margin-bottom:10px !important; border-radius:14px !important; padding:12px 14px !important; }

  /* Blog cards: full width images, tighter spacing */
  #blog .card img { width:100% !important; height:auto !important; border-radius:10px !important; }
  #blog .features-grid { gap:12px !important; }

  /* Contact form: single column stacking and larger tap targets */
  #contactForm { grid-template-columns: 1fr !important; gap:12px !important; }
  #contactForm input, #contactForm textarea, #contactForm button { font-size:1rem !important; padding:14px !important; }
  #formSuccess { font-size:1rem !important; padding:12px !important; }

  /* Footer: single column, center aligned */
  .footer-container { grid-template-columns: 1fr !important; gap:18px !important; text-align:center !important; padding:20px !important; }
  .footer-links ul { display:flex; flex-wrap:wrap; justify-content:center; gap:12px; padding:0; }
  .footer-bottom { font-size:0.92rem !important; padding-bottom:18px !important; }

  /* Reduce shadows and animations for perf */
  .hero-animate-target, .card, .testimonial-card { transition: none !important; box-shadow: none !important; }
  .clients-track { gap: 22px !important; }

  /* Floating button adjustments to avoid overlap */
  .floating { right: 12px !important; bottom: 12px !important; padding:8px 10px !important; }

  /* Mobile nav sheet width smaller */
  .mobile-sheet { width: 92% !important; max-width: 360px !important; padding:12px !important; }

  /* Reduce font sizes site-wide slightly */
  body { font-size: 15px !important; }
}

/* Extremely small phones */
@media (max-width: 360px) {
  #hero-heading { font-size: 1.45rem !important; }
  .site-logo { height:44px !important; }
  .ctas .btn { padding:6px 8px !important; font-size:0.82rem !important; }
}