:root {
    --background-color: #ffffff;
    --text-color: #202124;
    --text-color-light: #5f6368;
    --primary-color: #4285f4;
    --accent-color: #ea4335;
    --border-color: #dadce0;
    --hover-color: #f8f9fa;
    --container-width: 1200px;
    --font-family: "Google Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Navigation anchor positioning */
#reviews {
    scroll-margin-top: 20px;
}

#features {
    scroll-margin-top: 20px;
}

#guides {
    scroll-margin-top: 20px;
}

#contact {
    scroll-margin-top: 20px;
}

body {
    font-family: var(--font-family);
    line-height: 1.5;
    color: var(--text-color);
    background: var(--background-color);
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.main-header {
    background: #fff;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8eaed;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    flex-wrap: nowrap;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 22px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-icon {
    color: var(--primary-color);
    fill: currentColor;
    margin-right: 8px;
    width: 26px;
    height: 26px;
    display: inline-block;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-list li {
    margin-right: 24px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-color-light);
    padding: 12px 0;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.15s ease;
}

.nav-list a:hover {
    color: var(--text-color);
}

.nav-cta {
    background: #1a73e8 !important;
    color: #ffffff !important;
    padding: 10px 24px !important;
    border-radius: 4px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: all 0.2s cubic-bezier(0.4,0.0,0.2,1) !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 1px 2px 0 rgba(26,115,232,.3), 0 1px 3px 1px rgba(26,115,232,.15) !important;
    letter-spacing: 0.0107142857em !important;
    line-height: 20px !important;
    text-decoration: none !important;
    white-space: nowrap;
    margin-left: 24px;
}

.nav-cta:hover {
    background: #1557b0 !important;
    color: #ffffff !important;
    box-shadow: 0 1px 3px 0 rgba(26,115,232,.4), 0 4px 8px 3px rgba(26,115,232,.3) !important;
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 16px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    height: 56px;
    width: 56px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    position: relative;
}

.hamburger-menu:focus {
    outline: none;
}

.hamburger-menu .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.hamburger-menu .menu-icon .navicon {
    background: #5f6368;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 24px;
}

.hamburger-menu .menu-icon .navicon:before,
.hamburger-menu .menu-icon .navicon:after {
    background: #5f6368;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.hamburger-menu .menu-icon .navicon:before {
    top: 5px;
}

.hamburger-menu .menu-icon .navicon:after {
    top: -5px;
}


/* Active state - transforms to X */
.hamburger-menu.active .menu-icon .navicon {
    background: transparent;
}

.hamburger-menu.active .menu-icon .navicon:before {
    transform: rotate(-45deg);
    top: 0;
}

.hamburger-menu.active .menu-icon .navicon:after {
    transform: rotate(45deg);
    top: 0;
}

@media (max-width: 768px) {
    .main-nav {
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
    }
    
    .logo {
        font-size: 18px;
        display: flex;
        align-items: center;
    }
    
    .logo-icon {
        font-size: 20px;
        margin-right: 6px;
        width: 30px;
        height: 30px;
    }
    
    .hamburger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        position: static;
        flex-shrink: 0;
    }

    /* Old nav-links CSS removed - using hamburger implementation */

    .nav-list {
        flex-direction: column;
        margin: 0;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
        margin-right: 0;
        border-bottom: 1px solid #f8f9fa;
    }

    .nav-list a {
        padding: 16px 24px;
        width: 100%;
        display: block;
        font-size: 16px;
    }

    .nav-cta {
        margin: 16px 24px 8px !important;
        text-align: center !important;
        display: block !important;
        width: calc(100% - 48px) !important;
    }

    .hamburger-menu {
        display: flex;
    }
}

@media (max-width: 480px) {
    .main-nav {
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .logo {
        font-size: 16px;
        display: flex;
        align-items: center;
    }
    
    .logo-icon {
        font-size: 18px;
        margin-right: 4px;
        width: 28px;
        height: 28px;
    }
    
    .hamburger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        position: static;
        flex-shrink: 0;
    }
    
    .nav-links {
        top: 52px;
    }
    
    .nav-cta {
        margin: 16px 16px 8px !important;
        width: calc(100% - 32px) !important;
    }
}



