:root {
    --bg-color: #020205;
    --accent-primary: #00f2ff;
    --accent-secondary: #7000ff;
    --text-main: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glow-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 2px solid var(--bg-color);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
}

/* Firefox support */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) var(--bg-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Glass Header */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    background: rgba(2, 2, 5, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-header.scrolled {
    padding: 0.8rem 5%;
    background: rgba(2, 2, 5, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.menu-toggle {
    display: none;
    color: var(--accent-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    transition: 0.3s;
}

.menu-toggle:hover {
    transform: scale(1.1);
    color: var(--text-main);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    /* Restore original brand colors */
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 5px;
}

/* Subtle white background glow behind the logo ICON only for a clean look */
.logo::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    filter: blur(8px);
    z-index: 1;
    pointer-events: none;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    margin-left: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
}

.logo:hover img {
    /* Hover: Enhanced glow and scale */
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.8));
    transform: scale(1.1);
}

.logo:hover::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 80%);
}

.logo span {
    color: var(--accent-primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--accent-primary);
}

.cta-btn {
    padding: 0.6rem 1.2rem;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 5px;
    box-shadow: var(--glow-shadow);
}

/* Sections */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 10% 80px;
    /* High padding to clear fixed header */
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    transform: translateY(-20px);
}

.glow-text {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
    word-break: keep-all;
    overflow-wrap: normal;
}

