 /* ========== RESET & BASE ========== */
 * { margin: 0; padding: 0; box-sizing: border-box; }
 html { scroll-behavior: smooth; }
 body {
     font-family: 'Inter', sans-serif;
     background: #0A0E1A;
     color: #fff;
     overflow-x: hidden;
 }

 /* ========== LOGO — Le "O" en dôme maillé ========== */
 .logo-dome {
     font-family: 'Space Grotesk', sans-serif;
     font-weight: 700;
     font-size: 1.6rem;
     letter-spacing: 0.08em;
     display: flex;
     align-items: center;
     gap: 0;
     user-select: none;
 }
 .logo-dome .letter-o {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 2rem;
     height: 2rem;
     position: relative;
 }
 .logo-dome .letter-o svg {
     width: 100%;
     height: 100%;
 }
 .logo-subtitle {
     font-family: 'Inter', sans-serif;
     font-size: 0.6rem;
     font-weight: 400;
     letter-spacing: 0.25em;
     text-transform: uppercase;
     color: #4DA6FF;
     margin-top: -2px;
 }

/* ========== BRAND IMAGE LOGO ========== */
.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.brand-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.brand-logo-header {
    height: 55px;
}
.brand-logo-footer {
    height: 54px;
    opacity: 0.95;
}
@media (min-width: 768px) {
    .brand-logo-header {
        height: 65px;
    }
    .brand-logo-footer {
        height: 60px;
    }
}

 /* ========== ANIMATED GRID BACKGROUND ========== */
 .hero-grid {
     position: absolute;
     inset: 0;
     background-image:
         linear-gradient(rgba(0, 85, 255, 0.06) 1px, transparent 1px),
         linear-gradient(90deg, rgba(0, 85, 255, 0.06) 1px, transparent 1px);
     background-size: 60px 60px;
     animation: gridPulse 8s ease-in-out infinite;
 }
 @keyframes gridPulse {
     0%, 100% { opacity: 0.4; }
     50% { opacity: 1; }
 }

 /* ========== SCAN LINE ========== */
 .scan-line {
     position: absolute;
     left: 0;
     width: 100%;
     height: 2px;
     background: linear-gradient(90deg, transparent 0%, #0055FF 20%, #4DA6FF 50%, #0055FF 80%, transparent 100%);
     opacity: 0.5;
     animation: scanMove 6s linear infinite;
     box-shadow: 0 0 15px 3px rgba(0, 85, 255, 0.3);
 }
 @keyframes scanMove {
     0% { top: -2px; }
     100% { top: 100%; }
 }
@media (max-width: 767px) {
    .scan-line {
        display: none;
    }
}

 /* ========== CORNER BRACKETS (surveillance style) ========== */
 .corner-bracket {
     position: absolute;
     width: 20px;
     height: 20px;
     border-color: rgba(0, 85, 255, 0.4);
     border-style: solid;
     border-width: 0;
 }
 .corner-bracket.tl { top: 20px; left: 20px; border-top-width: 2px; border-left-width: 2px; }
 .corner-bracket.tr { top: 20px; right: 20px; border-top-width: 2px; border-right-width: 2px; }
 .corner-bracket.bl { bottom: 20px; left: 20px; border-bottom-width: 2px; border-left-width: 2px; }
 .corner-bracket.br { bottom: 20px; right: 20px; border-bottom-width: 2px; border-right-width: 2px; }

 @media (min-width: 768px) {
     .corner-bracket { width: 40px; height: 40px; }
     .corner-bracket.tl { top: 40px; left: 40px; }
     .corner-bracket.tr { top: 40px; right: 40px; }
     .corner-bracket.bl { bottom: 40px; left: 40px; }
     .corner-bracket.br { bottom: 40px; right: 40px; }
 }

 /* ========== HERO GLOW ORB ========== */
 .glow-orb {
     position: absolute;
     border-radius: 50%;
     filter: blur(80px);
     pointer-events: none;
 }
 .glow-orb-1 {
     width: 500px; height: 500px;
     background: radial-gradient(circle, rgba(0, 85, 255, 0.15) 0%, transparent 70%);
     top: -100px; right: -100px;
 }
 .glow-orb-2 {
     width: 400px; height: 400px;
     background: radial-gradient(circle, rgba(0, 85, 255, 0.1) 0%, transparent 70%);
     bottom: -50px; left: -100px;
 }

 /* ========== CTA BUTTON ========== */
 .btn-primary {
     position: relative;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.9rem 2rem;
     background: #0055FF;
     color: #fff;
     font-family: 'Space Grotesk', sans-serif;
     font-weight: 600;
     font-size: 0.95rem;
     letter-spacing: 0.03em;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     overflow: hidden;
 }
 .btn-primary::before {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
     opacity: 0;
     transition: opacity 0.3s ease;
 }
 .btn-primary:hover {
     background: #0066FF;
     box-shadow: 0 0 30px rgba(0, 85, 255, 0.4), 0 0 60px rgba(0, 85, 255, 0.15);
     transform: translateY(-2px);
 }
 .btn-primary:hover::before { opacity: 1; }

 .btn-secondary {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.9rem 2rem;
     background: transparent;
     color: #fff;
     font-family: 'Space Grotesk', sans-serif;
     font-weight: 500;
     font-size: 0.95rem;
     letter-spacing: 0.03em;
     border: 1px solid rgba(255,255,255,0.2);
     border-radius: 4px;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
 }
 .btn-secondary:hover {
     border-color: #0055FF;
     color: #4DA6FF;
     background: rgba(0, 85, 255, 0.05);
 }

 /* ========== HEADER ========== */
 .header-main {
     position: fixed;
     top: 0; left: 0; right: 0;
     z-index: 100;
     transition: all 0.4s ease;
     background: transparent;
 }
.header-main.menu-open {
    z-index: 400;
}
 .header-main.scrolled {
     background: rgba(10, 14, 26, 0.92);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(0, 85, 255, 0.1);
 }

 /* ========== NAV LINKS ========== */
 .nav-link {
     position: relative;
     font-family: 'Space Grotesk', sans-serif;
     font-weight: 500;
     font-size: 0.85rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: rgba(255,255,255,0.7);
     text-decoration: none;
     padding: 0.5rem 0;
     transition: color 0.3s ease;
 }
 .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 0;
     height: 1px;
     background: #0055FF;
     transition: width 0.3s ease;
     box-shadow: 0 0 6px rgba(0, 85, 255, 0.5);
 }
 .nav-link:hover { color: #fff; }
 .nav-link:hover::after { width: 100%; }
 .nav-link.active { color: #fff; }
 .nav-link.active::after { width: 100%; }

 /* ========== MOBILE MENU ========== */
 .mobile-overlay {
     position: fixed;
     inset: 0;
     background: rgba(10, 14, 26, 0.97);
     backdrop-filter: blur(30px);
     -webkit-backdrop-filter: blur(30px);
     z-index: 200;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     gap: 2rem;
     opacity: 0;
     pointer-events: none;
     transition: opacity 0.4s ease;
 }
 .mobile-overlay.open {
     opacity: 1;
     pointer-events: all;
 }
 .mobile-overlay .nav-link {
     font-size: 1.3rem;
     letter-spacing: 0.15em;
 }
 .mobile-overlay .nav-link::after {
     height: 2px;
 }

 /* ========== HAMBURGER ========== */
 .hamburger {
     display: flex;
     flex-direction: column;
     gap: 5px;
     cursor: pointer;
     z-index: 300;
     padding: 8px;
     background: none;
     border: none;
 }
 .hamburger span {
     display: block;
     width: 24px;
     height: 2px;
     background: #fff;
     border-radius: 2px;
     transition: all 0.3s ease;
     transform-origin: center;
 }
 .hamburger.active span:nth-child(1) {
     transform: rotate(45deg) translate(5px, 5px);
 }
 .hamburger.active span:nth-child(2) {
     opacity: 0;
     transform: scaleX(0);
 }
 .hamburger.active span:nth-child(3) {
     transform: rotate(-45deg) translate(5px, -5px);
 }

 /* ========== STATUS INDICATOR (surveillance touch) ========== */
 .status-dot {
     width: 6px;
     height: 6px;
     background: #00CC66;
     border-radius: 50%;
     display: inline-block;
     animation: statusBlink 3s ease-in-out infinite;
     box-shadow: 0 0 6px rgba(0, 204, 102, 0.5);
 }
 @keyframes statusBlink {
     0%, 90%, 100% { opacity: 1; }
     95% { opacity: 0.3; }
 }

 /* ========== REVEAL ANIMATIONS ========== */
 .reveal {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
 }
 .reveal.visible {
     opacity: 1;
     transform: translateY(0);
 }
 .reveal-delay-1 { transition-delay: 0.15s; }
 .reveal-delay-2 { transition-delay: 0.3s; }
 .reveal-delay-3 { transition-delay: 0.45s; }
 .reveal-delay-4 { transition-delay: 0.6s; }

 /* ========== HERO TIMESTAMP (surveillance style) ========== */
 .hero-timestamp {
     font-family: 'Space Grotesk', monospace;
     font-size: 0.7rem;
     letter-spacing: 0.15em;
     color: rgba(0, 85, 255, 0.5);
     text-transform: uppercase;
 }

 /* ========== MOSAIC OVERLAY ========== */
 .mosaic-strip {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: repeating-linear-gradient(
         90deg,
         #0055FF 0px, #0055FF 2px,
         transparent 2px, transparent 8px
     );
     opacity: 0.5;
 }

 /* ========== LIGHT SECTIONS (fond blanc) ========== */
.section-light {
    background: #ffffff;
    color: #1a1a2e;
    position: relative;
}
 .section-light h2 {
     font-family: 'Space Grotesk', sans-serif;
 }

 /* ========== SECTION TAG / EYEBROW ========== */
 .section-tag {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     font-family: 'Space Grotesk', sans-serif;
     font-size: 0.7rem;
     font-weight: 600;
     letter-spacing: 0.2em;
     text-transform: uppercase;
     color: #0055FF;
     padding: 0.4rem 1rem;
     border: 1px solid rgba(0, 85, 255, 0.2);
     border-radius: 50px;
     background: rgba(0, 85, 255, 0.04);
 }
 .section-tag .tag-dot {
     width: 5px;
     height: 5px;
     background: #0055FF;
     border-radius: 50%;
 }

 /* ========== FEATURE CARD ========== */
 .feature-card {
     position: relative;
     padding: 2.5rem 2rem;
     background: #f8f9fc;
     border: 1px solid rgba(0, 85, 255, 0.06);
     border-radius: 12px;
     transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
     overflow: hidden;
 }
 .feature-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, transparent, #0055FF, transparent);
     opacity: 0;
     transition: opacity 0.4s ease;
 }
 .feature-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 60px rgba(0, 85, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
     border-color: rgba(0, 85, 255, 0.12);
 }
 .feature-card:hover::before {
     opacity: 1;
 }
 .feature-card .feature-icon {
     width: 56px;
     height: 56px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(0, 85, 255, 0.08), rgba(0, 85, 255, 0.03));
     border-radius: 12px;
     margin-bottom: 1.5rem;
     color: #0055FF;
     transition: all 0.4s ease;
 }
 .feature-card:hover .feature-icon {
     background: #0055FF;
     color: #fff;
     box-shadow: 0 8px 24px rgba(0, 85, 255, 0.25);
 }

 /* ========== DECORATIVE GRID (light version) ========== */
 .grid-deco-light {
     position: absolute;
     inset: 0;
     background-image:
         linear-gradient(rgba(0, 85, 255, 0.025) 1px, transparent 1px),
         linear-gradient(90deg, rgba(0, 85, 255, 0.025) 1px, transparent 1px);
     background-size: 80px 80px;
     pointer-events: none;
 }

 /* ========== CTA BAND ========== */
 .cta-band {
     background: linear-gradient(135deg, #0A0E1A 0%, #0d1529 50%, #0A0E1A 100%);
     position: relative;
     overflow: hidden;
 }
 .cta-band::before {
     content: '';
     position: absolute;
     inset: 0;
     background-image:
         linear-gradient(rgba(0, 85, 255, 0.04) 1px, transparent 1px),
         linear-gradient(90deg, rgba(0, 85, 255, 0.04) 1px, transparent 1px);
     background-size: 50px 50px;
     pointer-events: none;
 }

 /* ========== SEPARATOR LINE ========== */
 .separator-line {
     width: 60px;
     height: 3px;
     background: linear-gradient(90deg, #0055FF, #4DA6FF);
     border-radius: 3px;
 }

 /* ========== ABOUT COUNTER ========== */
 .about-stat {
     text-align: center;
     padding: 1.5rem 1rem;
 }
 .about-stat .stat-value {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 2.2rem;
     font-weight: 700;
     color: #0055FF;
     line-height: 1;
 }
 .about-stat .stat-label {
     font-size: 0.75rem;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: #8892a6;
     margin-top: 0.4rem;
 }

 /* ========== FOOTER ========== */
 .footer-main {
     background: #060912;
     border-top: 1px solid rgba(0, 85, 255, 0.08);
 }
 .footer-link {
     color: rgba(255,255,255,0.4);
     text-decoration: none;
     font-size: 0.85rem;
     transition: color 0.3s ease;
 }
 .footer-link:hover {
     color: #4DA6FF;
 }

 /* ========== BTN PRIMARY ON LIGHT BG ========== */
 .btn-primary-light {
     position: relative;
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.9rem 2rem;
     background: #0055FF;
     color: #fff;
     font-family: 'Space Grotesk', sans-serif;
     font-weight: 600;
     font-size: 0.95rem;
     letter-spacing: 0.03em;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     overflow: hidden;
 }
 .btn-primary-light:hover {
     background: #0044DD;
     box-shadow: 0 8px 30px rgba(0, 85, 255, 0.3);
     transform: translateY(-2px);
 }

 .btn-outline-light {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.9rem 2rem;
     background: transparent;
     color: #0055FF;
     font-family: 'Space Grotesk', sans-serif;
     font-weight: 500;
     font-size: 0.95rem;
     letter-spacing: 0.03em;
     border: 1px solid rgba(0, 85, 255, 0.25);
     border-radius: 4px;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
 }
 .btn-outline-light:hover {
     border-color: #0055FF;
     background: rgba(0, 85, 255, 0.04);
 }

 /* ========== PROCESS / STEPS ========== */
 .step-card {
     position: relative;
     text-align: center;
     padding: 2rem 1.5rem;
 }
 .step-number {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 3.5rem;
     font-weight: 700;
     line-height: 1;
     color: rgba(0, 85, 255, 0.07);
     margin-bottom: 1rem;
     transition: color 0.4s ease;
 }
 .step-card:hover .step-number {
     color: rgba(0, 85, 255, 0.15);
 }
 .step-icon-wrap {
     width: 52px;
     height: 52px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 1.2rem;
     border-radius: 50%;
     background: rgba(0, 85, 255, 0.06);
     color: #0055FF;
     transition: all 0.4s ease;
 }
 .step-card:hover .step-icon-wrap {
     background: #0055FF;
     color: #fff;
     box-shadow: 0 8px 24px rgba(0, 85, 255, 0.25);
     transform: scale(1.1);
 }

 /* Connector line between steps (desktop) */
 .step-connector {
     position: absolute;
     top: 5.5rem;
     right: -50%;
     width: 100%;
     height: 1px;
     background: linear-gradient(90deg, rgba(0, 85, 255, 0.15), rgba(0, 85, 255, 0.05));
     pointer-events: none;
 }
 .step-connector::after {
     content: '';
     position: absolute;
     right: 0;
     top: -2px;
     width: 5px;
     height: 5px;
     border-radius: 50%;
     background: rgba(0, 85, 255, 0.2);
 }

 /* ========== AUDIENCE CARDS (Particuliers / Entreprises) ========== */
 .audience-card {
     position: relative;
     padding: 3rem 2.5rem;
     border-radius: 16px;
     border: 1px solid rgba(0, 85, 255, 0.08);
     background: #fff;
     transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
     overflow: hidden;
 }
 .audience-card::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, #0055FF, #4DA6FF);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
 }
 .audience-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 24px 64px rgba(0, 85, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.03);
     border-color: rgba(0, 85, 255, 0.15);
 }
 .audience-card:hover::after {
     transform: scaleX(1);
 }
 .audience-icon {
     width: 64px;
     height: 64px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 16px;
     margin-bottom: 1.5rem;
     color: #0055FF;
     transition: all 0.4s ease;
 }
 .audience-card:hover .audience-icon {
     transform: scale(1.05);
 }
 .audience-list li {
     display: flex;
     align-items: flex-start;
     gap: 0.6rem;
     font-size: 0.9rem;
     color: #4a5568;
     line-height: 1.5;
 }
 .audience-list li svg {
     flex-shrink: 0;
     margin-top: 3px;
 }

 /* ========== HERO PAGE (sous-pages) ========== */
 .hero-page {
     position: relative;
     background: #0A0E1A;
     padding-top: 7rem;
     padding-bottom: 4rem;
     overflow: hidden;
 }
 @media (min-width: 768px) {
     .hero-page {
         padding-top: 9rem;
         padding-bottom: 5rem;
     }
 }
 .hero-page .hero-page-grid {
     position: absolute;
     inset: 0;
     background-image:
         linear-gradient(rgba(0, 85, 255, 0.04) 1px, transparent 1px),
         linear-gradient(90deg, rgba(0, 85, 255, 0.04) 1px, transparent 1px);
     background-size: 60px 60px;
     opacity: 0.6;
     pointer-events: none;
 }
 .hero-page .hero-page-glow {
     position: absolute;
     width: 400px;
     height: 400px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(0, 85, 255, 0.12) 0%, transparent 70%);
     filter: blur(80px);
     pointer-events: none;
     top: -120px;
     right: -80px;
 }
 .hero-page .hero-page-line {
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 3px;
     background: linear-gradient(90deg, transparent, #0055FF, transparent);
     opacity: 0.3;
 }
 .hero-page .breadcrumb {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 0.7rem;
     letter-spacing: 0.15em;
     text-transform: uppercase;
     color: rgba(255,255,255,0.3);
 }
 .hero-page .breadcrumb a {
     color: rgba(255,255,255,0.3);
     text-decoration: none;
     transition: color 0.3s ease;
 }
 .hero-page .breadcrumb a:hover {
     color: #4DA6FF;
 }
 .hero-page .breadcrumb .sep {
     margin: 0 0.5rem;
     color: rgba(0, 85, 255, 0.4);
 }

 /* ========== SERVICE CARD (prestations) ========== */
 .service-card {
     position: relative;
     padding: 2.5rem 2rem;
     background: #fff;
     border: 1px solid rgba(0, 85, 255, 0.06);
     border-radius: 16px;
     transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
     overflow: hidden;
 }
 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 4px;
     height: 0;
     background: linear-gradient(180deg, #0055FF, #4DA6FF);
     border-radius: 0 0 4px 0;
     transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
 }
 .service-card:hover {
     transform: translateY(-6px);
     box-shadow: 0 20px 60px rgba(0, 85, 255, 0.07), 0 8px 24px rgba(0, 0, 0, 0.03);
     border-color: rgba(0, 85, 255, 0.12);
 }
 .service-card:hover::before {
     height: 100%;
 }
 .service-card .service-icon {
     width: 60px;
     height: 60px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(0, 85, 255, 0.08), rgba(0, 85, 255, 0.02));
     border-radius: 14px;
     margin-bottom: 1.5rem;
     color: #0055FF;
     transition: all 0.4s ease;
 }
 .service-card:hover .service-icon {
     background: #0055FF;
     color: #fff;
     box-shadow: 0 8px 24px rgba(0, 85, 255, 0.25);
 }
 .service-detail-item {
     display: flex;
     align-items: flex-start;
     gap: 0.6rem;
     font-size: 0.85rem;
     color: #4a5568;
     line-height: 1.5;
 }
 .service-detail-item svg {
     flex-shrink: 0;
     margin-top: 2px;
 }

 /* ========== WHY CARD (avantages prestations) ========== */
 .why-card {
     display: flex;
     align-items: flex-start;
     gap: 1.2rem;
     padding: 1.8rem;
     background: #f8f9fc;
     border-radius: 12px;
     border: 1px solid rgba(0, 85, 255, 0.04);
     transition: all 0.4s ease;
 }
 .why-card:hover {
     background: #fff;
     box-shadow: 0 12px 40px rgba(0, 85, 255, 0.06);
     border-color: rgba(0, 85, 255, 0.1);
     transform: translateY(-3px);
 }
 .why-card .why-icon {
     width: 44px;
     height: 44px;
     min-width: 44px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgba(0, 85, 255, 0.06);
     border-radius: 10px;
     color: #0055FF;
     transition: all 0.4s ease;
 }
 .why-card:hover .why-icon {
     background: #0055FF;
     color: #fff;
 }

