:root {
    --orange: #F7941D;
    --orange-deep: #E07B0A;
    --orange-glow: rgba(247,148,29,0.28);
    --orange-soft: rgba(247,148,29,0.10);
    --navy: #1B2A6B;
    --navy-deep: #0D1535;
    --navy-light: #2B3D8A;
    --white: #FFFFFF;
    --offwhite: #F4F6FB;
    --gray: #8090B8;
    --dark-bg: #080E28;
    --card-bg: rgba(20,32,80,0.55);
    --border: rgba(247,148,29,0.15);
    --border-soft: rgba(255,255,255,0.07);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
  }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image:
      linear-gradient(rgba(247,148,29,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(247,148,29,0.03) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none; z-index: 0;
  }

  /* ── NAVBAR ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 76px;
    background: rgba(8,14,40,0.90);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
  }

  /* ── LOGO ── */
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }

  .logo-emblem {
    position: relative;
    width: 48px; height: 48px;
    flex-shrink: 0;
  }
  .logo-emblem svg { width: 48px; height: 48px; }

  .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
  .brand-main {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800; font-size: 18px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .brand-sub {
    font-family: 'Orbitron', sans-serif;
    font-weight: 400; font-size: 9px;
    color: var(--orange);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 1px;
  }

  /* ── NAV LINKS ── */
  .nav-links { display: flex; gap: 8px; list-style: none; align-items: center; }
  .nav-links > li { position: relative; }

  .nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.70);
    font-size: 13.5px; font-weight: 500;
    letter-spacing: 0.4px;
    padding: 6px 14px;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    display: flex; align-items: center; gap: 5px;
  }
  .nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }

  /* Services dropdown */
  .has-dropdown > a::after { content: '▾'; font-size: 10px; opacity: 0.6; }
  .dropdown {
    position: absolute; top: calc(100% + 10px); left: 50%;
    transform: translateX(-50%);
    background: rgba(10,16,44,0.97);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px;
    min-width: 220px;
    opacity: 0; pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.22s, transform 0.22s;
    backdrop-filter: blur(20px);
    z-index: 200;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  }
  .has-dropdown:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }

  .dropdown a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px; border-radius: 9px;
    color: rgba(255,255,255,0.72); font-size: 13px;
    background: none;
    transition: background 0.18s, color 0.18s;
  }
  .dropdown a:hover { background: rgba(247,148,29,0.10); color: var(--orange); }
  .dropdown a .d-icon {
    width: 28px; height: 28px; border-radius: 7px;
    background: rgba(247,148,29,0.10);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; flex-shrink: 0;
  }
  .dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

  .nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-deep)) !important;
    color: #fff !important; padding: 9px 22px !important;
    border-radius: 8px !important; font-weight: 600 !important;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 20px rgba(247,148,29,0.3);
    transition: box-shadow 0.2s, transform 0.2s !important;
  }
  .nav-cta:hover { box-shadow: 0 6px 28px rgba(247,148,29,0.5) !important; transform: translateY(-1px) !important; background: rgba(255,255,255,0.06) !important; }

  /* ── HERO ── */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    padding: 120px 5% 80px; overflow: hidden;
  }

  .hero-bg-orb { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
  .orb1 { width: 650px; height: 650px; background: radial-gradient(circle, rgba(247,148,29,0.16), transparent 70%); top: -180px; right: -80px; animation: floatOrb 9s ease-in-out infinite; }
  .orb2 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(27,42,107,0.55), transparent 70%); bottom: -60px; left: -120px; }
  .orb3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(247,148,29,0.08), transparent 70%); top: 40%; left: 35%; animation: floatOrb 12s ease-in-out infinite reverse; }

  @keyframes floatOrb { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-28px)} }

  .hero-content { position: relative; z-index: 2; max-width: 640px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(247,148,29,0.10); border: 1px solid rgba(247,148,29,0.32);
    border-radius: 100px; padding: 7px 18px 7px 12px; margin-bottom: 30px;
    animation: fadeSlideUp 0.6s ease both;
  }
  .badge-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{box-shadow:0 0 0 0 rgba(247,148,29,0.6)} 50%{box-shadow:0 0 0 8px rgba(247,148,29,0)} }

  .hero-badge span { font-size: 12px; font-weight: 600; color: var(--orange); letter-spacing: 1px; text-transform: uppercase; }

  .hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800; font-size: clamp(36px, 4.5vw, 62px);
    line-height: 1.1; margin-bottom: 24px;
    animation: fadeSlideUp 0.7s 0.1s ease both;
    letter-spacing: -0.5px;
  }
  .hero h1 .line-orange { color: var(--orange); display: block; }

  .hero p {
    font-family: 'Inter', sans-serif;
    font-size: 16.5px; font-weight: 300; line-height: 1.8;
    color: rgba(255,255,255,0.60); margin-bottom: 40px; max-width: 500px;
    animation: fadeSlideUp 0.7s 0.2s ease both;
  }

  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeSlideUp 0.7s 0.3s ease both; }

  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, var(--orange), #e8820d);
    color: #fff; padding: 14px 30px; border-radius: 8px;
    font-weight: 700; font-size: 14.5px; text-decoration: none;
    letter-spacing: 0.3px; transition: all 0.25s;
    box-shadow: 0 4px 28px rgba(247,148,29,0.38);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(247,148,29,0.55); }

  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05); color: #fff; padding: 14px 30px;
    border-radius: 8px; font-weight: 600; font-size: 14.5px;
    text-decoration: none; border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.25s;
  }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange); background: rgba(247,148,29,0.06); transform: translateY(-2px); }

  /* Hero Visual */
  .hero-visual {
    position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    width: min(44%, 540px); animation: fadeSlideUp 0.9s 0.4s ease both; z-index: 2;
  }
  .hero-visual-inner { position: relative; aspect-ratio: 1/1; }

  .circuit-ring {
    width: 100%; height: 100%; border-radius: 50%;
    border: 1.5px solid rgba(247,148,29,0.18); position: absolute;
    animation: spinSlow 20s linear infinite;
  }
  .circuit-ring::before {
    content: ''; position: absolute; top: -6px; left: 50%;
    width: 12px; height: 12px; background: var(--orange); border-radius: 50%;
    transform: translateX(-50%); box-shadow: 0 0 14px var(--orange);
  }
  .circuit-ring.ring2 { width: 75%; height: 75%; top: 12.5%; left: 12.5%; animation-direction: reverse; animation-duration: 14s; border-color: rgba(43,61,138,0.55); }
  .circuit-ring.ring2::before { background: var(--navy-light); box-shadow: 0 0 14px var(--navy-light); }

  .hero-center-card {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 60%; background: linear-gradient(135deg, rgba(20,32,80,0.85), rgba(8,14,40,0.92));
    border: 1px solid var(--border); border-radius: 18px; padding: 28px;
    text-align: center; backdrop-filter: blur(12px);
  }
  .hero-center-icon {
    width: 58px; height: 58px; background: linear-gradient(135deg,var(--orange),#e8820d);
    border-radius: 14px; margin: 0 auto 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; box-shadow: 0 0 28px var(--orange-glow);
  }
  .hero-center-title { font-family:'Orbitron',sans-serif; font-size:13px; font-weight:700; letter-spacing:2px; }
  .hero-center-sub { font-size:10px; color:rgba(255,255,255,0.45); margin-top:4px; letter-spacing:0.5px; }
  .stat-row { display:flex; justify-content:center; gap:20px; margin-top:14px; }
  .stat-item .num { font-family:'Orbitron',sans-serif; font-size:22px; font-weight:700; color:var(--orange); display:block; }
  .stat-item .label { font-size:9px; color:rgba(255,255,255,0.45); letter-spacing:1.5px; text-transform:uppercase; }

  @keyframes spinSlow { to { transform: rotate(360deg); } }
  @keyframes fadeSlideUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

  /* ── SECTION COMMON ── */
  section { position: relative; z-index: 1; }

  .section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 600; color: var(--orange);
    letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px;
    font-family: 'Orbitron', sans-serif;
  }
  .section-label::before { content:''; width:20px; height:2px; background:var(--orange); }

  .section-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800; font-size: clamp(26px, 3vw, 44px);
    line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px;
  }
  .section-title span { color: var(--orange); }

  .section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.58); line-height: 1.85; max-width: 560px;
  }

  /* ── STATS BAND ── */
  .stats-band {
    background: linear-gradient(90deg, rgba(13,21,53,0.95), rgba(27,42,107,0.6), rgba(13,21,53,0.95));
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 44px 5%; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px;
  }
  .stat-block { text-align: center; }
  .stat-block .big-num { font-family:'Orbitron',sans-serif; font-size:46px; font-weight:800; color:var(--orange); line-height:1; }
  .stat-block .big-label { font-size:11px; color:rgba(255,255,255,0.5); letter-spacing:2px; text-transform:uppercase; margin-top:8px; }

  /* ── SERVICES ── */
  .services-section { padding: 110px 5%; }
  .services-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:64px; flex-wrap:wrap; gap:20px; }

  /* ── ABOUT ── */
  .about-section {
    padding: 110px 5%;
    background: linear-gradient(180deg, transparent, rgba(20,32,80,0.12), transparent);
  }

  .about-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }

  /* About Visual */
  .about-visual { position: relative; }

  .about-img-box {
    background: linear-gradient(145deg, rgba(20,32,80,0.7), rgba(8,14,40,0.85));
    border: 1px solid var(--border); border-radius: 20px; padding: 36px;
    position: relative; overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  }
  .about-img-box::before {
    content:''; position:absolute; top:-60px; right:-60px;
    width:250px; height:250px;
    background: radial-gradient(circle, rgba(247,148,29,0.12), transparent 70%);
    pointer-events:none;
  }

  .about-label {
    font-family:'Orbitron',sans-serif; font-size:10px; font-weight:600;
    color:var(--orange); letter-spacing:3px; text-transform:uppercase; margin-bottom:28px;
  }

  .circuit-lines { display:flex; flex-direction:column; gap:14px; padding:10px 0 20px; }
  .circuit-line { height:2px; background:linear-gradient(90deg,var(--orange),rgba(247,148,29,0.06)); border-radius:2px; position:relative; }
  .circuit-line::before { content:''; position:absolute; left:0; top:50%; transform:translateY(-50%); width:10px; height:10px; background:var(--orange); border-radius:50%; box-shadow:0 0 8px var(--orange); }
  .circuit-line:nth-child(2){width:75%;background:linear-gradient(90deg,var(--navy-light),rgba(43,61,138,0.06))}
  .circuit-line:nth-child(2)::before{background:var(--navy-light);box-shadow:0 0 8px var(--navy-light)}
  .circuit-line:nth-child(3){width:90%}
  .circuit-line:nth-child(4){width:60%;background:linear-gradient(90deg,var(--navy-light),transparent)}
  .circuit-line:nth-child(4)::before{background:var(--navy-light)}
  .circuit-line:nth-child(5){width:82%}

  .about-stats-mini {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px;
  }
  .about-stat-box {
    border-radius: 12px; padding: 16px;
    border: 1px solid;
  }
  .about-stat-box.orange { background:rgba(247,148,29,0.08); border-color:rgba(247,148,29,0.22); }
  .about-stat-box.navy { background:rgba(27,42,107,0.38); border-color:rgba(43,61,138,0.4); }
  .about-stat-box .s-label { font-size:10px; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:6px; }
  .about-stat-box.orange .s-label { color:var(--orange); }
  .about-stat-box.navy .s-label { color:rgba(255,255,255,0.45); }
  .about-stat-box .s-num { font-family:'Orbitron',sans-serif; font-size:26px; font-weight:700; }

  .about-badge-float {
    position: absolute; bottom: -22px; right: -22px;
    background: linear-gradient(135deg, var(--orange), #e8820d);
    border-radius: 14px; padding: 18px 22px; text-align: center;
    box-shadow: 0 12px 40px rgba(247,148,29,0.45);
  }
  .about-badge-float .big { font-family:'Orbitron',sans-serif; font-size:30px; font-weight:800; line-height:1; }
  .about-badge-float .small { font-size:10px; letter-spacing:1.5px; opacity:0.92; text-transform:uppercase; margin-top:3px; }

  /* About Content */
  .about-content {}
  .about-content .section-desc { margin-bottom:14px; }

  .about-features { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:36px; }
  .about-feat { display:flex; align-items:flex-start; gap:13px; }
  .feat-icon {
    width:38px; height:38px; min-width:38px;
    background:rgba(247,148,29,0.10); border:1px solid rgba(247,148,29,0.22);
    border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:16px;
  }
  .feat-text h4 { font-family:'Orbitron',sans-serif; font-size:12px; font-weight:700; margin-bottom:4px; letter-spacing:0.5px; }
  .feat-text p { font-size:12px; color:rgba(255,255,255,0.48); line-height:1.55; font-family:'Inter',sans-serif; }

  /* About Timeline */
  .about-timeline { margin-top: 36px; display:flex; flex-direction:column; gap:0; }
  .timeline-item {
    display:flex; gap:16px; padding-bottom:24px; position:relative;
  }
  .timeline-item:last-child { padding-bottom:0; }
  .timeline-item:not(:last-child)::before {
    content:''; position:absolute; left:17px; top:36px; bottom:0; width:1px;
    background:linear-gradient(180deg, var(--orange), rgba(247,148,29,0.05));
  }
  .t-dot {
    width:34px; height:34px; min-width:34px; border-radius:50%;
    background:linear-gradient(135deg,var(--orange),#e8820d);
    display:flex; align-items:center; justify-content:center; font-size:14px;
    box-shadow:0 0 16px var(--orange-glow); margin-top:2px;
  }
  .t-body h4 { font-family:'Orbitron',sans-serif; font-size:12.5px; font-weight:700; margin-bottom:4px; letter-spacing:0.3px; }
  .t-body p { font-size:12.5px; color:rgba(255,255,255,0.50); line-height:1.6; font-family:'Inter',sans-serif; }

  /* ── PROCESS ── */
  .process-section {
    padding: 110px 5%;
    background: linear-gradient(180deg, transparent, rgba(27,42,107,0.12), transparent);
  }
  .process-header { text-align:center; margin-bottom:70px; }
  .process-header .section-label { justify-content:center; }
  .process-header .section-desc { margin:0 auto; text-align:center; }

  .process-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:0; position:relative; }
  .process-steps::before {
    content:''; position:absolute; top:40px; left:12.5%; right:12.5%; height:1px;
    background:linear-gradient(90deg,transparent,var(--orange),var(--orange),var(--orange),transparent); opacity:0.25;
  }
  .process-step { text-align:center; padding:0 20px; }
  .step-num {
    width:80px; height:80px; border-radius:50%;
    background:linear-gradient(135deg,rgba(20,32,80,0.9),rgba(8,14,40,0.95));
    border:2px solid var(--border); display:flex; align-items:center; justify-content:center;
    margin:0 auto 24px;
    font-family:'Orbitron',sans-serif; font-size:24px; font-weight:700; color:var(--orange);
    transition:all 0.3s;
  }
  .process-step:hover .step-num { border-color:var(--orange); box-shadow:0 0 32px var(--orange-glow); }
  .process-step h3 { font-family:'Orbitron',sans-serif; font-size:14px; font-weight:700; margin-bottom:10px; letter-spacing:0.3px; }
  .process-step p { font-size:13px; color:rgba(255,255,255,0.5); line-height:1.7; font-family:'Inter',sans-serif; }

  /* ── TECH STACK ── */
  .tech-section { padding: 80px 5%; }
  .tech-header { text-align:center; margin-bottom:50px; }
  .tech-marquee-wrap {
    overflow:hidden;
    -webkit-mask:linear-gradient(90deg,transparent,black 15%,black 85%,transparent);
    mask:linear-gradient(90deg,transparent,black 15%,black 85%,transparent);
  }
  .tech-marquee { display:flex; gap:16px; animation:marquee 25s linear infinite; width:max-content; }
  @keyframes marquee { to { transform:translateX(-50%); } }
  .tech-chip {
    display:inline-flex; align-items:center; gap:10px;
    background:var(--card-bg); border:1px solid var(--border);
    border-radius:100px; padding:10px 22px; white-space:nowrap;
    font-size:13px; font-weight:600; color:rgba(255,255,255,0.72);
    backdrop-filter:blur(6px);
  }
  .tech-chip .dot { width:7px; height:7px; border-radius:50%; background:var(--orange); flex-shrink:0; }

  /* ── TESTIMONIALS ── */
  .testimonials-section { padding: 100px 5%; }
  .testimonials-header { text-align:center; margin-bottom:60px; }
  .testimonials-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:22px; }
  .testimonial-card {
    background:var(--card-bg); border:1px solid var(--border); border-radius:18px; padding:32px;
    position:relative; backdrop-filter:blur(8px); transition:transform 0.3s, border-color 0.3s;
  }
  .testimonial-card:hover { transform:translateY(-5px); border-color:rgba(247,148,29,0.3); }
  .quote-mark { font-family:'Orbitron',sans-serif; font-size:64px; color:var(--orange); opacity:0.18; line-height:0.8; margin-bottom:14px; }
  .testimonial-text { font-size:13.5px; line-height:1.82; color:rgba(255,255,255,0.68); margin-bottom:22px; font-family:'Inter',sans-serif; }
  .testimonial-author { display:flex; align-items:center; gap:12px; }
  .author-avatar {
    width:44px; height:44px; border-radius:50%;
    background:linear-gradient(135deg,var(--orange),var(--navy-light));
    display:flex; align-items:center; justify-content:center;
    font-family:'Orbitron',sans-serif; font-weight:700; font-size:14px;
  }
  .author-info .name { font-weight:700; font-size:14px; font-family:'Orbitron',sans-serif; letter-spacing:0.3px; font-size:13px; }
  .author-info .role { font-size:11.5px; color:rgba(255,255,255,0.42); font-family:'Inter',sans-serif; }
  .stars { position:absolute; top:28px; right:28px; color:var(--orange); font-size:12px; letter-spacing:2px; }

  /* ── CTA ── */
  .cta-section {
    margin: 0 5% 90px;
    background: linear-gradient(135deg, rgba(20,32,80,0.9), rgba(8,14,40,0.95) 50%, rgba(247,148,29,0.07));
    border: 1px solid var(--border); border-radius: 24px;
    padding: 90px 8%; text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content:''; position:absolute; top:-120px; right:-120px;
    width:400px; height:400px; background:radial-gradient(circle,rgba(247,148,29,0.10),transparent 70%);
  }
  .cta-section::after {
    content:''; position:absolute; bottom:-80px; left:-80px;
    width:300px; height:300px; background:radial-gradient(circle,rgba(27,42,107,0.4),transparent 70%);
  }
  .cta-section h2 { font-family:'Orbitron',sans-serif; font-size:clamp(24px,3.5vw,46px); font-weight:800; margin-bottom:16px; letter-spacing:-0.5px; }
  .cta-section p { font-size:15px; color:rgba(255,255,255,0.58); margin-bottom:42px; max-width:480px; margin-left:auto; margin-right:auto; font-family:'Inter',sans-serif; }
  .cta-buttons { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }
  .cta-contact-row { margin-top:44px; display:flex; justify-content:center; gap:44px; flex-wrap:wrap; position:relative; z-index:1; }
  .cta-contact-item { text-align:center; }
  .cta-contact-item .ci-icon { font-size:22px; margin-bottom:7px; }
  .cta-contact-item .ci-label { font-size:10px; color:rgba(255,255,255,0.4); letter-spacing:2px; text-transform:uppercase; margin-bottom:4px; font-family:'Orbitron',sans-serif; }
  .cta-contact-item .ci-val { font-size:14px; font-weight:400; }

  /* ── FOOTER ── */
  footer { background:rgba(6,10,30,0.95); border-top:1px solid var(--border); padding:64px 5% 32px; }
  .footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; margin-bottom:50px; }
  .footer-brand p { font-size:13px; color:rgba(255,255,255,0.45); line-height:1.85; margin-top:16px; margin-bottom:22px; font-family:'Inter',sans-serif; }
  .social-links { display:flex; gap:10px; }
  .social-link {
    width:36px; height:36px; border-radius:9px;
    background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center; font-size:14px;
    text-decoration:none; transition:all 0.2s; color:rgba(255,255,255,0.55);
  }
  .social-link:hover { background:rgba(247,148,29,0.14); border-color:var(--orange); color:var(--orange); }
  .footer-col h4 { font-family:'Orbitron',sans-serif; font-size:13px; font-weight:700; margin-bottom:20px; color:var(--white); letter-spacing:1px; }
  .footer-col ul { list-style:none; }
  .footer-col ul li { margin-bottom:11px; }
  .footer-col ul li a { font-size:13px; color:rgba(255,255,255,0.45); text-decoration:none; transition:color 0.2s; font-family:'Inter',sans-serif; }
  .footer-col ul li a:hover { color:var(--orange); }
  .footer-bottom { border-top:1px solid rgba(255,255,255,0.06); padding-top:26px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
  .footer-bottom p { font-size:12px; color:rgba(255,255,255,0.3); font-family:'Inter',sans-serif; }
  .footer-bottom span { color:var(--orange); }

  /* ── REVEAL ── */
  .reveal { opacity:0; transform:translateY(30px); transition:opacity 0.75s ease, transform 0.75s ease; }
  .reveal.visible { opacity:1; transform:none; }

  /* ── MOBILE ── */
  @media (max-width:900px) {
    .hero-visual { display:none; }
    .about-inner { grid-template-columns:1fr; gap:50px; }
    .process-steps { grid-template-columns:1fr 1fr; }
    .process-steps::before { display:none; }
    .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
    .nav-links { display:none; }
  }
  @media (max-width:600px) {
    .process-steps { grid-template-columns:1fr; }
    .about-features { grid-template-columns:1fr; }
    .footer-grid { grid-template-columns:1fr; }
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-logo .logo-circle{
  width:44px;
  height:44px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(
    145deg,
    #ff8c00,
    #ff6200
  );

  box-shadow:
    0 0 15px rgba(255,140,0,.45),
    inset 0 1px 3px rgba(255,255,255,.2);

  position:relative;
}

.logo-letter{
  font-family:'Orbitron', sans-serif;

  font-size:35px;
  font-weight:800;

  color:#fff;

  letter-spacing:2px;

 
}
  .nav-logo .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .nav-logo .brand-main {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--navy-light);
    letter-spacing: 0.5px;
  }

  /* Override to match logo exact color */
  .nav-logo .brand-main { color: #FFFFFF; }
  .nav-logo .brand-sub {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: var(--orange);
    letter-spacing: 3px;
    text-transform: uppercase;
  }
  