 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --cyan: #00D4FF;
    --violet: #7B2FFF;
    --white: #F0F4FF;
    --dark: #050510;
    --darker: #020208;
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(0,212,255,0.2);
  }

  html { scroll-behavior: smooth; }

  body {
   position: relative;
  background: #020208;
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    cursor: default;
  }


main,
section,
nav,
footer {
  position: relative;
  z-index: 2;
}

  /* NOISE TEXTURE */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
  }

  /* STARFIELD CANVAS */
#starfield {
  position: fixed;

  top: 0;
  left: 0;

  width: 100vw;
  height: 100vh;

  z-index: -1;

  pointer-events: none;

  opacity: 1;
}

  /* NAVBAR */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(2,2,8,0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,212,255,0.08);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
  }

  .logo-icon {
    width: 32px; height: 32px;
    position: relative;
  }

  .logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--white);
  }

  .logo-text span { color: var(--cyan); }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: rgba(240,244,255,0.6);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    font-family: 'Exo 2', sans-serif;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--cyan); }

  .nav-cta {
    padding: 0.5rem 1.4rem;
    border: 1px solid var(--cyan);
    background: transparent;
    color: var(--cyan);
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(0,212,255,0.1);
  }

  .nav-cta:hover {
    background: rgba(0,212,255,0.08);
    box-shadow: 0 0 30px rgba(0,212,255,0.25);
  }

  /* HERO */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    z-index: 1;
  }

  /* GRID OVERLAY */
  #hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border: 1px solid rgba(0,212,255,0.3);
    background: rgba(0,212,255,0.05);
    border-radius: 100px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--cyan);
    font-family: 'Exo 2', sans-serif;
    margin-bottom: 2rem;
  }

  .badge-dot {
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  h1 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.04em;
    max-width: 900px;
    margin: 0 auto 1.5rem;
  }

  h1 .highlight { color: var(--cyan); }

  .hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(240,244,255,0.6);
    max-width: 560px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 300;
  }

  .hero-ctas {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary {
    padding: 0.9rem 2.2rem;
    background: var(--cyan);
    color: var(--darker);
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(0,212,255,0.3);
  }

  .btn-primary:hover {
    box-shadow: 0 0 50px rgba(0,212,255,0.5);
    transform: translateY(-2px);
  }

  .btn-secondary {
    padding: 0.9rem 2.2rem;
    background: transparent;
    color: var(--white);
    font-family: 'Orbitron', monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border: 1px solid rgba(240,244,255,0.25);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
  }

  .btn-secondary:hover {
    border-color: rgba(240,244,255,0.6);
    background: rgba(240,244,255,0.05);
  }

  /* SATELLITE SVG */

  

  /* SCROLL INDICATOR */
  .scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(240,244,255,0.3);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    font-family: 'Exo 2', sans-serif;
  }

  .scroll-arrow {
    width: 20px; height: 20px;
    border-right: 1px solid rgba(240,244,255,0.3);
    border-bottom: 1px solid rgba(240,244,255,0.3);
    transform: rotate(45deg);
    animation: bounce-arrow 1.8s ease-in-out infinite;
  }

  @keyframes bounce-arrow {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.3; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 0.8; }
  }

  /* STATS BAR */
  #stats {
    position: relative;
    z-index: 1;
    background: rgba(0,212,255,0.04);
    border-top: 1px solid rgba(0,212,255,0.1);
    border-bottom: 1px solid rgba(0,212,255,0.1);
    padding: 2rem 4rem;
  }

  .stats-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
  }

  .stat-item {
    text-align: center;
  }

  .stat-icon {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    display: block;
  }

  .stat-value {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cyan);
    display: block;
  }

  .stat-label {
    font-size: 0.78rem;
    color: rgba(240,244,255,0.5);
    letter-spacing: 0.08em;
    font-family: 'Exo 2', sans-serif;
  }

  .stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(0,212,255,0.15);
  }

  /* SECTIONS */
  section {
    position: relative;
    z-index: 1;
    padding: 6rem 4rem;
    
    margin: 0 auto;
  }

  .section-tag {
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0,212,255,0.3);
  }

  h2 {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
  }

  .section-sub {
    color: rgba(240,244,255,0.5);
    font-size: 1rem;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
  }

  /* HOW IT WORKS */
  .steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
  }

  .step {
    text-align: center;
    padding: 0 1rem;
  }

  .step-icon-wrap {
    width: 72px; height: 72px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    background: rgba(0,212,255,0.05);
    box-shadow: 0 0 20px rgba(0,212,255,0.15);
    font-size: 1.6rem;
  }

  .step-num {
    font-family: 'Orbitron', monospace;
    font-size: 0.65rem;
    color: var(--cyan);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
  }

  .step h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .step p {
    font-size: 0.85rem;
    color: rgba(240,244,255,0.5);
    line-height: 1.6;
  }

  .step-connector {
    display: flex;
    align-items: center;
    padding-top: 2rem;
  }

  .step-connector svg {
    width: 80px;
    opacity: 0.4;
  }

  /* FEATURE CARDS */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 1.75rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    opacity: 0;
    transition: opacity 0.4s;
  }

  .feature-card:hover {
    border-color: rgba(0,212,255,0.4);
    box-shadow: 0 0 30px rgba(0,212,255,0.08);
    transform: translateY(-4px);
  }

  .feature-card:hover::before { opacity: 1; }

  .feature-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: block;
  }

  .feature-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
  }

  .feature-card p {
    font-size: 0.85rem;
    color: rgba(240,244,255,0.5);
    line-height: 1.6;
  }

  /* USE CASES */
  .use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
  }

  .use-case {
    padding: 1.5rem 1rem;
    border: 1px solid rgba(123,47,255,0.2);
    background: rgba(123,47,255,0.04);
    text-align: center;
    transition: all 0.3s;
    cursor: default;
  }

  .use-case:hover {
    border-color: rgba(123,47,255,0.5);
    background: rgba(123,47,255,0.1);
    box-shadow: 0 0 20px rgba(123,47,255,0.1);
  }

  .use-case-icon { font-size: 1.8rem; margin-bottom: 0.7rem; display: block; }

  .use-case span {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    color: rgba(240,244,255,0.7);
  }

  /* MAP SECTION */
  #map-section {
    max-width: 100%;
    padding: 5rem 4rem;
    background: rgba(0,212,255,0.02);
    border-top: 1px solid rgba(0,212,255,0.06);
    border-bottom: 1px solid rgba(0,212,255,0.06);
    position: relative;
    z-index: 1;
  }

  .map-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }

  .world-map-container {
    position: relative;
    margin: 3rem auto 0;
    max-width: 900px;
  }

  .world-map-container svg {
    width: 100%;
    opacity: 0.7;
  }

  .pulse-city {
    animation: city-pulse 2.5s ease-in-out infinite;
  }

  @keyframes city-pulse {
    0%, 100% { opacity: 1; r: 4; }
    50% { opacity: 0.3; r: 7; }
  }

  /* PRICING */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
  }

  .price-card {
    background: var(--glass);
    border: 1px solid rgba(240,244,255,0.08);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s;
  }

  .price-card:hover { transform: translateY(-4px); }

  .price-card.featured {
    border-color: var(--cyan);
    box-shadow: 0 0 40px rgba(0,212,255,0.12), inset 0 0 40px rgba(0,212,255,0.02);
  }

  .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cyan);
    color: var(--darker);
    font-family: 'Orbitron', monospace;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.3rem 1rem;
    white-space: nowrap;
  }

  .plan-name {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 1rem;
  }

  .plan-price {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
  }

  .plan-price sup {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(240,244,255,0.5);
    vertical-align: super;
  }

  .plan-period {
    font-size: 0.78rem;
    color: rgba(240,244,255,0.4);
    margin-bottom: 1.5rem;
  }

  .plan-features {
    list-style: none;
    margin-bottom: 2rem;
  }

  .plan-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(240,244,255,0.05);
    font-size: 0.85rem;
    color: rgba(240,244,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .plan-features li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    flex-shrink: 0;
  }

  .plan-btn {
    width: 100%;
    padding: 0.85rem;
    background: transparent;
    border: 1px solid rgba(240,244,255,0.2);
    color: var(--white);
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
  }

  .plan-btn:hover {
    background: rgba(240,244,255,0.05);
    border-color: rgba(240,244,255,0.4);
  }

  .price-card.featured .plan-btn {
    background: var(--cyan);
    border-color: var(--cyan);
    color: var(--darker);
  }

  .price-card.featured .plan-btn:hover {
    box-shadow: 0 0 25px rgba(0,212,255,0.3);
  }

  /* CTA BANNER */
  #cta-banner {
    position: relative;
    z-index: 1;
    padding: 7rem 4rem;
    text-align: center;
    overflow: hidden;
  }

  #cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(123,47,255,0.2) 0%, rgba(0,212,255,0.08) 50%, transparent 75%);
    animation: nebula-shift 8s ease-in-out infinite alternate;
  }

  @keyframes nebula-shift {
    0% { background: radial-gradient(ellipse at 40% 50%, rgba(123,47,255,0.2) 0%, rgba(0,212,255,0.08) 50%, transparent 75%); }
    100% { background: radial-gradient(ellipse at 60% 50%, rgba(0,212,255,0.15) 0%, rgba(123,47,255,0.1) 50%, transparent 75%); }
  }

  #cta-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(123,47,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(123,47,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  .cta-content {
    position: relative;
    z-index: 2;
  }

  #cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    max-width: 700px;
    margin: 0 auto 1rem;
  }

  #cta-banner p {
    color: rgba(240,244,255,0.5);
    margin-bottom: 3rem;
    font-size: 1rem;
  }

  /* CONTACT FORM */
  #contact {
    max-width: 100%;
    padding: 6rem 4rem;
    position: relative;
    z-index: 1;
    background: rgba(5,5,16,0.6);
    border-top: 1px solid rgba(0,212,255,0.06);
  }

  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
  }

  .contact-info { padding-top: 0.5rem; }

  .contact-info h2 { margin-bottom: 1rem; }

  .contact-info p {
    color: rgba(240,244,255,0.5);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  .contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }

  .contact-detail-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(0,212,255,0.2);
    background: rgba(0,212,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .contact-detail-text span {
    display: block;
    font-size: 0.7rem;
    color: var(--cyan);
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.12em;
    margin-bottom: 0.15rem;
  }

  .contact-detail-text p {
    font-size: 0.88rem;
    color: rgba(240,244,255,0.7);
    margin: 0;
  }

  .contact-form-wrap {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0,212,255,0.12);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
  }

  .contact-form-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: rgba(240,244,255,0.45);
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(240,244,255,0.1);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    width: 100%;
    -webkit-appearance: none;
  }

  .form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300D4FF' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }

  .form-group select option {
    background: #050510;
    color: var(--white);
  }

  .form-group textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: rgba(240,244,255,0.2);
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: rgba(0,212,255,0.5);
    box-shadow: 0 0 0 3px rgba(0,212,255,0.06);
  }

  .form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }

  .form-note {
    font-size: 0.75rem;
    color: rgba(240,244,255,0.3);
    font-family: 'Exo 2', sans-serif;
  }

  .btn-submit {
    padding: 0.85rem 2rem;
    background: var(--cyan);
    color: var(--darker);
    font-family: 'Orbitron', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0,212,255,0.2);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
  }

  .btn-submit:hover {
    box-shadow: 0 0 40px rgba(0,212,255,0.4);
    transform: translateY(-2px);
  }

  .btn-submit:active { transform: translateY(0); }

  .btn-submit.sending { opacity: 0.7; pointer-events: none; }

  .form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
  }

  .form-success .success-icon {
    width: 56px; height: 56px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.4rem;
    background: rgba(0,212,255,0.06);
    box-shadow: 0 0 25px rgba(0,212,255,0.2);
  }

  .form-success h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
    color: var(--cyan);
  }

  .form-success p {
    color: rgba(240,244,255,0.5);
    font-size: 0.88rem;
  }

  @media (max-width: 768px) {
    #contact { padding: 4rem 1.5rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .form-row { grid-template-columns: 1fr; }
    .form-submit-row { flex-direction: column; align-items: flex-start; }
    .btn-submit { width: 100%; justify-content: center; }
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* FOOTER */
  footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(0,212,255,0.08);
    padding: 3rem 4rem;
    background: rgba(2,2,8,0.8);
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: start;
  }

  .footer-brand .logo-text {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
  }

  .footer-tagline {
    font-size: 0.78rem;
    color: rgba(240,244,255,0.35);
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.06em;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-links a {
    text-decoration: none;
    color: rgba(240,244,255,0.4);
    font-size: 0.82rem;
    transition: color 0.3s;
    font-family: 'Exo 2', sans-serif;
  }

  .footer-links a:hover { color: var(--cyan); }

  .footer-socials {
    display: flex;
    gap: 1rem;
  }

  .social-link {
    width: 36px; height: 36px;
    border: 1px solid rgba(240,244,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(240,244,255,0.4);
    font-size: 0.75rem;
    transition: all 0.3s;
    font-family: 'Exo 2', sans-serif;
  }

  .social-link:hover {
    border-color: var(--cyan);
    color: var(--cyan);
  }

  .footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(240,244,255,0.05);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(240,244,255,0.2);
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.05em;
  }

  /* ===== MODALS ===== */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2,2,8,0.88);
    z-index: 999;
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
  }
  .modal-overlay.active { display: flex; }

  .modal-box {
    background: #07071a;
    border: 1px solid rgba(0,212,255,0.18);
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.35s cubic-bezier(0.22,1,0.36,1) forwards;
  }
  .modal-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  }

  @keyframes modalIn {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  .modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 2rem 2rem 1.2rem;
    border-bottom: 1px solid rgba(240,244,255,0.06);
  }

  .modal-header h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.3rem;
  }

  .modal-header p {
    font-size: 0.82rem;
    color: rgba(240,244,255,0.4);
    font-family: 'Exo 2', sans-serif;
  }

  .modal-close {
    background: transparent;
    border: 1px solid rgba(240,244,255,0.12);
    color: rgba(240,244,255,0.4);
    width: 34px; height: 34px;
    cursor: pointer;
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
  }
  .modal-close:hover { border-color: var(--cyan); color: var(--cyan); }

  .modal-body { padding: 2rem; }

  /* Stepper */
  .stepper {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 2rem;
  }
  .step-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(240,244,255,0.3);
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(240,244,255,0.08);
    transition: all 0.3s;
  }
  .step-pill.active {
    color: var(--cyan);
    border-color: rgba(0,212,255,0.35);
    background: rgba(0,212,255,0.05);
  }
  .step-pill.done {
    color: rgba(0,212,255,0.5);
    border-color: rgba(0,212,255,0.15);
  }
  .step-num {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(240,244,255,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
  }
  .step-pill.active .step-num { background: var(--cyan); color: var(--darker); }
  .step-pill.done .step-num { background: rgba(0,212,255,0.2); color: var(--cyan); }
  .step-line {
    flex: 1;
    height: 1px;
    background: rgba(240,244,255,0.06);
  }

  /* Step panels */
  .step-panel { display: none; }
  .step-panel.active { display: block; }

  .step-panel h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(240,244,255,0.7);
    margin-bottom: 1.2rem;
    letter-spacing: 0.06em;
  }

  /* Plan selector cards */
  .plan-select-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .plan-select-card {
    border: 1px solid rgba(240,244,255,0.08);
    padding: 1.2rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s;
    background: rgba(255,255,255,0.02);
  }
  .plan-select-card:hover { border-color: rgba(0,212,255,0.3); background: rgba(0,212,255,0.04); }
  .plan-select-card.selected { border-color: var(--cyan); background: rgba(0,212,255,0.07); box-shadow: 0 0 18px rgba(0,212,255,0.1); }
  .plan-select-card .psc-icon { font-size: 1.4rem; margin-bottom: 0.5rem; display: block; }
  .plan-select-card .psc-name { font-family: 'Orbitron', monospace; font-size: 0.65rem; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 0.3rem; }
  .plan-select-card .psc-price { font-size: 1.1rem; font-weight: 700; font-family: 'Orbitron', monospace; margin-bottom: 0.3rem; }
  .plan-select-card .psc-desc { font-size: 0.72rem; color: rgba(240,244,255,0.4); line-height: 1.4; }

  /* Location input */
  .location-input-wrap {
    position: relative;
    margin-bottom: 1rem;
  }
  .location-input-wrap input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(240,244,255,0.1);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 3rem 0.75rem 1rem;
    outline: none;
    transition: border-color 0.3s;
  }
  .location-input-wrap input:focus { border-color: rgba(0,212,255,0.4); }
  .location-search-btn {
    position: absolute;
    right: 0.6rem; top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--cyan);
    font-size: 1rem;
    padding: 0.2rem;
  }

  /* Suggested regions */
  .region-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .region-chip {
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(123,47,255,0.25);
    background: rgba(123,47,255,0.04);
    font-size: 0.75rem;
    color: rgba(240,244,255,0.6);
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.2s;
  }
  .region-chip:hover, .region-chip.selected {
    border-color: var(--violet);
    background: rgba(123,47,255,0.12);
    color: var(--white);
  }

  /* Resolution selector */
  .res-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .res-card {
    border: 1px solid rgba(240,244,255,0.08);
    padding: 1rem;
    cursor: pointer;
    transition: all 0.25s;
    background: rgba(255,255,255,0.02);
  }
  .res-card:hover { border-color: rgba(0,212,255,0.3); }
  .res-card.selected { border-color: var(--cyan); background: rgba(0,212,255,0.06); }
  .res-card .res-title { font-family: 'Exo 2', sans-serif; font-size: 0.82rem; font-weight: 600; margin-bottom: 0.25rem; }
  .res-card .res-gsd { font-family: 'Orbitron', monospace; font-size: 1rem; color: var(--cyan); margin-bottom: 0.25rem; }
  .res-card .res-note { font-size: 0.72rem; color: rgba(240,244,255,0.4); }

  /* Format checkboxes */
  .format-checks {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  .fmt-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(240,244,255,0.1);
    transition: all 0.2s;
    font-size: 0.82rem;
    font-family: 'Exo 2', sans-serif;
    color: rgba(240,244,255,0.5);
    user-select: none;
  }
  .fmt-check.checked {
    border-color: rgba(0,212,255,0.4);
    color: var(--white);
    background: rgba(0,212,255,0.05);
  }
  .fmt-check .fmt-dot {
    width: 14px; height: 14px;
    border: 1px solid rgba(0,212,255,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem;
    color: var(--cyan);
  }

  /* Summary box */
  .summary-box {
    background: rgba(0,212,255,0.04);
    border: 1px solid rgba(0,212,255,0.12);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(240,244,255,0.05);
    font-size: 0.85rem;
  }
  .summary-row:last-child { border-bottom: none; padding-bottom: 0; }
  .summary-row .sr-label { color: rgba(240,244,255,0.45); font-family: 'Exo 2', sans-serif; font-size: 0.75rem; letter-spacing: 0.06em; }
  .summary-row .sr-val { font-weight: 500; color: var(--white); }
  .summary-row.total .sr-val { color: var(--cyan); font-family: 'Orbitron', monospace; font-size: 1rem; }

  /* Modal nav */
  .modal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(240,244,255,0.06);
    margin-top: 0.5rem;
  }
  .btn-modal-back {
    background: transparent;
    border: 1px solid rgba(240,244,255,0.12);
    color: rgba(240,244,255,0.5);
    padding: 0.65rem 1.4rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s;
  }
  .btn-modal-back:hover { border-color: rgba(240,244,255,0.3); color: var(--white); }
  .btn-modal-next {
    background: var(--cyan);
    border: none;
    color: var(--darker);
    padding: 0.65rem 1.8rem;
    font-family: 'Orbitron', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 0 20px rgba(0,212,255,0.2);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .btn-modal-next:hover { box-shadow: 0 0 35px rgba(0,212,255,0.4); }
  .btn-modal-next:disabled { opacity: 0.4; pointer-events: none; }

  /* Request success */
  .request-success {
    text-align: center;
    padding: 2.5rem 1rem;
    display: none;
  }
  .req-success-orbit {
    width: 80px; height: 80px;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    background: rgba(0,212,255,0.05);
    box-shadow: 0 0 40px rgba(0,212,255,0.15);
    animation: spin-glow 4s linear infinite;
  }
  @keyframes spin-glow {
    0%,100% { box-shadow: 0 0 30px rgba(0,212,255,0.15); }
    50% { box-shadow: 0 0 60px rgba(0,212,255,0.35); }
  }
  .req-success-id {
    font-family: 'Orbitron', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--cyan);
    margin-bottom: 0.5rem;
  }
  .request-success h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  .request-success p { color: rgba(240,244,255,0.5); font-size: 0.88rem; line-height: 1.7; }

  /* ===== COVERAGE MODAL ===== */
  .coverage-modal-box { max-width: 760px; }

  .coverage-tabs {
    display: flex;
    border-bottom: 1px solid rgba(240,244,255,0.06);
    margin-bottom: 1.5rem;
  }
  .cov-tab {
    padding: 0.7rem 1.4rem;
    font-family: 'Exo 2', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: rgba(240,244,255,0.4);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
    background: transparent;
    border-top: none; border-left: none; border-right: none;
  }
  .cov-tab.active { color: var(--cyan); border-bottom-color: var(--cyan); }
  .cov-tab:hover:not(.active) { color: rgba(240,244,255,0.7); }

  .cov-panel { display: none; }
  .cov-panel.active { display: block; }

  /* Coverage stats grid */
  .cov-stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }
  .cov-stat {
    background: rgba(0,212,255,0.04);
    border: 1px solid rgba(0,212,255,0.1);
    padding: 1rem 0.8rem;
    text-align: center;
  }
  .cov-stat-val { font-family: 'Orbitron', monospace; font-size: 1.2rem; color: var(--cyan); display: block; margin-bottom: 0.3rem; }
  .cov-stat-lbl { font-size: 0.68rem; color: rgba(240,244,255,0.4); font-family: 'Exo 2', sans-serif; letter-spacing: 0.06em; }

  /* Region list */
  .region-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .region-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(240,244,255,0.06);
    transition: all 0.2s;
    cursor: default;
  }
  .region-item:hover { border-color: rgba(0,212,255,0.2); background: rgba(0,212,255,0.03); }
  .region-item-left { display: flex; align-items: center; gap: 0.6rem; }
  .region-item-flag { font-size: 1rem; }
  .region-item-name { font-size: 0.82rem; font-weight: 500; }
  .region-item-sub { font-size: 0.7rem; color: rgba(240,244,255,0.4); }
  .region-badge {
    font-size: 0.62rem;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
  }
  .badge-live { background: rgba(0,212,255,0.12); color: var(--cyan); border: 1px solid rgba(0,212,255,0.2); }
  .badge-soon { background: rgba(123,47,255,0.12); color: #a87fff; border: 1px solid rgba(123,47,255,0.2); }

  /* Satellite orbit info */
  .orbit-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .orbit-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(240,244,255,0.07);
    padding: 1.2rem;
  }
  .orbit-card h5 {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: var(--cyan);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
  }
  .orbit-spec {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(240,244,255,0.04);
    color: rgba(240,244,255,0.6);
  }
  .orbit-spec:last-child { border-bottom: none; }
  .orbit-spec strong { color: var(--white); font-weight: 500; }

  /* Sample imagery */
  .sample-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0.8rem;
    margin-bottom: 1.2rem;
  }
  .sample-card {
    background: rgba(0,212,255,0.04);
    border: 1px solid rgba(0,212,255,0.1);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
  }
  .sample-card:hover { border-color: var(--cyan); }
  .sample-card-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.35;
  }
  .sample-card-label {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .sample-card-label span {
    display: block;
    font-size: 0.68rem;
    font-family: 'Exo 2', sans-serif;
    color: rgba(240,244,255,0.7);
    margin-top: 0.4rem;
    letter-spacing: 0.05em;
  }
  .sample-card-label .s-icon { font-size: 1.6rem; }

  /* ===== RESPONSIVE MODALS ===== */
  @media (max-width: 768px) {
    .modal-overlay { padding: 1rem; align-items: flex-end; }
    .modal-box { max-height: 85vh; }
    .plan-select-grid { grid-template-columns: 1fr; }
    .res-options { grid-template-columns: 1fr; }
    .cov-stats-grid { grid-template-columns: repeat(2,1fr); }
    .region-list { grid-template-columns: 1fr; }
    .orbit-info-grid { grid-template-columns: 1fr; }
    .sample-grid { grid-template-columns: repeat(2,1fr); }
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 4rem 1.5rem; }
    #stats { padding: 2rem 1.5rem; }
    .stats-inner { gap: 1.5rem; }
    .stat-divider { display: none; }
    .steps { grid-template-columns: 1fr; }
    .step-connector { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    footer { padding: 2rem 1.5rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    #cta-banner { padding: 5rem 1.5rem; }
    #map-section { padding: 4rem 1.5rem; }
    h1 { font-size: 1.8rem; }
  }

  /* FULL WIDTH HERO VIDEO BACKGROUND */

  /* HERO VIDEO CAROUSEL */

#hero {
  position: relative;
}
  .hero-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }

  

  .carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .carousel-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(2,2,8,0.45) 0%,
      rgba(2,2,8,0.30) 50%,
      rgba(2,2,8,0.65) 100%
    );
    z-index: 1;
  }

  /* Hero content above carousel */
