/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* PRIMARY COLORS - AURORA PALETTE */
    --primary-space-black: #0A0C14;       /* Deep space black - main background */
    --primary-aurora-blue: #2B7FFF;        /* Bright electric blue - primary buttons */
    --primary-laser-teal: #20E0C0;         /* Teal - accents and highlights */
    
    /* SECONDARY COLORS */
    --secondary-storm: #1E293B;            /* Dark slate - cards */
    --secondary-sunset: #FF7B42;            /* Orange - special offers */
    --secondary-plasma: #A742FF;            /* Purple - hover states */
    
    /* TEXT COLORS */
    --support-ice: #E2F0FF;                 /* Ice white - primary text */
    --support-nebula: #8892B0;              /* Muted purple-gray - secondary text */
    --support-orbit: #3A86FF;                /* Medium blue - links */
    
    /* BACKGROUND GRADIENTS */
    --gradient-primary: linear-gradient(145deg, #0A0C14 0%, #1E293B 100%);
    --gradient-accent: linear-gradient(90deg, #2B7FFF 0%, #20E0C0 100%);
    --gradient-special: linear-gradient(45deg, #FF7B42 0%, #A742FF 100%);
    
    /* GLOW EFFECTS */
    --glow-blue: 0 0 30px rgba(43, 127, 255, 0.4);
    --glow-teal: 0 0 30px rgba(32, 224, 192, 0.4);
    
    /* FUNCTIONAL COLORS */
    --bg-primary: #0A0C14;
    --bg-secondary: #1E293B;
    --text-light: #E2F0FF;
    --text-muted: #8892B0;
    --border-color: rgba(43, 127, 255, 0.2);
    --card-overlay: rgba(255, 255, 255, 0.02);
    --card-bg: rgba(30, 41, 59, 0.3);
    --card-border: rgba(43, 127, 255, 0.2);
    --hover-bg: rgba(43, 127, 255, 0.1);
    
    /* TRANSITIONS */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* MOBILE SPECIFIC */
    --header-height: 70px;
    --mobile-header-height: 60px;
    --safe-area-inset: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--support-ice);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background: var(--primary-space-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 0;
    margin: 0;
}

html {
    height: -webkit-fill-available;
}

/* ===== FLOATING BACKGROUND ANIMATION ===== */
.floating-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--gradient-primary);
    overflow: hidden;
    pointer-events: none;
}

.stars, .twinkling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: #000 url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMiIgaGVpZ2h0PSIyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxjaXJjbGUgY3g9IjEiIGN5PSIxIiByPSIxIiBmaWxsPSJ3aGl0ZSIgb3BhY2l0eT0iMC4zIi8+PC9zdmc+') repeat;
    background-size: 2px 2px;
    animation: starAnimation 100s linear infinite;
}

.twinkling {
    background: transparent url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNCIgaGVpZ2h0PSI0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIxIiBmaWxsPSJ3aGl0ZSIgb3BhY2l0eT0iMC4xIi8+PC9zdmc+') repeat;
    background-size: 4px 4px;
    animation: twinklingAnimation 8s linear infinite;
}

@keyframes starAnimation {
    from { transform: translateY(0); }
    to { transform: translateY(-1000px); }
}

