/* --- General Settings & Reset --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

body {
    background-color: #060b11;
    background-image: 
        linear-gradient(45deg, #0a111a 25%, transparent 25%), 
        linear-gradient(-45deg, #0a111a 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #0a111a 75%), 
        linear-gradient(-45deg, transparent 75%, #0a111a 75%);
    background-size: 4px 4px;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* --- Header Container --- */
.header-container {
    background-color: #050b11;
    background-image: 
        radial-gradient(circle at 50% 35%, rgba(0, 162, 255, 0.18) 0%, transparent 60%),
        linear-gradient(45deg, #0a131d 25%, transparent 25%), 
        linear-gradient(-45deg, #0a131d 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #0a131d 75%), 
        linear-gradient(-45deg, transparent 75%, #0a131d 75%);
    background-size: 100% 100%, 4px 4px, 4px 4px, 4px 4px, 4px 4px;
    padding: 25px 0 35px 0;
    text-align: center;
    position: relative;
    border-bottom: 2px solid #000;
}

.navbar-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.nav-group {
    display: flex;
    gap: 40px;
    flex: 1;
}

.nav-left {
    justify-content: flex-end;
    padding-right: 30px;
}

.nav-right {
    justify-content: flex-start;
    padding-left: 30px;
}

.nav-item {
    color: #8fa0b0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #ffffff;
}

/* Blue glow under Products option */
.nav-item.active {
    color: #67c8ff;
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.7);
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 3px;
    background: #00a2ff;
    box-shadow: 0 0 12px 3px rgba(0, 162, 255, 0.9), 0 0 25px 6px rgba(0, 162, 255, 0.5);
    border-radius: 50%;
    z-index: 5;
}

/* Brand Logo & Name */
.brand-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    margin: 0 15px;
}

.logo-wrapper {
    width: 105px;
    height: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 0 18px rgba(0, 162, 255, 0.65));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-wrapper:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 22px rgba(56, 189, 248, 0.85));
}

.brand-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background: transparent !important;
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 900;
    color: #e2e8f0;
    letter-spacing: 3px;
    margin-top: 5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* Illuminated Divider Line */
.divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 162, 255, 0.3) 15%, 
        rgba(0, 162, 255, 0.5) 40%, 
        transparent 48%, 
        transparent 52%, 
        rgba(0, 162, 255, 0.5) 60%, 
        rgba(0, 162, 255, 0.3) 85%, 
        transparent 100%);
    margin-top: -20px;
    position: relative;
    z-index: 1;
}

/* Main Headline */
.hero-title-container {
    margin-top: 25px;
}

.main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #d1dce5;
    letter-spacing: 2px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.8);
}

/* --- Products Container --- */
.products-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dark-bg {
    background: linear-gradient(135deg, #09131e 0%, #03070d 100%);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
}

.light-bg {
    background: linear-gradient(135deg, #eef3f8 0%, #c8d3df 100%);
}

.product-image img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.7));
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-badge {
    align-self: flex-start;
    background: #00a2ff;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 3px;
    letter-spacing: 1px;
}