#hero-heading {
  text-shadow:
    0 0 6px rgba(0,212,255,0.18),
    0 0 14px rgba(0,212,255,0.1);
}

#hero-heading .highlight {
  text-shadow:
    0 0 8px rgba(0,212,255,0.22),
    0 0 18px rgba(0,212,255,0.14);
}
  #hero-heading,
#hero-sub {
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.hero-fade-out {
  opacity: 0;
  transform: translateY(15px);
}

.hero-fade-in {
  opacity: 1;
  transform: translateY(0);
}
  #hero > *:not(.hero-carousel) {
    position: relative;
    z-index: 2;
  }

  /* Carousel controls */
  /* Dots + arrows grouped bottom-right */
  .carousel-controls {
    position: absolute;
    bottom: 2.2rem;
    right: 2.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
  }

  .carousel-arrow:hover {
    background: rgba(0,212,255,0.25);
    box-shadow: 0 0 14px rgba(0,212,255,0.4);
  }

  @media (max-width: 600px) {
    .carousel-controls { right: 1rem; bottom: 1.5rem; }
  }
 #fair-detection {
    position: relative;
    z-index: 1;
  }

  .fair-detection-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .fair-image-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
  }

  .fair-image-card img {
    width: 100%;
    display: block;
    object-fit: cover;
  }

  .fair-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  @media (max-width: 1024px) {
    .fair-detection-wrap {
      grid-template-columns: 1fr;
    }
  }
