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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
}

.logo-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: -4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding-top: 100px;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

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

.highlight {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.5)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 107, 107, 0.8)); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.windows-logo {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.windows-squares {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100px;
    height: 100px;
}

.square {
    border-radius: 4px;
    animation: glitch 3s infinite;
}

.square.red { background: #ff4757; }
.square.yellow { background: #ffd700; }
.square.green { background: #2ed573; }
.square.blue { background: #3742fa; }

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, 2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(-2px, -2px); }
    40% { transform: translate(2px, 2px); }
    50% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, -2px); }
    70% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

.error-overlay {
    position: absolute;
    font-size: 4rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, -50%) translateY(0); }
    40% { transform: translate(-50%, -50%) translateY(-10px); }
    60% { transform: translate(-50%, -50%) translateY(-5px); }
}

.requirement-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    animation: float 6s ease-in-out infinite;
}

.bubble-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 60%;
    left: 5%;
    animation-delay: 1.5s;
}

.bubble-3 {
    top: 30%;
    right: 10%;
    animation-delay: 3s;
}

.bubble-4 {
    bottom: 20%;
    right: 5%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #7f8c8d;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Requirements Section */
.requirements-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.requirement-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.requirement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #ff6b6b;
}

.requirement-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.requirement-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.requirement-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
}

.requirement-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #e74c3c;
}

.stat-label {
    font-size: 0.9rem;
    color: #95a5a6;
}

