 :root {
    --black: #080c10;
    --dark: #0e1318;
    --panel: #131a22;
    --border: #1e2d3d;
    --accent: #00d4ff;
    --accent2: #0066ff;
    --text: #e8edf2;
    --muted: #6a7f94;
    --white: #ffffff;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NOISE OVERLAY ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.4;
  }

  /* ── GRID PATTERN ── */
  .grid-bg {
    position: fixed;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 5%;
    background: rgba(8,12,16,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: -0.02em;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .location-link-cont-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--muted);
  }

  .span-location-txt{
    background: var(--accent);
    color: var(--black) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: opacity 0.2s !important;
  }

  .span-location-txt:hover { opacity: 0.85; color: var(--black) !important; }

  .logo span {
    color: var(--accent);
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--text); }

  .nav-cta {
    background: var(--accent);
    color: var(--black) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 600 !important;
    transition: opacity 0.2s !important;
  }

  .nav-cta:hover { opacity: 0.85; color: var(--black) !important; }

  .hamburger { display: none; }

  /* ── HERO ── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 5% 4rem;
    overflow: hidden;
  }

  .hero-glow {
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,102,255,0.12) 0%, transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
  }

  .hero-glow2 {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
    bottom: -100px; left: -100px;
    pointer-events: none;
  }

  .hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.375rem 0.875rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }

  h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  h1 em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1px var(--accent);
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-desc {
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 30px rgba(0,212,255,0.2);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0,212,255,0.35);
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
  }

  .btn-ghost:hover { color: var(--text); }

  .btn-ghost svg { transition: transform 0.2s; }
  .btn-ghost:hover svg { transform: translateX(3px); }

  /* ── HERO VISUAL ── */
  .hero-visual {
    position: relative;
    animation: fadeUp 0.8s 0.2s ease both;
  }

  .terminal {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,212,255,0.05);
  }

  .terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid var(--border);
  }

  .dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-r { background: #ff5f57; }
  .dot-y { background: #ffbd2e; }
  .dot-g { background: #28ca42; }

  .terminal-title {
    font-size: 0.75rem;
    color: var(--muted);
    margin-left: 0.5rem;
    font-family: 'DM Sans', sans-serif;
  }

  .terminal-body {
    padding: 1.5rem;
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    line-height: 1.9;
  }

  .line { display: flex; gap: 0.5rem; opacity: 0; animation: lineIn 0.3s ease forwards; }
  .line:nth-child(1) { animation-delay: 0.8s; }
  .line:nth-child(2) { animation-delay: 1.1s; }
  .line:nth-child(3) { animation-delay: 1.4s; }
  .line:nth-child(4) { animation-delay: 1.7s; }
  .line:nth-child(5) { animation-delay: 2.0s; }
  .line:nth-child(6) { animation-delay: 2.3s; }
  .line:nth-child(7) { animation-delay: 2.6s; }
  .line:nth-child(8) { animation-delay: 2.9s; }

  @keyframes lineIn {
    from { opacity: 0; transform: translateX(-4px); }
    to { opacity: 1; transform: none; }
  }

  .prompt { color: var(--accent2); }
  .cmd { color: var(--white); }
  .out { color: #4ade80; }
  .out-m { color: var(--muted); }
  .out-a { color: var(--accent); }

  .cursor {
    display: inline-block;
    width: 8px; height: 14px;
    background: var(--accent);
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 2px;
  }

  @keyframes blink { 0%,49% { opacity:1; } 50%,100% { opacity:0; } }

  /* Floating stats cards */
  .stat-card {
    position: absolute;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    min-width: 140px;
  }

  .stat-card.c1 { bottom: -20px; left: -40px; animation: float 4s ease-in-out infinite; }
  .stat-card.c2 { top: -20px; right: -30px; animation: float 4s 1s ease-in-out infinite; }

  .stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
  }

  .stat-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
  }

  /* ── LOGOS ── */
  .logos-strip {
    position: relative;
    z-index: 1;
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5%;
    display: flex;
    align-items: center;
    gap: 3rem;
    overflow: hidden;
  }

  .logos-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
  }

  .logos-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    animation: marquee 20s linear infinite;
  }

  .logo-item {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--border);
    white-space: nowrap;
    letter-spacing: 0.05em;
    transition: color 0.2s;
  }

  .logo-item:hover { color: var(--muted); }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── SECTIONS ── */
  section { position: relative; z-index: 1; }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
  }

  .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .section-sub {
    color: var(--muted);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 520px;
  }

  /* ── SERVICES ── */
  #services {
    padding: 7rem 0;
  }

  .services-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 4rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
  }

  .service-card {
    background: var(--dark);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    cursor: default;
  }

  .service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s;
  }

  .service-card:hover { background: var(--panel); }
  .service-card:hover::after { opacity: 1; }

  .service-icon {
    width: 44px; height: 44px;
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
  }

  .service-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
  }

  .service-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }

  .service-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    color: var(--border);
    transition: color 0.3s, transform 0.3s;
    font-size: 1rem;
  }

  .service-card:hover .service-arrow {
    color: var(--accent);
    transform: translate(2px, -2px);
  }

  /* ── SERVICES SWIPER (mobile) ── */
  .services-swiper-wrap {
    display: none;
    flex-direction: column;
    gap: 1.25rem;
  }

  .swiper-viewport {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border);
  }

  .swiper-track {
    display: flex;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }

  .swiper-track .service-card {
    flex: 0 0 100%;
    width: 100%;
    border-radius: 0;
    border: none;
    min-height: 220px;
  }

  .swiper-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.25rem;
  }

  .swiper-dots {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .swiper-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.2s, transform 0.2s;
    cursor: pointer;
  }

  .swiper-dot.active {
    background: var(--accent);
    transform: scale(1.4);
  }

  .swiper-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--dark);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  .swiper-btn:hover, .swiper-btn:active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0,212,255,0.06);
  }

  .swiper-btn:disabled {
    opacity: 0.3;
    cursor: default;
  }

  .swiper-counter {
    font-size: 0.75rem;
    color: var(--muted);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
  }

  .swiper-counter span { color: var(--accent); }

  @media (max-width: 768px) {
    .services-grid { display: none; }
    .services-swiper-wrap { display: flex; }
    .services-head {
      grid-template-columns: 1fr;
    }
  }

  /* ── PROCESS ── */
  #process {
    padding: 7rem 0;
    background: var(--panel);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .process-head {
    text-align: center;
    margin-bottom: 4rem;
  }

  .process-head .section-sub {
    margin: 0 auto;
    text-align: center;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, var(--border), var(--accent), var(--border));
  }

  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
  }

  .step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--dark);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: background 0.3s, border-color 0.3s;
  }

  .step:hover .step-num {
    background: rgba(0,212,255,0.1);
    border-color: var(--accent);
  }

  .step-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.5rem;
  }

  .step-desc {
    font-size: 0.825rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── STATS ── */
  #stats {
    padding: 6rem 0;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 5rem;
  }

  .stat-box {
    background: var(--dark);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: background 0.3s;
  }

  .stat-box:hover { background: var(--panel); }

  .stat-big {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .stat-big span { color: var(--accent); }

  .stat-info {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
  }

  /* ── TESTIMONIAL ── */
  .testimonial-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .testimonial-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
  }

  .testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: rgba(0,212,255,0.08);
    font-family: Georgia, serif;
    line-height: 1;
  }

  .testimonial-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .author-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--white);
    flex-shrink: 0;
  }

  .author-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
  }

  .author-role {
    font-size: 0.75rem;
    color: var(--muted);
  }

  /* ── CTA ── */
  #cta {
    padding: 7rem 0;
    background: var(--panel);
    border-top: 1px solid var(--border);
  }

  .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
  }

  .cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 0.75rem;
  }

  .cta-sub {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
  }

  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
  }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--border);
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
  }

  .btn-outline:hover {
    border-color: var(--muted);
    color: var(--text);
  }

  /* ── FOOTER ── */
  footer {
    position: relative;
    z-index: 1;
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 2.5rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
  }

  .footer-logo span { color: var(--accent); }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--text); }

  .footer-copy {
    font-size: 0.75rem;
    color: var(--muted);
  }

  /* ════════════════════════════════════════
     RESPONSIVE — TABLET  (≤ 1024px)
  ════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .hero-inner {
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
    }

    .stat-card.c1 { left: -10px; }
    .stat-card.c2 { right: -10px; }

    .steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem 2rem;
    }

    .steps::before { display: none; }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .cta-actions {
      align-items: center;
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
    }
  }

  /* ════════════════════════════════════════
     RESPONSIVE — MOBILE  (≤ 768px)
  ════════════════════════════════════════ */
  @media (max-width: 768px) {

    /* NAV — hamburger menu */
    nav {
      padding: 1rem 5%;
    }

    .hamburger { display: flex; }

    .nav-links {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(8,12,16,0.97);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2.5rem;
      z-index: 200;
    }

    .nav-links.open { display: flex; }

    .list-process-hidden{
      display: none;
    }

    .nav-links a {
      font-size: 1.25rem;
      color: var(--text);
    }

    .nav-links .nav-cta {
      font-size: 1rem !important;
      padding: 0.75rem 2rem;
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      z-index: 300;
      background: none;
      border: none;
      padding: 4px;
      -webkit-tap-highlight-color: transparent;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* HERO — stack vertically */
    .hero {
      padding: 6rem 5% 3rem;
      min-height: auto;
    }

    .hero-inner {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .hero-visual {
      margin: 0 auto;
      width: 100%;
      max-width: 420px;
    }

    .stat-card.c1,
    .stat-card.c2 {
      display: none;
    }

    .hero-actions {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.875rem;
    }

    .btn-primary {
      width: 100%;
      justify-content: center;
    }

    /* SERVICES */
    #services { padding: 4rem 0; }

    .services-head {
      grid-template-columns: 1fr;
      margin-bottom: 2rem;
    }

    .services-grid { display: none; }
    .services-swiper-wrap { display: flex; }

    /* PROCESS */
    #process { padding: 4rem 0; }

    .steps {
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .steps::before { display: none; }

    .step {
      flex-direction: row;
      text-align: left;
      align-items: flex-start;
      gap: 1.25rem;
      padding: 0;
    }

    .step-num {
      flex-shrink: 0;
      margin-bottom: 0;
    }

    /* STATS */
    #stats { padding: 4rem 0; }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      margin-bottom: 2.5rem;
    }

    .stat-box {
      padding: 1.75rem 1rem;
    }

    .testimonial-block {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }

    /* CTA */
    #cta { padding: 4rem 0; }

    .cta-inner {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .cta-actions {
      align-items: center;
      flex-direction: column;
      width: 100%;
    }

    .cta-actions .btn-primary {
      width: 100%;
      justify-content: center;
      font-size: 0.95rem;
      padding: 0.875rem 1.5rem;
    }

    .btn-outline {
      width: 100%;
      justify-content: center;
    }

    /* FOOTER */
    footer {
      flex-direction: column;
      gap: 1.5rem;
      /*text-align: center;*/
      padding: 2rem 5%;
    }

    .footer-links {
      gap: 1.25rem;
      flex-wrap: wrap;
      justify-content: center;
    }
  }

  /* ════════════════════════════════════════
     RESPONSIVE — SMALL MOBILE  (≤ 480px)
  ════════════════════════════════════════ */
  @media (max-width: 480px) {
    .hero { padding: 5.5rem 5% 2.5rem; }

    .terminal-body {
      font-size: 0.72rem;
      padding: 1rem;
    }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .stat-box { padding: 1.5rem 0.75rem; }

    .logos-strip { gap: 1.5rem; padding: 1.25rem 4%; }
    .logos-label { display: none; }

    .section-inner { padding: 0 4%; }

    .cta-title br { display: none; }

    #process .section-inner { padding: 0 4%; }
  }