.hero-carousel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;

  position: absolute;
  inset: 0;
}
#live-usecases {
  position: relative;
  z-index: 1;
}

.usecase-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.usecase-showcase-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.usecase-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 0 35px rgba(0,212,255,0.08);
}

.usecase-image-wrap {
  position: relative;
  overflow: hidden;
}

.usecase-image-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}


.before-after-labels {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;

  display: flex;
  justify-content: space-between;

  z-index: 3;
}

.before-after-labels span {
  background: rgba(2,2,8,0.7);
  border: 1px solid rgba(0,212,255,0.2);

  padding: 0.35rem 0.7rem;

  font-size: 0.65rem;
  letter-spacing: 0.12em;

  font-family: 'Orbitron', monospace;

  color: var(--cyan);
}

.capture-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;

  background: rgba(2,2,8,0.75);
  border: 1px solid rgba(0,212,255,0.2);

  padding: 0.45rem 0.8rem;

  font-size: 0.7rem;
  color: var(--white);

  backdrop-filter: blur(8px);
}

.usecase-content {
  padding: 1.5rem;
}

.usecase-location {
  font-size: 0.72rem;
  letter-spacing: 0.08em;

  color: var(--cyan);

  margin-bottom: 0.7rem;

  font-family: 'Exo 2', sans-serif;
}

