/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --secondary-color: #00d4ff;
    --dark-bg: #0a0e27;
    --darker-bg: #050812;
    --light-text: #ffffff;
    --gray-text: #a0aec0;
    --accent-gradient: linear-gradient(135deg, #0066ff 0%, #00d4ff 100%);
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --success-color: #00ff88;
    --warning-color: #ffaa00;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--card-border);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--light-text);
    letter-spacing: 1px;
}

.tagline {
    font-size: 11px;
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-text);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--gray-text);
    margin-bottom: 50px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.95rem;
    font-weight: 500;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--light-text);
    box-shadow: 0 5px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--light-text);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 60px 0 30px;
    text-align: center;
}

/* Problem Section */
.problem-section {
    background: var(--darker-bg);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.problem-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

.sector-threats {
    margin-top: 60px;
}

.threat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.threat-item {
    background: rgba(0, 102, 255, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 8px;
}

.threat-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.threat-item p {
    color: var(--gray-text);
    font-size: 0.95rem;
}

/* Solution Section */
.solution-section {
    background: var(--dark-bg);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.solution-layer {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 35px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.solution-layer:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.layer-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.solution-layer h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.solution-layer p {
    color: var(--gray-text);
    line-height: 1.7;
}

/* Features Section */
.features-section {
    background: var(--darker-bg);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.advantage-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 16px;
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.advantage-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.advantage-card ul {
    list-style: none;
}

.advantage-card li {
    color: var(--gray-text);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.advantage-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--card-border);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid var(--card-border);
}

.comparison-table th {
    background: rgba(0, 102, 255, 0.1);
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.05rem;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 102, 255, 0.05);
}

.comparison-table .check {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-table .cross {
    color: #ff4444;
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-table .highlight-cell {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* =========================
   SOLUTION ARCHITECTURE
========================= */

.architecture-section {
    padding: 120px 0;
    background: #05070d;
}

.architecture-visual {
    position: relative;
    max-width: 900px;
    margin: 60px auto 80px;
    text-align: center;
}

/* =========================
   ARCHITECTURE LAYERS (SINGLE, CLEAN)
========================= */

.architecture-layers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 60px;

    position: relative;
    z-index: 2; /* cards above architecture image */
}

/* =========================
   ARCHITECTURE LAYER CARD
========================= */

.architecture-layer {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(64, 201, 255, 0.18);
    border-radius: 18px;
    padding: 28px 26px;
    cursor: pointer;

    /* MUST be visible */
    opacity: 1;
    transform: translateY(0);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

/* Hover */
.architecture-layer:hover {
    transform: translateY(-6px);
    box-shadow:
        0 18px 45px rgba(64, 201, 255, 0.35),
        0 0 0 1px rgba(64, 201, 255, 0.4);
}

/* Active (JS-controlled) */
.architecture-layer.active {
    border-color: rgba(64, 201, 255, 0.6);
    box-shadow:
        0 0 0 2px rgba(64, 201, 255, 0.6),
        0 25px 70px rgba(64, 201, 255, 0.55);
}


.architecture-image {
    width: 100%;
    height: 700px;
    border-radius: 20px;
    filter: drop-shadow(0 50px 100px rgba(0, 0, 0, 0.6));
}

/* Highlight overlay */
.architecture-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%),
        rgba(64, 201, 255, 0.35),
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.architecture-visual.active::after {
    opacity: 1;
}

/* =========================
   SOLUTION ARCHITECTURE
========================= */

.architecture-section {
    padding: 120px 0;
    background: #05070d;
}

.architecture-section .section-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    color: #cbd5e1;
}


/* =========================
   ARCHITECTURE IMAGE INTERACTION
========================= */

.architecture-visual {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.architecture-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: radial-gradient(
        circle at var(--x, 50%) var(--y, 50%),
        rgba(64, 201, 255, 0.45),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.architecture-visual.active::after {
    opacity: 1;
}



.architecture-image {
    width: 100%;
    border-radius: 22px;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(64,201,255,0.15);
}

/* =========================
   ARCHITECTURE LAYERS (FIXED)
========================= */
.architecture-visual {
    position: relative;
    z-index: 1;
    pointer-events: none; /* 🔑 THIS WAS MISSING */
}




/* Info Panel */
.architecture-info-panel {
    margin-top: 60px;
    padding: 28px 26px;
    max-width: 720px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(64,201,255,0.2);
}

.architecture-info-panel h4 {
    color: #40c9ff;
    margin-bottom: 8px;
}

.architecture-info-panel p {
    color: #cbd5e1;
    margin-bottom: 12px;
}

.architecture-info-panel li {
    font-size: 0.9rem;
    color: #e5e7eb;
    margin-bottom: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .architecture-section {
        padding: 90px 0;
    }
}



.segments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.segment-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s;
}

.segment-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.segment-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.segment-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    gap: 10px;
}

.segment-count {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.segment-acv {
    background: rgba(0, 102, 255, 0.1);
    color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.segment-card p {
    color: var(--gray-text);
    line-height: 1.6;
}



/* Contact Section */
.contact-section {
    background: var(--darker-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.contact-info > p {
    color: var(--gray-text);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.pilot-info {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 30px;
    border-radius: 12px;
}

.pilot-info h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--success-color);
}

.pilot-info ul {
    list-style: none;
}

.pilot-info li {
    color: var(--gray-text);
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.pilot-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px;
    border-radius: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--light-text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-text);
}

.contact-form select {
    cursor: pointer;
}

.contact-form option {
    background: var(--dark-bg);
    color: var(--light-text);
}

.contact-form button {
    width: 100%;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--card-border);
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.footer-company p {
    color: var(--gray-text);
    margin: 5px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .subsection-title {
        font-size: 1.6rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .solution-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-card {
        padding: 20px 30px;
    }

    .market-overview {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    section {
        padding: 60px 0;
    }

    .problem-grid,
    .segments-grid,
    .roi-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section > * {
    animation: fadeIn 0.6s ease-out;
}

/* =========================
   HERO SECTION ENHANCEMENTS (UPDATED)
========================= */
/* =========================
   HERO SECTION (TEXT ONLY)
========================= */

.hero {
    position: relative;
    min-height: 90vh;
    padding: 120px 0 100px;
    overflow: hidden;
    background: radial-gradient(circle at top, #0b1220, #05070d 70%);
}

.hero-bg-glow {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(64, 201, 255, 0.25), transparent 70%);
    filter: blur(120px);
    z-index: 0;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #40c9ff;
    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-description {
    max-width: 680px;
    margin: 0 auto 36px;
    font-size: 1rem;
    line-height: 1.65;
    color: #cbd5e1;
}


/* =========================
   HERO STATS – ONE ROW
========================= */

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(64, 201, 255, 0.18);
    border-radius: 16px;
    padding: 26px 18px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

/* Bigger stat number */
.stat-number {
    font-size: 2.2rem;        /* ⬅️ increased */
    font-weight: 900;
    color: #40c9ff;
    margin-bottom: 6px;
    text-shadow: 0 0 12px rgba(64, 201, 255, 0.55);
}

/* Label */
.stat-label {
    font-size: 0.9rem;
    color: #d1d9e6;
    line-height: 1.4;
}

/* Blue light glow layer */
.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(64, 201, 255, 0.45),
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

/* Hover effect */
.stat-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 0 0 1px rgba(64, 201, 255, 0.45),
        0 12px 30px rgba(64, 201, 255, 0.45),
        0 0 80px rgba(64, 201, 255, 0.65);
}

.stat-card:hover::before {
    opacity: 1;
}

/* Keep text above glow */
.stat-card > * {
    position: relative;
    z-index: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 520px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.9rem;
    }
}




/* =========================
   DEFENSE VISUAL SECTION
========================= */

.defense-visual-section {
    position: relative;
    padding: 80px 0 120px;
    background: linear-gradient(
        to bottom,
        #05070d 0%,
        #070b16 100%
    );
    overflow: hidden;
}

.defense-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.defense-visual-image {
    width: 60%;
    max-width: 700px;
    height: 500px;
    animation: float 8s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.65));
}

/* Floating animation (GPU-safe) */
@keyframes float {
    0% {
        transform: translateY(0) translateZ(0);
    }
    50% {
        transform: translateY(-10px) translateZ(0);
    }
    100% {
        transform: translateY(0) translateZ(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .defense-visual-section {
        padding: 60px 0 80px;
    }

    .defense-visual-image {
        max-width: 100%;
    }
}

/* =========================
   WHY IT MATTERS
========================= */

.why-section {
    padding: 120px 0;
    background: #05070d;
}

.why-text {
    max-width: 880px;
    margin: 0 auto 56px;
    text-align: center;
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.75;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(64, 201, 255, 0.15);
    border-radius: 18px;
    padding: 26px 24px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 0 1px rgba(64, 201, 255, 0.4),
        0 18px 40px rgba(64, 201, 255, 0.35);
}

.why-card strong {
    display: block;
    color: #40c9ff;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.why-card span {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* =========================
   USE CASES
========================= */

.usecases-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #05070d, #070b16);
}

.usecases-section .section-intro {
    max-width: 920px;
    margin: 0 auto 60px;
    text-align: center;
    color: #cbd5e1;
    line-height: 1.7;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.usecase-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(64, 201, 255, 0.14);
    border-radius: 18px;
    padding: 28px 24px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.usecase-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 0 1px rgba(64, 201, 255, 0.35),
        0 18px 40px rgba(64, 201, 255, 0.35);
}

.usecase-card h4 {
    font-size: 1.05rem;
    color: #40c9ff;
    margin-bottom: 12px;
}

.usecase-threat {
    font-size: 0.9rem;
    color: #ff9f9f;
    margin-bottom: 10px;
    line-height: 1.5;
}

.usecase-solution {
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* =========================
   HOW IT WORKS
========================= */

.flow-section {
    padding: 120px 0;
    background: #05070d;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
    margin-top: 60px;
}

.flow-step {
    text-align: center;
    padding: 28px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(64, 201, 255, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.flow-step:hover {
    transform: translateY(-8px);
    box-shadow:
        0 0 0 1px rgba(64, 201, 255, 0.35),
        0 18px 40px rgba(64, 201, 255, 0.3);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(64,201,255,0.35), rgba(64,201,255,0.15));
    color: #40c9ff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.flow-step h4 {
    color: #40c9ff;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .why-section,
    .usecases-section,
    .flow-section {
        padding: 90px 0;
    }
}

/* =========================
   PRICING & PLANS
========================= */

.pricing-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #05070d, #070b16);
}

.pricing-section .section-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    color: #cbd5e1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(64, 201, 255, 0.15);
    border-radius: 20px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 0 0 1px rgba(64, 201, 255, 0.35),
        0 20px 50px rgba(64, 201, 255, 0.35);
}

.pricing-card.highlight {
    border: 2px solid #40c9ff;
    box-shadow: 0 0 60px rgba(64, 201, 255, 0.35);
}

.pricing-card.enterprise {
    background: rgba(64, 201, 255, 0.08);
}

.pricing-card h3 {
    color: #40c9ff;
    margin-bottom: 14px;
}

.price {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
}

.price-sub {
    color: #cbd5e1;
    margin-bottom: 22px;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pricing-features li {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 10px;
    line-height: 1.5;
}

.pricing-features strong {
    color: #40c9ff;
}

.pricing-cta {
    margin-top: auto;
    text-align: center;
    padding: 12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(64, 201, 255, 0.5);
    color: #40c9ff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.pricing-cta:hover {
    background: #40c9ff;
    color: #05070d;
}

.pricing-cta.primary {
    background: #40c9ff;
    color: #05070d;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .pricing-section {
        padding: 90px 0;
    }
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #05070d, #070b16);
}

.contact-section .section-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    color: #cbd5e1;
}

/* =========================
   CONTACT LAYOUT
========================= */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

/* =========================
   CONTACT INFO
========================= */

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-info p {
    color: #cbd5e1;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-item a {
    color: #40c9ff;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* =========================
   CONTACT CTA BUTTONS
========================= */

.contact-cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.contact-cta {
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-cta.email {
    background: #40c9ff;
    color: #05070d;
}

.contact-cta.whatsapp {
    background: #25d366;
    color: #05070d;
}

.contact-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* =========================
   PILOT INFO
========================= */

.pilot-info {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(64,201,255,0.15);
    border-radius: 16px;
    padding: 24px;
}

.pilot-info h4 {
    color: #40c9ff;
    margin-bottom: 14px;
}

.pilot-info ul {
    padding-left: 18px;
}

.pilot-info li {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* =========================
   CONTACT FORM
========================= */

.contact-form-wrapper {
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(64,201,255,0.15);
    border-radius: 20px;
    padding: 32px 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(5,7,13,0.9);
    color: #ffffff;
    font-size: 0.95rem;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #9ca3af;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #40c9ff;
    box-shadow: 0 0 0 1px rgba(64,201,255,0.4);
}

/* =========================
   FORM ACTIONS
========================= */

.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.btn-primary {
    background: #40c9ff;
    color: #05070d;
}

.btn-secondary {
    background: #25d366;
    color: #05070d;
}

.btn:hover {
    transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 520px) {
    .contact-section {
        padding: 90px 0;
    }

    .contact-cta,
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================
   VISUAL PROOF SECTION
========================= */

.visual-proof-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #05070d, #070b16);
}

.visual-block {
    margin-top: 80px;
    text-align: center;
}

.visual-title {
    font-size: 1.6rem;
    margin-bottom: 26px;
    color: #40c9ff;
    font-weight: 700;
}

.visual-image {
    width: 100%;
    max-width: 1100px;
    border-radius: 22px;
    box-shadow:
        0 30px 80px rgba(0,0,0,0.6),
        0 0 0 1px rgba(64,201,255,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.visual-image:hover {
    transform: translateY(-6px);
    box-shadow:
        0 40px 120px rgba(64,201,255,0.35),
        0 0 0 1px rgba(64,201,255,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .visual-title {
        font-size: 1.3rem;
    }

    .visual-block {
        margin-top: 60px;
    }
}

/* =========================
   ATTACK FLOW SECTION
========================= */

.attack-flow-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #05070d, #070b16);
}

.attack-flow {
    position: relative;
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

/* Nodes */
.flow-node {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(64,201,255,0.2);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.flow-node h4 {
    margin-top: 12px;
    color: #40c9ff;
}

.flow-node p {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.node-icon {
    font-size: 2.2rem;
}

/* Flow lines */
.flow-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(
        to right,
        rgba(64,201,255,0.2),
        rgba(64,201,255,0.6),
        rgba(64,201,255,0.2)
    );
}

/* Attack signal */
.attack-signal {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff4d4d;
    box-shadow: 0 0 20px rgba(255,77,77,0.9);
    transform: translateY(-50%);
    opacity: 0;
}

/* Active animation */
.attack-flow.active .attack-signal {
    opacity: 1;
    animation: attackMove 3.5s linear infinite;
}

/* Animation */
@keyframes attackMove {
    0%   { left: 10%; }
    45%  { left: 45%; }
    70%  { left: 45%; }
    100% { left: 85%; }
}

/* Responsive */
@media (max-width: 900px) {
    .attack-flow {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .flow-line {
        display: none;
    }

    .attack-signal {
        display: none;
    }
}




