   /* Local Satoshi fallback (if OTF/TTF files present) */
    @font-face {
      font-family: 'Satoshi';
      src: url('Satoshi-Variable.ttf') format('truetype'),
           url('Satoshi-Variable.woff2') format('woff2');
      font-weight: 100 900; font-style: normal; font-display: swap;
    }

    :root {
      --bg: #ffffff;
      --surface: #f7f8fa;
      --surface-2: #eef0f5;
      --border: rgba(0,0,0,0.07);
      --border-strong: rgba(0,0,0,0.12);
      --text: #0a0d14;
      --muted: #6b7280;
      --accent: #3b82f6;
      --accent-dark: #2563eb;
      --accent-light: #eff6ff;
      --yellow: #f5a623;
      --yellow-light: #fff7e6;
      --red: #e53935;
      --red-light: #fef2f2;
      --green: #16a34a;
      --green-light: #f0fdf4;
      --navy: #253CED; /* Updated to lighter blue */
      --font-display: 'Satoshi', 'Helvetica Neue', sans-serif;
      --font-serif: 'Playfair Display', Georgia, serif;
      --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;
      --text-hero: clamp(44px, 7vw, 88px);
      --text-2xl: clamp(32px, 4.5vw, 52px);
      --text-xl: clamp(22px, 3vw, 32px);
      --text-lg: clamp(17px, 2vw, 20px);
      --radius-sm: 10px; --radius: 16px; --radius-lg: 24px; --radius-xl: 32px;
      --nav-h: 68px;
      --shadow: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
      --shadow-lg: 0 20px 60px rgba(0,0,0,0.10), 0 8px 24px rgba(0,0,0,0.06);
      --shadow-phone: 0 40px 100px rgba(59,130,246,0.15), 0 12px 40px rgba(0,0,0,0.10);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
    body { font-family: var(--font-body); background: var(--bg); color: var(--text); overflow-x: hidden; line-height: 1.6; }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* Noise overlay */
    body::after {
      content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.025;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat; background-size: 128px 128px;
    }

    /* Animations */
    @keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
    @keyframes fadeIn { from{opacity:0} to{opacity:1} }
    @keyframes slideDown { from{opacity:0;transform:translateY(-16px)} to{opacity:1;transform:translateY(0)} }
    @keyframes marquee { to{transform:translateX(-50%)} }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
    @keyframes floatLeft { 0%,100%{transform:rotate(-5deg) translateY(30px)} 50%{transform:rotate(-5deg) translateY(20px)} }
    @keyframes floatRight { 0%,100%{transform:rotate(5deg) translateY(30px)} 50%{transform:rotate(5deg) translateY(20px)} }
    @keyframes pulse-ring { 0%{transform:scale(1);opacity:0.5} 100%{transform:scale(1.6);opacity:0} }
    @keyframes notif-in { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }
    @keyframes phoneReveal { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }

    @media (prefers-reduced-motion: no-preference) {
      .stagger > * { opacity:0; animation:fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) forwards; }
      .stagger > *:nth-child(1){animation-delay:0.05s}
      .stagger > *:nth-child(2){animation-delay:0.13s}
      .stagger > *:nth-child(3){animation-delay:0.21s}
      .stagger > *:nth-child(4){animation-delay:0.29s}
      .stagger > *:nth-child(5){animation-delay:0.37s}
      .fade-in { opacity:0; animation:fadeIn 0.9s 0.3s ease forwards; }
      .reveal { opacity:0; transform:translateY(24px); transition:opacity 0.65s ease, transform 0.65s cubic-bezier(0.22,1,0.36,1); }
      .reveal.visible { opacity:1; transform:translateY(0); }
      .phone-center-anim { opacity:0; animation:phoneReveal 0.9s 0.4s cubic-bezier(0.22,1,0.36,1) forwards; }
      .phone-left-anim   { opacity:0; animation:phoneReveal 0.9s 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
      .phone-right-anim  { opacity:0; animation:phoneReveal 0.9s 1.0s cubic-bezier(0.22,1,0.36,1) forwards; }
    }

    /* ═══ NEW PILL NAVBAR ═══ */
 .pill-nav {
  position: fixed;
  top: 24px;
  /* Use left/right 0 and auto margins to perfectly center fixed elements */
  left: 0;
  right: 0;
  margin: 0 auto;
  width: max-content; 
  
  background: #1e1e1e;
  border-radius: 100px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 1000;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25), 0 4px 8px rgba(0,0,0,0.1);
  animation: slideDown 0.55s cubic-bezier(0.22,1,0.36,1) both;
  max-width: 95vw;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}
    .pill-nav::-webkit-scrollbar { display: none; } /* Chrome/Safari */

    .nav-logo-circle {
      width: 46px;
      height: 46px;
      background: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    .nav-logo-circle:hover {
      transform: scale(1.05);
    }
    .nav-logo-circle img {
      width: 20px;
      height: 20px;
      object-fit: contain;
    }
    .nav-logo-fallback {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .nav-menu-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      padding-right: 4px;
    }
    .nav-slider {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      background: #ffffff;
      border-radius: 100px;
      transition: all 0.35s cubic-bezier(0.25, 1, 0.4, 1);
      z-index: 1;
    }
    .nav-item {
      position: relative;
      z-index: 2;
      padding: 12px 20px;
      color: rgba(255, 255, 255, 0.65);
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 500;
      white-space: nowrap;
      transition: color 0.35s ease;
      cursor: pointer;
    }
    .nav-item.active-text {
      color: #1e1e1e;
      font-weight: 600;
    }

    /* Layout */
    .container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
    section { position: relative; }

    /* ═══ HERO ═══ */
    .hero { padding-top: calc(var(--nav-h) + 100px); padding-bottom: 0; text-align: center; overflow: hidden; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--accent); background: var(--accent-light);
      border: 1px solid rgba(59,130,246,0.2); padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
    }
    .hero-badge .dot { width:6px; height:6px; background:var(--accent); border-radius:50%; animation:pulse-ring 1.5s ease infinite; }

    .hero h1 { font-size: var(--text-hero); line-height: 1.04; max-width: 820px; margin: 0 auto 24px; }
    .hero-line-sans {
      display: block; font-family: var(--font-display); font-weight: 800;
      letter-spacing: -2.5px; color: var(--text);
    }
    .hero-line-serif {
      display: block; font-family: var(--font-serif); font-weight: 800;
      font-style: italic; letter-spacing: -1px; color: var(--accent);
    }

    .hero-sub { font-size: var(--text-lg); color: var(--muted); max-width: 480px; margin: 0 auto 36px; line-height: 1.65; }
    .hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }
    .btn-hero {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--text); color: #fff; font-family: var(--font-display);
      font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 100px;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .btn-hero:hover { background: #1c2a4a; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.18); }
    .btn-hero svg { width: 18px; height: 18px; }
    .btn-hero-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--bg); color: var(--text); font-size: 15px; font-weight: 500;
      padding: 14px 28px; border-radius: 100px; border: 1.5px solid var(--border-strong);
      transition: background 0.2s, transform 0.15s;
    }
    .btn-hero-outline:hover { background: var(--surface); transform: translateY(-1px); }

    /* Hero phones */
    .hero-phones {
      display: flex; justify-content: center; align-items: flex-end;
      gap: 16px; position: relative; height: 520px; overflow: visible;
    }
    .phone-wrap {
      position: relative; display: inline-block; flex-shrink: 0;
      transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s, z-index 0s;
      cursor: default;
      opacity: 1; /* Ensured full opacity always */
    }
    .phone-wrap img { border-radius: 34px; box-shadow: var(--shadow-phone); display: block; }
    .phone-wrap.center img { width: 235px; }
    .phone-wrap.center { z-index: 3; }
    .phone-wrap.left  { z-index: 2; }
    .phone-wrap.right { z-index: 2; }
    .phone-wrap.left  img { width: 198px; }
    .phone-wrap.right img { width: 198px; }
    .phone-wrap:hover { transform: translateY(-14px) !important; z-index: 5 !important; }
    
    .phone-float-anim  { animation: float 4.2s ease-in-out infinite; }
    .phone-float-left  { animation: floatLeft 4.8s 0.4s ease-in-out infinite; }
    .phone-float-right { animation: floatRight 4.4s 0.8s ease-in-out infinite; }

    .notif-float { position: absolute; left: -215px; top: 110px; animation: notif-in 0.7s 1.5s both; z-index: 10; transition: all 0.3s; }
    .notif-float.right-notif { left: auto; right: -215px; top: 185px; animation-delay: 2s; }

    /* Trust bar */
    .trust-bar { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; overflow: hidden; }
    .marquee { overflow: hidden; }
    .marquee-track { display: flex; width: max-content; gap: 56px; align-items: center; animation: marquee 28s linear infinite; }
    .trust-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; }
    .trust-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

    /* Section helpers */
    .section-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
    .section-heading { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--text); margin-bottom: 16px; }
    .section-sub { font-size: var(--text-lg); color: var(--muted); max-width: 540px; line-height: 1.6; }
    .section-header { margin-bottom: 56px; }

    /* Bento */
    .bento-section { padding: 100px 0; }
    .bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
    .bento-card {
      background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 28px; position: relative; overflow: hidden;
      transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .bento-card:hover { border-color: rgba(59,130,246,0.25); transform: translateY(-2px); box-shadow: var(--shadow); }
    .bento-card.accent-card { background: var(--navy); border-color: transparent; }
    .bento-card.accent-card .card-title { color: #fff; }
    .bento-card.accent-card .card-desc { color: rgba(255,255,255,0.6); }
    .col-5 { grid-column: span 5; } .col-7 { grid-column: span 7; } .col-12 { grid-column: span 12; }
    .card-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .card-icon img { width: 26px; height: 26px; object-fit: contain; }
    .card-icon.yellow-icon { background: var(--yellow-light); }
    .card-icon.red-icon    { background: var(--red-light); }
    .card-icon.green-icon  { background: var(--green-light); }
    .card-icon.white-icon  { background: rgba(255,255,255,0.1); }
    .card-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
    .card-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; }
    .notif-stack { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
    .notif-pill { background: var(--navy); border-radius: var(--radius-sm); overflow: hidden; }
    .notif-pill img { width: 100%; display: block; }
    .stat-highlight { font-family: var(--font-display); font-size: 54px; font-weight: 800; line-height: 1; letter-spacing: -2px; color: var(--accent); margin-bottom: 8px; }

    /* Night Out */
    .nightout-section { padding: 100px 0; background: var(--navy); overflow: hidden; }
    .nightout-section .section-label { color: var(--yellow); }
    .nightout-section .section-heading { color: #fff; }
    .nightout-section .section-sub { color: rgba(255,255,255,0.6); }
    .nightout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
    .nightout-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 28px; transition: background 0.25s, border-color 0.25s; }
    .nightout-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }
    .nightout-card .card-title { color: #fff; }
    .nightout-card .card-desc { color: rgba(255,255,255,0.55); }
    .nightout-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--yellow); background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }
    .nightout-screen { border-radius: var(--radius); overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,0.5); max-width: 280px; margin: 0 auto; }
    .nightout-screen img { width: 100%; }

    /* SOS */
    .sos-section { padding: 100px 0; background: var(--red-light); overflow: hidden; }
    .sos-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .sos-phone-stack { display: flex; gap: 12px; justify-content: center; }
    .sos-phone-stack img { width: 45%; border-radius: 28px; box-shadow: var(--shadow-lg); }
    .sos-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); background: rgba(229,57,53,0.1); border: 1px solid rgba(229,57,53,0.2); padding: 6px 14px; border-radius: 100px; margin-bottom: 20px; }
    .sos-pulse { width: 10px; height: 10px; background: var(--red); border-radius: 50%; position: relative; display: inline-block; }
    .sos-pulse::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--red); animation: pulse-ring 1.2s ease-out infinite; }

    /* People */
    .people-section { padding: 100px 0; }
    .people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .people-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; aspect-ratio: 3/4; background: var(--surface-2); transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s; }
    .people-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .people-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
    .people-card-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px 20px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.65)); color: #fff; font-family: var(--font-display); font-size: 16px; font-weight: 700; }

    /* Testimonials */
    .testimonials-section { padding: 100px 0; background: var(--surface); }
    .carousel-wrap { position: relative; overflow: hidden; margin-top: 56px; }
    .carousel-track { display: flex; gap: 20px; transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); }
    .testimonial-card { flex: 0 0 calc(33.333% - 14px); background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: border-color 0.25s, transform 0.25s; }
    .testimonial-card:hover { border-color: rgba(59,130,246,0.2); transform: translateY(-2px); }
    .stars { display: flex; gap: 3px; margin-bottom: 16px; }
    .star { color: var(--yellow); font-size: 16px; }
    .testimonial-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar { width: 38px; height: 38px; background: var(--accent-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--accent); flex-shrink: 0; }
    .author-name { font-size: 14px; font-weight: 600; color: var(--text); }
    .author-handle { font-size: 12px; color: var(--muted); }
    .carousel-btns { display: flex; gap: 10px; justify-content: center; margin-top: 32px; }
    .carousel-btn { width: 42px; height: 42px; border-radius: 50%; background: var(--bg); border: 1.5px solid var(--border-strong); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; color: var(--text); }
    .carousel-btn:hover { background: var(--surface-2); }
    .carousel-btn svg { width: 18px; height: 18px; }
    .carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
    .c-dot { width: 6px; height: 6px; border-radius: 3px; background: var(--border-strong); transition: width 0.3s, background 0.3s; cursor: pointer; }
    .c-dot.active { width: 22px; background: var(--accent); }

    /* CTA */
    .cta-section { padding: 100px 0; text-align: center; }
    .cta-inner { background: var(--navy); border-radius: var(--radius-xl); padding: 80px 40px; position: relative; overflow: hidden; border: 1px solid rgba(59,130,246,0.2); box-shadow: 0 40px 80px rgba(0,0,0,0.15); }
    .cta-inner .section-heading { color: #fff; margin-bottom: 16px; }
    .cta-inner .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto 40px; }
    .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--navy); font-family: var(--font-display); font-size: 15px; font-weight: 700; padding: 14px 28px; border-radius: 100px; transition: transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
    .btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08); color: #fff; font-size: 15px; font-weight: 500; padding: 14px 28px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,0.18); transition: background 0.2s, border-color 0.2s; }
    .btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.28); }
    .cta-glow { position: absolute; border-radius: 50%; pointer-events: none; }
    .cta-glow-1 { width: 350px; height: 350px; top: -100px; left: -80px; background: radial-gradient(circle, rgba(59,130,246,0.28) 0%, transparent 70%); }
    .cta-glow-2 { width: 300px; height: 300px; bottom: -80px; right: -60px; background: radial-gradient(circle, rgba(96,165,250,0.22) 0%, transparent 70%); }

    /* Footer */
    footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 32px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
    .footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: #fff; margin-bottom: 12px; }
    .footer-logo img { width: 28px; height: 28px; object-fit: contain; border-radius: 6px; }
    .footer-logo-fallback { width: 28px; height: 28px; background: var(--accent); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
    .footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 240px; }
    .footer-col h4 { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .footer-links a:hover { color: #fff; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
    .footer-socials { display: flex; gap: 10px; }
    .social-btn { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s; color: rgba(255,255,255,0.45); }
    .social-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
    .social-btn svg { width: 16px; height: 16px; }

    /* Links section */
    .links-section { padding: 80px 0; }

    /* Responsive */
    @media (max-width: 900px) {
      .hero-phones { height: 400px; }
      .phone-wrap.left img, .phone-wrap.right img { width: 140px; }
      .phone-wrap.center img { width: 185px; }
      
      /* Scale notifications instead of hiding them */
      .notif-float { transform: scale(0.65); left: -140px; top: 60px; }
      .notif-float.right-notif { left: auto; right: -140px; top: 120px; }
      
      .bento-grid { grid-template-columns: 1fr 1fr; }
      .col-5, .col-7, .col-12 { grid-column: span 2; }
      .sos-inner { grid-template-columns: 1fr; }
      .nightout-grid { grid-template-columns: 1fr; }
      .people-grid { grid-template-columns: 1fr 1fr; }
      .people-card:last-child { display: none; }
      .testimonial-card { flex: 0 0 100%; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      /* Typography tweaks for smaller screens */
      .hero-line-sans { letter-spacing: -1.5px; }
      .hero-phones { height: 340px; }

      /* Make sure all phones are still visible, just smaller */
      .phone-wrap.left img, .phone-wrap.right img { width: 95px; }
      .phone-wrap.center img { width: 145px; }

      /* Scale notifications smaller */
      .notif-float { transform: scale(0.45); left: -75px; top: 30px; }
      .notif-float.right-notif { left: auto; right: -75px; top: 80px; }

      /* Grid adjustments */
      .bento-grid { grid-template-columns: 1fr; }
      .col-5, .col-7, .col-12 { grid-column: span 1; }
      .people-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-inner { padding: 48px 24px; }

      /* ===== Mobile pill nav redesign =====
         - Move nav to bottom for easier thumb access
         - Make items touch-friendly, avoid slider overlay cutting off items
         - Allow horizontal scrolling if needed
      */
      .pill-nav {
        position: fixed;
        top: auto;
        bottom: 18px;
        left: 12px;
        right: 12px;
        margin: 0;
        width: auto;
        padding: 8px 10px;
        gap: 8px;
        border-radius: 14px;
        background: rgba(30,30,30,0.95);
        box-shadow: 0 14px 40px rgba(0,0,0,0.28);
        justify-content: space-between;
        align-items: center;
      }

      /* Hide the logo circle to preserve space on small screens but keep it accessible inside nav */
      .nav-logo-circle { display: none; }

      /* Make the menu wrapper handle overflow and allow touch scrolling */
      .nav-menu-wrapper {
        position: static;
        display: flex;
        gap: 8px;
        align-items: center;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
      }
      .nav-menu-wrapper::-webkit-scrollbar { display: none; }

      /* Disable absolute slider on mobile to avoid visual clipping; rely on color for active state */
      .nav-slider { display: none; }

      /* Touch-friendly nav items */
      .nav-item {
        padding: 10px 12px;
        font-size: 15px;
        color: rgba(255,255,255,0.95);
        min-width: 72px;
        text-align: center;
        border-radius: 10px;
        background: transparent;
        flex: 0 0 auto;
      }
      .nav-item:focus { outline: 2px solid rgba(59,130,246,0.25); }
      .nav-item.active-text {
        background: #ffffff;
        color: #1e1e1e;
        font-weight: 700;
      }

      /* ===== Buttons: avoid squishing, stack actions ===== */
      .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }

      /* Make primary/secondary CTAs full width and larger targets */
      .btn-hero, .btn-hero-outline, .btn-white, .btn-ghost {
        width: 100%;
        padding: 14px 18px;
        font-size: 16px;
        border-radius: 12px;
        justify-content: center;
      }

      /* Ensure other prominent buttons are comfortable to tap */
      .carousel-btn { width: 48px; height: 48px; }

      /* Avoid overflowing images and cards */
      .bento-card { padding: 18px; }
      .card-icon { width: 40px; height: 40px; }

      /* Improve spacing for footer */
      footer { padding: 40px 0 24px; }

      /* Slightly larger tap targets for footer links */
      .footer-links a { padding: 6px 0; display: inline-block; }

      /* Fallback for any remaining fixed elements near top */
      body { padding-bottom: 80px; }

      /* Hide the App Store / Get Started nav item on very small screens to avoid it being cut off */
      .nav-menu-wrapper a.nav-item[href*="apps.apple.com"] {
        display: none;
      }
    }
