/* Style 1: Dark Ops — Defense-Grade Technical */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #c8d8e8;
    background: #060b14;
}

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

/* Header */
header {
    background: rgba(6, 11, 20, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #0055aa;
    position: sticky;
    width: 100%;
    min-height: 41px;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    min-height: 41px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.5rem;
    color: #e0eeff;
    letter-spacing: 0.05em;
    line-height: 1.0;
}

.logo img {
    padding: 2px 0px;
}

.logo a {
    display: contents;
    color: inherit;
    text-decoration: none;
}

.logo-symbol {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0055aa 0%, #0099ff 100%);
    border-radius: 4px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-symbol::before {
    content: 'etc';
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    column-gap: 2rem;
    line-height: 1.0;
}

.nav-links a {
    text-decoration: none;
    color: #8ab4d4;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0099ff;
}

.faq-body h2 {
    padding-top: 75px;
    padding-bottom: 25px;
}

.faq-toc a {
    /* text-decoration: none; */
    color: #8ab4d4;
    /* font-weight: 500; */
    /* letter-spacing: 0.04em; */
    /* text-transform: uppercase; */
    /* font-size: 0.85rem; */
    transition: color 0.3s ease;
}

.faq-toc a:hover {
    color: #0099ff;
}

.cta-button {
    background: #0099ff;
    color: #060b14;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #33b3ff;
}

/* Page Title */
.pagetitle {
    /* background: linear-gradient(160deg, #0a1628 0%, #0d2040 100%); */
    background: linear-gradient(135deg, #fc2721 0%, #3d18f1 100%);
    color: #e0eeff;
    padding: 50px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* border-bottom: 2px solid #0055aa; */
}

.pagetitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.pagetitle h1 {
    font-size: 3.0rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    background: #060b14;
    color: #e0eeff;
    padding: 20px 0 40px;
    text-align: center;
    border-bottom: 1px solid #0d2040;
}

.video-left-label {
    font-size: 1.1rem;
    position: absolute;
    text-align: left;
    left: 5%;
    right: 50%;
    top: 5%;
    color: white;
    /* color: #8ab4d4; */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.03em;
}

.video-right-label {
    font-size: 1.1rem;
    position: absolute;
    text-align: right;
    left: 50%;
    right: 5%;
    top: 5%;
    color: white;
    /* color: #8ab4d4; */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.03em;
}

.hero-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    border: 1px solid #0d2a4a;
}

.video-wrapper {
    position: relative;
}

.hero-content {
    position: relative;
    padding-top: 10px;
    padding-bottom: 20px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    letter-spacing: 0.02em;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 0;
    opacity: 0.8;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: #8ab4d4;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #0099ff;
    color: #060b14;
    padding: 1rem 2rem;
    border: none;
    border-radius: 3px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #33b3ff;
}

.btn-secondary {
    background: transparent;
    color: #8ab4d4;
    padding: 1rem 2rem;
    border: 1px solid #0055aa;
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 153, 255, 0.1);
    color: #0099ff;
    border-color: #0099ff;
}

/* Customers Section */
.customers {
    /* background: #0a1628; */
    background: linear-gradient(135deg, #fc2721 0%, #3d18f1 100%);
    color: #e0eeff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* border-top: 1px solid #0055aa;
    border-bottom: 1px solid #0055aa; */
}

.customers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.customers-content {
    position: relative;
    padding-top: 100px;
    z-index: 2;
}

.customers h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.customers h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: #0099ff;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.customers p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats {
    background: #0d1a2a;
    padding: 60px 0;
    border-bottom: 1px solid #0d2040;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0099ff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}

.stat-item p {
    color: #7a9ab8;
    font-weight: 500;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    text-align: center;
    background: #0d1a2a;
}

.comparison h1 {
    color: #e0eeff;
    margin-bottom: 1rem;
}

.comparison table {
    width: 100%;
}

.comparison > .container > p,
.comparison > .container {
    color: #8ab4d4;
}

.comparison td {
    padding: 0 0px;
    font-size: min(2vw, 2rem);
    text-align: center;
    color: #8ab4d4;
}

.comparison td.colus {
    font-size: min(3vw, 2.5rem);
    font-weight: 800;
    color: #0099ff;
}

.comparison td.col {
    font-size: min(3vw, 2.5rem);
    font-weight: 800;
    color: #4a9eda;
}

.comparison td.row {
    font-size: min(2vw, 2rem);
    font-weight: 400;
    color: #c8d8e8;
}

/* Answers Section */
.answers {
    padding: 80px 0;
    color: #c8d8e8;
}

.faq-toc h2 {
    padding-top: 20px;
    padding-bottom: 10px;
    color: #e0eeff;
}

details {
    padding: 10px 0;
    color: #8ab4d4;
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
}

.product {
    padding: 0px 0;
}

/* Technology Section */
.technology {
    padding: 80px 0;
    color: #c8d8e8;
}

.technology h1, p {
    padding: 10px;
}

.technology h1 {
    color: #e0eeff;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #e0eeff;
}

.section-header p {
    font-size: 1.125rem;
    color: #7a9ab8;
    max-width: 600px;
    margin: 0 auto;
}

.tech-demo {
    background: #0d1a2a;
    border-radius: 4px;
    border: 1px solid #0055aa;
    padding: 3rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.demo-visual {
    background: linear-gradient(45deg, #060b14, #0d1a2a);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    border: 1px solid #0055aa;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.demo-info h2 {
    color: #e0eeff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.demo-info p {
    color: #8ab4d4;
    margin-bottom: 1.5rem;
}

.advantage-list {
    list-style: none;
    font-size: 1.125rem;
}

.advantage-list li {
    color: #8ab4d4;
    text-align: left;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0099ff;
    font-weight: bold;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: #0d1a2a;
    border-radius: 4px;
    padding: 2rem;
    border: 1px solid #0d2a4a;
    transition: border-color 0.3s ease;
}

.solution-card:hover {
    border-color: #0099ff;
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: #0055aa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #e0eeff;
}

.solution-card p {
    color: #7a9ab8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    color: #7a9ab8;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Partners Section */
.partners {
    background: #0d1a2a;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #0d2040;
}

.partners h3 {
    font-size: 1.0rem;
    color: #4a6a88;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.partner-logo {
    opacity: 0.5;
    transition: opacity 0.3s ease;
    font-weight: 600;
    font-size: 1.25rem;
    filter: brightness(0) invert(1);
}

.partner-logo:hover {
    opacity: 0.9;
}

/* Footer */
footer {
    background: #040810;
    color: #8ab4d4;
    padding: 3rem 0 2rem;
    border-top: 1px solid #0055aa;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: #e0eeff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.footer-section p,
.footer-section a {
    color: #4a6a88;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: #0099ff;
}

.footer-bottom {
    border-top: 1px solid #0d2040;
    padding-top: 2rem;
    text-align: center;
    color: #2a4a68;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 768px) {
    /* .nav-links {
        display: none;
    } */

    .hero h1 {
        font-size: 2.5rem;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
}