@keyframes twinklingAnimation {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ===== HEADER STYLES ===== */
.header {
    background: rgba(10, 12, 20, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.logo {
    flex-shrink: 0;
    max-width: 60%;
}

.logo a {
    text-decoration: none;
    display: block;
}

.company-name {
    font-size: clamp(1rem, 4vw, 1.5rem);
    font-weight: bold;
    background: linear-gradient(135deg, var(--support-ice), var(--primary-laser-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--support-ice);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    font-size: 1rem;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-laser-teal);
}

.header-phone {
    flex-shrink: 0;
    margin-left: 1rem;
}

.header-phone .phone-button {
    background: var(--gradient-accent);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    box-shadow: var(--glow-blue);
    font-size: 0.95rem;
    white-space: nowrap;
}

.header-phone .phone-button i {
    font-size: 1rem;
}

.header-phone .phone-button:hover {
    transform: scale(1.05);
    background: linear-gradient(90deg, #20E0C0 0%, #2B7FFF 100%);
    box-shadow: var(--glow-teal);
}

.header-phone .phone-button:active {
    transform: scale(0.98);
}

/* Mobile Menu Toggle */
.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
    background: transparent;
    border: none;
    padding: 0;
    margin-left: 1rem;
}

.hamburger:focus {
    outline: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--support-ice);
    transition: all 0.3s ease-in-out;
    border-radius: 3px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 40px 0;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--support-ice), var(--primary-laser-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowPulse 3s infinite;
    word-wrap: break-word;
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 20px rgba(32, 224, 192, 0.3); }
    50% { text-shadow: 0 0 40px rgba(43, 127, 255, 0.6); }
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    margin-bottom: 2rem;
    color: var(--support-nebula);
    padding: 0 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(14px, 4vw, 18px) clamp(28px, 6vw, 36px);
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--glow-blue);
    border: none;
    cursor: pointer;
    animation: starlinkPulse 2s infinite;
    width: fit-content;
    margin: 0 auto;
    gap: 10px;
}

.cta-button i {
    font-size: 1.1em;
}

.cta-button:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, #20E0C0 0%, #2B7FFF 100%);
    box-shadow: var(--glow-teal);
}

.cta-button:active {
    transform: translateY(-1px);
}

@keyframes starlinkPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(43, 127, 255, 0.4),
                    0 0 0 0 rgba(32, 224, 192, 0.4);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(43, 127, 255, 0),
                    0 0 0 30px rgba(32, 224, 192, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(43, 127, 255, 0),
                    0 0 0 0 rgba(32, 224, 192, 0);
    }
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
    padding: 0 1rem;
    background: linear-gradient(135deg, var(--support-ice), var(--primary-laser-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 20px;
    padding: 0 1rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    -webkit-tap-highlight-color: transparent;
}

.benefit-card:active {
    transform: scale(0.98);
    background: rgba(30, 41, 59, 0.5);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-laser-teal);
    box-shadow: var(--glow-teal);
    background: rgba(30, 41, 59, 0.5);
}

.benefit-card i {
    font-size: clamp(2.5rem, 8vw, 3rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 10px;
    color: var(--support-ice);
}

.benefit-card p {
    color: var(--support-nebula);
    font-size: clamp(0.9rem, 3vw, 1rem);
    line-height: 1.5;
    flex-grow: 1;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: 60px 0;
}

.about-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: clamp(25px, 5vw, 50px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 1rem;
}

.about-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-content p {
    font-size: clamp(1rem, 3vw, 1.1rem);
    margin-bottom: 20px;
    color: var(--support-nebula);
}

.read-more {
    color: var(--primary-laser-teal);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    font-size: clamp(0.95rem, 3vw, 1rem);
    padding: 8px 0;
}

.read-more:active {
    gap: 12px;
    color: var(--primary-aurora-blue);
}

.read-more:hover {
    gap: 12px;
    color: var(--primary-aurora-blue);
}

/* ===== COMPARISON TABLE ===== */
.comparison {
    padding: 60px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 20px;
    padding: 0 1rem;
}

.comparison-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 25px 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    height: 100%;
}

.comparison-card.starlink {
    border-color: var(--primary-laser-teal);
    box-shadow: var(--glow-teal);
    order: -1;
}

@media (min-width: 769px) {
    .comparison-card.starlink {
        order: 0;
    }
}

.comparison-card h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-bottom: 20px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.comparison-card ul {
    list-style: none;
    text-align: left;
    margin: 15px 0 0;
    padding: 0;
}