.highlight {
    background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    color: var(--text-dim);
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.primary-btn {
    background: var(--accent-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.secondary-btn {
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.6);
}

.secondary-btn:hover {
    background: rgba(0, 242, 255, 0.1);
    transform: translateY(-5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-dim);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-dim);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.content-section {
    padding: 120px 8% 80px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.content-section.alternate {
    background: rgba(112, 0, 255, 0.02);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-primary);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.pricing-card {
    background: rgba(2, 2, 5, 0.7);
    backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.pricing-card.highlighted {
    border-color: var(--accent-secondary);
    background: rgba(112, 0, 255, 0.05);
}

.version-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.version-tag.popular {
    background: var(--accent-secondary);
    color: #fff;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-primary);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.price span {
    display: block;
    font-size: 0.7rem;
    color: var(--text-dim);
}

.feature-list-small {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-list-small li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list-small li.disabled {
    opacity: 0.3;
}

.feature-list-small i {
    font-size: 0.7rem;
}

.feature-list-small i.fa-check {
    color: var(--accent-primary);
}

.calc-btn {
    width: 100%;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.calc-btn:hover {
    background: var(--accent-primary);
    color: #000;
}

/* Comparison Table */
.comparison-container {
    margin-top: 50px;
}

.table-wrapper {
    overflow-x: auto;
    background: rgba(2, 2, 5, 0.75);
    backdrop-filter: blur(30px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
    padding: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

th,
td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
}

th {
    color: var(--accent-primary);
    text-transform: uppercase;
    font-size: 0.75rem;
}

.text-cyan {
    color: var(--accent-primary);
}

.text-red {
    color: #ff3e3e;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(2, 2, 5, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.video-card:hover {
    transform: scale(1.05);
}

.video-card a {
    text-decoration: none;
    color: inherit;
}

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 242, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transition: 0.3s;
    z-index: 2;
}

.video-card:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card:hover .video-thumb img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.video-card h4 {
    padding: 1rem;
    font-size: 0.8rem;
}

/* Download Section */
.download-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(2, 2, 5, 0.7);
    backdrop-filter: blur(25px);
    border-radius: 15px;
    border: 1px solid var(--glass-border);
}

.download-btn {
    padding: 0.6rem 1.8rem;
    background: linear-gradient(45deg, var(--accent-primary), #00d2ff);
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 255, 0.5);
    filter: brightness(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    position: relative;
    background: #0a0a0f;
    border: 1px solid var(--accent-primary);
    border-radius: 20px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dim);
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 2rem 0;
}

.input-group label {
    display: block;
    font-size: 0.7rem;
    margin-bottom: 8px;
    color: var(--text-dim);
    text-transform: uppercase;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 10px;
    color: #fff;
    border-radius: 8px;
}

.discount-banner {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-primary);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.total-summary {
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 15px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.summary-line.final {
    border-top: 1px solid var(--glass-border);
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.vat-info {
    font-size: 0.65rem;
    text-align: right;
    color: var(--text-dim);
    margin-top: 5px;
}

.video-modal-content {
    max-width: 900px;
    padding: 0;
    overflow: hidden;
    background: #000;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    z-index: 2001;
    transition: 0.3s;
}

.close-video-modal:hover {
    color: var(--accent-primary);
}

/* Footer */
.main-footer {
    padding: 80px 8% 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-links h4 {
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.social-row {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

.social-row a {
    color: var(--text-dim);
    transition: 0.3s;
}

.social-row a:hover {
    color: var(--accent-primary);
}

.copyright {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-dim);
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

@media (max-width: 1250px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: 3.5rem;
    }

    /* Mobile Header Behavior */
    .menu-toggle {
        display: block;
        order: 2;
    }

    nav {
        padding: 0;
        width: 100%;
    }

    .logo {
        order: 1;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(2, 2, 5, 0.95);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        list-style: none;
        padding: 0;
        margin: 0;
    }

    nav ul li a {
        font-size: 1.1rem;
        letter-spacing: 2px;
        text-decoration: none !important;
        border: none !important;
    }

    nav ul.active {
        right: 0;
    }

    .logo-text {
        font-size: 1.15rem;
        gap: 8px;
        margin-left: 10px;
    }

    .logo img {
        height: 42px;
    }

    .glass-header {
        padding: 0.8rem 5%;
        display: flex;
        align-items: center;
    }
}

/* Hardware Synergy Section Fixes */
.hardware-synergy {
    display: flex;
    align-items: center;
    gap: 5%;
    width: 100%;
    margin-bottom: 100px;
}

.hardware-synergy.reverse {
    flex-direction: row-reverse;
}

.hardware-synergy .text-content {
    flex: 1;
}

.hardware-synergy .visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.glass-box {
    background: rgba(2, 2, 5, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hardware-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.hardware-synergy:hover .hardware-img {
    transform: scale(1.05);
}

.feature-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--text-dim);
    font-size: 0.9rem;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

@media (max-width: 968px) {

    .hardware-synergy,
    .hardware-synergy.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hardware-synergy .visual-content {
        width: 100%;
    }
}

/* Specialized Applications Grid */
.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.glass-card {
    background: rgba(2, 2, 5, 0.75);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(25px);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.glass-card .icon {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.glass-card h3 {
    font-size: 1.4rem;
    color: var(--accent-primary);
    margin: 0;
}

.glass-card p {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
}

.text-link {
    display: inline-block;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
    transition: 0.3s;
}

.text-link:hover {
    letter-spacing: 1px;
    filter: brightness(1.2);
}

@media (max-width: 480px) {
    .specialized-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================================
   CONTACT SECTION
   ======================================================== */

.content-section {
    padding: 100px 5%;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.contact-section {
    padding-bottom: 0 !important;
    padding-top: 4rem !important;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(2, 2, 5, 0.8);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.contact-phones.align-center {
    align-items: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(2, 2, 5, 0.8);
    backdrop-filter: blur(30px);
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 242, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.contact-card:hover {
    border-color: rgba(0, 242, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 242, 255, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: 0.3s;
}

.contact-card:hover .contact-icon {
    background: rgba(0, 242, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
}

.contact-card h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.contact-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    margin-bottom: 0.5rem;
    word-break: break-word;
    transition: color 0.3s;
}

.contact-value:hover {
    color: var(--accent-primary);
}

/* WhatsApp CTA */
.whatsapp-cta {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.25);
}

.whatsapp-cta i {
    font-size: 1.3rem;
}

.whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

/* Footer Strip */
.footer-strip {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.3);
    text-align: center;
}

.footer-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-brand img {
    filter: brightness(2) drop-shadow(0 0 8px rgba(0, 242, 255, 0.6));
}

.footer-brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(0, 242, 255, 0.4);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    font-size: 1rem;
    text-decoration: none;
    transition: 0.3s;
}

.footer-social a:hover {
    background: rgba(0, 242, 255, 0.15);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

/* ===================================================
   MOBILE RESPONSIVE STYLES
   =================================================== */

/* Large tablets / small laptops */
@media (max-width: 900px) {
    .hero-section {
        padding: 120px 6% 70px;
    }

    .glow-text {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    nav ul {
        gap: 1.2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hero-section {
        padding: 110px 5% 60px;
    }

    .hero-content {
        max-width: 100%;
        width: 100%;
        transform: none;
    }

    .glow-text {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
        padding: 0 4px;
        letter-spacing: -0.2px;
    }

    .hero-section p {
        font-size: 1rem;
        padding: 0 5px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .primary-btn,
    .secondary-btn {
        width: 80%;
        max-width: 300px;
        text-align: center;
        padding: 0.9rem 1.5rem;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(2, 2, 5, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li a {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .menu-toggle {
        display: block;
    }

    .content-section {
        padding: 100px 5% 60px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .comparison-container {
        margin-top: 30px;
    }
}

/* Mobile phones */
@media (max-width: 480px) {
    .hero-section {
        padding: 100px 4% 60px;
        overflow-x: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        /* Removed overflow: hidden to prevent clipping */
    }

    .glow-text {
        font-size: clamp(1rem, 7vw, 1.6rem);
        line-height: 1;
        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
        padding: 0;
        margin-bottom: 0.8rem;
        letter-spacing: -0.5px;
    }

    .hero-section p {
        font-size: 0.9rem;
        max-width: 100%;
        padding: 0 4px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .primary-btn,
    .secondary-btn {
        width: 90%;
        max-width: 280px;
        padding: 0.8rem 1.2rem;
        font-size: 0.8rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .calc-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding: 90px 4% 50px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .footer-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .glass-header {
        padding: 0.9rem 4%;
    }
}

/* Specific fix for width < 415px as requested */
@media (max-width: 415px) {
    .glow-text {
        font-size: clamp(1.2rem, 8.5vw, 1.8rem) !important;
        letter-spacing: -0.5px !important;
        line-height: 1.1 !important;
    }

    .hero-section {
        padding: 85px 3% 40px !important;
    }
}

/* Extra small phones (Nokia Lumia etc) */
@media (max-width: 330px) {
    .glow-text {
        font-size: clamp(1rem, 9.5vw, 1.4rem) !important;
        letter-spacing: -0.8px !important;
    }

    .hero-section {
        padding: 80px 1% 30px !important;
    }
}