.usecase-content h3 {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;

  margin-bottom: 0.7rem;
}

.usecase-content p {
  font-size: 0.88rem;
  line-height: 1.7;

  color: rgba(240,244,255,0.55);
}

@media (max-width: 1024px) {
  .usecase-showcase-grid {
    grid-template-columns: 1fr;
  }
}
#faq {
  position: relative;
  z-index: 1;
}

.faq-container {
  max-width: 950px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass);
  border: 1px solid var(--glass-border);

  margin-bottom: 1rem;

  overflow: hidden;

  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0,212,255,0.35);
  box-shadow: 0 0 25px rgba(0,212,255,0.06);
}

.faq-question {
  width: 100%;

  background: transparent;
  border: none;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 1.3rem 1.5rem;

  color: var(--white);

  cursor: pointer;

  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  letter-spacing: 0.05em;

  text-align: left;
}

.faq-icon {
  color: var(--cyan);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;

  color: rgba(240,244,255,0.6);

  font-size: 0.92rem;
  line-height: 1.8;

  font-family: 'Exo 2', sans-serif;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

@media (max-width: 768px) {

  .faq-question {
    font-size: 0.78rem;
    padding: 1rem;
  }

  .faq-answer p {
    padding: 0 1rem 1rem;
    font-size: 0.85rem;
  }

}
#video-showcase {
  position: relative;
  z-index: 1;
}

.video-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);

  overflow: hidden;
  position: relative;

  backdrop-filter: blur(10px);

  transition: all 0.35s ease;
}

.video-card:hover {
  transform: translateY(-6px);

  border-color: rgba(0,212,255,0.4);

  box-shadow:
    0 0 35px rgba(0,212,255,0.08);
}

.video-wrap {
  position: relative;
  overflow: hidden;
}

.video-wrap video {
  width: 100%;
  height: 260px;

  object-fit: cover;
  display: block;

  transition: transform 0.5s ease;
}

.video-card:hover video {
  transform: scale(1.05);
}

.video-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(2,2,8,0.85),
      rgba(2,2,8,0.15),
      rgba(2,2,8,0.2)
    );
}
.video-wrap img {
  width: 100%;
  height: 260px;

  object-fit: cover;
  display: block;

  transition: transform 0.5s ease;
}

.video-card:hover img {
  transform: scale(1.05);
}
.video-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;

  background: rgba(2,2,8,0.72);
  border: 1px solid rgba(0,212,255,0.2);

  padding: 0.45rem 0.85rem;

  font-size: 0.7rem;
  color: var(--cyan);

  letter-spacing: 0.08em;

  backdrop-filter: blur(8px);

  z-index: 2;
}

.video-content {
  padding: 1.4rem;
}

.video-content h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;

  font-family: 'Exo 2', sans-serif;
}

.video-content p {
  font-size: 0.88rem;
  line-height: 1.7;

  color: rgba(240,244,255,0.55);
}

@media (max-width: 1024px) {

  .video-showcase-grid {
    grid-template-columns: 1fr;
  }

}
/* global coverage section  */

#global-coverage {
  position: relative;
  z-index: 1;
}

.coverage-map-wrap {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: 1.5rem;
  align-items: stretch;
}

.coverage-map {
  position: relative;

  background: var(--glass);
  border: 1px solid var(--glass-border);

  overflow: hidden;

  min-height: 520px;

  backdrop-filter: blur(10px);
}

.coverage-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0.92;
}

.coverage-dot {
  position: absolute;

  width: 12px;
  height: 12px;

  background: var(--cyan);
  border-radius: 50%;

  box-shadow:
    0 0 12px var(--cyan),
    0 0 25px rgba(0,212,255,0.5);

  z-index: 2;
}

.coverage-dot span {
  position: absolute;
  inset: -10px;

  border: 1px solid rgba(0,212,255,0.4);
  border-radius: 50%;

  animation: pulseOrbit 2.5s infinite;
}

.dot-1 { top: 34%; left: 22%; }
.dot-2 { top: 28%; left: 48%; }
.dot-3 { top: 42%; left: 58%; }
.dot-4 { top: 55%; left: 74%; }
.dot-5 { top: 38%; left: 82%; }
.dot-6 { top: 63%; left: 44%; }

@keyframes pulseOrbit {

  0% {
    transform: scale(0.6);
    opacity: 1;
  }

  100% {
    transform: scale(2.4);
    opacity: 0;
  }

}

.orbit-line {
  position: absolute;

  border: 1px dashed rgba(0,212,255,0.12);

  border-radius: 50%;

  z-index: 1;
}

