/* =============================================
       CSS RESET & NORMALIZE
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { min-height: 100vh; overflow-x: hidden; }
    img, svg { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul, ol { list-style: none; }
    button { cursor: pointer; border: none; background: none; font: inherit; }

    /* =============================================
       CSS VARIABLES â€” AURORA GLASS THEME
    ============================================= */
    :root {
      /* Core Palette */
      --clr-bg-deep:        #04040f;
      --clr-bg-mid:         #080820;
      --clr-bg-surface:     #0d0d2b;

      /* Aurora Gradients */
      --grad-aurora:        linear-gradient(135deg, #0f0c29 0%, #1a0533 30%, #0d2b45 60%, #0a3d2e 100%);
      --grad-mesh-1:        radial-gradient(ellipse at 20% 30%, rgba(120, 40, 200, 0.35) 0%, transparent 60%);
      --grad-mesh-2:        radial-gradient(ellipse at 80% 70%, rgba(0, 200, 180, 0.25) 0%, transparent 60%);
      --grad-mesh-3:        radial-gradient(ellipse at 50% 10%, rgba(60, 80, 255, 0.3) 0%, transparent 55%);
      --grad-accent:        linear-gradient(90deg, #7c3aed, #06b6d4, #10b981);
      --grad-card:          linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
      --grad-cta:           linear-gradient(90deg, #7c3aed 0%, #06b6d4 100%);

      /* Text */
      --clr-text-primary:   #f0f0ff;
      --clr-text-secondary: #a0a8c8;
      --clr-text-muted:     #5a6080;
      --clr-accent-violet:  #a78bfa;
      --clr-accent-cyan:    #22d3ee;
      --clr-accent-emerald: #34d399;

      /* Glass Morphism */
      --glass-bg:           rgba(255, 255, 255, 0.04);
      --glass-bg-hover:     rgba(255, 255, 255, 0.08);
      --glass-border:       rgba(255, 255, 255, 0.10);
      --glass-border-hover: rgba(167, 139, 250, 0.40);
      --glass-shadow:       0 8px 32px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(255,255,255,0.06) inset;
      --glass-shadow-lg:    0 20px 60px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(255,255,255,0.08) inset;
      --glass-blur:         blur(16px);

      /* Borders & Radius */
      --radius-sm:  8px;
      --radius-md:  14px;
      --radius-lg:  22px;
      --radius-xl:  32px;
      --border-1:   1px solid var(--glass-border);

      /* Spacing Scale */
      --sp-xs:  0.5rem;
      --sp-sm:  1rem;
      --sp-md:  1.5rem;
      --sp-lg:  2.5rem;
      --sp-xl:  4rem;
      --sp-2xl: 6rem;

      /* Typography */
      --ff-base:    'Segoe UI', system-ui, -apple-system, sans-serif;
      --fw-light:   300;
      --fw-regular: 400;
      --fw-medium:  500;
      --fw-bold:    700;
      --lh-base:    1.6;
      --lh-tight:   1.2;

      /* Header */
      --header-h: 68px;
    }

    /* =============================================
       BASE STYLES
    ============================================= */
    body {
      font-family: var(--ff-base);
      font-weight: var(--fw-regular);
      line-height: var(--lh-base);
      color: var(--clr-text-primary);
      background-color: var(--clr-bg-deep);
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin-inline: auto;
      padding-inline: var(--sp-sm);
    }

    .section-label {
      display: inline-block;
      font-size: 0.7rem;
      font-weight: var(--fw-medium);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--clr-accent-cyan);
      padding: 0.3em 0.9em;
      border: 1px solid rgba(34, 211, 238, 0.25);
      border-radius: 100px;
      margin-bottom: var(--sp-sm);
      background: rgba(34, 211, 238, 0.05);
    }

    h1, h2, h3, h4 {
      line-height: var(--lh-tight);
      font-weight: var(--fw-bold);
      letter-spacing: -0.02em;
    }

    h1 { font-size: clamp(2.2rem, 6vw, 4.2rem); }
    h2 { font-size: clamp(1.7rem, 4vw, 2.8rem); }
    h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
    h4 { font-size: 1rem; font-weight: var(--fw-medium); }

    p {
      color: var(--clr-text-secondary);
      line-height: var(--lh-base);
      font-size: clamp(0.9rem, 2vw, 1rem);
    }

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

    /* Glass Card */
    .glass-card {
      background: var(--glass-bg);
      border: var(--border-1);
      border-radius: var(--radius-lg);
      backdrop-filter: var(--glass-blur);
      -webkit-backdrop-filter: var(--glass-blur);
      box-shadow: var(--glass-shadow);
      transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    }
    .glass-card:hover {
      border-color: var(--glass-border-hover);
      background: var(--glass-bg-hover);
      transform: translateY(-3px);
    }

    /* CTA Button */
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5em;
      min-height: 48px;
      padding: 0.75em 2em;
      background: var(--grad-cta);
      color: #fff;
      font-weight: var(--fw-medium);
      font-size: 0.95rem;
      border-radius: 100px;
      letter-spacing: 0.03em;
      transition: opacity 0.25s, transform 0.25s;
      box-shadow: 0 4px 24px rgba(124, 58, 237, 0.4);
    }
    .btn-primary:hover { opacity: 0.88; transform: translateY(-2px); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5em;
      min-height: 48px;
      padding: 0.75em 2em;
      background: transparent;
      color: var(--clr-text-primary);
      font-weight: var(--fw-medium);
      font-size: 0.95rem;
      border-radius: 100px;
      border: 1px solid var(--glass-border);
      letter-spacing: 0.03em;
      transition: border-color 0.25s, background 0.25s;
    }
    .btn-ghost:hover {
      border-color: var(--clr-accent-violet);
      background: rgba(167, 139, 250, 0.08);
    }

    /* Accent line */
    .accent-line {
      width: 48px;
      height: 3px;
      background: var(--grad-accent);
      border-radius: 2px;
      margin-bottom: var(--sp-md);
    }

    /* =============================================
       HEADER
    ============================================= */
    #header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--header-h);
      background: rgba(4, 4, 15, 0.75);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      gap: var(--sp-sm);
    }

    /* Logo */
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 0.55em;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .logo-icon {
      width: 34px;
      height: 34px;
      color: var(--clr-text-primary);
      flex-shrink: 0;
    }
    .logo-text {
      font-size: 1.35rem;
      font-weight: var(--fw-bold);
      letter-spacing: -0.03em;
      background: var(--grad-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Primary Nav */
    .primary-nav {
      display: none;
      align-items: center;
      gap: 0.25rem;
    }
    .primary-nav a {
      font-size: 0.875rem;
      font-weight: var(--fw-medium);
      color: var(--clr-text-secondary);
      padding: 0.5em 0.85em;
      border-radius: var(--radius-sm);
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      transition: color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .primary-nav a:hover {
      color: var(--clr-text-primary);
      background: rgba(255,255,255,0.06);
    }
    .primary-nav a.active { color: var(--clr-accent-violet); }

    /* Header Right */
    .header-right {
      display: flex;
      align-items: center;
      gap: var(--sp-xs);
      flex-shrink: 0;
    }

    /* Language Switcher */
    .lang-switcher {
      position: relative;
    }
    .lang-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.35em;
      min-height: 44px;
      min-width: 44px;
      padding: 0.4em 0.75em;
      font-size: 0.8rem;
      font-weight: var(--fw-medium);
      color: var(--clr-text-secondary);
      background: var(--glass-bg);
      border: var(--border-1);
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .lang-btn:hover { color: var(--clr-text-primary); border-color: var(--glass-border-hover); }
    .lang-btn .arrow {
      font-size: 0.6rem;
      transition: transform 0.2s;
      display: inline-block;
    }
    .lang-switcher.open .arrow { transform: rotate(180deg); }

    .lang-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: rgba(8, 8, 32, 0.95);
      border: var(--border-1);
      border-radius: var(--radius-md);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: var(--glass-shadow-lg);
      padding: 0.5rem;
      min-width: 140px;
      z-index: 200;
      max-height: 320px;
      overflow-y: auto;
    }
    .lang-switcher.open .lang-dropdown { display: block; }

    .lang-dropdown a {
      display: flex;
      align-items: center;
      gap: 0.5em;
      padding: 0.5em 0.75em;
      font-size: 0.8rem;
      color: var(--clr-text-secondary);
      border-radius: var(--radius-sm);
      min-height: 36px;
      transition: background 0.2s, color 0.2s;
      white-space: nowrap;
    }
    .lang-dropdown a:hover { background: var(--glass-bg-hover); color: var(--clr-text-primary); }
    .lang-dropdown a.lang-active {
      color: var(--clr-accent-violet);
      background: rgba(167, 139, 250, 0.1);
      font-weight: var(--fw-medium);
    }
    .lang-code {
      font-size: 0.7rem;
      font-weight: var(--fw-bold);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      opacity: 0.7;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      min-width: 44px;
      min-height: 44px;
      padding: 0.5em;
      background: var(--glass-bg);
      border: var(--border-1);
      border-radius: var(--radius-sm);
      cursor: pointer;
    }
    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--clr-text-secondary);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile Nav Drawer */
    .mobile-nav {
      display: none;
      position: fixed;
      top: var(--header-h);
      left: 0;
      right: 0;
      background: rgba(4, 4, 15, 0.97);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--glass-border);
      padding: var(--sp-sm);
      z-index: 999;
    }
    .mobile-nav.open { display: block; }
    .mobile-nav a {
      display: flex;
      align-items: center;
      min-height: 52px;
      padding: 0.75em 1em;
      font-size: 1rem;
      font-weight: var(--fw-medium);
      color: var(--clr-text-secondary);
      border-radius: var(--radius-sm);
      transition: color 0.2s, background 0.2s;
    }
    .mobile-nav a:hover { color: var(--clr-text-primary); background: var(--glass-bg); }

    /* =============================================
       PAGE OFFSET
    ============================================= */
    main { padding-top: var(--header-h); }

    /* =============================================
       HERO SECTION
    ============================================= */
    #hero {
      position: relative;
      min-height: calc(100vh - var(--header-h));
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--grad-aurora);
    }

    .hero-mesh {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 0;
    }
    .hero-mesh::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--grad-mesh-1), var(--grad-mesh-2), var(--grad-mesh-3);
    }
    /* Animated orbs */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.3;
      animation: float 8s ease-in-out infinite;
    }
    .orb-1 { width: 400px; height: 400px; background: #7c3aed; top: -100px; left: -100px; animation-delay: 0s; }
    .orb-2 { width: 300px; height: 300px; background: #06b6d4; bottom: -50px; right: 10%; animation-delay: -3s; }
    .orb-3 { width: 250px; height: 250px; background: #10b981; top: 40%; left: 60%; animation-delay: -5s; }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33%       { transform: translate(20px, -30px) scale(1.05); }
      66%       { transform: translate(-15px, 20px) scale(0.97); }
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding-block: var(--sp-2xl) var(--sp-xl);
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5em;
      font-size: 0.75rem;
      font-weight: var(--fw-medium);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--clr-accent-cyan);
      margin-bottom: var(--sp-md);
    }
    .hero-eyebrow::before {
      content: '';
      display: inline-block;
      width: 24px;
      height: 1px;
      background: var(--clr-accent-cyan);
    }

    .hero-title {
      margin-bottom: var(--sp-md);
      max-width: 780px;
    }

    .hero-desc {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: var(--clr-text-secondary);
      max-width: 560px;
      margin-bottom: var(--sp-lg);
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-sm);
      align-items: center;
    }

    .hero-stats {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-md);
      margin-top: var(--sp-xl);
      padding-top: var(--sp-lg);
      border-top: 1px solid var(--glass-border);
    }
    .stat-item { min-width: 120px; }
    .stat-value {
      font-size: clamp(1.6rem, 4vw, 2.4rem);
      font-weight: var(--fw-bold);
      background: var(--grad-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 0.2em;
    }
    .stat-label {
      font-size: 0.78rem;
      color: var(--clr-text-muted);
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    /* =============================================
       SECTION SHARED
    ============================================= */
    .section-pad {
      padding-block: var(--sp-xl);
    }
    .section-header {
      margin-bottom: var(--sp-lg);
    }
    .section-header p {
      max-width: 520px;
      margin-top: var(--sp-xs);
    }

    /* =============================================
       ABOUT â€” SPLIT SCREEN DYNAMIC
    ============================================= */
    #about {
      background: var(--clr-bg-mid);
      position: relative;
      overflow: hidden;
    }
    #about::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 50%;
      height: 100%;
      background: radial-gradient(ellipse at 80% 50%, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--sp-lg);
      align-items: center;
    }

    .about-visual {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4/3;
      background: var(--glass-bg);
      border: var(--border-1);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-visual-inner {
      position: relative;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    /* Abstract geometric visual */
    .geo-rings {
      position: relative;
      width: 180px;
      height: 180px;
    }
    .geo-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid;
      animation: spin linear infinite;
    }
    .geo-ring:nth-child(1) {
      inset: 0;
      border-color: rgba(167, 139, 250, 0.5);
      animation-duration: 12s;
    }
    .geo-ring:nth-child(2) {
      inset: 20px;
      border-color: rgba(34, 211, 238, 0.4);
      animation-duration: 8s;
      animation-direction: reverse;
    }
    .geo-ring:nth-child(3) {
      inset: 40px;
      border-color: rgba(52, 211, 153, 0.4);
      animation-duration: 5s;
    }
    .geo-core {
      position: absolute;
      inset: 60px;
      border-radius: 50%;
      background: var(--grad-cta);
      opacity: 0.8;
      filter: blur(4px);
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    .about-pills {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-xs);
      margin-top: var(--sp-md);
    }
    .pill {
      font-size: 0.78rem;
      padding: 0.4em 0.9em;
      border-radius: 100px;
      background: var(--glass-bg);
      border: var(--border-1);
      color: var(--clr-text-secondary);
      white-space: nowrap;
    }

    /* =============================================
       WHY CHOOSE US â€” BENTO GRID
    ============================================= */
    #why-choose-us {
      background: var(--clr-bg-deep);
    }

    .bento-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--sp-sm);
    }

    .bento-card {
      padding: var(--sp-md);
    }
    .bento-card .card-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: var(--sp-sm);
      flex-shrink: 0;
    }
    .bento-card h3 {
      font-size: 1.05rem;
      margin-bottom: 0.4em;
      color: var(--clr-text-primary);
    }
    .bento-card p { font-size: 0.875rem; }

    .bento-card.featured {
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(6, 182, 212, 0.08) 100%);
      border-color: rgba(167, 139, 250, 0.25);
    }

    /* =============================================
       ADVANTAGES â€” MINIMALIST ICON MATRIX
    ============================================= */
    #advantages {
      background: var(--clr-bg-mid);
      position: relative;
      overflow: hidden;
    }
    #advantages::after {
      content: '';
      position: absolute;
      bottom: 0; left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 300px;
      background: radial-gradient(ellipse, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .icon-matrix {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--sp-sm);
    }

    .matrix-item {
      padding: var(--sp-md);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
    .matrix-icon {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      background: var(--glass-bg);
      border: var(--border-1);
    }
    .matrix-item h4 {
      font-size: 0.9rem;
      font-weight: var(--fw-medium);
      color: var(--clr-text-primary);
    }
    .matrix-item p { font-size: 0.8rem; }

    /* =============================================
       FEATURES â€” HORIZONTAL SCROLL CARDS
    ============================================= */
    #features {
      background: var(--clr-bg-deep);
      overflow: hidden;
    }

    .features-scroll-wrapper {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: rgba(167, 139, 250, 0.3) transparent;
      padding-bottom: var(--sp-sm);
      margin-inline: calc(-1 * var(--sp-sm));
      padding-inline: var(--sp-sm);
    }
    .features-scroll-wrapper::-webkit-scrollbar { height: 4px; }
    .features-scroll-wrapper::-webkit-scrollbar-track { background: transparent; }
    .features-scroll-wrapper::-webkit-scrollbar-thumb { background: rgba(167, 139, 250, 0.3); border-radius: 2px; }

    .features-track {
      display: flex;
      gap: var(--sp-sm);
      width: max-content;
    }

    .feature-card {
      width: 260px;
      flex-shrink: 0;
      padding: var(--sp-md);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .feature-card-num {
      font-size: 0.7rem;
      font-weight: var(--fw-bold);
      letter-spacing: 0.12em;
      color: var(--clr-accent-violet);
      text-transform: uppercase;
    }
    .feature-card h3 { font-size: 1rem; }
    .feature-card p { font-size: 0.82rem; flex: 1; }
    .feature-card-tag {
      display: inline-block;
      font-size: 0.7rem;
      padding: 0.25em 0.7em;
      border-radius: 100px;
      background: rgba(34, 211, 238, 0.08);
      border: 1px solid rgba(34, 211, 238, 0.2);
      color: var(--clr-accent-cyan);
      align-self: flex-start;
    }

    /* =============================================
       STRATEGIC GROWTH â€” DATA VIZ ABSTRACT
    ============================================= */
    #strategic-growth {
      background: var(--clr-bg-surface);
      position: relative;
      overflow: hidden;
    }

    .growth-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--sp-lg);
      align-items: center;
    }

    .growth-viz {
      position: relative;
      height: 240px;
      border-radius: var(--radius-xl);
      background: var(--glass-bg);
      border: var(--border-1);
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: var(--sp-md);
      gap: 8px;
    }
    .bar-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      gap: 6px;
    }
    .bar {
      width: 100%;
      border-radius: 4px 4px 0 0;
      background: var(--grad-cta);
      opacity: 0.7;
      animation: growUp 1.5s ease-out forwards;
      transform-origin: bottom;
    }
    .bar-label { font-size: 0.6rem; color: var(--clr-text-muted); }

    @keyframes growUp {
      from { transform: scaleY(0); }
      to   { transform: scaleY(1); }
    }

    .growth-metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--sp-sm);
    }
    .metric-card {
      padding: var(--sp-md);
      border-radius: var(--radius-md);
    }
    .metric-val {
      font-size: 1.6rem;
      font-weight: var(--fw-bold);
      background: var(--grad-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .metric-desc { font-size: 0.8rem; color: var(--clr-text-muted); margin-top: 0.25em; }

    /* =============================================
       CONTACT â€” CENTERED MINIMAL
    ============================================= */
    #contact {
      background: var(--clr-bg-deep);
      position: relative;
      overflow: hidden;
    }
    #contact::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--grad-mesh-1), var(--grad-mesh-2);
      opacity: 0.5;
      pointer-events: none;
    }

    .contact-inner {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 640px;
      margin-inline: auto;
    }
    .contact-inner h2 { margin-bottom: var(--sp-sm); }
    .contact-inner p { margin-bottom: var(--sp-lg); font-size: 1rem; }

    .contact-channels {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-sm);
      justify-content: center;
      margin-top: var(--sp-md);
    }
    .channel-item {
      display: flex;
      align-items: center;
      gap: 0.5em;
      padding: var(--sp-sm) var(--sp-md);
      border-radius: var(--radius-md);
      font-size: 0.875rem;
      color: var(--clr-text-secondary);
      min-height: 52px;
    }
    .channel-item span.ch-icon { font-size: 1.1rem; }

    /* =============================================
       FOOTER
    ============================================= */
    #footer {
      background: #020208;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-block: var(--sp-lg);
    }

    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: var(--sp-sm);
      align-items: center;
      text-align: center;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.5em;
    }
    .footer-logo .logo-icon {
      width: 24px;
      height: 24px;
    }
    .footer-logo-text {
      font-size: 1.1rem;
      font-weight: var(--fw-bold);
      background: var(--grad-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-xs);
      justify-content: center;
    }
    .footer-links a {
      font-size: 0.78rem;
      color: var(--clr-text-muted);
      padding: 0.3em 0.6em;
      min-height: 32px;
      display: inline-flex;
      align-items: center;
      border-radius: var(--radius-sm);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--clr-text-secondary); }

    .footer-copy {
      font-size: 0.75rem;
      color: var(--clr-text-muted);
      line-height: 1.6;
    }

    .footer-divider {
      width: 100%;
      height: 1px;
      background: rgba(255,255,255,0.04);
      margin-block: 0.5rem;
    }

    /* =============================================
       RESPONSIVE â€” TABLET (min-width: 640px)
    ============================================= */
    @media (min-width: 640px) {
      .container { padding-inline: var(--sp-md); }

      .bento-grid { grid-template-columns: repeat(2, 1fr); }
      .bento-card.wide { grid-column: span 2; }

      .icon-matrix { grid-template-columns: repeat(3, 1fr); }

      .growth-metrics { grid-template-columns: repeat(3, 1fr); }

      .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
      .footer-links { justify-content: flex-start; }
    }

    /* =============================================
       RESPONSIVE â€” DESKTOP (min-width: 960px)
    ============================================= */
    @media (min-width: 960px) {
      :root { --header-h: 72px; }
      .container { padding-inline: var(--sp-lg); }

      .primary-nav { display: flex; }
      .menu-toggle { display: none; }

      .section-pad { padding-block: var(--sp-2xl); }

      .about-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-xl); }

      .bento-grid { grid-template-columns: repeat(3, 1fr); }
      .bento-card.wide { grid-column: span 1; }
      .bento-card.featured-wide { grid-column: span 2; }

      .icon-matrix { grid-template-columns: repeat(4, 1fr); }

      .feature-card { width: 300px; }

      .growth-inner { grid-template-columns: 1fr 1fr; }
      .growth-viz { height: 280px; }
      .growth-metrics { grid-template-columns: repeat(2, 1fr); }

      .footer-inner { align-items: center; }
    }

    @media (min-width: 1200px) {
      .bento-grid { grid-template-columns: repeat(4, 1fr); }
      .bento-card.featured-wide { grid-column: span 2; }
    }
    /* =============================================
       SUBPAGE — PAGE HERO & CONTENT HELPERS
    ============================================= */
    #hero.page-hero { min-height: auto; }
    #hero.page-hero .hero-content { padding-block: var(--sp-xl) var(--sp-lg); }
    #hero.page-hero .hero-title { font-size: clamp(2rem, 5vw, 3.4rem); }

    .content-block { max-width: 760px; }
    .content-block p + p { margin-top: var(--sp-sm); }

    .detail-list { display: grid; gap: var(--sp-xs); margin-top: var(--sp-sm); }
    .detail-list li {
      display: flex;
      gap: 0.6em;
      align-items: flex-start;
      color: var(--clr-text-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
    }
    .detail-list li::before {
      content: '◆';
      color: var(--clr-accent-cyan);
      font-size: 0.65em;
      margin-top: 0.55em;
      flex-shrink: 0;
    }

    .page-cta {
      text-align: center;
      padding-block: var(--sp-xl);
    }
    .page-cta h2 { margin-bottom: var(--sp-sm); }
    .page-cta p { max-width: 520px; margin-inline: auto; margin-bottom: var(--sp-md); }

    /* =============================================
       LEAD FORM
    ============================================= */
    .lead-form-wrap {
      max-width: 720px;
      margin: var(--sp-lg) auto 0;
      padding: var(--sp-lg) var(--sp-md);
      text-align: left;
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--sp-sm);
    }
    .form-field label {
      display: block;
      font-size: 0.78rem;
      font-weight: var(--fw-medium);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--clr-text-secondary);
      margin-bottom: 0.45em;
    }
    .form-field input,
    .form-field select,
    .form-field textarea {
      width: 100%;
      padding: 0.8em 1em;
      font: inherit;
      font-size: 0.95rem;
      color: var(--clr-text-primary);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-sm);
      outline: none;
      transition: border-color 0.2s, background 0.2s;
    }
    .form-field input::placeholder,
    .form-field textarea::placeholder { color: var(--clr-text-muted); }
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
      border-color: var(--clr-accent-violet);
      background: rgba(167, 139, 250, 0.06);
    }
    .form-field select option { background: var(--clr-bg-surface); color: var(--clr-text-primary); }
    .form-field textarea { min-height: 120px; resize: vertical; }
    .form-consent {
      display: flex;
      align-items: flex-start;
      gap: 0.6em;
      font-size: 0.78rem;
      color: var(--clr-text-muted);
      line-height: 1.5;
    }
    .form-consent input {
      width: 16px;
      height: 16px;
      margin-top: 0.2em;
      accent-color: #7c3aed;
      flex-shrink: 0;
    }
    .form-submit { text-align: center; margin-top: var(--sp-xs); }
    .form-submit .btn-primary { width: 100%; justify-content: center; border: none; cursor: pointer; }
    .form-status {
      display: none;
      margin-top: var(--sp-sm);
      padding: 0.9em 1.2em;
      border-radius: var(--radius-sm);
      font-size: 0.875rem;
      text-align: center;
    }
    .form-status.success {
      display: block;
      color: var(--clr-accent-emerald);
      background: rgba(52, 211, 153, 0.08);
      border: 1px solid rgba(52, 211, 153, 0.25);
    }

    @media (min-width: 640px) {
      .form-grid { grid-template-columns: 1fr 1fr; }
      .form-field.full { grid-column: span 2; }
      .form-submit .btn-primary { width: auto; padding-inline: 3em; }
    }

    /* =============================================
       HERO CONSOLE VISUAL
    ============================================= */
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--sp-lg);
      align-items: center;
    }
    @media (min-width: 960px) {
      .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--sp-xl); }
    }
    .console-card {
      font-family: Consolas, 'Courier New', monospace;
      font-size: 0.78rem;
      padding: 0;
      overflow: hidden;
    }
    .console-head {
      display: flex;
      align-items: center;
      gap: 0.5em;
      padding: 0.7em 1em;
      background: rgba(255, 255, 255, 0.04);
      border-bottom: 1px solid var(--glass-border);
    }
    .console-dot { width: 10px; height: 10px; border-radius: 50%; }
    .console-dot:nth-child(1) { background: rgba(255, 95, 87, 0.8); }
    .console-dot:nth-child(2) { background: rgba(254, 188, 46, 0.8); }
    .console-dot:nth-child(3) { background: rgba(40, 200, 64, 0.8); }
    .console-title {
      margin-left: 0.5em;
      font-size: 0.7rem;
      color: var(--clr-text-muted);
      letter-spacing: 0.08em;
    }
    .console-body { padding: 1em 1.2em 1.2em; display: grid; gap: 0.55em; }
    .console-line { display: flex; align-items: center; gap: 0.6em; color: var(--clr-text-secondary); }
    .console-line .c-ok    { color: var(--clr-accent-emerald); }
    .console-line .c-info  { color: var(--clr-accent-cyan); }
    .console-line .c-warn  { color: var(--clr-accent-violet); }
    .console-line .c-muted { color: var(--clr-text-muted); }
    .status-pulse {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--clr-accent-emerald);
      flex-shrink: 0;
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5); }
      50%       { box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
    }
    .console-progress {
      height: 6px;
      border-radius: 3px;
      background: rgba(255, 255, 255, 0.06);
      overflow: hidden;
      margin-top: 0.2em;
    }
    .console-progress span {
      display: block;
      height: 100%;
      width: 40%;
      border-radius: 3px;
      background: var(--grad-cta);
      animation: progressSlide 3.2s ease-in-out infinite;
    }
    @keyframes progressSlide {
      0%   { width: 12%; }
      55%  { width: 86%; }
      100% { width: 12%; }
    }
    .console-cursor {
      display: inline-block;
      width: 8px;
      height: 1em;
      background: var(--clr-accent-cyan);
      animation: blink 1.1s step-end infinite;
      vertical-align: text-bottom;
    }
    @keyframes blink { 50% { opacity: 0; } }

    /* =============================================
       TIMELINE (ABOUT)
    ============================================= */
    .timeline {
      position: relative;
      display: grid;
      gap: var(--sp-md);
      padding-left: 28px;
      max-width: 720px;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 7px;
      top: 6px;
      bottom: 6px;
      width: 2px;
      background: var(--grad-accent);
      opacity: 0.4;
      border-radius: 1px;
    }
    .timeline-item { position: relative; }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: -28px;
      top: 6px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--clr-bg-mid);
      border: 2px solid var(--clr-accent-violet);
    }
    .timeline-item:nth-child(2)::before { border-color: var(--clr-accent-cyan); }
    .timeline-item:nth-child(3)::before { border-color: var(--clr-accent-emerald); }
    .timeline-item:nth-child(4)::before { border-color: var(--clr-accent-violet); }
    .timeline-tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: var(--fw-bold);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--clr-accent-cyan);
      margin-bottom: 0.3em;
    }
    .timeline-item h3 { font-size: 1.05rem; margin-bottom: 0.3em; }
    .timeline-item p { font-size: 0.875rem; }

    /* =============================================
       FLOW STEPS (WHY CHOOSE US)
    ============================================= */
    .flow-steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--sp-sm);
      counter-reset: flow;
    }
    @media (min-width: 640px) { .flow-steps { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 960px) { .flow-steps { grid-template-columns: repeat(4, 1fr); } }
    .flow-step {
      position: relative;
      padding: var(--sp-md);
      counter-increment: flow;
    }
    .flow-step::before {
      content: counter(flow, decimal-leading-zero);
      display: block;
      font-size: 1.8rem;
      font-weight: var(--fw-bold);
      background: var(--grad-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.3em;
      line-height: 1;
    }
    .flow-step h3 { font-size: 1rem; margin-bottom: 0.35em; }
    .flow-step p { font-size: 0.82rem; }

    /* =============================================
       COMPARISON (ADVANTAGES)
    ============================================= */
    .vs-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--sp-sm);
    }
    @media (min-width: 760px) { .vs-grid { grid-template-columns: 1fr 1fr; } }
    .vs-card { padding: var(--sp-md); }
    .vs-card h3 { font-size: 1.05rem; margin-bottom: var(--sp-xs); }
    .vs-card.vs-before { opacity: 0.85; }
    .vs-card.vs-before .detail-list li::before { content: '\2715'; color: var(--clr-text-muted); font-size: 0.8em; margin-top: 0.35em; }
    .vs-card.vs-after {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(6, 182, 212, 0.06) 100%);
      border-color: rgba(52, 211, 153, 0.3);
    }
    .vs-card.vs-after .detail-list li::before { content: '\2713'; color: var(--clr-accent-emerald); font-size: 0.85em; margin-top: 0.3em; }
    .vs-badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: var(--fw-medium);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.25em 0.8em;
      border-radius: 100px;
      margin-bottom: var(--sp-xs);
    }
    .vs-before .vs-badge { background: rgba(255,255,255,0.06); color: var(--clr-text-muted); border: 1px solid var(--glass-border); }
    .vs-after .vs-badge { background: rgba(52, 211, 153, 0.12); color: var(--clr-accent-emerald); border: 1px solid rgba(52, 211, 153, 0.3); }

    /* =============================================
       ARCHITECTURE STACK (FEATURES)
    ============================================= */
    .stack-visual {
      display: flex;
      flex-direction: column;
      gap: 8px;
      max-width: 560px;
      margin-inline: auto;
    }
    .stack-layer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1em;
      padding: 0.85em 1.2em;
      border-radius: var(--radius-md);
      border: 1px solid var(--glass-border);
      background: var(--glass-bg);
      font-size: 0.85rem;
      transition: border-color 0.25s, transform 0.25s;
    }
    .stack-layer:hover { border-color: var(--glass-border-hover); transform: translateX(6px); }
    .stack-layer strong { color: var(--clr-text-primary); font-weight: var(--fw-medium); }
    .stack-layer span { color: var(--clr-text-muted); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
    .stack-layer:nth-child(1) { border-left: 3px solid var(--clr-accent-violet); }
    .stack-layer:nth-child(2) { border-left: 3px solid #8b5cf6; }
    .stack-layer:nth-child(3) { border-left: 3px solid var(--clr-accent-cyan); }
    .stack-layer:nth-child(4) { border-left: 3px solid #06b6d4; }
    .stack-layer:nth-child(5) { border-left: 3px solid var(--clr-accent-emerald); }
    .stack-layer:nth-child(6) { border-left: 3px solid #10b981; }


    /* =============================================
       POLICY PAGES
    ============================================= */
    .policy-content {
      max-width: 760px;
    }
    .policy-updated {
      font-size: 0.78rem;
      color: var(--clr-text-muted);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: var(--sp-md);
    }
    .policy-content h2 {
      font-size: 1.25rem;
      margin-top: var(--sp-lg);
      margin-bottom: var(--sp-xs);
    }
    .policy-content h2:first-of-type { margin-top: 0; }
    .policy-content h3 {
      font-size: 1rem;
      margin-top: var(--sp-md);
      margin-bottom: 0.4em;
      color: var(--clr-text-primary);
    }
    .policy-content p {
      font-size: 0.92rem;
      margin-bottom: var(--sp-sm);
    }
    .policy-content ul {
      display: grid;
      gap: 0.4em;
      margin-bottom: var(--sp-sm);
      padding-left: 0;
    }
    .policy-content ul li {
      display: flex;
      gap: 0.6em;
      align-items: flex-start;
      color: var(--clr-text-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
    }
    .policy-content ul li::before {
      content: '◆';
      color: var(--clr-accent-cyan);
      font-size: 0.6em;
      margin-top: 0.6em;
      flex-shrink: 0;
    }
    .policy-content a {
      color: var(--clr-accent-violet);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .policy-content a:hover { color: var(--clr-accent-cyan); }

