/*ALFAONE SYSTEMS*/

/* ── RESET & TOKENS ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
      --primary-color: #ff0000;
      --secondary-color: #000000;
      --light-color: #f2f2f2;
      --dark-color: #1a1a1a;
      --text-color: #e0e0e0;
      --text-light: #a0a0a0;
      --bg:       #0a0a0a;
      --bg2:      #121212;
      --bg3:      #1e1e1e;
      --surface:  #252525;
      --border:   rgba(255,255,255,0.12);
      --cyan:     #ff0000;
      --cyan-dim: rgba(255,0,0,0.15);
      --orange:   #000000;
      --orange-dim: rgba(0,0,0,0.15);
      --white:    #e0e0e0;
      --muted:    #a0a0a0;
      --font-head: 'Inter', sans-serif;
      --font-body: 'Inter', sans-serif;
      --font-mono: 'Space Mono', monospace;
      --radius:   12px;
      --glow-cyan: 0 0 40px rgba(255,0,0,0.18);
      --glow-orange: 0 0 40px rgba(0,0,0,0.18);
    }

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text-color);
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
      cursor: none;
    }

    /* ── CURSOR ─────────────────────────────────────────────── */
    #cursor-dot, #cursor-ring {
      position: fixed; border-radius: 50%;
      pointer-events: none; z-index: 9999;
      transform: translate(-50%,-50%);
      transition: opacity .3s;
    }
    #cursor-dot {
      width: 6px; height: 6px;
      background: var(--cyan);
      box-shadow: 0 0 8px var(--cyan);
    }
    #cursor-ring {
      width: 32px; height: 32px;
      border: 1.5px solid rgba(255,0,0,0.5);
      transition: width .25s, height .25s, border-color .25s;
    }
    body:has(a:hover) #cursor-ring,
    body:has(button:hover) #cursor-ring {
      width: 48px; height: 48px;
      border-color: var(--cyan);
    }

    /* ── NOISE OVERLAY ──────────────────────────────────────── */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 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='1'/%3E%3C/svg%3E");
      opacity: 0.022; pointer-events: none;
    }

    /* ── GRID LINES ─────────────────────────────────────────── */
    body::after {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(255,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,0,0,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    /* ── LAYOUT ─────────────────────────────────────────────── */
    .container {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 2rem;
      position: relative; z-index: 1;
    }
    section { position: relative; }

    /* ── HEADER / NAV ───────────────────────────────────────── */
    header {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.2rem 0;
      transition: background .4s, backdrop-filter .4s, border-color .4s;
    }
    header.scrolled {
      background: rgba(10,10,10,0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    nav {
      display: flex; align-items: center;
      justify-content: space-between;
      max-width: 1240px; margin: 0 auto; padding: 0 2rem;
    }

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-mark {
  display: flex;
  align-items: center;
}

.logo-mark img {
  height: 38px;
  width: auto;
  display: block;
}

.logo-text {
  margin-left: 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 0.3px;
}

.logo-text span {
  color: var(--text-color);
}

    .nav-links {
      display: flex; align-items: center;
      list-style: none; gap: 2.5rem;
    }
    .nav-links a {
      font-family: var(--font-body); font-weight: 500;
      font-size: .875rem; letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--muted); text-decoration: none;
      transition: color .25s;
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute; bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--cyan);
      transition: width .25s;
    }
    .nav-links a:hover { color: var(--text-color); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      background: var(--cyan); color: var(--bg) !important;
      padding: .55rem 1.4rem; border-radius: 6px;
      font-weight: 700 !important; font-size: .8rem !important;
      letter-spacing: .06em;
      transition: box-shadow .25s, transform .2s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover {
      box-shadow: var(--glow-cyan);
      transform: translateY(-1px) !important;
      color: var(--bg) !important;
    }

    /* hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: .5rem;
      background: none; border: none;
    }
    .hamburger span {
      display: block; width: 24px; height: 1.5px;
      background: var(--text-color); transition: .3s;
    }

    /* ── MOBILE NAV ─────────────────────────────────────────── */
    .mobile-nav {
      display: none;
      position: fixed; inset: 0; z-index: 90;
      background: rgba(10,10,10,0.97);
      backdrop-filter: blur(20px);
      flex-direction: column;
      align-items: center; justify-content: center;
      gap: 2rem;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: var(--font-head); font-weight: 700;
      font-size: 2rem; color: var(--text-color);
      text-decoration: none; transition: color .2s;
    }
    .mobile-nav a:hover { color: var(--cyan); }

    /* ── HERO ───────────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: 120px 0 80px;
      overflow: hidden;
    }

    /* ambient blobs */
    .blob {
      position: absolute; border-radius: 50%;
      filter: blur(90px); pointer-events: none;
      animation: float 8s ease-in-out infinite;
    }
    .blob-1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(255,0,0,0.08) 0%, transparent 70%);
      top: -100px; right: -100px;
    }
    .blob-2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(0,0,0,0.07) 0%, transparent 70%);
      bottom: -100px; left: -80px;
      animation-delay: -4s;
    }
    @keyframes float {
      0%,100% { transform: translateY(0) scale(1); }
      50% { transform: translateY(-30px) scale(1.04); }
    }

    .hero-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: center;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      font-family: var(--font-mono); font-size: .72rem;
      color: var(--cyan); border: 1px solid var(--border);
      padding: .4rem 1rem; border-radius: 100px;
      margin-bottom: 1.5rem;
      background: var(--cyan-dim);
      animation: fadeUp .6s ease both;
    }
    .badge-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--cyan);
      animation: pulse 2s ease infinite;
    }
    @keyframes pulse {
      0%,100% { opacity: 1; }
      50% { opacity: .3; }
    }

    .hero-title {
      font-family: var(--font-head); font-weight: 800;
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      line-height: 1.05; letter-spacing: -0.03em;
      animation: fadeUp .7s .1s ease both;
    }
    .hero-title .accent { color: var(--cyan); }
    .hero-title .accent-o { color: var(--orange); }

    .hero-sub {
      font-size: 1.1rem; color: var(--muted);
      max-width: 480px; margin: 1.5rem 0 2.5rem;
      line-height: 1.75;
      animation: fadeUp .7s .2s ease both;
    }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
      animation: fadeUp .7s .3s ease both;
    }

    .btn-primary {
      display: inline-flex; align-items: center; gap: .5rem;
      background: var(--cyan); color: var(--bg);
      font-family: var(--font-head); font-weight: 700;
      font-size: .9rem; letter-spacing: .04em;
      padding: .85rem 2rem; border-radius: 8px;
      text-decoration: none; border: none; cursor: none;
      transition: box-shadow .3s, transform .2s;
    }
    .btn-primary:hover {
      box-shadow: var(--glow-cyan);
      transform: translateY(-2px);
    }
    .btn-outline {
      display: inline-flex; align-items: center; gap: .5rem;
      background: transparent; color: var(--text-color);
      font-family: var(--font-head); font-weight: 600;
      font-size: .9rem; letter-spacing: .04em;
      padding: .85rem 2rem; border-radius: 8px;
      border: 1px solid var(--border);
      text-decoration: none; cursor: none;
      transition: border-color .3s, background .3s;
    }
    .btn-outline:hover {
      border-color: var(--cyan);
      background: var(--cyan-dim);
    }

    .hero-stats {
      display: flex; gap: 2rem;
      margin-top: 3rem;
      animation: fadeUp .7s .45s ease both;
    }
    .stat { display: flex; flex-direction: column; }
    .stat-number {
      font-family: var(--font-head); font-weight: 800;
      font-size: 2rem; color: var(--text-color);
      line-height: 1;
    }
    .stat-label {
      font-size: .78rem; color: var(--muted);
      text-transform: uppercase; letter-spacing: .08em;
      margin-top: .25rem;
    }

    /* hero visual */
    .hero-visual {
      position: relative;
      animation: fadeUp .8s .2s ease both;
    }
    .hero-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
      position: relative;
      overflow: hidden;
    }
    .hero-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(255,0,0,0.05) 0%, transparent 60%);
    }
    .hc-header {
      display: flex; gap: .5rem; margin-bottom: 1.2rem;
    }
    .hc-dot {
      width: 10px; height: 10px; border-radius: 50%;
    }
    .hc-dot:nth-child(1) { background: #ff5f56; }
    .hc-dot:nth-child(2) { background: #ffbd2e; }
    .hc-dot:nth-child(3) { background: #27c93f; }

    .code-line {
      font-family: var(--font-mono); font-size: .8rem;
      line-height: 1.8; color: var(--muted);
    }
    .code-kw { color: #c792ea; }
    .code-fn { color: var(--cyan); }
    .code-str { color: #addb67; }
    .code-num { color: var(--orange); }
    .code-comment { color: #546e7a; }

    .hero-float-badge {
      position: absolute;
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: 10px; padding: .75rem 1rem;
      display: flex; align-items: center; gap: .75rem;
      font-size: .8rem;
      box-shadow: 0 8px 32px rgba(0,0,0,.5);
    }
    .hfb-1 { bottom: -20px; left: -30px; animation: float 7s ease-in-out infinite; }
    .hfb-2 { top: -20px; right: -20px; animation: float 9s ease-in-out infinite reverse; }
    .hfb-icon { font-size: 1.4rem; }
    .hfb-label { font-family: var(--font-mono); color: var(--muted); font-size: .7rem; }
    .hfb-value { font-weight: 600; color: var(--text-color); }

    /* ── SECTION COMMON ─────────────────────────────────────── */
    .section-tag {
      display: inline-flex; align-items: center; gap: .5rem;
      font-family: var(--font-mono); font-size: .72rem;
      color: var(--cyan); letter-spacing: .1em; text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .section-tag::before {
      content: '//'; color: var(--orange);
    }

    .section-title {
      font-family: var(--font-head); font-weight: 800;
      font-size: clamp(2rem, 3.5vw, 3rem);
      letter-spacing: -0.025em; line-height: 1.1;
    }
    .section-sub {
      color: var(--muted); font-size: 1rem;
      max-width: 560px; margin-top: .75rem; line-height: 1.75;
    }

    .section-header { margin-bottom: 4rem; }
    .section-header.center { text-align: center; }
    .section-header.center .section-sub { margin: .75rem auto 0; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
    .reveal.visible { opacity: 1; transform: none; }

    /* ── MARQUEE ────────────────────────────────────────────── */
    .marquee-section {
      padding: 2.5rem 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .marquee-track {
      display: flex; gap: 3rem;
      animation: marquee 28s linear infinite;
      white-space: nowrap;
    }
    .marquee-item {
      font-family: var(--font-head); font-weight: 700;
      font-size: 1rem; letter-spacing: .08em; text-transform: uppercase;
      color: var(--muted); display: flex; align-items: center; gap: 1rem;
      flex-shrink: 0;
    }
    .marquee-item .sep { color: var(--cyan); font-size: 1.2rem; }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── SERVICES ───────────────────────────────────────────── */
    #services { padding: 120px 0; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 2rem;
      position: relative; overflow: hidden;
      transition: border-color .3s, transform .3s;
      cursor: none;
      text-decoration: none; color: inherit;
      display: block;
    }
    .service-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, var(--accent-dim, rgba(255,0,0,0.05)) 0%, transparent 60%);
      opacity: 0; transition: opacity .3s;
    }
    .service-card:hover { border-color: var(--accent, var(--cyan)); transform: translateY(-4px); }
    .service-card:hover::before { opacity: 1; }

    .service-card[data-accent="orange"] { --accent: var(--orange); --accent-dim: var(--orange-dim); }
    .service-card[data-accent="cyan"]   { --accent: var(--cyan);   --accent-dim: var(--cyan-dim); }

    .sc-icon {
      width: 52px; height: 52px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 1.5rem;
      border: 1px solid var(--border);
    }
    .sc-icon.cyan   { background: var(--cyan-dim);   border-color: rgba(255,0,0,0.3); }
    .sc-icon.orange { background: var(--orange-dim); border-color: rgba(0,0,0,0.3); }

    .sc-tag {
      font-family: var(--font-mono); font-size: .68rem;
      color: var(--muted); text-transform: uppercase; letter-spacing: .1em;
      margin-bottom: .6rem;
    }
    .sc-title {
      font-family: var(--font-head); font-weight: 700;
      font-size: 1.25rem; margin-bottom: .75rem;
    }
    .sc-desc { color: var(--muted); font-size: .9rem; line-height: 1.7; }

    .sc-list {
      list-style: none; margin-top: 1.25rem;
      display: flex; flex-direction: column; gap: .5rem;
    }
    .sc-list li {
      font-size: .85rem; color: var(--muted);
      display: flex; align-items: center; gap: .5rem;
    }
    .sc-list li::before {
      content: '→'; color: var(--accent, var(--cyan)); font-size: .8rem;
    }

    .sc-arrow {
      position: absolute; right: 1.5rem; bottom: 1.5rem;
      width: 32px; height: 32px;
      border: 1px solid var(--border); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .8rem; color: var(--muted);
      transition: background .3s, border-color .3s, color .3s;
    }
    .service-card:hover .sc-arrow {
      background: var(--accent, var(--cyan));
      border-color: var(--accent, var(--cyan));
      color: var(--bg);
    }

    /* ── WHY US ─────────────────────────────────────────────── */
    #why { padding: 120px 0; background: var(--bg2); }

    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .why-visual {
      position: relative;
    }
    .why-terminal {
      background: #1e1e1e; border: 1px solid var(--border);
      border-radius: var(--radius); overflow: hidden;
      box-shadow: 0 24px 80px rgba(0,0,0,.5), var(--glow-cyan);
    }
    .wt-bar {
      background: var(--surface); padding: .75rem 1rem;
      display: flex; align-items: center; gap: .75rem;
      border-bottom: 1px solid var(--border);
    }
    .wt-bar-dots { display: flex; gap: .35rem; }
    .wt-bar-dots span {
      width: 10px; height: 10px; border-radius: 50%;
    }
    .wt-bar-dots span:nth-child(1) { background: #ff5f56; }
    .wt-bar-dots span:nth-child(2) { background: #ffbd2e; }
    .wt-bar-dots span:nth-child(3) { background: #27c93f; }
    .wt-bar-title {
      font-family: var(--font-mono); font-size: .72rem;
      color: var(--muted); margin-left: auto; padding-right: 1.5rem;
    }
    .wt-body { padding: 1.5rem; }
    .wt-line {
      font-family: var(--font-mono); font-size: .8rem;
      line-height: 2; display: flex; gap: .5rem;
    }
    .wt-prompt { color: var(--cyan); }
    .wt-cmd   { color: var(--text-color); }
    .wt-out   { color: #addb67; padding-left: 1.2rem; }
    .wt-err   { color: var(--orange); padding-left: 1.2rem; }
    .wt-cursor {
      display: inline-block; width: 8px; height: 1em;
      background: var(--cyan); margin-left: 2px;
      animation: blink 1s step-end infinite;
    }
    @keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

    .why-points {
      display: flex; flex-direction: column; gap: 2rem;
    }
    .why-point {
      display: flex; gap: 1.25rem; align-items: flex-start;
    }
    .wp-num {
      font-family: var(--font-mono); font-size: .72rem;
      color: var(--cyan); background: var(--cyan-dim);
      border: 1px solid rgba(255,0,0,0.25);
      width: 36px; height: 36px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: .1rem;
    }
    .wp-title {
      font-family: var(--font-head); font-weight: 700;
      font-size: 1.1rem; margin-bottom: .35rem;
    }
    .wp-desc { color: var(--muted); font-size: .9rem; line-height: 1.7; }

    /* ── PROCESS ────────────────────────────────────────────── */
    #process { padding: 120px 0; }

    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 2rem; position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute; top: 28px; left: 12%; right: 12%;
      height: 1px; background: var(--border);
    }
    .ps-item { text-align: center; position: relative; }
    .ps-dot {
      width: 56px; height: 56px; border-radius: 50%;
      background: var(--surface); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem; font-size: 1.25rem;
      position: relative; z-index: 1;
      transition: border-color .3s, box-shadow .3s;
    }
    .ps-item:hover .ps-dot {
      border-color: var(--cyan);
      box-shadow: var(--glow-cyan);
    }
    .ps-num {
      position: absolute; top: -6px; right: -6px;
      width: 18px; height: 18px; border-radius: 50%;
      background: var(--cyan); color: var(--bg);
      font-family: var(--font-mono); font-size: .6rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }
    .ps-title {
      font-family: var(--font-head); font-weight: 700;
      font-size: 1rem; margin-bottom: .5rem;
    }
    .ps-desc { color: var(--muted); font-size: .85rem; line-height: 1.65; }

    /* ── TESTIMONIALS ───────────────────────────────────────── */
    #testimonials { padding: 120px 0; background: var(--bg2); }

    .testi-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .testi-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 2rem;
      position: relative; overflow: hidden;
      transition: border-color .3s;
    }
    .testi-card:hover { border-color: rgba(255,0,0,0.3); }
    .testi-quote {
      font-size: 3rem; line-height: 1; color: var(--cyan);
      opacity: .3; font-family: Georgia, serif;
      position: absolute; top: 1.2rem; right: 1.5rem;
    }
    .testi-text {
      color: var(--muted); font-size: .925rem; line-height: 1.75;
      margin-bottom: 1.5rem;
    }
    .testi-author { display: flex; align-items: center; gap: .85rem; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: linear-gradient(135deg, var(--cyan), var(--orange));
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-head); font-weight: 700; font-size: .85rem;
      color: var(--bg);
    }
    .testi-name {
      font-family: var(--font-head); font-weight: 700; font-size: .95rem;
    }
    .testi-role { color: var(--muted); font-size: .78rem; margin-top: .1rem; }

    /* ── CTA SECTION ────────────────────────────────────────── */
    #cta { padding: 120px 0; }
    .cta-inner {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px; padding: 5rem 4rem;
      text-align: center; position: relative; overflow: hidden;
    }
    .cta-inner::before {
      content: '';
      position: absolute; top: -80px; left: 50%;
      transform: translateX(-50%);
      width: 400px; height: 400px; border-radius: 50%;
      background: radial-gradient(circle, rgba(255,0,0,0.1) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-title {
      font-family: var(--font-head); font-weight: 800;
      font-size: clamp(2rem, 3.5vw, 3.2rem);
      letter-spacing: -0.025em; margin-bottom: 1rem;
    }
    .cta-sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 2.5rem; }

    .cta-form {
      display: flex; gap: .75rem; max-width: 480px; margin: 0 auto;
    }
    .cta-input {
      flex: 1;
      background: var(--bg3); border: 1px solid var(--border);
      border-radius: 8px; padding: .85rem 1.2rem;
      color: var(--text-color); font-family: var(--font-body); font-size: .9rem;
      outline: none;
      transition: border-color .25s;
    }
    .cta-input::placeholder { color: var(--muted); }
    .cta-input:focus { border-color: var(--cyan); }
    .cta-btn {
      background: var(--cyan); color: var(--bg);
      border: none; padding: .85rem 1.6rem;
      border-radius: 8px;
      font-family: var(--font-head); font-weight: 700;
      font-size: .85rem; letter-spacing: .04em;
      cursor: none; transition: box-shadow .3s, transform .2s;
      white-space: nowrap;
    }
    .cta-btn:hover { box-shadow: var(--glow-cyan); transform: translateY(-1px); }
    .cta-notice { color: var(--muted); font-size: .78rem; margin-top: 1rem; }

    /* ── FOOTER ─────────────────────────────────────────────── */
    footer {
      padding: 60px 0 30px;
      border-top: 1px solid var(--border);
    }
    .footer-inner {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem; margin-bottom: 4rem;
    }
    .footer-brand .logo { margin-bottom: 1rem; }
    .footer-brand p { color: var(--muted); font-size: .9rem; line-height: 1.75; max-width: 280px; }

    .footer-col h4 {
      font-family: var(--font-head); font-weight: 700;
      font-size: .85rem; letter-spacing: .08em; text-transform: uppercase;
      color: var(--text-color); margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
    .footer-col a {
      color: var(--muted); font-size: .88rem;
      text-decoration: none; transition: color .25s;
    }
    .footer-col a:hover { color: var(--cyan); }

    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1px solid var(--border); padding-top: 2rem;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { color: var(--muted); font-size: .82rem; }
    .footer-socials { display: flex; gap: 1rem; }
    .social-icon {
      width: 36px; height: 36px; border-radius: 8px;
      border: 1px solid var(--border); background: var(--surface);
      display: flex; align-items: center; justify-content: center;
      color: var(--muted); text-decoration: none; font-size: .9rem;
      transition: border-color .25s, color .25s;
    }
    .social-icon:hover { border-color: var(--cyan); color: var(--cyan); }

    /* ── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .why-grid { grid-template-columns: 1fr; }
      .why-visual { display: none; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .process-steps::before { display: none; }
      .testi-grid { grid-template-columns: 1fr; }
      .cta-form { flex-direction: column; }
      .cta-inner { padding: 3rem 1.5rem; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
      .hero-stats { gap: 1.5rem; }
    }
    @media (max-width: 500px) {
      .process-steps { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
    }

    /* ── SCROLL INDICATOR ───────────────────────────────────── */
    .scroll-line {
      position: absolute; bottom: 2.5rem; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
    }
    .scroll-line span {
      font-family: var(--font-mono); font-size: .65rem;
      color: var(--muted); letter-spacing: .12em; text-transform: uppercase;
    }
    .scroll-bar {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, var(--cyan), transparent);
      animation: scrollDrop 1.5s ease-in-out infinite;
    }
    @keyframes scrollDrop {
      0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
      50% { opacity: 1; transform: scaleY(1); }
      100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}