.orbit-1 {
  width: 130%;
  height: 65%;

  left: -15%;
  top: 18%;

  animation: rotateOrbit 24s linear infinite;
}

.orbit-2 {
  width: 110%;
  height: 52%;

  left: -5%;
  top: 24%;

  animation: rotateOrbitReverse 18s linear infinite;
}

@keyframes rotateOrbit {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

@keyframes rotateOrbitReverse {

  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }

}

.coverage-side-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.coverage-info-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);

  padding: 1.4rem;

  backdrop-filter: blur(10px);
}

.coverage-info-title {
  font-family: 'Orbitron', monospace;

  font-size: 0.9rem;
  letter-spacing: 0.08em;

  color: var(--cyan);

  margin-bottom: 1.2rem;
}

.coverage-region-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coverage-region {
  display: flex;
  align-items: center;
  gap: 0.7rem;

  font-size: 0.9rem;
  color: rgba(240,244,255,0.7);
}

.region-status {
  width: 10px;
  height: 10px;

  border-radius: 50%;
}

.region-status.active {
  background: #00d4ff;

  box-shadow:
    0 0 10px #00d4ff;
}

.region-status.processing {
  background: #8b5cf6;

  box-shadow:
    0 0 10px #8b5cf6;
}

.capture-feed {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.capture-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 1rem;

  border-bottom: 1px solid rgba(255,255,255,0.05);

  font-size: 0.82rem;
  line-height: 1.5;

  color: rgba(240,244,255,0.6);
}

.capture-item strong {
  color: var(--white);
}

.capture-item span {
  color: var(--cyan);
  font-size: 0.72rem;
}

@media (max-width: 1024px) {

  .coverage-map-wrap {
    grid-template-columns: 1fr;
  }

  .coverage-map {
    min-height: 420px;
  }

}

/* Trust / Clent Types section */

#trust-section {
  position: relative;
  z-index: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);

  padding: 2rem 1.5rem;

  position: relative;
  overflow: hidden;

  backdrop-filter: blur(10px);

  transition: all 0.35s ease;
}

.trust-card:hover {
  transform: translateY(-6px);

  border-color: rgba(0,212,255,0.35);

  box-shadow:
    0 0 35px rgba(0,212,255,0.08);
}

.trust-icon {
  width: 64px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.7rem;

  background:
    linear-gradient(
      135deg,
      rgba(0,212,255,0.14),
      rgba(0,212,255,0.03)
    );

  border: 1px solid rgba(0,212,255,0.18);

  margin-bottom: 1.3rem;

  color: var(--cyan);
}

.trust-card h3 {
  font-size: 1rem;

  margin-bottom: 0.8rem;

  font-family: 'Exo 2', sans-serif;
}

.trust-card p {
  font-size: 0.88rem;
  line-height: 1.8;

  color: rgba(240,244,255,0.58);
}

.trust-bottom-strip {
  margin-top: 2rem;

  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.trust-mini-card {
  padding: 0.8rem 1.2rem;

  background: rgba(0,212,255,0.05);
  border: 1px solid rgba(0,212,255,0.12);

  font-size: 0.78rem;
  letter-spacing: 0.08em;

  color: rgba(240,244,255,0.72);

  font-family: 'Orbitron', monospace;

  backdrop-filter: blur(8px);

  transition: all 0.3s ease;
}

.trust-mini-card:hover {
  border-color: rgba(0,212,255,0.35);

  color: var(--cyan);

  transform: translateY(-3px);
}

@media (max-width: 1024px) {

  .trust-grid {
    grid-template-columns: 1fr;
  }

}
/* Industries Section */
#industries {
  position: relative;
  z-index: 1;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.industry-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);

  padding: 1.8rem 1.5rem;

  position: relative;
  overflow: hidden;

  backdrop-filter: blur(10px);

  transition: all 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-6px);

  border-color: rgba(0,212,255,0.35);

  box-shadow:
    0 0 35px rgba(0,212,255,0.08);
}

.industry-icon {
  width: 62px;
  height: 62px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.6rem;

  margin-bottom: 1.2rem;

  background:
    linear-gradient(
      135deg,
      rgba(0,212,255,0.14),
      rgba(0,212,255,0.03)
    );

  border: 1px solid rgba(0,212,255,0.18);

  color: var(--cyan);
}

.industry-card h3 {
  font-size: 1rem;

  margin-bottom: 0.8rem;

  font-family: 'Exo 2', sans-serif;
}

.industry-card p {
  font-size: 0.88rem;
  line-height: 1.8;

  color: rgba(240,244,255,0.58);
}

@media (max-width: 1024px) {

  .industries-grid {
    grid-template-columns: 1fr;
  }

}
/* <!-- AI DETECTION SECTION --> */
#ai-detection {
  position: relative;
  z-index: 1;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ai-card {
  position: relative;

  background: var(--glass);
  border: 1px solid var(--glass-border);

  padding: 2rem 1.6rem;

  overflow: hidden;

  backdrop-filter: blur(10px);

  transition: all 0.35s ease;
}

.ai-card:hover {
  transform: translateY(-6px);

  border-color: rgba(0,212,255,0.35);

  box-shadow:
    0 0 30px rgba(0,212,255,0.08);
}

.ai-icon {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(0,212,255,0.18),
      rgba(0,212,255,0.05)
    );

  border: 1px solid rgba(0,212,255,0.18);

  font-size: 1.7rem;

  margin-bottom: 1.4rem;

  box-shadow:
    0 0 25px rgba(0,212,255,0.08);
}

.ai-card h3 {
  font-size: 1.05rem;

  margin-bottom: 0.8rem;

  font-family: 'Exo 2', sans-serif;
}

.ai-card p {
  font-size: 0.88rem;
  line-height: 1.75;

  color: rgba(240,244,255,0.58);
}

@media (max-width: 1024px) {

  .ai-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .ai-grid {
    grid-template-columns: 1fr;
  }

}
/* <!-- INFRASTRUCTURE MONITORING SECTION --> */
#infrastructure-monitoring {
  position: relative;
  z-index: 1;
}

.infra-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.8rem;
  align-items: start;
}

.infra-left,
.infra-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.infra-card {
  background: var(--glass);

  border: 1px solid var(--glass-border);

  padding: 1.8rem;

  backdrop-filter: blur(10px);

  transition: all 0.35s ease;
}

.infra-card:hover {
  transform: translateY(-5px);

  border-color: rgba(0,212,255,0.35);

  box-shadow:
    0 0 30px rgba(0,212,255,0.08);
}

.infra-card.large {
  padding: 2rem;
}

.infra-card-tag {
  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  margin-bottom: 1rem;

  padding: 0.4rem 0.8rem;

  border: 1px solid rgba(0,212,255,0.18);

  background: rgba(0,212,255,0.05);

  font-size: 0.68rem;

  letter-spacing: 0.12em;

  color: var(--cyan);

  font-family: 'Orbitron', monospace;
}

.infra-card h3 {
  font-size: 1.3rem;

  margin-bottom: 1rem;

  font-family: 'Exo 2', sans-serif;
}

.infra-card p {
  color: rgba(240,244,255,0.58);

  font-size: 0.92rem;

  line-height: 1.8;
}

.infra-points {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;

  margin-top: 1.5rem;
}

.infra-point {
  padding: 0.9rem 1rem;

  background: rgba(255,255,255,0.02);

  border: 1px solid rgba(255,255,255,0.05);

  font-size: 0.88rem;

  color: rgba(240,244,255,0.72);
}

.infra-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.infra-stat-card {
  background: rgba(0,212,255,0.04);

  border: 1px solid rgba(0,212,255,0.1);

  padding: 2rem 1.5rem;

  text-align: center;
}

.infra-stat-value {
  font-family: 'Orbitron', monospace;

  font-size: 2rem;

  color: var(--cyan);

  margin-bottom: 0.5rem;
}

.infra-stat-label {
  font-size: 0.72rem;

  letter-spacing: 0.12em;

  color: rgba(240,244,255,0.45);

  font-family: 'Exo 2', sans-serif;
}

.infra-list {
  display: flex;
  flex-direction: column;

  gap: 0.7rem;

  margin: 1.2rem 0;
}