/* ========== CONTACT PAGE ========== */
.contact-info-card {
    background: #f8f9fc;
    border: 1px solid rgba(0, 85, 255, 0.06);
    border-radius: 14px;
    padding: 1.5rem;
    transition: all 0.35s ease;
}
.contact-info-card:hover {
    background: #fff;
    border-color: rgba(0, 85, 255, 0.14);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 85, 255, 0.08);
}
.contact-info-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #0055FF;
    background: rgba(0, 85, 255, 0.08);
}

.contact-form-shell {
    background: #fff;
    border: 1px solid rgba(0, 85, 255, 0.1);
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(0, 85, 255, 0.08), 0 8px 24px rgba(0, 0, 0, 0.04);
}
.form-block-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0055FF;
    margin-bottom: 0.9rem;
}
.form-label {
    display: inline-block;
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
}
.form-input {
    width: 100%;
    border: 1px solid rgba(0, 85, 255, 0.18);
    border-radius: 10px;
    background: #fff;
    padding: 0.85rem 0.9rem;
    color: #0d1117;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}
.form-input::placeholder {
    color: #9ca3af;
}
.form-input:focus {
    outline: none;
    border-color: rgba(0, 85, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 85, 255, 0.1);
}

/* File input styling */
.form-input.file-input {
    padding: 0.65rem 0.9rem;
    cursor: pointer;
    font-size: 0.85rem;
    color: #6b7280;
}
.form-input.file-input::file-selector-button {
    background: linear-gradient(135deg, #0055FF 0%, #3377FF 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    margin-right: 0.75rem;
    transition: background 0.2s ease;
}
.form-input.file-input::file-selector-button:hover {
    background: linear-gradient(135deg, #0044DD 0%, #2266EE 100%);
}

.choice-chip {
    position: relative;
    cursor: pointer;
}
.choice-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.choice-chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 85, 255, 0.2);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #4b5563;
    transition: all 0.25s ease;
    background: #fff;
}
.choice-chip input:checked + span {
    border-color: #0055FF;
    color: #0055FF;
    background: rgba(0, 85, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(0, 85, 255, 0.1);
}

/* ========== MULTI-STEP FORM ========== */
.form-progress {
    position: relative;
    margin-bottom: 1.5rem;
}
.form-progress-track {
    height: 6px;
    width: 100%;
    border-radius: 999px;
    background: #e8ecf5;
    overflow: hidden;
}
.form-progress-fill {
    height: 100%;
    width: 33.333%;
    border-radius: 999px;
    background: linear-gradient(90deg, #0055FF, #4DA6FF);
    transition: width 0.35s ease;
}
.form-step {
    display: none;
}
.form-step.active {
    display: block;
}
.step-dot {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(0, 85, 255, 0.28);
    color: #7c879a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    transition: all 0.25s ease;
}
.step-dot.active {
    background: #0055FF;
    border-color: #0055FF;
    color: #fff;
}
.step-dot.done {
    background: rgba(0, 85, 255, 0.1);
    border-color: rgba(0, 85, 255, 0.45);
    color: #0055FF;
}
.step-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7c879a;
}
.step-label.active {
    color: #0055FF;
}

/* ========== HERO IMAGE (index) ========== */
.hero-visual-img {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 10px auto; /* extra margin so brackets outside don't get clipped */
    overflow: visible;
}
.hero-visual-img.hero-visual-wide {
    max-width: none;
}
.hero-visual-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(0, 85, 255, 0.15);
}
.hero-visual-img::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.3), transparent 60%);
    z-index: -1;
    opacity: 0.6;
}
/* Corner brackets on hero image — OUTSIDE the image */
.hero-visual-img .img-bracket {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: rgba(0, 85, 255, 0.7);
    border-style: solid;
    border-width: 0;
    z-index: 20;
    pointer-events: none;
    transition: border-color 0.3s ease;
}
.hero-visual-img:hover .img-bracket {
    border-color: rgba(77, 166, 255, 0.9);
}
.hero-visual-img .img-bracket.tl { top: -8px; left: -8px; border-top-width: 2px; border-left-width: 2px; }
.hero-visual-img .img-bracket.tr { top: -8px; right: -8px; border-top-width: 2px; border-right-width: 2px; }
.hero-visual-img .img-bracket.bl { bottom: -8px; left: -8px; border-bottom-width: 2px; border-left-width: 2px; }
.hero-visual-img .img-bracket.br { bottom: -8px; right: -8px; border-bottom-width: 2px; border-right-width: 2px; }

