    /* =============================================
       RESET & VARIABLES
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary:        #2563EB;
      --primary-dark:   #1D4ED8;
      --secondary:      #7C3AED;
      --accent:         #06B6D4;
      --green:          #16A34A;
      --dark:           #F8FAFC;
      --dark-2:         #FFFFFF;
      --dark-3:         #EEF2FF;
      --dark-card:      #FFFFFF;
      --dark-section:   #0F172A;
      --text:           #111827;
      --text-secondary: #475569;
      --text-muted:     #64748B;
      --white:          #ffffff;
      --gradient:       linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
      --gradient-r:     linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
      --border:         #E5E7EB;
      --border-soft:    #E5E7EB;
      --shadow-glow:    0 18px 48px rgba(15,23,42,0.08);
      --shadow-soft:    0 18px 45px rgba(15,23,42,0.08);
      --radius:         18px;
      --radius-sm:      10px;
      --ease:           all 0.3s cubic-bezier(0.4,0,0.2,1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--dark);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Scrollbar */
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--dark); }
    ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

    /* =============================================
       UTILITIES
    ============================================= */
    .container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

    .gradient-text {
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-tag {
      display: inline-block;
      background: rgba(37,99,235,0.08);
      border: 1px solid rgba(37,99,235,0.16);
      color: var(--primary);
      padding: 0.3rem 0.9rem;
      border-radius: 50px;
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      margin-bottom: 1rem;
    }

    .section-header { text-align: center; margin-bottom: 3.5rem; }

    .section-title {
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -1px;
      line-height: 1.18;
      margin-bottom: 1rem;
    }

    .section-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 580px;
      margin: 0 auto;
      line-height: 1.75;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--gradient);
      color: var(--white);
      padding: 0.85rem 1.9rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.97rem;
      text-decoration: none;
      border: none;
      cursor: pointer;
      font-family: inherit;
      transition: var(--ease);
      box-shadow: 0 12px 28px rgba(37,99,235,0.18);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(37,99,235,0.24); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--white);
      color: var(--primary);
      padding: 0.85rem 1.9rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.97rem;
      text-decoration: none;
      border: 1px solid var(--border);
      cursor: pointer;
      font-family: inherit;
      transition: var(--ease);
    }
    .btn-ghost:hover { border-color: rgba(37,99,235,0.28); background: rgba(37,99,235,0.06); transform: translateY(-3px); }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
      outline: 3px solid rgba(37,99,235,0.55);
      outline-offset: 3px;
    }

    /* Scroll-reveal */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* =============================================
       NAVBAR
    ============================================= */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
      padding: 0.9rem 0;
      transition: var(--ease);
    }
    .navbar.scrolled {
      background: rgba(255,255,255,0.98);
      box-shadow: 0 10px 30px rgba(15,23,42,0.06);
      padding: 0.8rem 0;
    }

    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
    }

    .nav-logo {
      display: inline-flex; align-items: center; gap: 0.65rem;
      font-size: 1.45rem; font-weight: 900;
      background: var(--gradient);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text; text-decoration: none; letter-spacing: -0.5px;
      flex-shrink: 0;
    }

    .nav-logo-img {
      display: block;
      flex-shrink: 0;
    }

    .nav-links { display: flex; list-style: none; gap: 1.8rem; align-items: center; }
    .nav-links a {
      color: var(--text-secondary); text-decoration: none;
      font-size: 0.9rem; font-weight: 600; transition: var(--ease);
    }
    .nav-links a:hover { color: var(--primary); }

    .nav-cta {
      background: var(--gradient) !important;
      color: var(--white) !important;
      padding: 0.58rem 1.15rem !important;
      border-radius: 50px !important;
      font-weight: 700 !important;
      white-space: nowrap;
      box-shadow: 0 10px 24px rgba(37,99,235,0.16);
      transition: var(--ease) !important;
    }
    .nav-cta:hover { box-shadow: 0 12px 28px rgba(37,99,235,0.22) !important; transform: translateY(-1px) !important; }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 5px; background: none; border: none;
    }
    .hamburger span {
      width: 24px; height: 2px; background: var(--text);
      border-radius: 2px; transition: var(--ease); display: block;
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* =============================================
       HERO
    ============================================= */
    .hero {
      min-height: 92vh;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding: 8.5rem 1.5rem 5rem;
    }

    /* Grid overlay */
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        linear-gradient(rgba(37,99,235,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,0.045) 1px, transparent 1px);
      background-size: 55px 55px;
      pointer-events: none;
    }

    /* Gradient base */
    .hero-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(37,99,235,0.10) 0%, transparent 70%),
          radial-gradient(ellipse 60% 50% at 20% 70%, rgba(124,58,237,0.08) 0%, transparent 70%),
          linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
      pointer-events: none;
    }

    .hero-wrap {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4.5rem; align-items: center;
      width: 100%; max-width: 1180px; margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(37,99,235,0.08);
      border: 1px solid rgba(37,99,235,0.18);
      color: var(--primary);
      padding: 0.38rem 0.95rem;
      border-radius: 50px;
      font-size: 0.76rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 1.2px;
      margin-bottom: 1.6rem;
    }

    .hero-title {
      font-size: clamp(2.55rem, 5vw, 4.45rem);
      font-weight: 900; line-height: 1.08;
      letter-spacing: -2px; margin-bottom: 1.35rem;
      max-width: 720px;
    }

    .hero-sub {
      font-size: 1.1rem; color: var(--text-secondary);
      line-height: 1.75; margin-bottom: 2.2rem; max-width: 610px;
    }

    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

    .hero-stats {
      display: flex; gap: 2.5rem; margin-top: 3rem;
    }
    .stat-num {
      font-size: 2.2rem; font-weight: 900; line-height: 1;
      background: var(--gradient);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .stat-lbl { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }

    /* Hero visual: floating cards */
    .hero-visual { position: relative; }
    .hero-card-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      padding: 1.25rem;
      border: 1px solid var(--border);
      border-radius: 24px;
      background: rgba(255,255,255,0.72);
      box-shadow: 0 24px 60px rgba(15,23,42,0.10);
      align-items: stretch;
    }

    .headshot-card {
      grid-column: 1 / -1;
      max-width: 310px;
      justify-self: center;
      background: linear-gradient(145deg, #FFFFFF, #F8FAFC);
      border: 1px solid var(--border-soft);
      border-radius: 22px;
      padding: 0.75rem;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      box-shadow: var(--shadow-soft);
      display: grid;
      gap: 0.55rem;
      margin-bottom: 0.4rem;
      position: relative;
      overflow: hidden;
    }
    .headshot-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(37,99,235,0.10), transparent 45%),
                  radial-gradient(circle at bottom right, rgba(6,182,212,0.18), transparent 40%);
      pointer-events: none;
    }
    .headshot-frame {
      width: 100%;
      aspect-ratio: 1 / 1;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--border);
      background: linear-gradient(135deg, rgba(37,99,235,0.10), rgba(6,182,212,0.08));
      position: relative;
      z-index: 1;
    }
    .headshot-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .headshot-caption {
      position: relative;
      z-index: 1;
      text-align: center;
    }
    .headshot-name {
      font-size: 0.84rem;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.2px;
    }
    .headshot-role {
      font-size: 0.68rem;
      color: var(--text-muted);
      margin-top: 0.15rem;
    }

    .hv-card {
      background: var(--white);
      border: 1px solid var(--border-soft);
      border-radius: 16px;
      padding: 1.25rem;
      transition: var(--ease);
      min-height: 128px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hv-card:hover { border-color: rgba(37,99,235,0.28); background: #F8FAFC; transform: translateY(-4px) !important; box-shadow: var(--shadow-soft); }

    .hv-card-feature {
      background: var(--gradient);
      color: var(--white);
      grid-row: span 2;
      min-height: 100%;
    }

    .hv-card-feature:hover {
      background: var(--gradient);
      color: var(--white);
    }

    .hv-card-feature .hv-title,
    .hv-card-feature .hv-desc,
    .hv-card-feature .hv-kicker,
    .hv-card-feature:hover .hv-title,
    .hv-card-feature:hover .hv-desc,
    .hv-card-feature:hover .hv-kicker {
      color: var(--white);
    }

    .hv-card-wide { grid-column: 1 / -1; min-height: auto; }

    .hv-kicker {
      color: var(--primary);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 0.55rem;
    }
    .hv-title { font-size: 1rem; font-weight: 800; color: var(--text); line-height: 1.35; }
    .hv-desc  { font-size: 0.84rem; color: var(--text-muted); margin-top: 0.45rem; line-height: 1.6; }

    /* =============================================
       ABOUT
    ============================================= */
    .about { background: var(--dark-2); padding: 6rem 1.5rem; }

    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4.5rem; align-items: center;
    }

    .about-content .section-header { text-align: left; margin-bottom: 1.5rem; }

    .about-p {
      color: var(--text-muted); line-height: 1.85;
      margin-bottom: 1rem; font-size: 1.03rem;
    }

    .pillars {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 0.85rem; margin-top: 2rem;
    }
    .pillar {
      background: rgba(37,99,235,0.05);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 0.9rem 1rem;
      display: flex; align-items: center; gap: 0.7rem;
      transition: var(--ease);
    }
    .pillar:hover { background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.28); }
    .pillar-icon { font-size: 1.2rem; flex-shrink: 0; }
    .pillar-text { font-size: 0.85rem; font-weight: 600; color: var(--text); }

    /* Credential stat grid (replaces skill bars) */
    .about-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.85rem;
    }
    .about-stat {
      background: #F8FAFC;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1rem 1.2rem;
    }
    .about-stat-val {
      font-size: 1rem;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.2;
      margin-bottom: 0.25rem;
    }
    .about-stat-label {
      font-size: 0.78rem;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* About illustration image */
    .about-visual { display: grid; gap: 1.4rem; }
    .about-figure {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      background: linear-gradient(145deg, var(--dark-card), var(--dark-3));
      box-shadow: 0 24px 60px rgba(0,0,0,0.35);
      aspect-ratio: 16 / 10;
    }
    .about-figure svg { display: block; width: 100%; height: 100%; }
    .about-figure figcaption {
      position: absolute; left: 1rem; bottom: 0.9rem;
      font-size: 0.78rem; font-weight: 600; color: var(--white);
      background: rgba(15,23,42,0.72);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      padding: 0.35rem 0.75rem; border-radius: 50px;
      border: 1px solid var(--border-soft);
    }

    /* =============================================
       MICROSOFT ECOSYSTEM
    ============================================= */
    .techstrip { background: #F8FAFC; padding: 4.5rem 1.5rem; }
    .techstrip-header {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 2.25rem;
    }
    .techstrip-title {
      color: var(--text);
      font-size: clamp(1.75rem, 3.5vw, 2.45rem);
      font-weight: 850;
      line-height: 1.18;
      letter-spacing: -1px;
      margin-bottom: 0.85rem;
    }
    .techstrip-sub {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.75;
      margin: 0 auto;
    }
    .techstrip-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
      gap: 0.85rem; max-width: 980px; margin: 0 auto;
    }
    .tech-tile {
      background: var(--white);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-sm);
      padding: 1rem 1.1rem;
      display: flex; align-items: center; justify-content: center;
      min-height: 58px;
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 750;
      text-align: center;
      transition: var(--ease);
    }
    .tech-tile:hover { transform: translateY(-3px); border-color: rgba(37,99,235,0.24); box-shadow: 0 14px 32px rgba(15,23,42,0.07); }

    /* =============================================
       SERVICES
    ============================================= */
    .services { background: var(--dark); padding: 6rem 1.5rem; }

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

    .svc-card {
      background: var(--white);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius);
      padding: 1.75rem;
      position: relative; overflow: hidden;
      transition: var(--ease); cursor: default;
      box-shadow: 0 10px 30px rgba(15,23,42,0.04);
    }
    .svc-card::before {
      content: ''; position: absolute; inset: 0;
      background: var(--gradient); opacity: 0; transition: var(--ease);
    }
    .svc-card:hover {
      transform: translateY(-5px);
      border-color: rgba(37,99,235,0.22);
      box-shadow: var(--shadow-soft);
    }
    .svc-card:hover::before { opacity: 0.035; }

    .svc-tech {
      display: inline-flex;
      width: fit-content;
      background: rgba(37,99,235,0.07);
      border: 1px solid rgba(37,99,235,0.14);
      border-radius: 999px;
      color: var(--primary);
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.6px;
      line-height: 1;
      margin-bottom: 1rem;
      padding: 0.45rem 0.7rem;
      position: relative;
      text-transform: uppercase;
      z-index: 1;
    }

    .svc-title {
      font-size: 1.22rem; font-weight: 800; color: var(--text);
      line-height: 1.3; margin-bottom: 0.7rem; position: relative; z-index: 1;
    }
    .svc-desc {
      color: var(--text-secondary); font-size: 0.93rem;
      line-height: 1.72; margin-bottom: 0;
      position: relative; z-index: 1;
    }
     /* =============================================
       WHY QUANTUM MERGE
     ============================================= */
    .why { background: var(--dark-2); padding: 6rem 1.5rem; }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
    }

    .why-card {
      background: var(--dark-card);
      border: 1px solid var(--border-soft);
      border-radius: var(--radius);
      padding: 1.6rem;
      position: relative; overflow: hidden;
      transition: var(--ease);
    }
    .why-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: var(--gradient);
      transform: scaleX(0); transition: var(--ease);
    }
    .why-card:hover { transform: translateY(-6px); border-color: rgba(37,99,235,0.22); box-shadow: var(--shadow-soft); }
    .why-card:hover::after { transform: scaleX(1); }

    .why-title { font-size: 1rem; font-weight: 800; color: var(--text); line-height: 1.45; }
    .why-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.75; }

    /* =============================================
       FOUNDER / ARCHITECT
    ============================================= */
    .founder { background: #F8FAFC; padding: 6rem 1.5rem; }

    .founder-grid {
      display: grid;
      grid-template-columns: minmax(260px, 0.85fr) 1.35fr;
      gap: 4rem;
      align-items: center;
      max-width: 1080px;
      margin: 0 auto;
    }

    .founder-photo {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 0.9rem;
      box-shadow: var(--shadow-soft);
    }

    .founder-photo img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
      border-radius: 18px;
      background: linear-gradient(135deg, #EEF2FF, #F8FAFC);
    }

    .founder-content .section-title {
      margin-bottom: 1.2rem;
    }

    .founder-identity {
      border-left: 3px solid var(--primary);
      margin-bottom: 1.4rem;
      padding-left: 1rem;
    }

    .founder-identity h3 {
      color: var(--text);
      font-size: 1.1rem;
      font-weight: 850;
      margin-bottom: 0.15rem;
    }

    .founder-identity p {
      color: var(--text-secondary);
      font-size: 0.92rem;
      font-weight: 700;
    }

    .founder-copy {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .founder-list {
      display: grid;
      gap: 0.7rem;
      list-style: none;
    }

    .founder-list li {
      color: var(--text);
      font-size: 0.92rem;
      font-weight: 650;
      padding-left: 1.35rem;
      position: relative;
    }

    .founder-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.62rem;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gradient);
    }

    /* =============================================
       FEATURED SOLUTIONS
    ============================================= */
    .featured { background: var(--white); padding: 6rem 1.5rem; }

    .featured-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .featured-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
      transition: var(--ease);
      box-shadow: 0 10px 30px rgba(15,23,42,0.04);
    }

    .featured-card:hover {
      border-color: rgba(37,99,235,0.24);
      box-shadow: var(--shadow-soft);
      transform: translateY(-4px);
    }

    .solution-tech {
      display: inline-flex;
      width: fit-content;
      background: rgba(124,58,237,0.07);
      border: 1px solid rgba(124,58,237,0.14);
      border-radius: 999px;
      color: var(--secondary);
      font-size: 0.7rem;
      font-weight: 800;
      letter-spacing: 0.55px;
      line-height: 1;
      margin-bottom: 1rem;
      padding: 0.45rem 0.7rem;
      text-transform: uppercase;
    }

    .featured-card h3,
    .process-step h3 {
      color: var(--text);
      font-size: 1.18rem;
      font-weight: 850;
      line-height: 1.3;
      margin-bottom: 0.65rem;
    }

    .featured-card p,
    .process-step p {
      color: var(--text-secondary);
      font-size: 0.94rem;
      line-height: 1.75;
    }

    /* =============================================
       HOW WE WORK
    ============================================= */
    .process { background: #F8FAFC; padding: 6rem 1.5rem; }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .process-step {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.55rem;
      position: relative;
      transition: var(--ease);
    }

    .process-step:hover {
      border-color: rgba(37,99,235,0.24);
      box-shadow: var(--shadow-soft);
      transform: translateY(-4px);
    }

    .process-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      background: var(--gradient);
      border-radius: 12px;
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 850;
      margin-bottom: 1.2rem;
    }

    /* =============================================
       SHOWCASE BAND
    ============================================= */
    .showcase { background: var(--dark); padding: 6rem 1.5rem; }
    .showcase-inner {
      display: grid; grid-template-columns: 1.05fr 1fr;
      gap: 4rem; align-items: center;
      max-width: 1180px; margin: 0 auto;
    }
    .showcase-figure {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--border);
      background: linear-gradient(160deg, #FFFFFF, #EEF2FF);
      box-shadow: var(--shadow-soft);
      aspect-ratio: 4 / 3;
    }
    .showcase-figure svg { display: block; width: 100%; height: 100%; }
    .showcase-copy h2 {
      font-size: clamp(1.7rem, 3.4vw, 2.4rem);
      font-weight: 800; letter-spacing: -1px; line-height: 1.2;
      margin-bottom: 1rem;
    }
    .showcase-copy p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.6rem; font-size: 1rem; }
    .showcase-checks { list-style: none; display: grid; gap: 0.7rem; }
    .showcase-checks li {
      display: flex; align-items: center; gap: 0.7rem;
      font-size: 0.92rem; color: var(--text); font-weight: 500;
    }
    .showcase-checks li .chk {
      flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      background: rgba(74,222,128,0.15); color: var(--green);
      font-size: 0.7rem; border: 1px solid rgba(74,222,128,0.35);
    }

    /* =============================================
       FAQ
    ============================================= */
    .faq { background: var(--white); padding: 6rem 1.5rem; }

    .faq-list { max-width: 780px; margin: 0 auto; }

    .faq-item {
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-sm);
      margin-bottom: 0.7rem;
      overflow: hidden;
      transition: var(--ease);
    }
    .faq-item.active { border-color: rgba(37,99,235,0.26); box-shadow: 0 12px 32px rgba(15,23,42,0.06); }

    .faq-q {
      width: 100%; background: var(--white);
      border: none; color: var(--text);
      padding: 1.2rem 1.5rem;
      text-align: left; font-size: 0.97rem;
      font-weight: 600; font-family: inherit;
      cursor: pointer; display: flex;
      justify-content: space-between; align-items: center; gap: 1rem;
      transition: var(--ease);
    }
    .faq-q:hover { background: rgba(37,99,235,0.05); }
    .faq-item.active .faq-q { background: rgba(37,99,235,0.06); color: var(--primary); }

    .faq-chevron {
      flex-shrink: 0; width: 26px; height: 26px;
      border-radius: 50%; background: #F8FAFC;
      border: 1px solid var(--border-soft);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; transition: var(--ease);
    }
    .faq-item.active .faq-chevron {
      background: var(--primary); border-color: var(--primary);
      transform: rotate(180deg);
    }

    .faq-body {
      max-height: 0; overflow: hidden;
      transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1);
      background: var(--dark-card);
    }
    .faq-item.active .faq-body { max-height: 400px; }

    .faq-inner {
      padding: 0 1.5rem 1.3rem;
      color: var(--text-muted); font-size: 0.91rem; line-height: 1.82;
    }

    /* =============================================
       CTA / CONTACT
    ============================================= */
    .cta { background: var(--dark-section); padding: 7rem 1.5rem; }

    .cta-box {
      max-width: 880px; margin: 0 auto;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 26px;
      padding: 4.5rem 3rem;
      text-align: center;
      position: relative; overflow: hidden;
    }

    .cta-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800; letter-spacing: -1.5px;
      line-height: 1.15; margin: 1rem 0;
      color: var(--white);
      position: relative; z-index: 1;
    }

    .cta-tag {
      position: relative;
      z-index: 1;
    }

    .cta-sub {
      font-size: 1.04rem; color: #CBD5E1;
      margin-bottom: 2.2rem; max-width: 650px;
      margin-left: auto; margin-right: auto;
      line-height: 1.75; position: relative; z-index: 1;
    }

    .cta .section-tag {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.16);
      color: #BFDBFE;
    }

    .cta-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 1.8rem;
      position: relative;
      z-index: 1;
    }

    .cta-secondary {
      background: transparent;
      border-color: rgba(255,255,255,0.22);
      color: var(--white);
    }

    .cta-secondary:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.34);
    }

    .contact-links {
      display: flex; gap: 2rem; justify-content: center;
      flex-wrap: wrap; position: relative; z-index: 1;
    }
    .contact-link {
      display: flex; align-items: center; gap: 0.5rem;
      color: #CBD5E1; text-decoration: none;
      font-size: 0.9rem; transition: var(--ease);
    }
    .contact-link:hover { color: var(--white); }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: var(--dark-section);
      border-top: 1px solid rgba(255,255,255,0.10);
      padding: 3.5rem 1.5rem 2rem;
    }

    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.10);
      margin-bottom: 1.8rem;
    }

    .footer-brand .nav-logo { font-size: 1.35rem; display: block; margin-bottom: 0.9rem; }
    .footer-brand p { font-size: 0.87rem; color: #CBD5E1; line-height: 1.72; margin-bottom: 1.2rem; }

    .footer-col h4 {
      font-size: 0.8rem; font-weight: 700; color: var(--white);
      text-transform: uppercase; letter-spacing: 1.5px;
      margin-bottom: 1.1rem;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 0.6rem; }
    .footer-links a {
      color: #CBD5E1; text-decoration: none;
      font-size: 0.87rem; transition: var(--ease);
    }
    .footer-links a:hover { color: var(--white); }

    .footer-bottom {
      display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { font-size: 0.81rem; color: #CBD5E1; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    @media (max-width: 900px) {
      .why-grid { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
      .techstrip-grid { grid-template-columns: repeat(3, 1fr); }
      .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .showcase-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none; flex-direction: column;
        position: fixed; top: 69px; left: 0; right: 0;
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        padding: 1.5rem 2rem 2rem;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 18px 40px rgba(15,23,42,0.08);
        gap: 1.1rem;
      }
      .nav-links.open { display: flex; }
      .nav-links a { color: var(--text); }
      .nav-links .nav-cta { display: inline-flex; justify-content: center; }
      .hamburger { display: flex; }

      .hero-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
      .hero-visual { display: block; }
      .hero-card-grid { grid-template-columns: 1fr; padding: 1rem; }
      .hv-card-feature { grid-row: auto; }
      .hv-card-wide { grid-column: auto; }
      .hero-stats { gap: 1.5rem; flex-wrap: wrap; }

      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .about-content .section-header { text-align: center; }

      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .founder-photo { max-width: 360px; margin: 0 auto; }
      .featured-grid { grid-template-columns: 1fr; }
      .process-grid { grid-template-columns: 1fr; }

      .cta-box { padding: 3rem 1.5rem; }
    }

    @media (max-width: 480px) {
      .pillars { grid-template-columns: 1fr; }
      .techstrip-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.2rem; }
    }
