:root {
    --orange:       #dc141b;
    --orange-light: #ee2a31;
    --orange-pale:  #FFF1EB;
    --navy:         #1C1F3A;
    --navy-mid:     #2D3160;
    --navy-light:   #3D4280;
    --white:        #FFFFFF;
    --off-white:    #F9F8F6;
    --text-mid:     #4A4E72;
    --text-light:   #7A7E9A;
    --border:       #E6E3F4;
    --font-medium:  15px;
  }

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

  body {
    font-family: 'DM Sans', sans-serif;
    background: #EDECEB;
    margin: 0;
    padding: 0;
    font-size: 15px;
  }

  .page {
    width: 85%;
    height: 100%;
    background: var(--off-white);
    margin: 0 auto;
  }

  p {
    font-size: 15px;
    margin: 0 0 14px;
  }

  .highlight-text {
    color: var(--orange);
  }

  .drag-hint-scroll {
    display: none;
  }

  /* ════════════════════════════  NAV  ════════════════════════════ */
  .logo-img {
    width: 190px;
  }
  .sticky-header {
    background: #FFFFFF;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .nav {
    /*background: var(--navy);*/
    background: #FFFFFF;
    padding: 14px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .nav-brand {
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
  }
  .nav-brand .b { color: var(--orange); }
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-family: 'Sora', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .nav-links a:hover { color: var(--orange); }
  .nav-cta {
    background: var(--orange);
    color: white !important;
    border-radius: 5px;
  }

  /* ════════════════════════════  HERO  ════════════════════════════ */
  .hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.15; filter: saturate(0.3);
  }
  .hero-grad {
    position: absolute; inset: 0;
    background: linear-gradient(112deg, rgba(28,31,58,0.97) 36%, rgba(45,49,96,0.80) 100%);
  }
  .hero-glow-tr {
    position: absolute; top: -90px; right: -90px;
    width: 420px; height: 420px;
    background: radial-gradient(circle, var(--orange) 0%, transparent 65%);
    opacity: 0.18; pointer-events: none;
  }
  .hero-glow-bl {
    position: absolute; bottom: -70px; left: 20%;
    width: 280px; height: 280px;
    background: radial-gradient(circle, var(--navy-light) 0%, transparent 65%);
    opacity: 0.35; pointer-events: none;
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 52px 50px 42px;
    display: flex; gap: 44px; align-items: center;
  }
  .hero-text { flex: 1; }
  .hero-eyebrow {
    font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 700;
    letter-spacing: 3.5px; text-transform: uppercase; color: var(--orange);
    margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
  }
  .hero-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
  .hero h1 {
    font-family: 'Sora', sans-serif; font-size: 54px; font-weight: 900;
    color: var(--white); line-height: 1.0; letter-spacing: -2px; margin-bottom: 10px;
  }
  .hero h1 em { font-style: normal; color: var(--orange); }
  .hero-product-line {
    font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 400;
    color: rgba(255,255,255,0.38); letter-spacing: 1px; margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 15px; color: rgba(255,255,255,0.62);
    line-height: 1.74; max-width: 420px; font-weight: 300; margin-bottom: 28px;
  }
  .hero-actions { display: flex; gap: 12px; align-items: center; }
  .hero-btn-primary {
    background: var(--orange); color: white;
    font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700;
    padding: 13px 26px; border-radius: 6px; text-decoration: none; white-space: nowrap;
  }
  .hero-btn-secondary {
    color: rgba(255,255,255,0.60);
    font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600;
    padding: 12px 22px; border-radius: 6px; text-decoration: none;
    border: 1px solid rgba(255,255,255,0.20); white-space: nowrap;
  }
  .hero-badges { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
  .badge-pill {
    background: rgba(240,90,40,0.14); border: 1px solid rgba(240,90,40,0.4);
    color: var(--orange-light); font-family: 'Sora', sans-serif;
    font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    padding: 9px 22px; border-radius: 30px; text-align: center; white-space: nowrap;
  }

  /* ════════════ TICKER ════════════ */
  .ticker-bg {
    background: var(--orange);
    overflow: hidden;
    width: 100%;
  }
  .ticker-wrap {
    width: 100%;
    overflow: hidden;
  }
  .ticker {
    background: var(--orange); padding: 12px 50px;
    display: flex; align-items: center; gap: 24px; width: max-content; animation: marquee 20s linear infinite;
  }
  .ticker:hover {
    animation-play-state: paused;
  }
  .t-item { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; color: white; white-space: nowrap; display: flex; align-items: center; gap: 7px; }
  .t-dot { width: 4px; height: 4px; background: rgba(255,255,255,0.4); border-radius: 50%; flex-shrink: 0; }
  
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  /* ════════════ SHARED ════════════ */
  .section-label {
    font-family: 'Sora', sans-serif; font-size: 10.5px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--orange);
    margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
  }
  .section-label::before { content: ''; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }

  /* ════════════ WHO WE ARE ════════════ */
  .who {
    padding: 70px 50px;
    display: grid; grid-template-columns: 1fr 300px;
    gap: 48px; align-items: center;
    background: var(--white);
  }
  .who h2 {
    font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800;
    color: var(--navy); line-height: 1.22; margin-bottom: 18px; letter-spacing: -0.5px;
  }
  .who h2 span { color: var(--orange); }
  .who p { font-size: 15px; color: var(--text-mid); line-height: 1.80; margin-bottom: 14px; }
  .service-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
  .sp {
    display: flex; align-items: center; gap: 7px;
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: 8px; padding: 8px 14px;
    font-family: 'Sora', sans-serif; font-size: 10.5px; font-weight: 700; color: var(--navy);
  }
  .sp .dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
  .who-img { border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(28,31,58,0.14); position: relative; }
  .who-img img { width: 100%; height: 295px; object-fit: cover; display: block; object-position: right;}
  .who-img-tag {
    position: absolute; bottom: 14px; left: 14px;
    background: var(--navy); color: white;
    font-family: 'Sora', sans-serif; font-size: 9.5px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 14px; border-radius: 4px; border-left: 3px solid var(--orange);
  }

  /* ════════════ FOUNDERS ════════════ */
  .founders {
    padding: 54px 50px;
    background: var(--off-white);
  }
  .founders h2 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.4px; }
  .founders-sub { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
  .founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .founder-card {
    background: var(--white); border-radius: 16px; overflow: hidden;
    box-shadow: 0 6px 28px rgba(28,31,58,0.08); border: 1px solid var(--border);
  }
  .founder-img { position: relative;padding: 22px 20px 10px; background: #f7f7ff;display: flex;align-items: center;gap: 15px; }
  .founder-ico { border-radius: 50%; }
  /* .founder-img img { width: 100%; height: 200px; object-fit: cover; object-position: top; display: block; filter: saturate(0.85); } */
  /* .founder-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,31,58,0.55) 0%, transparent 55%); } */
  .founder-name-overlay {
    font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 800; color: #1c1f3a;
    letter-spacing: -0.3px; line-height: 1.2;
  }
  .founder-name-overlay span { display: block; font-size: 9.5px; font-weight: 600; color: var(--orange); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 3px; }
  .founder-body { padding: 22px 20px; }
  .founder-role {
    font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase; color: var(--orange);
    margin-bottom: 10px;
  }
  .founder-body p { font-size: 14.5px; color: var(--text-mid); line-height: 1.68; margin-bottom: 10px; }
  .founder-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
  .ftag {
    background: #EEF0FA; border: 1px solid var(--border);
    color: var(--navy-light); font-family: 'Sora', sans-serif;
    font-size: 12.5px; font-weight: 700; padding: 3px 9px; border-radius: 4px;
  }
  .founder-orgs {
    display: flex; gap: 8px; margin-top: 12px; padding-top: 12px;
    border-top: 1px solid var(--border); align-items: center;
  }
  .org-badge {
    background: var(--navy); color: rgba(255,255,255,0.7);
    font-family: 'Sora', sans-serif; font-size: 9px; font-weight: 700;
    padding: 4px 10px; border-radius: 4px; letter-spacing: 0.5px;
  }

  /* ════════════ WHAT WE DO ════════════ */
  #enterprise-service,#digital,#artificial,#mobility-solutions{
    scroll-margin-top: 64px;
  }
  .services {
    padding: 70px 50px;
    background: var(--white);
  }
  .services h2 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.4px; }
  .services-sub { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; }
  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .svc-card {
    background: var(--off-white); border-radius: 14px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(28,31,58,0.07);
    display: flex; flex-direction: column;
    border: 1px solid var(--border);
  }
  .svc-card img { width: 100%; height: 148px; object-fit: cover; display: block; }
  .svc-body { padding: 22px 20px; flex: 1; position: relative; }
  .svc-body::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), transparent); }
  .svc-icon-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
  .svc-icon { width: 38px; height: 38px; background: var(--orange-pale); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
  .svc-body h3 { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
  .svc-body p { font-size: 14px; color: var(--text-mid); line-height: 1.65; margin-bottom: 14px; }
  .svc-body ul { list-style: none; padding: 0; }
  .svc-body ul li {
    font-size: 14px; color: var(--text-mid); line-height: 1.55;
    padding: 5px 0 5px 16px; position: relative;
    border-bottom: 1px solid rgba(230,227,244,0.6);
  }
  .svc-body ul li:last-child { border-bottom: none; }
  .svc-body ul li::before { content: '›'; position: absolute; left: 0; color: var(--orange); font-weight: 700; font-size: 15px; line-height: 1.2; }
  .svc-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700;
    color: var(--orange); text-decoration: none; margin-top: 14px;
    letter-spacing: 0.3px;
  }

  /* ════════════ INDUSTRIES ════════════ */
  .industries {
    background: var(--navy); padding: 70px 50px;
    position: relative; overflow: hidden;
  }
  .industries::before { content: ''; position: absolute; top: -100px; right: -100px; width: 360px; height: 360px; background: radial-gradient(circle, var(--orange) 0%, transparent 60%); opacity: 0.10; pointer-events: none; }
  .industries h2 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: white; margin-bottom: 8px; letter-spacing: -0.4px; position: relative; z-index: 1; }
  .industries h2 span { color: var(--orange); }
  .industries-sub { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 32px; font-weight: 300; position: relative; z-index: 1; }
  .ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; position: relative; z-index: 1; }
  .ind-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px; padding: 22px 18px;
    display: flex; flex-direction: column; gap: 10px;
    transition: border-color 0.2s;
  }
  .ind-icon { font-size: 26px; }
  .ind-card h4 { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: white; }
  .ind-card p { font-size: 13.5px; color: rgba(255,255,255,0.50); line-height: 1.6; font-weight: 300; }
  .ind-tag {
    display: inline-block; background: rgba(240,90,40,0.15);
    border: 1px solid rgba(240,90,40,0.3); color: var(--orange-light);
    font-family: 'Sora', sans-serif; font-size: 9px; font-weight: 700;
    padding: 3px 9px; border-radius: 4px; letter-spacing: 0.5px; text-transform: uppercase;
    align-self: flex-start;
  }

  /* ════════════ WHY US - stats + checklist ════════════ */
  .why-band {
    background: var(--orange); padding: 30px 50px;
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .why-stat { text-align: center; position: relative; }
  .why-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 8%; bottom: 8%; width: 1px; background: rgba(255,255,255,0.25); }
  .why-num { font-family: 'Sora', sans-serif; font-size: 35px; font-weight: 900; color: white; line-height: 1; letter-spacing: -1px; margin-bottom: 6px; }
  .why-label { font-size: 13.5px; color: rgba(255,255,255,0.82); line-height: 1.2; }

  .why {
    padding: 70px 50px;
    background: var(--off-white);
    display: grid; grid-template-columns: 1fr 310px;
    gap: 48px; align-items: start;
  }
  .why h2 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.4px; }
  .why h2 span { color: var(--orange); }
  .why-intro { font-size: 15px; color: var(--text-mid); line-height: 1.78; margin-bottom: 24px; }
  .why-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
  .why-list li {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 13px; color: var(--text-mid); line-height: 1.55;
    padding: 12px 0; border-bottom: 1px solid var(--border);
  }
  .why-list li:last-child { border-bottom: none; }
  .wl-num {
    width: 26px; height: 26px; background: var(--navy);
    border-radius: 6px; display: flex; align-items: center; justify-content: center;
    font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 900;
    color: var(--orange); flex-shrink: 0; margin-top: 1px;
  }
  /* right - approach cards */
  .approach-cards { display: flex; flex-direction: column; gap: 14px; }
  .ap-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 18px 16px;
    display: flex; align-items: flex-start; gap: 14px;
    position: relative; overflow: hidden;
  }
  .ap-card::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 3px; background: var(--orange); opacity: 0.7; }
  .ap-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
  .ap-title { font-family: 'Sora', sans-serif; font-size: 12.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .ap-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }

  /* ════════════ APPROACH / HOW ════════════ */
  .how {
    padding: 54px 50px;
    background: var(--white);
  }
  .how h2 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.4px; }
  .how-sub { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 30px; }
  .how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 26px; }
  .how-card { background: var(--off-white); border-radius: 12px; overflow: hidden; display: flex; border: 1px solid var(--border); }
  .how-num { width: 54px; background: var(--navy); display: flex; align-items: flex-start; justify-content: center; padding-top: 20px; flex-shrink: 0; }
  .how-num span { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 900; color: var(--orange); line-height: 1; }
  .how-body { padding: 20px 17px; }
  .how-body h3 { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
  .how-body p { font-size: 12px; color: var(--text-mid); line-height: 1.65; }
  .how-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .how-img-row img { width: 100%; height: 170px; object-fit: cover; display: block; border-radius: 10px; }

  /* ════════════ TECH STACK ════════════ */
  .tech {
    background: var(--navy); padding: 54px 50px;
    position: relative; overflow: hidden;
  }
  .tech::before { content: ''; position: absolute; bottom: -80px; left: -80px; width: 320px; height: 320px; background: radial-gradient(circle, var(--orange) 0%, transparent 60%); opacity: 0.09; pointer-events: none; }
  .tech h2 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: white; margin-bottom: 8px; letter-spacing: -0.4px; position: relative; z-index: 1; }
  .tech-sub { font-size: 15px; color: rgba(255,255,255,0.52); line-height: 1.7; margin-bottom: 30px; font-weight: 300; position: relative; z-index: 1; }
  .tech-categories { display: flex; flex-direction: column; gap: 22px; position: relative; z-index: 1; }
  .tech-cat-label { font-family: 'Sora', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.30); margin-bottom: 10px; }
  .tech-pills { display: flex; flex-wrap: wrap; gap: 8px; }
  .tech-pill {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.75);
    font-family: 'JetBrains Mono', monospace; font-size: 13px; font-weight: 700;
    padding: 7px 14px; border-radius: 6px; white-space: nowrap;
  }
  .tech-pill.highlight { background: rgba(240,90,40,0.15); border-color: rgba(240,90,40,0.35); color: var(--orange-light); }
  .tech-sep { height: 1px; background: rgba(255,255,255,0.06); }

  /* ════════════ TESTIMONIALS ════════════ */
  .testi {
    padding: 54px 50px;
    background: var(--off-white);
  }
  .testi h2 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.4px; }
  .testi-sub { font-size: 15px; color: var(--text-mid); line-height: 1.7; margin-bottom: 30px; max-width: 520px; }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .testi-card {
    background: var(--white); border: 1px solid var(--border); border-radius: 12px;
    padding: 22px 18px; position: relative; overflow: hidden;
  }
  .testi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), transparent); }
  .testi-quote { font-family: Georgia, serif; font-size: 40px; color: var(--orange); opacity: 0.22; line-height: 1; margin-bottom: 8px; }
  .testi-text { font-size: 13px; color: var(--text-mid); line-height: 1.68; font-style: italic; margin-bottom: 14px; }
  .testi-author { font-family: 'Sora', sans-serif; font-size: 10.5px; font-weight: 700; color: var(--navy); }
  .testi-role { font-size: 10px; color: var(--text-light); margin-top: 2px; }
  .testi-org { font-size: 9px; color: var(--orange); font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 2px; }

  /* ════════════ CONTACT ════════════ */
  .contact-section {
    background: var(--white); padding: 54px 50px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  }
  .contact-section h2 { font-family: 'Sora', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 10px; letter-spacing: -0.4px; }
  .contact-section h2 span { color: var(--orange); }
  .contact-p { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }
  .contact-info { display: flex; flex-direction: column; gap: 16px; }
  .ci-row { display: flex; align-items: flex-start; gap: 14px; }
  .ci-icon { width: 36px; height: 36px; background: var(--orange-pale); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
  .ci-text strong { font-family: 'Sora', sans-serif; font-size: 11px; font-weight: 700; color: var(--navy); display: block; margin-bottom: 2px; letter-spacing: 0.3px; text-transform: uppercase; }
  .ci-text span { font-size: 13.5px; color: var(--text-mid); line-height: 1.55; }
  .ci-text a { color: var(--orange); text-decoration: none; font-weight: 600; }
  .contact-form { display: flex; flex-direction: column; gap: 14px; }
  .cf-field {
    background: var(--off-white); border: 1px solid var(--border);
    border-radius: 8px; padding: 13px 16px;
    font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--navy);
    width: 100%; outline: none;
  }
  .cf-field::placeholder { color: var(--text-light); }
  textarea.cf-field { height: 90px; resize: none; }
  .cf-submit {
    background: var(--orange); color: white;
    font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700;
    padding: 13px 24px; border-radius: 6px; border: none;
    cursor: pointer; text-align: left; letter-spacing: 0.3px;
  }

  /* ════════════ CTA BANNER ════════════ */
  .cta-section { position: relative; overflow: hidden; min-height: 220px; display: flex; align-items: center; }
  .cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.15) saturate(0.25); }
  .cta-overlay { position: absolute; inset: 0; background: linear-gradient(108deg, var(--navy) 28%, rgba(28,31,58,0.88) 100%); }
  .cta-glow { position: absolute; top: -60px; right: 80px; width: 300px; height: 300px; background: radial-gradient(circle, var(--orange) 0%, transparent 60%); opacity: 0.22; }
  .cta-content { position: relative; z-index: 1; padding: 44px 50px; display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 40px; }
  .cta-text h2 { font-family: 'Sora', sans-serif; font-size: 27px; font-weight: 900; color: white; letter-spacing: -0.5px; line-height: 1.2; margin-bottom: 12px; }
  .cta-text h2 em { font-style: normal; color: var(--orange); }
  .cta-text p { font-size: 14px; color: rgba(255,255,255,0.58); line-height: 1.68; font-weight: 300; }
  .cta-actions { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
  .cta-btn-primary { background: var(--orange); color: white; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 12.5px; padding: 14px 30px; border-radius: 6px; text-decoration: none; display: block; text-align: center; white-space: nowrap; }
  .cta-btn-secondary { background: transparent; color: rgba(255,255,255,0.65); font-family: 'Sora', sans-serif; font-weight: 600; font-size: 11.5px; padding: 12px 30px; border-radius: 6px; text-decoration: none; display: block; text-align: center; border: 1px solid rgba(255,255,255,0.22); white-space: nowrap; }

  /* ════════════ FOOTER ════════════ */
  .footer {
    background: #12142A; padding: 32px 50px 22px;
  }
  .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 28px; }
  .footer-brand-col {}
  .footer-brand { font-family: 'JetBrains Mono', monospace; font-size: 17px; font-weight: 700; color: white; margin-bottom: 8px; }
  .footer-brand span { color: var(--orange); }
  .footer-tagline { font-size: 12.5px; color: rgba(255,255,255,0.35); line-height: 1.65; max-width: 240px; margin-bottom: 14px; }
  .footer-socials { display: flex; gap: 8px; }
  .social-btn { width: 30px; height: 30px; background: rgba(255,255,255,0.06); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; text-decoration: none; }
  .footer-col-title { font-family: 'Sora', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 14px; }
  .footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px;margin: 0;padding: 0; }
  .footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; }
  .footer-links a:hover { color: var(--orange); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 18px; display: flex; align-items: center; justify-content: space-between; }
  .footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.5); }
  .footer-stack { display: flex; gap: 7px; }
  .fs-pill { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.09); color: rgba(255,255,255,0.28); }



  /* ════════════════════════════ ANONYMITY DARK BAND ════════════════════════════ */
.sync-band {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 450px;
  position: relative;
  overflow: hidden;
}

.sync-band::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 60%);
  opacity: 0.12;
  pointer-events: none;
}

.sync-text {
  padding: 46px 36px 46px 50px;
  position: relative;
  z-index: 1;
}

.sync-text h2 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.sync-text h2 span {
  color: var(--orange);
}

.sync-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.72;
  margin-bottom: 26px;
  font-weight: 300;
}

.sync-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 0;
  padding: 0;
}

.sync-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
  flex-shrink: 0;
  margin-top: 1px;
}

.sync-img {
  position: relative;
  overflow: hidden;
}

.sync-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.45) brightness(0.72);
}

.sync-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 42%);
}

  /* ════════════════════════════ WHITE GAP BETWEEN Technology Stack AND CTA BANNER ════════════════════════════ */

.section-gap{
  width: 100%;
  height: 10px;
  background: var(--white)
}

/* ══ CURRENT SECTION IN HEADER CSS ══ */
.navbar-nav .nav-item .active{
  color: #ff2a2a;
  border-bottom: 3px solid #ff2a2a;
}