.comparison-card li {
    margin-bottom: 12px;
    color: var(--support-nebula);
    font-size: clamp(0.9rem, 3vw, 1rem);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.comparison-card li i {
    margin-right: 8px;
    color: var(--primary-laser-teal);
    flex-shrink: 0;
    margin-top: 3px;
}

.comparison-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-aurora-blue);
}

/* ===== FINAL CTA ===== */
.final-cta {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(43, 127, 255, 0.1), rgba(32, 224, 192, 0.1));
    border-radius: 30px;
    margin: 40px 20px;
}

.final-cta h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 20px;
    padding: 0 1rem;
    background: linear-gradient(135deg, var(--support-ice), var(--primary-laser-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--support-nebula);
    margin-bottom: 20px;
    padding: 0 1rem;
}

.final-cta .phone-number {
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-weight: bold;
    margin: 20px 0;
    word-break: break-word;
}

.final-cta .phone-number a {
    color: var(--primary-laser-teal);
    text-decoration: none;
    text-shadow: var(--glow-teal);
    animation: glowPulse 2s infinite;
    display: inline-block;
    padding: 10px;
}

.final-cta .phone-number a:active {
    transform: scale(0.95);
}

.final-cta .phone-number a:hover {
    color: var(--primary-aurora-blue);
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 40px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 15px;
    padding: 0 1rem;
    background: linear-gradient(135deg, var(--support-ice), var(--primary-laser-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
}

.page-header p {
    color: var(--support-nebula);
    font-size: clamp(1rem, 3vw, 1.2rem);
    padding: 0 1rem;
}

/* ===== CONTENT SECTION ===== */
.content-section {
    padding: 40px 0;
}

.content-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: clamp(20px, 4vw, 40px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin: 0 1rem 20px;
    transition: var(--transition-smooth);
    word-wrap: break-word;
}

.content-card:last-child {
    margin-bottom: 0;
}

.content-card:hover {
    border-color: var(--primary-laser-teal);
    box-shadow: var(--glow-teal);
}

.content-card h2 {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 4vw, 2rem);
    word-wrap: break-word;
}

.content-card h3 {
    color: var(--support-ice);
    margin: 20px 0 10px;
    font-size: clamp(1.2rem, 3.5vw, 1.5rem);
}

.content-card p {
    color: var(--support-nebula);
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: clamp(0.95rem, 3vw, 1rem);
}

.content-card ul, .content-card ol {
    margin: 15px 0 15px 20px;
    color: var(--support-nebula);
    padding-left: 1rem;
}

.content-card li {
    margin-bottom: 10px;
    font-size: clamp(0.95rem, 3vw, 1rem);
    line-height: 1.6;
}

.content-card li strong {
    color: var(--primary-laser-teal);
}

/* ===== CONTACT FORM ===== */
.contact-form {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--support-ice);
    font-size: 16px; /* Prevents zoom on mobile */
    transition: var(--transition-smooth);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-laser-teal);
    box-shadow: var(--glow-teal);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    -webkit-tap-highlight-color: transparent;
}