.badge-dark { background: #0b2240; }

.product-info h2 {
    font-size: 18px;
    font-weight: 700;
}

.blue-title { color: #0b2240; }
.sub-blue { color: #00a2ff; font-size: 13px; }
.dark-text { color: #333; }

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

.product-info ul li {
    font-size: 13px;
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.product-info ul li::before {
    content: "▪";
    color: #00a2ff;
    position: absolute;
    left: 0;
}

.light-bg .product-info ul li::before { color: #0b2240; }

.btn {
    align-self: flex-start;
    padding: 10px 22px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: transform 0.2s;
    margin-top: 5px;
}

.btn:hover { transform: scale(1.04); }
.btn-light { background-color: #ffffff; color: #000; }
.btn-dark { background-color: #0b2240; color: #fff; }

/* Specs Tables */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-bottom: 15px;
}

.dark-bg .specs-table td {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 10px;
    color: #b0c0d0;
}
.dark-bg .specs-table tr td:first-child { background: rgba(255,255,255,0.02); }

.light-bg .specs-table td {
    border: 1px solid rgba(0,0,0,0.15);
    padding: 6px 10px;
    color: #222;
}
.light-bg .specs-table tr td:first-child { background: rgba(0,0,0,0.05); font-weight: bold; }

.badges {
    display: flex;
    justify-content: space-around;
    text-align: center;
    font-size: 11px;
}

.badge span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #00a2ff;
}

.dark-text .badge span { color: #0b2240; }

/* --- Applications Section --- */
.applications-section {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    color: #8fa0b0;
    margin-bottom: 20px;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.app-item {
    position: relative;
    border: 2px solid #203345;
    border-radius: 6px;
    overflow: hidden;
}

.app-item img {
    width: 100%;
    display: block;
    height: 140px;
    object-fit: cover;
}

.app-title {
    position: absolute;
    bottom: 10px;
    left: 15px;
    font-weight: bold;
    font-size: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* --- Footer --- */
.main-footer {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 40px auto 20px auto;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #667788;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    background: transparent !important;
    filter: drop-shadow(0 0 6px rgba(0, 162, 255, 0.6));
}
.iso-badge { font-weight: bold; color: #8fa0b0; }
.footer-contact a { color: #667788; text-decoration: none; }
.footer-sep { margin: 0 8px; }

/* --- Responsive Layout --- */
@media (max-width: 768px) {
    .header-container {
        padding: 15px 0 25px 0;
    }
    .navbar-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 8px;
    }
    .nav-group {
        gap: clamp(8px, 2.5vw, 20px);
        flex: 1;
    }
    .nav-left {
        justify-content: flex-end;
        padding-right: 8px;
    }
    .nav-right {
        justify-content: flex-start;
        padding-left: 8px;
    }
    .nav-item {
        font-size: 12px;
        white-space: nowrap;
        padding-bottom: 4px;
    }
    .nav-item.active::after {
        bottom: -12px;
        height: 2px;
    }
    .brand-center {
        margin: 0 4px;
    }
    .logo-wrapper {
        width: 72px;
        height: 72px;
    }
    .brand-name {
        font-size: 17px;
        letter-spacing: 1.5px;
        margin-top: 3px;
    }
    .divider-line {
        margin-top: -14px;
    }
    .hero-title-container {
        margin-top: 20px;
        padding: 0 10px;
    }
    .main-title {
        font-size: 16px;
        letter-spacing: 1px;
    }
    .product-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .btn {
        align-self: center;
    }
    .product-info ul li {
        text-align: left;
    }
    .apps-grid {
        grid-template-columns: 1fr;
    }
    .main-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* --- Modal (Additional Details Popup) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(3, 8, 15, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #0b1522;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 162, 255, 0.1) 0%, transparent 40%),
        linear-gradient(135deg, #0d1a2d 0%, #060c15 100%);
    border: 1px solid rgba(0, 162, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 162, 255, 0.2);
    border-radius: 12px;
    width: 100%;
    max-width: 880px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    color: #e2e8f0;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #cbd5e1;
    font-size: 26px;
    line-height: 1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: #00a2ff;
    color: #ffffff;
    border-color: #00a2ff;
    box-shadow: 0 0 12px rgba(0, 162, 255, 0.8);
}

.modal-body {
    padding: 30px;
}

.modal-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

.modal-image-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.modal-badge {
    background: linear-gradient(90deg, #0088ff, #00d2ff);
    color: #000;
    font-weight: 900;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.modal-img {
    width: 100%;
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.8));
    margin-bottom: 5px;
}

/* --- Modal Product Gallery --- */
.modal-gallery-main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.modal-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    overflow-x: auto;
    width: 100%;
    padding: 6px 2px;
    justify-content: center;
    align-items: center;
    scroll-behavior: smooth;
}

.modal-gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}
.modal-gallery-thumbs::-webkit-scrollbar-thumb {
    background: rgba(0, 162, 255, 0.4);
    border-radius: 4px;
}

.modal-thumb {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    object-fit: contain;
    background: rgba(0, 0, 0, 0.4);
    padding: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modal-thumb:hover {
    border-color: #00a2ff;
    transform: scale(1.08);
    background: rgba(0, 162, 255, 0.1);
}

.modal-thumb.active {
    border-color: #00a2ff;
    box-shadow: 0 0 12px rgba(0, 162, 255, 0.7);
    background: rgba(0, 162, 255, 0.15);
}

.modal-quick-stats {
    display: flex;
    width: 100%;
    justify-content: space-around;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
}

.modal-lab-highlight {
    width: 100%;
    margin-top: 15px;
    background: rgba(0, 162, 255, 0.08);
    border: 1px dashed rgba(0, 162, 255, 0.4);
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
}

.lab-title {
    font-size: 10px;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.lab-stat {
    font-size: 11px;
    color: #cbd5e1;
    margin-bottom: 3px;
}

.lab-stat strong {
    color: #ffffff;
}

.m-stat {
    text-align: center;
}

.m-stat-val {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #00a2ff;
}

.m-stat-lbl {
    font-size: 11px;
    color: #94a3b8;
}

.modal-info-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.modal-subtitle {
    font-size: 14px;
    color: #38bdf8;
    font-weight: 500;
}

.modal-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
}

.modal-section-title {
    font-size: 13px;
    font-weight: bold;
    color: #f1f5f9;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

.modal-features-list, .modal-box-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.modal-features-list li, .modal-box-list li {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 6px;
    position: relative;
    padding-left: 18px;
    line-height: 1.4;
}

.modal-features-list li::before {
    content: "✓";
    color: #38bdf8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.modal-box-list li::before {
    content: "•";
    color: #64748b;
    font-size: 14px;
    position: absolute;
    left: 0;
}

.modal-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.modal-specs-table td {
    padding: 6px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
}

.modal-specs-table td:first-child {
    color: #64748b;
    width: 40%;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-modal-primary {
    background: linear-gradient(90deg, #0088ff, #00a2ff);
    color: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    flex: 1;
}

.btn-modal-primary:hover {
    background: linear-gradient(90deg, #00a2ff, #38bdf8);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.6);
    transform: translateY(-2px);
}

.btn-modal-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-modal-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* --- Modal Tabs & Shared Sections --- */
.modal-tabs-header {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(0, 162, 255, 0.2);
    padding: 10px 20px 0 20px;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.modal-tab-btn {
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    border-radius: 4px 4px 0 0;
}

.modal-tab-btn:hover {
    color: #38bdf8;
    background: rgba(0, 162, 255, 0.05);
}

.modal-tab-btn.active {
    color: #ffffff;
    border-bottom-color: #00a2ff;
    background: rgba(0, 162, 255, 0.12);
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.5);
}

.modal-tab-pane {
    display: none;
    animation: fadeInTab 0.3s ease;
}

.modal-tab-pane.active {
    display: block;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modal Guide Step Cards */
.modal-guide-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-guide-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 4px;
}

.modal-guide-sub {
    font-size: 12px;
    color: #38bdf8;
}

.guide-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.guide-step-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    position: relative;
    transition: border-color 0.2s, transform 0.2s;
}

.guide-step-card:hover {
    border-color: #00a2ff;
    transform: translateY(-2px);
}

.step-number {
    display: inline-block;
    background: rgba(0, 162, 255, 0.15);
    color: #38bdf8;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.step-time {
    float: right;
    font-size: 10px;
    color: #64748b;
}

.step-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 8px;
}

.step-card-desc {
    font-size: 11px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 10px;
}

.step-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-list li {
    font-size: 11px;
    color: #cbd5e1;
    margin-bottom: 4px;
    padding-left: 14px;
    position: relative;
}

.step-list li::before {
    content: "•";
    color: #00a2ff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Modal FAQ Accordion */
.modal-faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: rgba(0, 162, 255, 0.4);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 14px 18px;
    color: #f1f5f9;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: "+";
    font-size: 16px;
    color: #00a2ff;
    font-weight: bold;
    transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
    content: "−";
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 18px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px 18px 15px 18px;
    border-top-color: rgba(255, 255, 255, 0.05);
}

/* Modal Reviews Section */
.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.review-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 162, 255, 0.15);
    border-radius: 10px;
    padding: 16px;
    position: relative;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-author {
    font-weight: 700;
    color: #ffffff;
    font-size: 13px;
}

.review-role {
    font-size: 11px;
    color: #38bdf8;
    display: block;
}

.review-vehicle {
    font-size: 10px;
    color: #64748b;
}

.review-stars {
    color: #fbbf24;
    font-size: 12px;
    letter-spacing: 2px;
}

.review-quote {
    font-style: italic;
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 12px;
    border-left: 3px solid #00a2ff;
    border-radius: 0 6px 6px 0;
    margin-top: 6px;
}

/* Modal Shared Newsletter Box */
.modal-newsletter {
    background: linear-gradient(135deg, rgba(0, 136, 255, 0.12) 0%, rgba(0, 0, 0, 0.5) 100%);
    border: 1px solid rgba(0, 162, 255, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-top: 25px;
}

.nl-subtitle {
    font-size: 10px;
    color: #38bdf8;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.nl-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 6px;
}

.nl-desc {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 12px;
}

.nl-form {
    display: flex;
    gap: 8px;
    max-width: 440px;
    margin: 0 auto;
}

.nl-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 12px;
    outline: none;
    transition: border-color 0.2s;
}

.nl-input:focus {
    border-color: #00a2ff;
}

.nl-btn {
    background: #00a2ff;
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.nl-btn:hover {
    background: #38bdf8;
    box-shadow: 0 0 12px rgba(0, 162, 255, 0.6);
}

@media (max-width: 600px) {
    .nl-form {
        flex-direction: column;
    }
    .modal-tabs-header {
        padding: 8px 10px 0 10px;
    }
    .modal-tab-btn {
        padding: 8px 10px;
        font-size: 10px;
    }
}

/* --- Shared Page Sections --- */
.page-section {
    padding: 70px 20px;
    border-top: 1px solid rgba(0, 162, 255, 0.15);
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header-badge {
    text-align: center;
    margin-bottom: 40px;
}

.sub-badge {
    display: inline-block;
    background: rgba(0, 162, 255, 0.15);
    color: #38bdf8;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 162, 255, 0.3);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-desc {
    font-size: 13px;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* --- Technology Section --- */
.technology-section {
    background: radial-gradient(circle at 50% 0%, rgba(0, 162, 255, 0.08) 0%, transparent 70%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.tech-card {
    background: rgba(10, 18, 28, 0.7);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: #00a2ff;
    box-shadow: 0 10px 30px rgba(0, 162, 255, 0.15);
}

.tech-icon-wrapper {
    font-size: 32px;
    margin-bottom: 15px;
}

.tech-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 10px;
}

.tech-card p {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.tech-tag {
    display: inline-block;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    color: #38bdf8;
    background: rgba(0, 162, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0, 162, 255, 0.2);
}

.apps-grid-wrapper {
    margin-top: 40px;
    text-align: center;
}

.apps-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    color: #cbd5e1;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* --- About Section --- */
.about-section {
    background: rgba(5, 11, 17, 0.6);
}

.about-flex {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.stat-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 10px;
    padding: 20px 10px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #00a2ff;
    text-shadow: 0 0 10px rgba(0, 162, 255, 0.5);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}

/* --- Contact Section --- */
.contact-section {
    background: linear-gradient(180deg, rgba(5, 11, 17, 0.8) 0%, rgba(10, 20, 32, 0.95) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-info-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
}

.contact-info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 162, 255, 0.2);
}

.c-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.c-icon {
    font-size: 20px;
    background: rgba(0, 162, 255, 0.1);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(0, 162, 255, 0.2);
}

.c-info-item strong {
    display: block;
    font-size: 12px;
    color: #f1f5f9;
    margin-bottom: 2px;
}

.c-info-item p, .c-info-item a {
    font-size: 12px;
    color: #38bdf8;
    text-decoration: none;
}

.contact-form {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.5px;
}

.form-group input, .form-group select, .form-group textarea {
    background: rgba(5, 11, 17, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    padding: 10px 14px;
    font-size: 12px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #00a2ff;
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.3);
}

.btn-contact-submit {
    background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 162, 255, 0.6);
}

.contact-feedback {
    display: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 12px;
    margin-top: 10px;
}

.contact-feedback.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    color: #34d399;
}

@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        flex-direction: column;
    }
}

/* --- Card Action Group & Buy Button --- */
.card-action-group {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-buy {
    background: linear-gradient(135deg, #00a2ff 0%, #0066cc 100%);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(0, 162, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-buy:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 162, 255, 0.7);
    background: linear-gradient(135deg, #38bdf8 0%, #00a2ff 100%);
}

.btn-buy-lg {
    padding: 14px 28px;
    font-size: 14px;
    border-radius: 30px;
    width: 100%;
    justify-content: center;
}

/* Price Tags on Cards */
.card-price-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #00a2ff;
    margin-top: 4px;
    display: inline-block;
}

.dark-text .card-price-tag {
    color: #0b2240;
}

/* --- Order Checkout Modal Styles --- */
.order-modal-container {
    max-width: 850px;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 25px;
}

.order-summary-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-product-preview {
    display: flex;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-product-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 5px;
    border: 1px solid rgba(0, 162, 255, 0.2);
}

.order-product-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 4px;
}

.order-product-price {
    font-size: 16px;
    font-weight: 800;
    color: #38bdf8;
}

/* Pack Option Chips */
.pack-options-title {
    font-size: 11px;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.pack-chips-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pack-chip {
    background: rgba(10, 18, 28, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.pack-chip:hover {
    border-color: #00a2ff;
    background: rgba(0, 162, 255, 0.08);
}

.pack-chip.selected {
    border-color: #00a2ff;
    background: rgba(0, 162, 255, 0.18);
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.3);
}

.pack-chip-name {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}

.pack-chip-desc {
    font-size: 10px;
    color: #94a3b8;
}

.pack-chip-price {
    font-size: 13px;
    font-weight: 800;
    color: #38bdf8;
}

.pack-chip-discount {
    background: #10b981;
    color: #000;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

/* Quantity Counter */
.qty-counter {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.qty-btn {
    background: rgba(0, 162, 255, 0.2);
    border: 1px solid #00a2ff;
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: #00a2ff;
}

.qty-val {
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    min-width: 24px;
    text-align: center;
}

/* Price Breakdown */
.price-breakdown {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #94a3b8;
}

.price-row.discount-row {
    color: #10b981;
    font-weight: 700;
}

.price-row.total-row {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 8px;
    margin-top: 4px;
}

.price-row.total-row .total-amount {
    color: #00a2ff;
    font-size: 20px;
}

/* Payment Chips */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.payment-chip {
    background: rgba(10, 18, 28, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-chip:hover {
    border-color: #00a2ff;
    background: rgba(0, 162, 255, 0.08);
}

.payment-chip.selected {
    border-color: #00a2ff;
    background: rgba(0, 162, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 162, 255, 0.3);
}

.payment-chip-icon {
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
}

.payment-chip-name {
    font-size: 10px;
    font-weight: 700;
    color: #ffffff;
}

/* --- Order Receipt Modal --- */
.receipt-card {
    text-align: center;
    padding: 20px 10px;
}

.receipt-icon {
    font-size: 50px;
    margin-bottom: 10px;
    display: inline-block;
    animation: popCheck 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popCheck {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.receipt-code-box {
    background: rgba(0, 162, 255, 0.1);
    border: 1px dashed #00a2ff;
    border-radius: 8px;
    padding: 12px;
    display: inline-block;
    margin: 15px 0;
}

.receipt-code-label {
    font-size: 10px;
    color: #94a3b8;
    letter-spacing: 1px;
}

.receipt-code-val {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #00a2ff;
    letter-spacing: 2px;
}

.receipt-details-table {
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    border-collapse: collapse;
    font-size: 12px;
    text-align: left;
}

.receipt-details-table td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
}

.receipt-details-table td:first-child {
    color: #94a3b8;
    font-weight: 600;
}

.receipt-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

@media (max-width: 768px) {
    .order-grid {
        grid-template-columns: 1fr;
    }
    .payment-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Secure Payment Section (Footer Banner) --- */
.secure-payment-section {
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.95) 0%, rgba(2, 6, 12, 1) 100%);
    border-top: 1px solid rgba(0, 162, 255, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 20px;
    margin-top: 50px;
    position: relative;
    box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.5);
}

.secure-payment-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.secure-header {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.secure-icon-main {
    font-size: 38px;
    background: rgba(0, 162, 255, 0.1);
    border: 1px solid rgba(0, 162, 255, 0.4);
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 162, 255, 0.3);
    line-height: 1;
}

.secure-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.secure-subtitle {
    font-size: 12px;
    color: #94a3b8;
    margin: 0;
}

.secure-badges-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.secure-badge-item {
    background: rgba(10, 20, 32, 0.8);
    border: 1px solid rgba(0, 162, 255, 0.2);
    border-radius: 25px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.secure-badge-item:hover {
    border-color: #00a2ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 162, 255, 0.3);
    background: rgba(0, 162, 255, 0.12);
}

.secure-badge-item .badge-icon {
    font-size: 18px;
}

.secure-badge-item .badge-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #e2e8f0;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .secure-header {
        flex-direction: column;
        text-align: center;
    }
    .secure-title {
        font-size: 14px;
    }
    .secure-badges-grid {
        gap: 10px;
    }
    .secure-badge-item {
        padding: 8px 14px;
    }
}