/* Hero Section */
.hero {
    background-color: #fefefe;
    background-image:
        radial-gradient(circle at 25px 25px, rgba(66, 133, 244, 0.03) 1.5%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(66, 133, 244, 0.02) 1%, transparent 0%);
    background-size: 120px 120px;
    text-align: center;
    padding: 90px 0 60px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.01) 0%, rgba(26, 115, 232, 0.02) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content .hero-headline {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-content .hero-subhead {
    font-size: 20px;
    max-width: 580px;
    margin: 0 auto 32px;
    color: var(--text-color-light);
}

/* Hero Section Enhancements */
.app-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.app-icon {
    width: 110px;
    height: 110px;
    transition: transform 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.05);
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    padding: 8px 16px;
    background: var(--hover-color);
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.rating-stars {
    font-size: 12px;
}

.rating-text {
    font-size: 13px;
    color: var(--text-color-light);
    font-weight: 500;
}

.users-count {
    font-size: 12px;
    color: var(--text-color-light);
    opacity: 0.7;
    margin-bottom: 32px;
    margin-top: 2px;
    text-align: center;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-size: 13px;
    color: var(--text-color-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #34d399;
    border-radius: 50%;
}

/* Mobile Menu Styles */
.menu-btn {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .menu-icon {
        display: block;
        position: relative;
        z-index: 1001;
    }

    .navicon {
        background: #333;
        display: block;
        height: 2px;
        position: relative;
        transition: background .2s ease-out;
        width: 18px;
    }

    .navicon:before,
    .navicon:after {
        background: #333;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }

    .navicon:before {
        top: 5px;
    }

    .navicon:after {
        top: -5px;
    }

    .menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
    }

    .menu-btn:checked ~ .menu-icon .navicon:before {
        transform: rotate(-45deg);
    }

    .menu-btn:checked ~ .menu-icon .navicon:after {
        transform: rotate(45deg);
    }

    .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
    .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
        top: 0;
    }

    .mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: white;
        transform: translateX(100%);
        opacity: 0;
        transition: all .3s ease-out;
        display: flex;
        flex-direction: column;
        z-index: 1000;
        padding: 80px 20px 20px 20px;
        overflow-y: auto;
    }

    .menu-btn:checked ~ .mobile-nav {
        transform: translateX(0);
        opacity: 1;
    }

    .mobile-nav .nav-list {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .mobile-nav .nav-list li {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e8e8e8;
    }

    .mobile-nav .nav-list li:last-child {
        border-bottom: none;
    }

    .mobile-nav .nav-list a {
        display: block;
        padding: 16px 24px;
        color: var(--text-color);
        text-decoration: none;
        font-size: 16px;
        font-weight: 400;
        transition: background-color 0.2s ease;
    }

    .mobile-nav .nav-list a:hover {
        background-color: #f8f9fa;
    }
}


@media (max-width: 480px) {
    .main-nav {
        height: 52px;
        padding: 0 12px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .logo {
        font-size: 16px;
    }
    
    .logo-icon {
        font-size: 18px;
        margin-right: 4px;
        width: 28px;
        height: 28px;
    }
    
    .mobile-menu-content {
        width: 100%;
        right: -100%;
        padding: 80px 16px 24px;
    }
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
    text-transform: none;
    letter-spacing: 0.25px;
}

.cta-button:hover {
    background: #3367d6;
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
}

/* Secondary button style */
.cta-button.secondary {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.cta-button.secondary:hover {
    background: var(--hover-color);
    border-color: var(--primary-color);
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
}

/* Video Section */
.video-section {
    text-align: center;
    padding: 80px 0;
    background: #fafbfc;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-color);
}


.features {
    padding: 40px 0 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease;
}

.feature-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--text-color);
}

.feature-icon .material-icons {
    font-size: 40px;
}


.feature-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
}

.feature-card p {
    color: var(--text-color-light);
    font-size: 14px;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: #fafbfc;
    padding: 100px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-color);
}

.cta-section p {
    font-size: 16px;
    margin-bottom: 32px;
    color: var(--text-color-light);
}

/* Footer */
.main-footer {
    padding: 48px 0;
    text-align: center;
    font-size: 12px;
    color: var(--text-color-light);
    background: #fff;
    border-top: 1px solid var(--border-color);
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-color-light);
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.main-footer p {
    color: var(--text-color-light);
    font-size: 12px;
}

.footer-brand {
    color: var(--primary-color);
    font-weight: 500;
}

.footer-copyright {
    margin-top: 24px;
}

.footer-copyright p {
    margin: 8px 0;
    line-height: 1.6;
}

.footer-copyright p:first-child {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
}