.infra-list-item {
  padding-left: 0.3rem;

  color: rgba(240,244,255,0.72);

  font-size: 0.88rem;
}

.infra-muted {
  margin-top: 1rem !important;

  color: rgba(240,244,255,0.45) !important;
}

.infra-highlight {
  position: relative;

  padding: 2rem;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      rgba(0,212,255,0.08),
      rgba(123,47,255,0.08)
    );

  border: 1px solid rgba(0,212,255,0.12);
}

.infra-highlight-line {
  position: absolute;

  top: 0;
  left: 0;

  width: 4px;
  height: 100%;

  background: var(--cyan);
}

.infra-highlight h3 {
  font-family: 'Orbitron', monospace;

  font-size: 1.2rem;

  margin-bottom: 1rem;
}

.infra-highlight p {
  color: rgba(240,244,255,0.58);

  line-height: 1.8;

  font-size: 0.92rem;
}

@media (max-width: 1024px) {

  .infra-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .infra-stats-grid {
    grid-template-columns: 1fr;
  }

}


:root {
  --bg: #020208;
  --glass: rgba(10, 14, 28, 0.72);
  --glass-border: rgba(0,212,255,0.12);
  --cyan: #00d4ff;
  --white: #f0f4ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at top, rgba(0,212,255,0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(123,47,255,0.08), transparent 30%),
    #020208;
  background: var(--bg);
  color: var(--white);

  font-family: 'Exo 2', sans-serif;

  overflow-x: hidden;

  position: relative;
}

canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;

  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1.2rem 6%;

  background: rgba(2,2,8,0.7);

  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(0,212,255,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;

  text-decoration: none;
}

.logo-icon {
  font-size: 1.5rem;
}

.logo-text {
  font-family: 'Orbitron', monospace;

  color: var(--white);

  font-size: 1rem;

  letter-spacing: 0.14em;
}

.logo-text span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  gap: 2rem;

  list-style: none;
}

.nav-links a {
  text-decoration: none;

  color: rgba(240,244,255,0.65);

  font-size: 0.82rem;

  letter-spacing: 0.08em;

  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-cta {
  padding: 0.7rem 1.4rem;

  border: 1px solid rgba(0,212,255,0.25);

  color: var(--cyan);

  text-decoration: none;

  font-size: 0.72rem;

  letter-spacing: 0.1em;

  font-family: 'Orbitron', monospace;

  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: rgba(0,212,255,0.08);

  box-shadow: 0 0 20px rgba(0,212,255,0.15);
}

.services-page {
  position: relative;
  z-index: 2;

  padding: 10rem 6% 7rem;
  padding: 7rem 6%;
}

.section-tag {
  color: var(--cyan);

  font-size: 0.7rem;
  letter-spacing: 0.18em;

  font-family: 'Orbitron', monospace;

  margin-bottom: 1rem;
}

.hero-services {
  max-width: 980px;
  margin-bottom: 5rem;
}

.hero-services h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;

  margin-bottom: 1.5rem;

  font-family: 'Orbitron', monospace;

  text-shadow:
    0 0 8px rgba(0,212,255,0.18),
    0 0 18px rgba(0,212,255,0.12);
}

.hero-services p {
  max-width: 760px;

  font-size: 1rem;
  line-height: 1.9;

  color: rgba(240,244,255,0.6);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;

  background: var(--glass);
  border: 1px solid var(--glass-border);

  overflow: hidden;

  backdrop-filter: blur(10px);

  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);

  border-color: rgba(0,212,255,0.35);

  box-shadow:
    0 0 35px rgba(0,212,255,0.08);
}

.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 240px;

  object-fit: cover;
  display: block;

  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(2,2,8,0.85),
      rgba(2,2,8,0.2)
    );
}

.service-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(5,5,16,0.75);

  border: 1px solid rgba(0,212,255,0.2);

  backdrop-filter: blur(10px);

  font-size: 1.3rem;

  z-index: 2;
}

.service-content {
  padding: 1.8rem;
}

.service-content h3 {
  font-size: 1.2rem;

  margin-bottom: 1rem;

  font-family: 'Exo 2', sans-serif;
}

.service-content p {
  color: rgba(240,244,255,0.58);

  line-height: 1.8;

  font-size: 0.92rem;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;

  margin-top: 1.3rem;
}

.service-meta span {
  padding: 0.45rem 0.8rem;

  background: rgba(0,212,255,0.05);

  border: 1px solid rgba(0,212,255,0.12);

  color: var(--cyan);

  font-size: 0.65rem;

  letter-spacing: 0.1em;

  font-family: 'Orbitron', monospace;
}