/* On light backgrounds, brackets need more contrast */
.section-light .hero-visual-img .img-bracket {
    border-color: rgba(0, 85, 255, 0.6);
}
.section-light .hero-visual-img:hover .img-bracket {
    border-color: rgba(0, 85, 255, 0.9);
}

/* Override overflow:hidden when hero-visual-img is used — brackets must be visible outside */
.hero-visual-img.about-visual,
.hero-visual-img.section-image-card {
    overflow: visible;
}
/* Clip the image itself for border-radius when overflow is visible */
.hero-visual-img.about-visual img,
.hero-visual-img.section-image-card img {
    border-radius: 16px;
}
.hero-visual-img.about-visual .about-overlay,
.hero-visual-img.section-image-card .image-overlay {
    border-radius: 16px;
}


/* ========== ABOUT IMAGE ========== */
.about-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.about-visual img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}
.about-visual .about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 85, 255, 0.08) 0%, rgba(10, 14, 26, 0.25) 100%);
    pointer-events: none;
    z-index: 1;
}
.about-visual .about-corner {
    position: absolute;
    width: 6px;
    height: 6px;
    border-color: rgba(0, 85, 255, 0.4);
    border-style: solid;
    border-width: 0;
}
.about-visual .about-corner.tl { top: 16px; left: 16px; border-top-width: 2px; border-left-width: 2px; width: 20px; height: 20px; }
.about-visual .about-corner.tr { top: 16px; right: 16px; border-top-width: 2px; border-right-width: 2px; width: 20px; height: 20px; }
.about-visual .about-corner.bl { bottom: 16px; left: 16px; border-bottom-width: 2px; border-left-width: 2px; width: 20px; height: 20px; }
.about-visual .about-corner.br { bottom: 16px; right: 16px; border-bottom-width: 2px; border-right-width: 2px; width: 20px; height: 20px; }

/* ========== HERO PAGE BACKGROUND IMAGE ========== */
.hero-page-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-page-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: grayscale(60%);
}
.hero-page-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 14, 26, 0.6) 0%, rgba(10, 14, 26, 0.95) 100%);
}

/* ========== SECTION IMAGE SPLIT ========== */
.section-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.section-image-card img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}
.section-image-card .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 14, 26, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}