  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #191127;
    --surface: #23133a;
    --surface2: #1f1232;
    --border: #3a1c63;
    --cyan: #883CF0;
    --cyan2: #7c6bff;
    --gold: #af62c8;
    --red: #ff3c5a;
    --text: #e8f0ff;
    --muted: #d6d6d6;
    --font-display: 'Syne', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --font-body: 'Outfit', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
  }

  /* CUSTOM CURSOR */
  #cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: transform 0.08s, width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: screen;
  }
  #cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border: 1.5px solid var(--cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: transform 0.18s ease, width 0.2s, height 0.2s, opacity 0.2s;
    opacity: 0.5;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 3rem;
    background: #180f26;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-weight: 800; font-size: 1.15rem;
    letter-spacing: 0.08em;
    color: var(--cyan);
    display: flex; align-items: center; gap: 0.6rem;
  }
  .nav-logo span { color: var(--text); }
  .logo-key {
    width: 28px; height: 28px;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--cyan), #9500ff);
    border-radius: 6px;
    font-size: 0.9rem;
  }
  .nav-links { display: flex; gap: 2.5rem; }
  .nav-links a {
    font-family: var(--font-mono);
    font-size: 0.72rem; letter-spacing: 0.12em;
    color: var(--muted); text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px; background: var(--cyan);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--cyan); }
  .nav-links a:hover::after { width: 100%; }
  .nav-cta {
    font-family: var(--font-mono);
    font-size: 0.72rem; letter-spacing: 0.1em;
    padding: 0.55rem 1.4rem;
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
  }
  .nav-cta:hover { background: var(--cyan); color: #000; }

  /* HERO */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    padding: 8rem 3rem 4rem;
    overflow: hidden;
  }

  /* Grid background */
  .grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(187, 0, 255, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(162, 0, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgb(0, 0, 0) 40%, transparent 100%);
  }

  /* Glow orbs */
  .orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); pointer-events: none;
  }
  .orb1 { width: 500px; height: 500px; background: rgba(153, 0, 255, 0.18); top: -100px; right: -100px; animation: drift1 12s ease-in-out infinite alternate; }
  .orb2 { width: 350px; height: 350px; background: rgba(166, 0, 255, 0.12); bottom: 0; left: 10%; animation: drift2 9s ease-in-out infinite alternate; }
  .orb3 { width: 200px; height: 200px; background: rgba(202, 64, 240, 0.08); top: 40%; left: 40%; animation: drift3 15s ease-in-out infinite alternate; }
  @keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(-30px, 40px); } }
  @keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(40px,-30px); } }
  @keyframes drift3 { from { transform: translate(0,0); } to { transform: translate(-20px,30px); } }

  .hero-content { position: relative; max-width: 680px; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-mono); font-size: 0.68rem;
    color: var(--cyan); letter-spacing: 0.15em; text-transform: uppercase;
    border: 1px solid #3a1c63;
    padding: 0.3rem 0.9rem; border-radius: 2px;
    margin-bottom: 1.8rem;
    animation: fadeUp 0.8s ease both;
  }
  .hero-tag::before { content: '●'; animation: blink 1.5s infinite; }
  @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

  h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800; line-height: 1.0;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s 0.1s ease both;
  }
  h1 .accent { color: var(--cyan); display: inline-block; position: relative; }
  h1 .accent::after {
    content: '';
    position: absolute; bottom: 4px; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--cyan), transparent);
  }
  .hero-sub {
    margin-top: 1.5rem;
    font-size: 1.05rem; color: var(--muted); line-height: 1.7;
    max-width: 480px;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-actions {
    margin-top: 2.5rem; display: flex; gap: 1.2rem; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: var(--cyan);
    color: #000; font-family: var(--font-mono);
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    border: none; border-radius: 3px;
    text-decoration: none; font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: none;
  }
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px #be52e50f;
  }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--text); font-family: var(--font-mono);
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    border: 1px solid #5e309d;
    border-radius: 3px; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    cursor: none;
  }
  .btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

  /* Floating terminal */
  .hero-terminal {
    position: absolute; right: 3rem; top: 50%;
    transform: translateY(-50%);
    width: 360px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px #be52e50f;
    animation: fadeLeft 0.9s 0.4s ease both;
  }
  @keyframes fadeLeft { from { opacity:0; transform: translateY(-50%) translateX(40px); } to { opacity:1; transform: translateY(-50%) translateX(0); } }
  .terminal-bar {
    background: var(--surface2); padding: 0.75rem 1rem;
    display: flex; align-items: center; gap: 0.5rem;
    border-bottom: 1px solid var(--border);
  }
  .t-dot { width: 10px; height: 10px; border-radius: 50%; }
  .t-dot:nth-child(1) { background: #ff5f56; }
  .t-dot:nth-child(2) { background: #ffbd2e; }
  .t-dot:nth-child(3) { background: #27c93f; }
  .t-title {
    margin-left: auto; font-family: var(--font-mono); font-size: 0.65rem;
    color: var(--muted); letter-spacing: 0.1em;
  }
  .terminal-body { padding: 1.2rem; font-family: var(--font-mono); font-size: 0.72rem; line-height: 1.8; }
  .t-line { display: flex; gap: 0.6rem; }
  .t-prompt { color: var(--cyan); }
  .t-cmd { color: var(--text); }
  .t-out { color: #27c93f; }
  .t-warn { color: var(--gold); }
  .t-err { color: var(--red); }
  .t-muted { color: var(--muted); }
  .t-cursor { display: inline-block; width: 7px; height: 13px; background: var(--cyan); vertical-align: middle; animation: blink 1s infinite; }

  @keyframes fadeUp { from { opacity:0; transform: translateY(24px); } to { opacity:1; transform: translateY(0); } }

  /* STATS STRIP */
  .stats-strip {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: center;
    overflow: hidden;
  }
  .stats-inner {
    display: flex; width: 100%; max-width: 1100px;
    padding: 2rem 3rem;
  }
  .stat-item {
    flex: 1; text-align: center; padding: 0 1rem;
    border-right: 1px solid var(--border);
    position: relative;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 2.8rem; font-weight: 800;
    color: var(--cyan); line-height: 1;
    display: block;
  }
  .stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--muted);
    margin-top: 0.4rem; display: block;
  }

  /* SECTIONS */
  section { padding: 6rem 3rem; max-width: 1200px; margin: 0 auto; }
  .section-tag {
    font-family: var(--font-mono); font-size: 0.68rem;
    color: var(--cyan); letter-spacing: 0.18em;
    text-transform: uppercase; margin-bottom: 0.8rem;
    display: block;
  }
  .section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; line-height: 1.1; margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
  }
  .section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 540px; }

  /* SERVICES */
  #services { max-width: 1200px; }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
  .service-card {
    background: var(--surface);
    padding: 2.4rem 2rem;
    position: relative; overflow: hidden;
    transition: background 0.3s;
  }
  .service-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #cb56f90a 0%, transparent 60%);
    opacity: 0; transition: opacity 0.3s;
  }
  .service-card:hover { background: var(--surface2); }
  .service-card:hover::before { opacity: 1; }
  .service-icon {
    width: 52px; height: 52px;
    background: #1f1232;
    border: 1px solid #5e309d;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1.5rem;
    transition: background 0.3s, transform 0.3s;
  }
  .service-card:hover .service-icon {
    background: #2a1647;
    transform: scale(1.08);
  }
  .service-num {
    position: absolute; top: 1.5rem; right: 1.8rem;
    font-family: var(--font-mono); font-size: 0.6rem;
    color: rgba(247, 251, 252, 0.515); letter-spacing: 0.1em;
  }
  .service-card h3 {
    font-family: var(--font-display); font-size: 1.15rem;
    font-weight: 700; margin-bottom: 0.7rem; letter-spacing: -0.01em;
  }
  .service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
  .service-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 1.4rem; font-family: var(--font-mono);
    font-size: 0.68rem; color: var(--cyan); letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 0.8rem; }

  /* INTERACTIVE SECURITY DIAL */
  #security-check {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 3rem;
    margin: 0 3rem 4rem;
    max-width: 1140px;
    margin-left: auto; margin-right: auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  }
  .dial-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
  .dial-container { position: relative; width: 240px; height: 240px; }
  .dial-svg { width: 100%; height: 100%; }
  .dial-score {
    position: absolute; inset: 0;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
  }
  .dial-num {
    font-family: var(--font-display); font-size: 3.2rem; font-weight: 800;
    color: var(--cyan); line-height: 1; transition: all 0.5s;
  }
  .dial-label {
    font-family: var(--font-mono); font-size: 0.6rem;
    color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase;
  }

  .checks-list { display: flex; flex-direction: column; gap: 0.8rem; }
  .check-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 0.9rem 1.2rem;
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 8px; cursor: none;
    transition: border-color 0.2s, background 0.2s;
    user-select: none;
  }
  .check-item.active { border-color: #60c090; background: #77b25520; }
  .check-item.fail { border-color: #ff3c5a66; background: #ff3c5a0a; }
  .check-box {
    width: 22px; height: 22px; border-radius: 5px;
    border: 1.5px solid var(--muted); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem; transition: all 0.2s;
    cursor: none;
  }
  .check-item.active .check-box { background: var(--cyan); border-color: var(--cyan); color: #000; }
  .check-item.fail .check-box { background: var(--red); border-color: var(--red); color: #fff; }
  .check-text { flex: 1; font-size: 0.88rem; }
  .check-text strong { display: block; margin-bottom: 0.1rem; font-weight: 600; }
  .check-text span { font-size: 0.75rem; color: var(--muted); }
  .check-badge {
    font-family: var(--font-mono); font-size: 0.6rem;
    padding: 0.2rem 0.6rem; border-radius: 3px;
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .badge-ok { background: rgba(39,201,63,0.15); color: #27c93f; }
  .badge-warn { background: #cb56f90a; color: var(--gold); }
  .badge-fail { background: rgba(255,60,90,0.15); color: var(--red); }
  .run-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--cyan), #a600ff);
    border: none; border-radius: 6px;
    color: #000; font-family: var(--font-mono); font-size: 0.75rem;
    font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
    cursor: none; transition: transform 0.2s, box-shadow 0.2s;
  }
  .run-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(174, 0, 255, 0.3); }

  /* TEAM */
  #team { padding: 6rem 3rem; }
  .team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; max-width: 700px; margin: 3rem auto 0; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
  .team-card {
    background: var(--surface); padding: 2.5rem 2rem;
    display: flex; align-items: center; gap: 1.5rem;
    transition: background 0.3s;
  }
  .team-card:hover { background: var(--surface2); }
  .avatar {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, #9d00ff, var(--cyan));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
    color: #000; flex-shrink: 0;
    position: relative;
  }
  .avatar::after {
    content: ''; position: absolute; inset: -3px;
    border-radius: 50%; border: 1px solid #3a1c63;
  }
  .team-info h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
  .team-info p { font-size: 0.78rem; color: var(--cyan); font-family: var(--font-mono); margin-top: 0.3rem; letter-spacing: 0.06em; }

  /* PRICING */
  #pricing { text-align: center; padding: 6rem 3rem; }
  .pricing-toggle {
    display: inline-flex; align-items: center; gap: 0; margin: 2.5rem auto;
    background: var(--surface); border: 1px solid var(--border); border-radius: 6px; overflow: hidden;
  }
  .toggle-btn {
    padding: 0.6rem 1.6rem; font-family: var(--font-mono);
    font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase;
    background: transparent; border: none; color: var(--muted);
    cursor: none; transition: all 0.2s;
  }
  .toggle-btn.active { background: var(--cyan); color: #000; font-weight: 700; }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5px; max-width: 900px; margin: 0 auto;
    background: var(--border); border: 1px solid var(--border);
    border-radius: 12px; overflow: hidden; text-align: left;
  }
  .price-card {
    background: var(--surface); padding: 2.5rem 2rem;
    position: relative; transition: background 0.3s;
  }
  .price-card.featured { background: var(--surface2); }
  .price-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute; top: 0; left: 0; right: 0;
    background: linear-gradient(90deg, var(--cyan), #a600ff);
    text-align: center; font-family: var(--font-mono);
    font-size: 0.6rem; letter-spacing: 0.2em; color: #000; font-weight: 700;
    padding: 0.35rem;
  }
  .price-card.featured { padding-top: 3.5rem; }
  .plan-name {
    font-family: var(--font-mono); font-size: 0.65rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--muted); margin-bottom: 0.5rem;
  }
  .plan-tier {
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
    margin-bottom: 1.5rem;
  }
  .plan-price {
    display: flex; align-items: baseline; gap: 0.2rem;
    margin-bottom: 0.4rem;
  }
  .price-currency { font-family: var(--font-mono); font-size: 1rem; color: var(--muted); }
  .price-amount {
    font-family: var(--font-display); font-size: 3rem; font-weight: 800;
    color: var(--text); transition: all 0.3s;
  }
  .price-period { font-size: 0.8rem; color: var(--muted); font-family: var(--font-mono); }
  .price-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.8rem; line-height: 1.6; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
  .price-features li {
    font-size: 0.84rem; display: flex; align-items: center; gap: 0.6rem;
  }
  .price-features li::before { content: '→'; color: var(--cyan); font-family: var(--font-mono); font-size: 0.8rem; }
  .price-btn {
    width: 100%; padding: 0.75rem;
    background: transparent; border: 1px solid var(--border);
    color: var(--text); font-family: var(--font-mono);
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    border-radius: 4px; cursor: none; transition: all 0.2s;
  }
  .price-btn:hover, .price-card.featured .price-btn {
    background: var(--cyan); border-color: var(--cyan); color: #000; font-weight: 700;
  }

  /* FAQ */
  #faq { padding: 6rem 3rem; max-width: 800px; }
  .faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
  .faq-item { background: var(--surface); }
  .faq-q {
    width: 100%; padding: 1.3rem 1.8rem;
    background: transparent; border: none; color: var(--text);
    font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
    text-align: left; cursor: none;
    display: flex; justify-content: space-between; align-items: center;
    transition: background 0.2s;
  }
  .faq-q:hover { background: var(--surface2); }
  .faq-icon {
    width: 24px; height: 24px; border: 1px solid var(--border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: var(--cyan); flex-shrink: 0;
    transition: transform 0.3s, background 0.2s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--cyan); color: #000; }
  .faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .faq-item.open .faq-a { max-height: 200px; }
  .faq-a-inner {
    padding: 0 1.8rem 1.5rem;
    font-size: 0.88rem; color: var(--muted); line-height: 1.75;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
  }

  /* CTA BANNER */
  .cta-banner {
    margin: 0 3rem 6rem;
    max-width: 1140px; margin-left: auto; margin-right: auto;
    background: linear-gradient(135deg, var(--surface2) 0%, rgba(78, 0, 120, 0.4) 100%);
    border: 1px solid #3a1c63;
    border-radius: 16px; padding: 4rem;
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 280px; height: 280px; border-radius: 50%;
    background: radial-gradient(circle, rgba(174, 0, 255, 0.12), transparent 70%);
    pointer-events: none;
  }
  .cta-text h2 {
    font-family: var(--font-display); font-size: 2rem; font-weight: 800;
    letter-spacing: -0.01em; margin-bottom: 0.5rem;
  }
  .cta-text p { color: var(--muted); font-size: 0.95rem; }
  .cta-actions { display: flex; gap: 1rem; flex-shrink: 0; }

  /* FOOTER */
  footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 3rem;
  }
  .footer-inner {
    max-width: 1140px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-copy {
    font-family: var(--font-mono); font-size: 0.65rem;
    color: var(--muted); letter-spacing: 0.1em;
  }
  .footer-links { display: flex; gap: 2rem; }
  .footer-links a {
    font-family: var(--font-mono); font-size: 0.65rem;
    color: var(--muted); text-decoration: none; letter-spacing: 0.1em;
    text-transform: uppercase; transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--cyan); }

  /* SCROLL ANIMATIONS */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .hero-terminal { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    #security-check { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 640px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    h1 { font-size: 2.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    section, #hero { padding-left: 1.5rem; padding-right: 1.5rem; }
    .stats-inner { flex-direction: column; gap: 1.5rem; }
    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 0.5rem 0; }
    .stat-item:last-child { border-bottom: none; }
  }