.compatibility-chart {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.compatibility-chart h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

.chart-caption {
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.comparison-section .section-title,
.comparison-section .section-subtitle {
    color: white;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    opacity: 0.8;
    font-size: 0.9rem;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-item:last-child {
    border-bottom: none;
}

.item-label {
    font-weight: 500;
}

.item-value {
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 8px;
}

.item-value.bad {
    background: rgba(231, 76, 60, 0.3);
    color: #ff6b6b;
}

.item-value.good {
    background: rgba(46, 213, 115, 0.3);
    color: #2ed573;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
}

.performance-chart {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.performance-chart h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* macOS Aside Section */
.macos-aside {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.aside-content {
    padding: 2rem;
}

.aside-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #fff;
}

.aside-content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    text-align: center;
}

.macos-reality {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.reality-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.reality-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.reality-text {
    flex: 1;
    line-height: 1.5;
}

.reality-text strong {
    color: #fff;
}

.aside-footer {
    font-style: italic;
    opacity: 0.8;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px) rotateY(5deg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #2ed573;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.benefit-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
}

.metric-label {
    font-size: 0.9rem;
    color: #95a5a6;
}

.linux-adoption-chart {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.linux-adoption-chart h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.8rem;
}

/* Solutions Section */
.solutions-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
}

.solutions-section .section-title,
.solutions-section .section-subtitle {
    color: white;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.4);
}

.solution-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    font-weight: 800;
}

.solution-logo.system76 {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.solution-logo.omarchy {
    background: linear-gradient(45deg, #667eea, #764ba2);
}

.solution-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.solution-subtitle {
    opacity: 0.8;
    font-size: 0.9rem;
}

.solution-content {
    padding: 2rem;
}

.solution-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.solution-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #2ed573;
}

.stat .stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.solution-action {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-solution {
    background: linear-gradient(45deg, #2ed573, #1dd1a1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 213, 115, 0.4);
}

.btn-solution:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 213, 115, 0.6);
}

.final-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand .logo-text {
    color: #3498db;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand .logo-text:hover {
    color: #2980b9;
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-brand em {
    color: #3498db;
    font-style: italic;
    opacity: 1;
}

.footer-links h4,
.footer-escape h4,
.footer-social h4 {
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-links ul,
.footer-escape ul {
    list-style: none;
}

.footer-links li,
.footer-escape li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-escape a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-escape a:hover {
    color: #3498db;
}

.footer-social p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    opacity: 0.7;
}

.footer-bottom a {
    color: #3498db;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #2980b9;
}

/* Canvas sizing for charts */
canvas {
    max-height: 400px;
    width: 100% !important;
    height: auto !important;
}

/* RESPONSIVE DESIGN - COMPREHENSIVE MOBILE IMPROVEMENTS */

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    /* Enhanced container padding for mobile */
    .container {
        padding: 0 24px;
    }
    
    /* Mobile navigation */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(102, 126, 234, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

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

    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        margin: 0;
        border-radius: 0;
        font-size: 1.1rem;
    }
    
    /* Hero section mobile improvements */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
        padding-left: 24px;
        padding-right: 24px;
        gap: 2rem;
        min-height: auto;
    }
    
    .hero-content {
        width: 100%;
        max-width: none;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        min-width: 140px;
    }
    
    /* Hero visual mobile improvements */
    .hero-visual {
        height: 250px;
        width: 100%;
        margin-top: 1rem;
    }
    
    .windows-logo {
        width: 120px;
        height: 120px;
    }
    
    .windows-squares {
        width: 60px;
        height: 60px;
        gap: 6px;
    }
    
    .error-overlay {
        font-size: 2.5rem;
    }
    
    .requirement-bubble {
        font-size: 0.7rem;
        padding: 0.4rem 0.7rem;
    }
    
    /* Section spacing improvements */
    .requirements-section,
    .comparison-section,
    .benefits-section,
    .solutions-section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        padding: 0 20px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 3rem;
    }
    
    /* Comparison grid mobile */
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .vs-divider {
        order: 1;
        margin: 0 auto;
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .windows-card {
        order: 0;
    }
    
    .linux-card {
        order: 2;
    }
    
    /* Card improvements */
    .comparison-card,
    .requirement-card,
    .benefit-card {
        margin: 0 10px;
        padding: 1.5rem;
    }
    
    /* macOS aside mobile */
    .macos-reality {
        gap: 1rem;
    }
    
    .reality-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .reality-icon {
        align-self: center;
        margin-top: 0;
    }
    
    /* Solutions grid mobile */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-card {
        margin: 0 10px;
    }
    
    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    /* Charts mobile */
    .compatibility-chart,
    .performance-chart,
    .linux-adoption-chart {
        margin: 0 10px;
        padding: 1.5rem;
    }
    
    .final-cta {
        margin: 0 10px;
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Small Mobile Breakpoint */
@media (max-width: 480px) {
    /* Extra mobile padding */
    .container {
        padding: 0 20px;
    }
    
    /* Logo adjustments */
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    /* Hero further optimizations */
    .hero {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 5px;
    }
    
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.7rem;
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 15px;
    }
    
    /* Grid improvements */
    .requirements-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .requirement-card,
    .benefit-card {
        margin: 0 5px;
        padding: 1.2rem;
    }
    
    .requirement-icon,
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    /* Comparison cards */
    .comparison-card {
        margin: 0 5px;
        padding: 1.2rem;
    }
    
    .card-header h3 {
        font-size: 1.4rem;
    }
    
    .comparison-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.8rem 0;
    }
    
    .item-value {
        align-self: flex-end;
    }
    
    /* Solution cards */
    .solution-card {
        margin: 0 5px;
    }
    
    .solution-header,
    .solution-content {
        padding: 1.5rem;
    }
    
    .solution-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .solution-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    /* Charts */
    .compatibility-chart,
    .performance-chart,
    .linux-adoption-chart,
    .final-cta {
        margin: 0 5px;
        padding: 1rem;
    }
    
    /* Very small screens adjustments */
    .requirement-bubble {
        display: none;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .windows-logo {
        width: 100px;
        height: 100px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 10px;
    }
    
    .btn {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
    }
    
    .requirement-card,
    .benefit-card,
    .comparison-card,
    .solution-card {
        margin: 0 2px;
        padding: 1rem;
    }
    
    .compatibility-chart,
    .performance-chart,
    .linux-adoption-chart,
    .final-cta {
        margin: 0 2px;
        padding: 0.8rem;
    }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .requirements-section,
    .comparison-section,
    .benefits-section,
    .solutions-section {
        padding: 3rem 0;
    }
}