.footer-year {
    color: var(--text-color-light);
    font-size: 12px;
}

.heart-icon {
    width: 14px;
    height: 14px;
    color: #ea4335;
    display: inline-block;
    vertical-align: middle;
    margin: 0 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 70px 0 50px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
        letter-spacing: -0.2px;
    }

    .hero-content .subhead {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 28px;
        max-width: 320px;
    }

    .section-title, .cta-section h2 {
        font-size: 28px;
    }

    .main-nav {
        padding: 12px 0;
        min-height: 56px;
    }
    
    .nav-list {
        justify-content: space-between;
    }

    .nav-list li:first-child {
        margin-right: 0;
    }
    
    .logo {
        font-size: 20px !important;
    }
    
    .logo-icon {
        font-size: 22px;
        width: 32px;
        height: 32px;
    }
    
    
    .features {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .footer-links {
        gap: 16px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.25;
        margin-bottom: 16px;
        letter-spacing: -0.2px;
    }
    
    .mobile-br {
        display: block;
    }

    .hero-content .subhead {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 24px;
        max-width: 280px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
        font-weight: 500;
    }
    
    .hero-cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .trust-indicators {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px 16px;
    }
    
    .main-nav {
        padding: 10px 0;
        min-height: 52px;
    }
    
    .desktop-nav .nav-list li:not(:first-child):not(:last-child) {
        display: none;
    }
    
    .nav-cta {
        padding: 8px 16px !important;
        font-size: 13px !important;
    }
    
    .logo {
        font-size: 18px !important;
    }
    
    .logo-icon {
        font-size: 20px;
        width: 30px;
        height: 30px;
    }
    
    
    /* Guides Section Mobile */
    .featured-guides {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .guides-cta {
        padding: 32px 24px;
    }
    
    /* Comparison Section Mobile */
    .featured-app {
        padding: 20px;
        margin-bottom: 40px;
    }
    
    .app-details {
        display: block !important;
        grid-template-columns: none !important;
    }
    
    .feature-checklist {
        margin-top: 32px;
        width: 100%;
    }
    
    .competitors-grid {
        grid-template-columns: 1fr;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .comparison-cta {
        padding: 32px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Hamburger Menu - Checkbox approach */
.menu-btn {
    display: none;
}

.menu-icon {
    cursor: pointer;
    display: none;
    float: right;
    padding: 24px 20px;
    position: relative;
    user-select: none;
    margin-left: auto;
    z-index: 1001;
}

.menu-icon .navicon {
    background: #5f6368;
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 20px;
}

.menu-icon .navicon:before,
.menu-icon .navicon:after {
    background: #5f6368;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}

.menu-icon .navicon:before {
    top: 6px;
}

.menu-icon .navicon:after {
    top: -6px;
}

/* Menu toggle animation - Slide from right */
.menu-btn:checked + .menu-icon + .mobile-nav {
    transform: translateX(0) !important;
    opacity: 1 !important;
}

.menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
}

.menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
    top: 0;
}

.menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
    top: 0;
}

/* Hide mobile nav on desktop, show desktop nav */
.mobile-nav {
    display: none;
}

.desktop-nav {
    display: flex;
}

/* Mobile navigation styling - Slide from right */
@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    /* Hide desktop nav, show mobile nav */
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: white;
        box-shadow: -2px 0 12px rgba(0,0,0,.15);
        transform: translateX(100%);
        opacity: 0;
        transition: all .3s ease-out;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 0 24px 0;
        display: flex;
        z-index: 1000;
    }
    
    .mobile-nav .nav-list {
        flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .mobile-nav .nav-list li {
        border-bottom: 1px solid var(--border-color);
        margin-right: 0;
    }
    
    .mobile-nav .nav-list li:last-child {
        border-bottom: none;
    }
    
    .mobile-nav .nav-list a {
        display: block;
        padding: 16px 24px;
        color: var(--text-color);
        text-decoration: none;
        transition: background-color 0.2s ease;
        font-weight: 500;
        font-size: 16px;
    }
    
    .mobile-nav .nav-list a:hover {
        background-color: var(--hover-color);
    }
    
    
    .main-nav {
        position: relative;
    }
}

/* Hero Section Enhancements */
.app-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.app-icon {
    width: 110px;
    height: 110px;
    transition: transform 0.3s ease;
}

.app-icon:hover {
    transform: scale(1.05);
}

.app-name {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.social-proof-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 4px;
    padding: 8px 16px;
    background: var(--hover-color);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.rating-stars {
    font-size: 12px;
}

.rating-text {
    font-size: 13px;
    color: var(--text-color-light);
    font-weight: 500;
}

.users-count {
    text-align: center;
    font-size: 12px;
    color: var(--text-color-light);
    opacity: 0.7;
    margin-bottom: 24px;
    margin-top: 2px;
    font-weight: 400;
    position: relative;
    transform: translateX(45px);
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-size: 13px;
    color: var(--text-color-light);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #34d399;
    border-radius: 50%;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 0;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-color-light);
    margin-top: 12px;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Guides Section */
.guides-section {
    padding: 40px 0 80px 0;
    background: #fafbfc;
}

.featured-guides {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
    .featured-guides {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .featured-guides {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.guide-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
}

.guide-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    border-color: var(--primary-color);
}

.guide-card.featured {
    padding: 32px;
    border: 2px solid var(--border-color);
}

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

.guide-category {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.guide-icon {
    color: var(--primary-color);
    font-size: 20px;
}

.guide-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.4;
}

.guide-card.featured h3 {
    font-size: 20px;
}

.guide-card p {
    color: var(--text-color-light);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.guide-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-color-light);
}

.read-time .material-icons {
    font-size: 14px;
}

.guide-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.guide-link:hover {
    text-decoration: underline;
}

.guides-cta {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.guides-cta h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
}

.section-cta {
    background: #f8f9fa;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    max-width: 600px;
    margin: 48px auto 0;
}

.section-cta h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
}

.section-cta p {
    font-size: 16px;
    color: var(--text-color-light);
    margin-bottom: 24px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.guides-cta p {
    color: var(--text-color-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Comparison Section */
.comparison-section {
    padding: 40px 0 20px 0;
    background: white;
}

.featured-app {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 64px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 32px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.recommended-badge .material-icons {
    font-size: 16px;
}

.app-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.app-info h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.app-info p {
    color: var(--text-color-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.app-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.rating .material-icons {
    color: #fbbf24;
    font-size: 16px;
}

.price-free {
    color: #10b981;
    font-weight: 600;
}

.cta-button.primary svg {
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Mobile responsive button styling */
@media (max-width: 768px) {
    .cta-button.primary {
        padding: 12px 18px !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        border-radius: 4px !important;
        min-width: 140px;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
    }
    
    .cta-button.primary svg {
        margin-right: 6px;
        width: 14px;
        height: 14px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .cta-button.primary {
        padding: 14px 20px !important;
        font-size: 16px !important;
        min-width: 150px;
        border-radius: 4px !important;
    }
}

.key-features h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
}

.key-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.key-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-color-light);
    margin-bottom: 8px;
}

.key-features .material-icons {
    color: #10b981;
    font-size: 16px;
}

.feature-checklist h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-color);
}

.checklist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.checklist-item .material-icons.check {
    color: #10b981;
    font-size: 18px;
}

.competitors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.competitor-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.competitor-card h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.competitor-card p {
    color: var(--text-color-light);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.competitor-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.price {
    font-weight: 500;
    color: var(--text-color);
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pros h5, .cons h5 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.pros h5 {
    color: #059669;
}

.cons h5 {
    color: #dc2626;
}

.pros ul, .cons ul {
    list-style: none;
}

.pros li, .cons li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.3;
}

.pros .material-icons {
    color: #10b981;
    font-size: 14px;
}

.cons .material-icons {
    color: #ef4444;
    font-size: 14px;
}

.comparison-cta {
    background: var(--primary-color)/5;
    border: 1px solid var(--primary-color)/20;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
}

.comparison-cta h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-color);
}

.comparison-cta p {
    color: var(--text-color-light);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Backdrop overlay for slide menu */
@media (max-width: 768px) {
    .menu-btn:checked + .menu-icon + .mobile-nav::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 280px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* Apple-Inspired Showcase */
.apple-showcase {
    background: #ffffff;
    color: #1d1d1f;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 500px;
}

.showcase-content {
    z-index: 2;
    position: relative;
}

.showcase-headline {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 32px;
    letter-spacing: -0.04em;
    color: #1d1d1f;
}

.showcase-description {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #6e6e73;
    margin: 0;
    max-width: 400px;
}

.showcase-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.device-screenshot {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transform: translateZ(0);
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.device-screenshot:hover {
    transform: scale(1.02) translateZ(0);
}

/* Apple-style ambient background effect */
.apple-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 800px 600px at 50% 50%, rgba(66, 133, 244, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .apple-showcase {
        padding: 80px 0;
    }
    
    .showcase-container {
        gap: 60px;
        padding: 0 32px;
    }
    
    .showcase-headline {
        font-size: clamp(40px, 7vw, 64px);
        font-weight: 500;
        line-height: 1.1;
        margin-bottom: 24px;
    }
    
    .showcase-description {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .apple-showcase {
        padding: 60px 0;
    }
    
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 24px;
        min-height: auto;
    }
    
    .showcase-content {
        order: 2;
    }
    
    .showcase-visual {
        order: 1;
    }
    
    .showcase-headline {
        font-size: clamp(32px, 10vw, 48px);
        font-weight: 500;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    
    .showcase-description {
        font-size: 18px;
        max-width: none;
    }
    
    .device-screenshot {
        max-width: 100%;
        max-height: 450px;
    }
}

@media (max-width: 480px) {
    .showcase-container {
        padding: 0 20px;
    }
    
    .showcase-headline {
        font-size: 28px;
        font-weight: 500;
        line-height: 1.1;
    }
    
    .showcase-description {
        font-size: 16px;
    }
    
    .device-screenshot {
        max-width: 320px;
        max-height: 400px;
    }
}

/* Testimonials Section - now integrated within comparison */

.testimonials-inline {
    padding: 60px 0;
    background: #fff;
}

/* Testimonials will use standard section-header, section-title, and section-subtitle styles */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 20px;
    transition: box-shadow 0.2s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    flex-shrink: 0;
}

.user-details h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #dadce0;
    font-size: 16px;
    line-height: 1;
}

.star.filled {
    color: #fbbc04;
}

.date {
    font-size: 12px;
    color: #5f6368;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
}

.testimonials-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #e8eaed;
}

.testimonials-cta p {
    font-size: 18px;
    color: var(--text-color-light);
    margin-bottom: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    /* Testimonials will use standard responsive section title/subtitle styles */
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .testimonial-card {
        padding: 16px;
    }
    
    .testimonials-cta {
        padding-top: 32px;
    }
    
    .testimonials-cta p {
        font-size: 16px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        margin: 0 -4px;
    }
}

/* Contact Popup Styles - Google minimal design */
.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.15s ease-out;
}

.contact-popup {
    background: white;
    border-radius: 8px;
    padding: 0;
    max-width: 360px;
    width: 90%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.2s ease-out;
}

.contact-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 16px;
}

.contact-popup-header h3 {
    margin: 0;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 400;
    font-family: 'Google Sans', sans-serif;
}

.close-popup {
    background: none;
    border: none;
    font-size: 20px;
    color: #5f6368;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.15s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-popup:hover {
    background: #f1f3f4;
}

.contact-popup-content {
    padding: 0 24px 24px;
}

.contact-intro {
    font-size: 14px;
    color: var(--text-color-light);
    margin: 0 0 16px;
    text-align: left;
}

.email-container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 4px;
    margin: 0 0 16px;
    border: 1px solid #dadce0;
}

.email-address {
    flex: 1;
    font-family: 'Google Sans', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    font-size: 16px;
}

.copy-email-btn {
    background: none;
    color: var(--primary-color);
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease;
    font-family: 'Google Sans', sans-serif;
}

.copy-email-btn:hover {
    background: #f1f3f4;
}

.contact-note {
    font-size: 13px;
    color: #5f6368;
    margin: 0 !important;
    text-align: left;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
    }
    to { 
        opacity: 1;
    }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-40px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive design - Very important! */
@media (max-width: 768px) {
    .contact-popup {
        width: 95%;
        margin: 16px;
    }
    
    .email-address {
        font-size: 14px;
        word-break: break-all;
    }
    
    .copy-email-btn {
        font-size: 13px;
        padding: 8px 12px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .contact-popup {
        width: calc(100% - 32px);
        margin: 16px;
    }
    
    .contact-popup-header {
        padding: 20px 20px 12px;
    }
    
    .contact-popup-header h3 {
        font-size: 18px;
    }
    
    .contact-popup-content {
        padding: 0 20px 20px;
    }
    
    .email-container {
        gap: 6px;
        padding: 12px;
    }
    
    .email-address {
        font-size: 13px;
    }
    
    .copy-email-btn {
        font-size: 12px;
        padding: 6px 10px;
    }
}
