    :root {
      --brand-red: #BE4026;
      --brand-purple: #5A1074;
      --accent-gold: #C8952A;
      --accent-teal: #0D9B8A;
      --accent-rose: #E05A3A;

      /* Dark theme */
      --bg-primary: #080810;
      --bg-secondary: #0E0E1A;
      --bg-card: rgba(255,255,255,0.04);
      --bg-glass: rgba(255,255,255,0.05);
      --border-subtle: rgba(255,255,255,0.07);
      --border-glow: rgba(190,64,38,0.3);
      --text-primary: #F0EEF8;
      --text-secondary: #9B96B0;
      --text-muted: #5A566E;
      --text-hover: #FFFFFF;
      --text-hover-secondary: #E0D9EA;
      --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(90,16,116,0.5) 0%, transparent 70%),
                        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(190,64,38,0.25) 0%, transparent 60%),
                        #080810;
      --shadow-card: 0 4px 40px rgba(0,0,0,0.4);
      --shadow-glow-red: 0 0 40px rgba(190,64,38,0.25);
      --shadow-glow-purple: 0 0 40px rgba(90,16,116,0.3);
      --font-display: Syne, sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --font-size-xs: 0.6rem;
      --font-size-sm: 0.72rem;
      --font-size-md: 0.75rem;
      --font-size-lg: 0.8rem;
      --font-size-xl: 0.9rem;
      --font-size-stat: 1.8rem;
      --font-size-form-title: 1.2rem;
      --font-size-footer: 1.5rem;
      --space-xs: 0.2rem;
      --space-sm: 0.5rem;
      --space-md: 0.75rem;
      --space-lg: 1.5rem;
      --space-xl: 2rem;
      --space-2xl: 2.5rem;
      --space-form: 1.75rem;
      --gap-lg: 1.5rem;
      --gap-xl: 2rem;
      --letter-spacing-wide: 0.1em;
      --font-weight-bold: 700;
      --font-weight-heavy: 800;
      --color-purple-bright: #8A20A4;
      --card-bar-width: 87%;
      --delay-05: 0.05s;
      --delay-10: 0.1s;
      --delay-15: 0.15s;
      --delay-20: 0.2s;
      --delay-25: 0.25s;
      --delay-30: 0.3s;
    }

    [data-theme="light"] {
      --bg-primary: #F7F5FC;
      --bg-secondary: #EFECF8;
      --bg-card: rgba(255,255,255,0.8);
      --bg-glass: rgba(255,255,255,0.7);
      --border-subtle: rgba(0,0,0,0.08);
      --border-glow: rgba(190,64,38,0.2);
      --text-primary: #0E0C1A;
      --text-secondary: #4A4560;
      --text-muted: #8A86A0;
      --text-hover: #0E0C1A;
      --text-hover-secondary: #4A4560;
      --gradient-hero: radial-gradient(ellipse 80% 60% at 50% -20%, rgba(90,16,116,0.12) 0%, transparent 70%),
                        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(190,64,38,0.08) 0%, transparent 60%),
                        #F7F5FC;
      --shadow-card: 0 4px 30px rgba(0,0,0,0.08);
      --shadow-glow-red: 0 0 30px rgba(190,64,38,0.12);
      --shadow-glow-purple: 0 0 30px rgba(90,16,116,0.1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
      transition: background 0.4s ease, color 0.4s ease;
    }

    /* ─── PRELOADER ─── */
    #preloader {
      position: fixed; inset: 0; z-index: 9999;
      background: #060610;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 2rem;
    }

    .preloader-logo {
      font-family: lora;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #BE4026, #5A1074, #BE4026);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 2s linear infinite;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 0.6s 0.3s forwards, shimmer 2s 0.3s linear infinite;
    }

    @keyframes shimmer {
      0% { background-position: 0% center; }
      100% { background-position: 200% center; }
    }
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }

    .preloader-bar-wrap {
      width: min(320px, 80vw);
      height: 2px;
      background: rgba(255,255,255,0.08);
      border-radius: 999px;
      overflow: hidden;
      opacity: 0;
      animation: fadeUp 0.4s 0.7s forwards;
    }
    .preloader-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, #BE4026, #5A1074, #BE4026);
      background-size: 200% auto;
      border-radius: 999px;
      animation: loadBar 1.8s 0.8s cubic-bezier(.4,0,.2,1) forwards, shimmer 1s 0.8s linear infinite;
    }
    @keyframes loadBar { to { width: 100%; } }

    .preloader-tagline {
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      opacity: 0;
      animation: fadeUp 0.4s 0.9s forwards;
    }

    .preloader-orbs {
      position: absolute; inset: 0; pointer-events: none;
      overflow: hidden;
    }
    .preloader-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.3;
      animation: orbFloat 4s ease-in-out infinite alternate;
    }
    .preloader-orb:nth-child(1) { width: 400px; height: 400px; background: #5A1074; top: -10%; left: -10%; animation-delay: 0s; }
    .preloader-orb:nth-child(2) { width: 300px; height: 300px; background: #BE4026; bottom: -10%; right: -5%; animation-delay: 1s; }
    @keyframes orbFloat { from { transform: translate(0,0); } to { transform: translate(30px, -30px); } }

    #preloader.fade-out { animation: preloaderOut 0.7s forwards; }
    @keyframes preloaderOut {
      to { opacity: 0; pointer-events: none; }
    }

    /* ─── UTILS ─── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
    .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    .delay-05 { transition-delay: var(--delay-05); }
    .delay-10 { transition-delay: var(--delay-10); }
    .delay-15 { transition-delay: var(--delay-15); }
    .delay-20 { transition-delay: var(--delay-20); }
    .delay-25 { transition-delay: var(--delay-25); }
    .delay-30 { transition-delay: var(--delay-30); }

    .hero-match-title { margin-top: var(--space-sm); }
    .hero-match-subtitle { font-size: var(--font-size-md); color: var(--text-muted); margin-top: var(--space-xs); }
    .hero-match-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-md); }
    .hero-match-label { font-size: var(--font-size-sm); color: var(--text-muted); }
    .hero-match-count { font-family: inter; font-size: var(--font-size-xl); font-weight: var(--font-weight-heavy); color: var(--brand-red); }
    .avatar-more { background: var(--bg-secondary); color: var(--text-muted); font-size: var(--font-size-xs); }
    .card-bar-fill-match { width: var(--card-bar-width); }
    .about-caption { font-family: inter; font-size: var(--font-size-lg); font-weight: var(--font-weight-bold); color: var(--text-muted); letter-spacing: var(--letter-spacing-wide); text-transform: uppercase; }
    .about-action { margin-top: var(--space-xl); }
    .benchmark-note { margin-bottom: var(--space-2xl); }
    .benchmark-stats { margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--border-subtle); display: flex; gap: var(--gap-xl); }
    .benchmark-stat-value { font-family: inter; font-size: var(--font-size-stat); font-weight: var(--font-weight-heavy); }
    .benchmark-stat-label { font-size: var(--font-size-md); color: var(--text-muted); }
    .benchmark-stat-value-purple { color: var(--color-purple-bright); }
    .benchmark-stat-value-gold { color: var(--accent-gold); }
    .careers-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: var(--gap-lg); }
    .cta-container { position: relative; z-index: 1; }
    .cta-tag { justify-content: center; display: flex; margin-bottom: var(--space-lg); }
    .contact-form-title { font-family: inter; font-size: var(--font-size-form-title); font-weight: var(--font-weight-bold); margin-bottom: var(--space-form); }
    .footer-logo { display: inline-block; margin-bottom: var(--space-md); font-size: var(--font-size-footer); }
    .footer-legal-links { display: flex; gap: var(--gap-lg); }
    .footer-legal-link { font-size: var(--font-size-md); color: var(--text-muted); text-decoration: none; }

    .gradient-text {
      background: linear-gradient(135deg, #BE4026 0%, #E0602A 35%, #8A20A4 70%, #5A1074 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .pill {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-family:JetBrains Mono;letter-spacing:-1px;
      padding: 0.3rem 0.9rem;
      border-radius: 999px;
      font-size: 0.7rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border: 1px solid var(--border-glow);
      background: rgba(190,64,38,0.08);
      color: var(--brand-red);
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 1rem 0;
      transition: all 0.4s ease;
    }
    nav.scrolled {
      background: rgba(8,8,16,0.85);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border-subtle);
      padding: 0.75rem 0;
    }
    [data-theme="light"] nav.scrolled { background: rgba(247,245,252,0.88); }

    .nav-inner {
      display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    }
    .nav-logo {
      font-family: lora;
      font-size: 1.4rem;
      font-weight: 800;
      letter-spacing: -0.02em;
      text-decoration: none;
      background: linear-gradient(135deg, #BE4026, #8A20A4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      flex-shrink: 0;
    }
    .nav-links {
      display: flex; align-items: center; gap: 0.25rem;
      list-style: none;
    }
    .nav-links a {
      text-decoration: none;
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text-secondary);
      padding: 0.4rem 0.75rem;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--text-primary); background: var(--bg-glass); }

    .nav-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

    .btn {
      display: inline-flex; align-items: center; gap: 0.4rem;
      padding: 0.6rem 1.4rem;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s ease;
      border: none;
    }
    .btn-ghost {
      background: var(--bg-glass);
      border: 1px solid var(--border-subtle);
      color: var(--text-primary);
      backdrop-filter: blur(8px);
    }
    .btn-ghost:hover { background: var(--bg-card); border-color: var(--border-glow); }
    .btn-primary {
      background: linear-gradient(135deg, #BE4026, #8A1090);
      color: #fff;
      box-shadow: 0 4px 20px rgba(190,64,38,0.35);
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(190,64,38,0.45); }
    .btn-large { padding: 0.85rem 2rem; font-size: 0.95rem; border-radius: 12px; }
    .btn-outline {
      background: transparent;
      border: 1.5px solid var(--border-subtle);
      color: var(--text-primary);
    }
    .btn-outline:hover { border-color: var(--brand-red); color: var(--brand-red); }

    /* Theme toggle */
    .theme-toggle {
      width: 36px; height: 36px;
      border-radius: 10px;
      border: 1px solid var(--border-subtle);
      background: var(--bg-glass);
      color: var(--text-secondary);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      transition: all 0.2s;
      backdrop-filter: blur(8px);
    }
    .theme-toggle:hover { border-color: var(--border-glow); color: var(--brand-red); }
    .theme-toggle i,
    .mini-icon i,
    .about-icon-item i,
    .service-icon i,
    .industry-icon i,
    .why-item-icon i,
    .job-badge i,
    .job-loc i,
    .contact-info-icon i { font-size: inherit; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column; gap: 5px;
      width: 36px; height: 36px;
      align-items: center; justify-content: center;
      background: var(--bg-glass);
      border: 1px solid var(--border-subtle);
      border-radius: 10px;
      cursor: pointer;
      backdrop-filter: blur(8px);
    }
    .hamburger span {
      display: block; width: 18px; height: 1.5px;
      background: var(--text-primary);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* Mobile nav */
    .mobile-nav {
      display: none;
      position: fixed; inset: 0; z-index: 99;
      background: rgba(8,8,16,0.97);
      backdrop-filter: blur(24px);
      flex-direction: column;
      align-items: center; justify-content: center;
      gap: 2rem;
    }
    [data-theme="light"] .mobile-nav { background: rgba(247,245,252,0.97); }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: lora;
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-primary);
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-nav a:hover { color: var(--brand-red); }
    .mobile-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      width: 36px; height: 36px;
      background: var(--bg-glass); border: 1px solid var(--border-subtle);
      border-radius: 10px; cursor: pointer;
      color: var(--text-primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }

    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center;
      background: var(--gradient-hero);
      position: relative;
      overflow: hidden;
      padding-top: 6rem;
    }

    .hero-bg-grid {
      position: absolute; inset: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    }

    .hero-orb {
      position: absolute; border-radius: 50%;
      pointer-events: none; filter: blur(100px);
    }
    .hero-orb-1 { width: 600px; height: 600px; background: rgba(90,16,116,0.4); top: -20%; left: -15%; animation: orbDrift 8s ease-in-out infinite alternate; }
    .hero-orb-2 { width: 450px; height: 450px; background: rgba(190,64,38,0.25); bottom: -15%; right: -10%; animation: orbDrift 10s ease-in-out infinite alternate-reverse; }
    .hero-orb-3 { width: 200px; height: 200px; background: rgba(200,149,42,0.15); top: 40%; left: 60%; animation: orbDrift 6s ease-in-out infinite alternate; }
    @keyframes orbDrift { from { transform: translate(0,0) scale(1); } to { transform: translate(40px,-40px) scale(1.1); } }

    .hero-content {
      position: relative; z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 4rem;
      padding: 4rem 0;
    }

    .hero-label { margin-bottom: 1.5rem; }

    .hero-title {
      font-family: lora;
      font-size: clamp(2.8rem, 5.5vw, 5rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }

    .hero-sub {
      font-size: clamp(1rem, 1.5vw, 1.15rem);
      font-weight: 300;
      color: var(--text-secondary);
      max-width: 460px;
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }

    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

    .hero-stats {
      display: flex; gap: 2.5rem;
      flex-wrap: wrap;
    }
    .hero-stat-num {
      font-family: lora;
      font-size: 1.8rem;
      font-weight: 800;
      line-height: 1;
      background: linear-gradient(135deg, #BE4026, #8A20A4);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-stat-label {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-top: 0.2rem;
      letter-spacing: 0.05em;
    }

    /* Hero visual */
    .hero-visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }

    .hero-card-stack {
      position: relative; width: 100%; max-width: 440px;
      aspect-ratio: 4/3;
    }

    .hero-card {
      position: absolute;
      background: var(--bg-glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: var(--shadow-card);
    }

    .hero-card-main {
      inset: 0; display: flex; flex-direction: column;
      justify-content: space-between;
      background: linear-gradient(135deg, rgba(90,16,116,0.15), rgba(190,64,38,0.08));
      border-color: rgba(190,64,38,0.15);
    }

    .hero-card-mini {
      width: 200px;
      animation: floatCard 4s ease-in-out infinite alternate;
    }
    .hero-card-mini-1 {
      bottom: -30px; left: -40px;
      background: linear-gradient(135deg, rgba(190,64,38,0.12), rgba(190,64,38,0.04));
      border-color: rgba(190,64,38,0.2);
      animation-delay: 0s;
    }
    .hero-card-mini-2 {
      top: -25px; right: -30px;
      background: linear-gradient(135deg, rgba(90,16,116,0.12), rgba(90,16,116,0.04));
      border-color: rgba(90,16,116,0.2);
      animation-delay: 1.5s;
    }
    @keyframes floatCard {
      from { transform: translateY(0) rotate(-1deg); }
      to { transform: translateY(-12px) rotate(1deg); }
    }

    .card-chip {
      display: flex; align-items: center; gap: 0.5rem;
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--brand-red);
    }
    .chip-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--brand-red);
      animation: pulse 2s infinite;
    }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.4);} }

    .card-title {
      font-family: lora;
      font-size: 1.05rem;
      font-weight: 700;
    }

    .card-avatars {
      display: flex; gap: -8px;
    }
    .avatar {
      width: 32px; height: 32px; border-radius: 50%;
      border: 2px solid var(--bg-primary);
      background: linear-gradient(135deg, #BE4026, #5A1074);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.65rem; font-weight: 700; color: #fff;
      margin-left: -8px;
    }
    .avatar:first-child { margin-left: 0; }

    .card-bar-wrap { margin-top: 0.75rem; }
    .card-bar-label { font-size: 0.7rem; color: var(--text-muted); margin-bottom: 0.3rem; }
    .card-bar { height: 4px; border-radius: 4px; background: var(--border-subtle); overflow: hidden; }
    .card-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, #BE4026, #5A1074); transition: width 1s ease; }

    .mini-stat { font-family: lora; font-size: 1.6rem; font-weight: 800; }
    .mini-stat-label { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.1rem; }
    .mini-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }

    /* ─── SECTION COMMON ─── */
    section { padding: clamp(4rem, 8vw, 7rem) 0; }
    .section-tag { margin-bottom: 1rem; }
    .section-title {
      font-family: lora;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }
    .section-sub {
      font-size: clamp(0.9rem, 1.5vw, 1.05rem);
      color: var(--text-secondary);
      font-weight: 300;
      max-width: 540px;
      font-family:JetBrains Mono;letter-spacing:-1px;
      line-height: 1.7;
    }
    .section-head { margin-bottom: 3.5rem; }
    .section-head-center { text-align: center; }
    .section-head-center .section-sub { margin: 0 auto;font-family:JetBrains Mono;letter-spacing:-1px; }

    /* ─── MARQUEE ─── */
    .marquee-section {
      padding: 1.5rem 0;
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
      overflow: hidden;
    }
    .marquee-track {
      display: flex; gap: 3rem;
      animation: marquee 30s linear infinite;
      width: max-content;
    }
    .marquee-item {
      font-family: lora;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      white-space: nowrap;
      display: flex; align-items: center; gap: 1rem;
    }
    .marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-red); flex-shrink: 0; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* ─── ABOUT ─── */
    #about { background: var(--bg-secondary); }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-img-wrap {
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(90,16,116,0.2), rgba(190,64,38,0.15));
      border: 1px solid var(--border-subtle);
      aspect-ratio: 4/3;
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .about-img-inner {
      padding: 2rem; text-align: center;
    }
    .about-icon-grid {
      display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
      margin-bottom: 1rem;
    }
    .about-icon-item {
      aspect-ratio: 1;
      border-radius: 14px;
      background: var(--bg-glass);
      border: 1px solid var(--border-subtle);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      transition: all 0.3s;
    }
    .about-icon-item:hover { background: rgba(190,64,38,0.1); border-color: var(--border-glow); transform: scale(1.05); }

    .about-badge {
      position: absolute;
      background: var(--bg-glass);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border-subtle);
      border-radius: 14px;
      padding: 1rem 1.25rem;
      box-shadow: var(--shadow-card);
    }
    .about-badge-1 { bottom: -20px; right: -20px; }
    .about-badge-2 { top: -20px; left: -20px; }
    .badge-val { font-family: lora; font-size: 1.5rem; font-weight: 800; color: var(--brand-red); }
    .badge-desc { font-size: 0.7rem; color: var(--text-muted); }

    .about-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; font-weight: 300; }
    .about-text p:last-of-type { margin-bottom: 2rem; }

    .about-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
    .tag {
      padding: 0.35rem 0.8rem;
      border-radius: 8px;
      font-size: 0.75rem;
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      color: var(--text-secondary);
      transition: all 0.2s;
    }
    .tag:hover { border-color: var(--border-glow); color: var(--brand-red); }

    /* ─── SERVICES ─── */
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
    }
    .service-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      padding: 2rem;
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      background: linear-gradient(135deg, rgba(190,64,38,0.06), rgba(90,16,116,0.06));
      transition: opacity 0.35s;
      z-index: 0;
    }
    .service-card > * { position: relative; z-index: 1; }
    .service-card:hover { transform: translateY(-6px); border-color: var(--border-glow); box-shadow: var(--shadow-glow-red); }
    .service-card:hover::before { opacity: 1; }
    
    .service-card:hover .service-title { color: white; }
    .service-card:hover .service-desc { color: white; }
    .service-card:hover .service-icon { color: white; }
    

    .service-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: linear-gradient(135deg, rgba(190,64,38,0.15), rgba(90,16,116,0.15));
      border: 1px solid var(--border-glow);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 1.25rem;
    }
    .service-title { font-family: lora; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
    .service-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; font-weight: 300; }

    /* ─── INDUSTRIES ─── */
    #industries { background: var(--bg-secondary); }
    .industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
    .industry-item {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 16px;
      padding: 1.5rem;
      text-align: center;
      transition: all 0.3s;
      cursor: default;
    }
    .industry-item:hover { border-color: var(--border-glow); transform: translateY(-4px); background: var(--bg-glass); }
    .industry-item:hover .industry-icon { color: var(--brand-red); }
    .industry-item:hover .industry-name { color: var(--text-hover); }
    .industry-item:hover .industry-count { color: var(--text-hover-secondary); }
    .industry-icon { font-size: 2rem; margin-bottom: 0.75rem; }
    .industry-name { font-family: lora; font-size: 0.85rem; font-weight: 700; }
    .industry-count { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.2rem; }

    /* ─── PROCESS ─── */
    .process-track {
      display: grid; grid-template-columns: repeat(5, 1fr);
      gap: 0; position: relative;
      margin-top: 3rem;
    }
    .process-track::before {
      content: '';
      position: absolute;
      top: 28px; left: 10%; right: 10%;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--border-subtle), var(--brand-red), var(--brand-purple), var(--border-subtle), transparent);
    }
    .process-step { text-align: center; padding: 0 1rem; position: relative; }
    .process-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--bg-card);
      border: 2px solid var(--border-subtle);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
      font-family: lora;
      font-size: 1.1rem; font-weight: 800;
      transition: all 0.3s;
      position: relative; z-index: 1;
    }
    .process-step:hover .process-num {
      background: linear-gradient(135deg, #BE4026, #5A1074);
      color: #fff; border-color: transparent;
      box-shadow: var(--shadow-glow-red);
    }
    .process-step-title { font-family: lora; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.4rem; }
    .process-step-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }

    /* ─── WHY CHOOSE US ─── */
    #why { background: var(--bg-secondary); }
    .why-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
    .why-features { display: flex; flex-direction: column; gap: 1rem; }
    .why-item {
      display: flex; gap: 1rem; align-items: flex-start;
      padding: 1.25rem;
      border-radius: 16px;
      border: 1px solid transparent;
      transition: all 0.3s;
      cursor: default;
    }
    .why-item:hover { background: var(--bg-card); border-color: var(--border-glow); }
    .why-item:hover .why-item-icon { color: var(--brand-red); }
    .why-item:hover .why-item-title { color: var(--text-hover); }
    .why-item:hover .why-item-desc { color: var(--text-hover-secondary); }
    .why-item-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(190,64,38,0.15), rgba(90,16,116,0.15));
      border: 1px solid var(--border-glow);
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }
    .why-item-title { font-family: lora; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
    .why-item-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; font-weight: 300; }

    .why-visual {
      background: linear-gradient(135deg, rgba(90,16,116,0.12), rgba(190,64,38,0.08));
      border: 1px solid var(--border-subtle);
      border-radius: 24px;
      padding: 2.5rem;
    }
    .why-chart-title { font-family: lora; font-size: 0.9rem; font-weight: 700; margin-bottom: 2rem; }
    .why-bar-list { display: flex; flex-direction: column; gap: 1.1rem; }
    .why-bar-item {}
    .why-bar-meta { display: flex; justify-content: space-between; font-size: 0.75rem; margin-bottom: 0.4rem; }
    .why-bar-label { color: var(--text-secondary); }
    .why-bar-val { color: var(--brand-red); font-weight: 600; }
    .why-bar-track { height: 6px; border-radius: 6px; background: var(--border-subtle); overflow: hidden; }
    .why-bar-fill { height: 100%; border-radius: 6px; background: linear-gradient(90deg, #BE4026, #5A1074); width: 0; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); }

    /* ─── JOBS ─── */
    .jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
    .job-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 18px;
      padding: 1.75rem;
      transition: all 0.3s;
      display: flex; flex-direction: column; gap: 1rem;
    }
    .job-card:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: var(--shadow-glow-red); }
    .job-card:hover .job-title { color: var(--text-hover); }
    .job-card:hover .job-company,
    .job-card:hover .job-loc { color: var(--text-hover-secondary); }
    .job-card:hover .job-tag { color: var(--text-secondary); border-color: var(--border-glow); }
    .job-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }
    .job-title { font-family: lora; font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
    .job-company { font-size: 0.8rem; color: var(--text-muted); }
    .job-badge {
      font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; padding: 0.25rem 0.6rem;
      border-radius: 6px; white-space: nowrap; flex-shrink: 0;
    }
    .badge-new { background: rgba(13,155,138,0.12); color: #0D9B8A; border: 1px solid rgba(13,155,138,0.2); }
    .badge-hot { background: rgba(190,64,38,0.12); color: var(--brand-red); border: 1px solid var(--border-glow); }
    .badge-remote { background: rgba(90,16,116,0.12); color: #8A20A4; border: 1px solid rgba(90,16,116,0.2); }

    .job-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
    .job-tag {
      font-size: 0.7rem; padding: 0.2rem 0.6rem;
      border-radius: 6px; background: var(--bg-secondary);
      border: 1px solid var(--border-subtle); color: var(--text-muted);
    }
    .job-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 0.75rem; border-top: 1px solid var(--border-subtle); }
    .job-salary { font-family: lora; font-size: 0.95rem; font-weight: 700; color: var(--brand-red); }
    .job-loc { font-size: 0.75rem; color: var(--text-muted); }

    .jobs-cta { text-align: center; margin-top: 2.5rem; }

    /* ─── TESTIMONIALS ─── */
    #testimonials { background: var(--bg-secondary); overflow: hidden; }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .testi-card {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 20px;
      padding: 2rem;
      transition: all 0.3s;
    }
    .testi-card:hover { border-color: var(--border-glow); transform: translateY(-4px); }
    .testi-card:hover .testi-quote { color: var(--text-hover-secondary); }
    .testi-card:hover .testi-name { color: var(--text-hover); }
    .testi-card:hover .testi-role { color: var(--text-hover-secondary); }
    .testi-stars { color: var(--accent-gold); font-size: 0.8rem; margin-bottom: 1rem; letter-spacing: 2px; }
    .testi-quote { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.75; font-weight: 300; margin-bottom: 1.5rem; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 0.75rem; }
    .testi-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: linear-gradient(135deg, #BE4026, #5A1074);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem; font-weight: 700; color: #fff; flex-shrink: 0;
    }
    .testi-name { font-family: lora; font-size: 0.85rem; font-weight: 700; }
    .testi-role { font-size: 0.72rem; color: var(--text-muted); }

    /* ─── CONTACT ─── */
    .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
    .contact-info-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
    .contact-info-item { display: flex; align-items: center; gap: 1rem; }
    .contact-info-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: linear-gradient(135deg, rgba(190,64,38,0.12), rgba(90,16,116,0.12));
      border: 1px solid var(--border-glow);
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
      flex-shrink: 0;
    }
    .contact-info-label { font-size: 0.7rem; color: var(--text-muted); }
    .contact-info-val { font-size: 0.88rem; font-weight: 500; }

    .contact-form {
      background: var(--bg-card);
      border: 1px solid var(--border-subtle);
      border-radius: 24px;
      padding: 2.5rem;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
    .form-group { margin-bottom: 0; }
    .form-label { display: block; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 0.75rem 1rem;
      border-radius: 10px;
      background: var(--bg-secondary);
      border: 1px solid var(--border-subtle);
      color: var(--text-primary);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      transition: border 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--brand-red);
      box-shadow: 0 0 0 3px rgba(190,64,38,0.1);
    }
    .form-textarea { min-height: 120px; resize: vertical; }
    .form-full { margin-bottom: 1rem; }
    .form-submit { width: 100%; margin-top: 0.5rem; justify-content: center; padding: 1rem; font-size: 0.95rem; border-radius: 12px; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg-secondary);
      border-top: 1px solid var(--border-subtle);
      padding: 4rem 0 2rem;
    }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-brand-desc {font-family:JetBrains Mono;letter-spacing:-1px;font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin: 1rem 0 1.5rem; font-weight: 300; max-width: 280px; }
    .footer-social { display: flex; gap: 0.6rem; }
    .social-btn {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--bg-card); border: 1px solid var(--border-subtle);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; text-decoration: none; color: var(--text-muted);
      transition: all 0.2s;
    }
    .social-btn:hover { border-color: var(--border-glow); color: var(--brand-red); }
    .footer-col-title { font-family: lora; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.25rem; color: var(--text-primary); }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-links a { text-decoration: none; font-size: 0.83rem; color: var(--text-muted); transition: color 0.2s; }
    .footer-links a:hover { color: var(--brand-red); }
    .footer-bottom { padding-top: 1.5rem; border-top: 1px solid var(--border-subtle); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-copy { font-size: 0.78rem; color: var(--text-muted); }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      margin: 0;
      background: linear-gradient(135deg, rgba(90,16,116,0.15) 0%, rgba(190,64,38,0.1) 100%);
      border-top: 1px solid var(--border-subtle);
      border-bottom: 1px solid var(--border-subtle);
      padding: 5rem 0;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .cta-banner::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(90,16,116,0.2) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-title { font-family: lora; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1rem; }
    .cta-sub { font-size: 1.05rem; color: var(--text-secondary); font-weight: 300; margin-bottom: 2rem; }
    .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .hero-content { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
      .hero-sub { max-width: 100%; }
      .hero-actions { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual { display: none; }
      .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .industries-grid { grid-template-columns: repeat(3, 1fr); }
      .process-track { grid-template-columns: repeat(3, 1fr); }
      .process-track::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .testi-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-actions .btn-ghost { display: none; }
      .hamburger { display: flex; }
      .services-grid { grid-template-columns: 1fr; }
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .process-track { grid-template-columns: 1fr 1fr; }
      .jobs-grid { grid-template-columns: 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    @media (max-width: 480px) {
      .industries-grid { grid-template-columns: repeat(2, 1fr); }
      .process-track { grid-template-columns: 1fr; }
      .hero-stats { gap: 1.5rem; }
      .about-badge { display: none; }
    }

    /* Animated gradient border on featured card */
    .featured-border {
      position: relative;
    }
    .featured-border::after {
      content: '';
      position: absolute; inset: -1px;
      border-radius: 21px;
      background: linear-gradient(135deg, #BE4026, #5A1074, #BE4026);
      background-size: 300% auto;
      animation: borderSpin 4s linear infinite;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .featured-border:hover::after { opacity: 1; }
    @keyframes borderSpin { to { background-position: 300% center; } }

    /* Scroll progress bar */
    #scroll-progress {
      position: fixed; top: 0; left: 0; height: 2px; z-index: 999;
      background: linear-gradient(90deg, #BE4026, #5A1074);
      width: 0%; transition: width 0.1s;
    }

    .footer-copy{
      color:var(--text-primary);
      text-align:center;
      width:100%;
    }
    .footer-copy a{
      text-decoration:none;
      color:var(--text-primary);
      font-weight:800;
    }