.submit-btn:active {
    transform: scale(0.98);
    background: linear-gradient(90deg, #20E0C0 0%, #2B7FFF 100%);
    box-shadow: var(--glow-teal);
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(90deg, #20E0C0 0%, #2B7FFF 100%);
    box-shadow: var(--glow-teal);
}

/* ===== MAP CONTAINER ===== */
.map-container {
    margin: 20px 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-container iframe {
    width: 100%;
    height: clamp(250px, 50vw, 450px);
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: rgba(10, 12, 20, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 20px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section {
    text-align: center;
}

@media (min-width: 640px) {
    .footer-section {
        text-align: left;
    }
}

.footer-section h3 {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--support-nebula);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    padding: 5px 0;
    font-size: 0.95rem;
}

.footer-section ul li a:active {
    color: var(--primary-laser-teal);
    padding-left: 5px;
}

.footer-section ul li a:hover {
    color: var(--primary-laser-teal);
    padding-left: 5px;
}

.footer-section p {
    color: var(--support-nebula);
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    word-wrap: break-word;
}

.footer-section i {
    margin-right: 8px;
    color: var(--primary-laser-teal);
    width: 20px;
    display: inline-block;
}

.footer-section .emergency {
    color: var(--secondary-sunset);
    font-weight: 600;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--support-nebula);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 5px;
}

/* ===== GRADIENT BORDER UTILITY ===== */
.gradient-border {
    position: relative;
    border: double 1px transparent;
    background-image: linear-gradient(var(--bg-primary), var(--bg-primary)), 
                      linear-gradient(90deg, #2B7FFF, #20E0C0);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* ===== MOBILE-FIRST RESPONSIVE DESIGN ===== */

/* Small Mobile Devices (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: calc(100vh - var(--mobile-header-height));
        padding: 30px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .company-name {
        font-size: 1.1rem;
    }
    
    .header-phone .phone-button span {
        display: none;
    }
    
    .header-phone .phone-button i {
        margin: 0;
        font-size: 1.2rem;
    }
    
    .header-phone .phone-button {
        padding: 10px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section i {
        width: auto;
        margin-right: 5px;
    }
    
    .final-cta {
        margin: 30px 10px;
        padding: 40px 15px;
    }
    
    .final-cta .phone-number {
        font-size: 1.8rem;
    }
}

/* Mobile Devices (481px - 768px) */
@media (max-width: 768px) {
    .header {
        height: var(--mobile-header-height);
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--mobile-header-height);
        gap: 0;
        flex-direction: column;
        background: rgba(10, 12, 20, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: 100%;
        height: calc(100vh - var(--mobile-header-height));
        height: calc(100dvh - var(--mobile-header-height));
        text-align: center;
        transition: 0.3s ease-in-out;
        padding: 20px 0;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 5px 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        font-size: 1.2rem;
        width: 100%;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:active {
        background: var(--hover-bg);
        color: var(--primary-laser-teal);
    }
    
    .header-phone .phone-button {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .header-phone .phone-button span {
        display: inline;
    }
    
    .benefit-card:active {
        transform: scale(0.98);
    }
    
    .content-card {
        padding: 20px;
    }
    
    .content-card ul, .content-card ol {
        margin-left: 15px;
    }
}

/* Tablets (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .company-name {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

/* Landscape Mode */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 60px 0;
    }
    
    .nav-menu {
        padding: 10px 0;
    }
    
    .nav-menu li {
        margin: 2px 0;
    }
    
    .nav-menu a {
        padding: 8px 20px;
    }
}

/* ===== TOUCH OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .benefit-card:hover,
    .comparison-card:hover,
    .content-card:hover,
    .cta-button:hover,
    .read-more:hover,
    .footer-section ul li a:hover {
        transform: none;
    }
    
    .benefit-card:active,
    .comparison-card:active,
    .cta-button:active,
    .submit-btn:active {
        transform: scale(0.98);
    }
    
    .nav-menu a {
        padding: 15px 20px;
    }
    
    .phone-button,
    .cta-button,
    .submit-btn,
    .read-more {
        min-height: 44px;
        min-width: 44px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== CUSTOM SCROLLBAR ===== */
@media (min-width: 1025px) {
    ::-webkit-scrollbar {
        width: 12px;
    }
    
    ::-webkit-scrollbar-track {
        background: var(--primary-space-black);
    }
    
    ::-webkit-scrollbar-thumb {
        background: var(--gradient-accent);
        border-radius: 6px;
        border: 3px solid var(--primary-space-black);
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(90deg, #20E0C0 0%, #2B7FFF 100%);
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ===== PRINT STYLES ===== */
@media print {
    .floating-bg,
    .header-phone,
    .hamburger,
    .footer,
    .cta-button,
    .submit-btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}