@media (max-width: 1200px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .services-page {
    padding: 5rem 1.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-services h1 {
    font-size: 2.6rem;
  }

}

footer {
  position: relative;
  z-index: 2;

  padding: 4rem 6% 2rem;

  border-top: 1px solid rgba(0,212,255,0.08);

  background: rgba(2,2,8,0.82);

  backdrop-filter: blur(12px);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
}

.footer-text {
  margin-top: 1rem;

  max-width: 420px;

  color: rgba(240,244,255,0.5);

  line-height: 1.8;

  font-size: 0.9rem;
}

footer h4 {
  margin-bottom: 1rem;

  font-family: 'Orbitron', monospace;

  font-size: 0.8rem;

  color: var(--cyan);
}

.footer-links {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  text-decoration: none;

  color: rgba(240,244,255,0.55);

  font-size: 0.88rem;

  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  margin-top: 3rem;

  padding-top: 1.5rem;

  border-top: 1px solid rgba(255,255,255,0.05);

  text-align: center;

  font-size: 0.8rem;

  color: rgba(240,244,255,0.35);
}

@media (max-width: 1024px) {

  .footer-inner {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  nav {
    padding: 1rem 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --cyan:#00d4ff;
  --violet:#7b2fff;
  --white:#f0f4ff;
  --dark:#050510;
  --darker:#020208;

  --glass:rgba(255,255,255,0.04);
  --glass-border:rgba(0,212,255,0.14);
}

html{
  scroll-behavior:smooth;
}

body{
  background:#020208;
  color:var(--white);
  font-family:'DM Sans',sans-serif;
  overflow-x:hidden;
  position:relative;
}

/* =========================================================
   BACKGROUND
========================================================= */

body::before{
  content:'';

  position:fixed;
  inset:0;

  background:
    radial-gradient(circle at top,
      rgba(0,212,255,0.08),
      transparent 35%),

    radial-gradient(circle at bottom right,
      rgba(123,47,255,0.08),
      transparent 30%);

  pointer-events:none;
  z-index:-1;
}

/* =========================================================
   NAVBAR
========================================================= */

nav{
  position:fixed;
  top:0;
  left:0;
  right:0;

  z-index:999;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:
    1.2rem
    clamp(1rem,4vw,4rem);

  backdrop-filter:blur(18px);

  background:
    rgba(2,2,8,0.72);

  border-bottom:
    1px solid rgba(0,212,255,0.08);
}

.logo{
  display:flex;
  align-items:center;
  gap:.7rem;
  text-decoration:none;
}

.logo-icon{
  font-size:1.5rem;
}

.logo-text{
  font-family:'Orbitron',monospace;
  font-weight:800;
  letter-spacing:.14em;
  color:var(--white);
}

.logo-text span{
  color:var(--cyan);
}

.nav-links{
  display:flex;
  gap:2.4rem;
  list-style:none;
}

.nav-links a{
  color:rgba(240,244,255,0.65);
  text-decoration:none;

  font-size:.85rem;

  letter-spacing:.08em;

  transition:.3s;
}

.nav-links a:hover{
  color:var(--cyan);
}

.nav-cta{
  padding:
    .8rem
    1.5rem;

  border:
    1px solid rgba(0,212,255,0.35);

  text-decoration:none;

  color:var(--cyan);

  font-family:'Orbitron',monospace;

  font-size:.72rem;

  letter-spacing:.1em;

  transition:.3s;
}

.nav-cta:hover{
  background:
    rgba(0,212,255,0.08);

  box-shadow:
    0 0 30px rgba(0,212,255,0.15);
}

/* =========================================================
   HERO
========================================================= */

.services-hero{
  position:relative;

  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  overflow:hidden;

  padding:
    clamp(8rem,12vw,12rem)
    clamp(1rem,5vw,5rem)
    6rem;
}

.services-hero::before{
  content:'';

  position:absolute;
  inset:0;

  background:
    radial-gradient(circle at center,
      rgba(0,212,255,0.12),
      transparent 40%);

  z-index:0;
}

.services-hero-content{
  position:relative;
  z-index:2;

  max-width:1200px;
}

.section-tag{
  display:inline-flex;
  align-items:center;
  gap:.6rem;

  padding:
    .5rem
    1rem;

  border:
    1px solid rgba(0,212,255,0.25);

  background:
    rgba(0,212,255,0.05);

  color:var(--cyan);

  font-size:.75rem;

  letter-spacing:.14em;

  font-family:'Orbitron',monospace;

  margin-bottom:2rem;
}

.services-hero h1{
  font-family:'Orbitron',monospace;

  font-size:
    clamp(3rem,8vw,7rem);

  line-height:1;

  margin-bottom:1.5rem;
}

.services-hero h1 span{
  display:block;

  margin-top:.6rem;

  color:var(--cyan);

  text-shadow:
    0 0 25px rgba(0,212,255,0.3);
}

.services-hero p{
  max-width:860px;

  margin:
    0 auto 3rem;

  color:
    rgba(240,244,255,0.62);

  font-size:
    clamp(1rem,1.3vw,1.2rem);

  line-height:1.9;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:1rem;
  flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
  padding:
    1rem
    2rem;

  text-decoration:none;

  font-family:'Orbitron',monospace;

  font-size:.75rem;

  letter-spacing:.1em;

  transition:.3s;
}

.btn-primary{
  background:var(--cyan);
  color:var(--darker);

  box-shadow:
    0 0 40px rgba(0,212,255,0.25);
}

.btn-primary:hover{
  transform:translateY(-3px);

  box-shadow:
    0 0 60px rgba(0,212,255,0.4);
}

.btn-secondary{
  border:
    1px solid rgba(240,244,255,0.2);

  color:var(--white);
}

.btn-secondary:hover{
  border-color:var(--cyan);
  color:var(--cyan);
}

/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid{
  max-width:1800px;

  margin:0 auto;

  padding:
    0
    clamp(1rem,4vw,4rem)
    8rem;

  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(500px,1fr));

  gap:2rem;
}

.large-card{
  grid-column:span 2;
}

.service-card{
  position:relative;

  overflow:hidden;

  background:var(--glass);

  border:
    1px solid var(--glass-border);

  backdrop-filter:blur(16px);

  transition:
    transform .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;
}

.service-card:hover{
  transform:
    translateY(-10px);

  border-color:
    rgba(0,212,255,0.4);

  box-shadow:
    0 0 50px rgba(0,212,255,0.12);
}

.service-image-wrap{
  position:relative;
  overflow:hidden;
}

.service-image-wrap img{
  width:100%;

  height:
    clamp(260px,30vw,420px);

  object-fit:cover;

  transition:
    transform .8s ease;
}

.service-card:hover img{
  transform:scale(1.08);
}

.service-gradient{
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      to top,
      rgba(2,2,8,.95),
      rgba(2,2,8,.1)
    );
}

.service-badge{
  position:absolute;

  top:1rem;
  left:1rem;

  padding:
    .55rem
    .9rem;

  background:
    rgba(2,2,8,0.75);

  border:
    1px solid rgba(0,212,255,0.2);

  color:var(--cyan);

  font-size:.72rem;

  letter-spacing:.08em;

  font-family:'Orbitron',monospace;

  backdrop-filter:blur(10px);
}

.service-content{
  padding:2rem;
}

.service-top-row{
  display:flex;
  align-items:center;
  justify-content:space-between;

  margin-bottom:1.5rem;
}

.service-icon{
  width:58px;
  height:58px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;

  background:
    rgba(0,212,255,0.08);

  border:
    1px solid rgba(0,212,255,0.18);

  font-size:1.5rem;

  box-shadow:
    0 0 25px rgba(0,212,255,0.08);
}

.service-meta-pill{
  padding:
    .45rem
    .8rem;

  border:
    1px solid rgba(123,47,255,0.2);

  background:
    rgba(123,47,255,0.08);

  color:#d4bbff;

  font-size:.68rem;

  letter-spacing:.08em;

  font-family:'Orbitron',monospace;
}

.service-content h3{
  font-size:1.5rem;

  font-family:'Exo 2',sans-serif;

  margin-bottom:1rem;
}

.service-content p{
  color:
    rgba(240,244,255,0.58);

  line-height:1.8;

  margin-bottom:1.5rem;

  font-size:.95rem;
}

.service-tags{
  display:flex;
  gap:.7rem;
  flex-wrap:wrap;
}

.service-tags span{
  padding:
    .45rem
    .8rem;

  border:
    1px solid rgba(240,244,255,0.08);

  background:
    rgba(255,255,255,0.04);

  color:
    rgba(240,244,255,0.74);

  font-size:.72rem;
}

/* =========================================================
   CTA
========================================================= */

.cta-section{
  position:relative;

  padding:
    7rem
    clamp(1rem,4vw,4rem);

  text-align:center;

  overflow:hidden;
}

.cta-section::before{
  content:'';

  position:absolute;
  inset:0;

  background:
    radial-gradient(circle,
      rgba(0,212,255,0.12),
      transparent 50%);
}

.cta-content{
  position:relative;
  z-index:2;

  max-width:1000px;

  margin:0 auto;
}

.cta-content h2{
  font-family:'Orbitron',monospace;

  font-size:
    clamp(2rem,5vw,5rem);

  margin-bottom:1.5rem;
}

.cta-content p{
  color:
    rgba(240,244,255,0.6);

  line-height:1.8;

  margin-bottom:2rem;
}

/* =========================================================
   FOOTER
========================================================= */

footer{
  border-top:
    1px solid rgba(0,212,255,0.08);

  padding:
    4rem
    clamp(1rem,4vw,4rem)
    2rem;
}

.footer-inner{
  max-width:1600px;

  margin:0 auto;

  display:grid;

  grid-template-columns:
    1.4fr
    1fr
    1fr;

  gap:3rem;
}

.footer-text{
  color:
    rgba(240,244,255,0.45);

  line-height:1.8;

  margin-top:1rem;
}

footer h4{
  font-family:'Orbitron',monospace;

  margin-bottom:1rem;

  color:var(--cyan);
}

.footer-links{
  list-style:none;

  display:flex;
  flex-direction:column;
  gap:.7rem;
}

.footer-links a{
  text-decoration:none;

  color:
    rgba(240,244,255,0.5);

  transition:.3s;
}

.footer-links a:hover{
  color:var(--cyan);
}

.footer-bottom{
  text-align:center;

  margin-top:3rem;

  padding-top:2rem;

  border-top:
    1px solid rgba(255,255,255,0.05);

  color:
    rgba(240,244,255,0.3);

  font-size:.85rem;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px){

  .large-card{
    grid-column:span 1;
  }

  .footer-inner{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .nav-links{
    display:none;
  }

  .services-grid{
    grid-template-columns:1fr;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn-primary,
  .btn-secondary{
    width:100%;
  }

  .service-content{
    padding:1.5rem;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }

  .services-hero{
    min-height:auto;
  }

}

@media(min-width:1920px){

  .services-grid{
    max-width:2200px;
  }

  .service-image-wrap img{
    height:520px;
  }

}

/* =====================================================
   IMAGE COMPARISON SLIDER
===================================================== */

.compare-slider{
  position:relative;

  overflow:hidden;

  cursor:ew-resize;
}

.compare-image{
  width:100%;
  display:block;
}

/* CENTER LINE */

.compare-line{
  position:absolute;

  top:0;
  bottom:0;
  left:50%;

  width:2px;

  background:#ffffff;

  z-index:5;

  transform:translateX(-50%);
}

/* DRAG BUTTON */

.compare-button{
  position:absolute;

  top:50%;
  left:50%;

  transform:
    translate(-50%,-50%);

  width:42px;
  height:42px;

  border-radius:50%;

  background:
    rgba(255,255,255,0.12);

  backdrop-filter:blur(12px);

  border:
    2px solid #ffffff;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#ffffff;

  font-size:1rem;

  z-index:6;

  box-shadow:
    0 0 20px rgba(255,255,255,0.25);
}

/* OPTIONAL GLOW */

.compare-button::before{
  content:'';

  position:absolute;
  inset:-8px;

  border-radius:50%;

  border:
    1px solid rgba(255,255,255,0.25);

  animation:
    pulseCompare 2s infinite;
}

@keyframes pulseCompare{

  0%{
    transform:scale(.8);
    opacity:1;
  }

  100%{
    transform:scale(1.5);
    opacity:0;
  }

}
/* =====================================================
   IMAGE COMPARISON SLIDER
===================================================== */

.img-comp-container{
  position:relative;
  width:100%;
  height:420px;
  overflow:hidden;
  background:#050816;
}

/* BOTH IMAGE LAYERS */

.img-comp-img{
  position:absolute;
  inset:0;
  overflow:hidden;
}

/* IMAGE */

.img-comp-img img{
  position:absolute;
  top:0;
  left:0;

  /* IMPORTANT */
  width:100vw;
  max-width:none;

  height:100%;
  object-fit:cover;
  object-position:left center;

  display:block;

  pointer-events:none;
  user-select:none;
}

/* OVERLAY */

.img-comp-overlay{
  width:50%;
  z-index:2;
}

/* =====================================================
   SLIDER HANDLE
===================================================== */

.img-comp-slider{

  position:absolute;

  z-index:200;

  cursor:ew-resize;

  width:62px;
  height:62px;

  border-radius:50%;

  background:rgba(5,10,25,0.92);

  border:2px solid rgba(255,255,255,0.9);

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;
  font-size:1.5rem;
  font-weight:700;

  backdrop-filter:blur(10px);

  box-shadow:
    0 0 18px rgba(0,212,255,0.45),
    0 0 35px rgba(0,212,255,0.25);

  overflow:visible;
}

/* =====================================================
   CENTER LINE
===================================================== */

.img-comp-slider::before{

  content:'';

  position:absolute;

  left:50%;
  top:50%;

  transform:translate(-50%, -50%);

  width:2px;

  height:100vh;

  background:white;

  z-index:-1;

  box-shadow:
    0 0 12px rgba(255,255,255,0.45),
    0 0 24px rgba(0,212,255,0.35);
}
/* =====================================================
   CENTER VERTICAL LINE
===================================================== */

.slider-line{

  position:absolute;

  left:50%;
  top:50%;

  transform:translate(-50%, -50%);

  width:2px;

  height:2000px;

  background:rgba(255,255,255,0.95);

  box-shadow:
    0 0 10px rgba(255,255,255,0.4),
    0 0 18px rgba(0,212,255,0.35);

  z-index:1;
}
/* =====================================================
   CENTER DIVIDER LINE
===================================================== */

.img-comp-slider::after{

  content:'';

  position:absolute;

  left:50%;
  top:50%;

  transform:translate(-50%, -50%);

  width:2px;

  /* VERY LONG LINE */
  height:2000px;

  background:rgba(255,255,255,0.95);

  box-shadow:
    0 0 10px rgba(255,255,255,0.45),
    0 0 18px rgba(0,212,255,0.35);

  z-index:-1;
}


/* LABELS */

.compare-label{
  position:absolute;
  top:18px;
  z-index:15;

  background:rgba(0,0,0,0.55);

  border:1px solid rgba(0,212,255,0.35);

  padding:10px 18px;

  font-size:0.9rem;
  font-weight:700;
  letter-spacing:0.08em;

  color:#fff;

  backdrop-filter:blur(8px);
}

.before-label{
  left:18px;
}

.after-label{
  right:18px;
}

/* MOBILE */

@media(max-width:768px){

  .img-comp-container{
    height:260px;
  }

  .img-comp-slider{
    width:48px;
    height:48px;
    font-size:1.1rem;
  }

  .compare-label{
    font-size:0.72rem;
    padding:8px 14px;
  }

}
/* VIDEO INSIDE CARD */


.video-wrap{
  position:relative;
  overflow:hidden;
  border-radius:24px;
}

/* VIDEO INSIDE CARD */

.video-card-media{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
/* ===== HERO LOGO FIX ===== */

.hero-carousel{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video{
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  z-index: 1;
}

/* overlay */
.hero-carousel::after{
  content: '';

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(2,2,8,0.45) 0%,
      rgba(2,2,8,0.30) 50%,
      rgba(2,2,8,0.65) 100%
    );

  z-index: 2;
}

/* LOGO */
.bottom-right{
  position: absolute;

  right: 40px;
  top: 50%;

  transform: translateY(-50%);

  z-index: 9999 !important;

  pointer-events: none;
}

.bottom-right img{
  width: 170px;
  height: auto;

  display: block;

  object-fit: contain;

  border-radius: 14px;

  box-shadow:
    0 0 30px rgba(0,0,0,0.45);
}

/* mobile */
@media (max-width:768px){

  .bottom-right{
    right: 15px;
    top: auto;
    bottom: 90px;

    transform: none;
  }

  .bottom-right img{
    width: 100px;
  }

}
/* MOBILE NAVBAR */
@media (max-width: 768px) {

  nav{
    padding: 1rem 1.2rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;
  }

  .logo{
    font-size: 1rem;
  }

  .nav-links{
    position: fixed;

    top: 70px;
    right: -100%;

    width: 260px;
    height: calc(100vh - 70px);

    background: rgba(2,2,8,0.96);

    backdrop-filter: blur(18px);

    border-left: 1px solid rgba(0,212,255,0.12);

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    padding: 2rem 1.5rem;

    gap: 1.5rem;

    transition: 0.4s ease;

    z-index: 999;
  }

  .nav-links.active{
    right: 0;
  }

  .nav-links a{
    font-size: 0.95rem;

    width: 100%;
  }

  .nav-toggle{
    display: flex;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    z-index: 1000;
  }

  .nav-toggle span{
    width: 26px;
    height: 2px;

    background: #00d4ff;

    display: block;

    transition: 0.3s;
  }

}/* ===== MOBILE NAV ===== */

.nav-toggle{
  display: none;
}

/* MOBILE */
@media (max-width: 768px){

  nav{
    padding: 1rem 1.2rem;

    position: fixed;

    top: 0;
    left: 0;
    width: 100%;

    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-toggle{
    display: flex;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    z-index: 10000;
  }

  .nav-toggle span{
    width: 26px;
    height: 2px;

    background: #00d4ff;

    transition: 0.3s;
  }

  .nav-links{
    position: fixed;

    top: 0;
    right: -100%;

    width: 260px;
    height: 100vh;

    background: rgba(2,2,8,0.96);

    backdrop-filter: blur(18px);

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    padding: 6rem 2rem;

    gap: 1.5rem;

    transition: 0.4s ease;

    z-index: 9998;
  }

  .nav-links.active{
    right: 0;
  }

  .nav-links li{
    list-style: none;
  }

  .nav-links a{
    color: white;

    text-decoration: none;

    font-size: 1rem;
  }

}/* =========================
   MOBILE NAV FINAL FIX
========================= */

.nav-toggle{
  display: none;
}

@media (max-width:768px){

  nav{
    position: fixed !important;

    top: 0;
    left: 0;

    width: 100%;

    padding: 1rem 1.2rem !important;

    z-index: 99999 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    background: rgba(2,2,8,0.95);

    backdrop-filter: blur(16px);
  }

  .nav-toggle{
    display: flex !important;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    z-index: 100000;
  }

  .nav-toggle span{
    width: 26px;
    height: 2px;

    background: #00d4ff;

    border-radius: 10px;

    display: block;
  }

  .nav-links{
    position: fixed !important;

    top: 0 !important;
    right: -100% !important;

    width: 260px !important;
    height: 100vh !important;

    padding: 7rem 2rem !important;

    background: rgba(2,2,8,0.98) !important;

    backdrop-filter: blur(18px);

    display: flex !important;
    flex-direction: column !important;

    align-items: flex-start !important;

    gap: 1.5rem !important;

    transition: 0.4s ease !important;

    z-index: 99998 !important;
  }

  .nav-links.active{
    right: 0 !important;
  }

  .nav-links li{
    list-style: none;
  }

  .nav-links a{
    color: white !important;

    text-decoration: none;

    font-size: 1rem !important;
  }

  .nav-cta{
    display: none !important;
  }

}