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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #fafafa;
    color: #1a1a1a;
    line-height: 1.6;
    font-weight: 400;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e5e5;
    z-index: 1000;
    padding: 16px 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.app-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.2);
}

.icon-text {
    font-size: 20px;
    filter: brightness(1.2);
}

.logo-svg {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.brand-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.brand-svg {
    height: 19px;
    width: auto;
    filter: invert(1);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #D32F2F;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid #D32F2F;
    box-shadow: 0 2px 8px rgba(211, 47, 47, 0.2);
}

.cta-button:hover {
    background: linear-gradient(135deg, #B71C1C 0%, #D32F2F 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.app-icon-large {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 0 8px 32px rgba(211, 47, 47, 0.3);
}

.icon-text-large {
    font-size: 60px;
    filter: brightness(1.2);
}

.logo-svg-large {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
    letter-spacing: -0.04em;
    line-height: 1.2;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.light-text {
    font-weight: 300;
}

.phone-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 40px 20px;
}

.phone-mockup {
    width: 339px;
    height: 678px;
    position: relative;
    background: none !important;
    border: none !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Removed: Using real iPhone 16 Pro SVG instead */

/* Hover styles moved to individual selectors */

/* Center phone styling */
.phone-mockup.center {
    transform: scale(1.10) !important;
    z-index: 10;
}

/* Phone hover effects */
.phone-mockup:hover {
    transform: translateY(-10px) scale(1.05);
}

.phone-mockup.center:hover {
    transform: translateY(-10px) scale(1.12) !important;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/iPhone16Pro_Mockup.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.phone-screen {
    position: absolute;
    top: 54px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    z-index: 1;
}

.mockup-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

.app-interface {
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
}

.app-header {
    margin-bottom: 24px;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.status-icons {
    display: flex;
    gap: 4px;
    font-size: 12px;
}

.app-title-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.app-icon-small {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.app-name {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

.timer-display {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    border-radius: 20px;
    margin: 20px 0;
    padding: 40px 20px;
}

.app-title-small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 10px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.5px;
}

.app-icon-tiny {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.main-timer-container {
    margin: 30px 0;
}

.timer-circle-large {
    width: 180px;
    height: 180px;
    border: 6px solid #D32F2F;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    background: #f8f8f8;
}

.timer-circle-large::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #D32F2F;
    border-radius: 50%;
}

.timer-circle-large::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #D32F2F;
    border-radius: 50%;
}

.timer-phase-top {
    font-size: 12px;
    color: #D32F2F;
    font-weight: 500;
    margin-bottom: 8px;
    padding: 4px 12px;
    border: 1px solid #D32F2F;
    border-radius: 12px;
}

.timer-value-large {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.start-button-large {
    background: #D32F2F;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
}

.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.setting-card {
    background: white;
    border: 2px solid #D32F2F;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.setting-label {
    font-size: 10px;
    color: #666;
    margin-bottom: 4px;
}

.setting-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.setting-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 14px;
}

.toggle-options {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.toggle-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.toggle-icon {
    font-size: 14px;
}

.toggle-label {
    color: #1a1a1a;
    font-weight: 500;
}

.toggle-switch {
    width: 40px;
    height: 20px;
    background: #ddd;
    border-radius: 10px;
    position: relative;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.2s;
}

.screen-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    background: #8B4513;
    color: white;
    position: relative;
}

.red-header {
    background: #D32F2F;
}

.back-arrow {
    position: absolute;
    left: 16px;
    font-size: 18px;
    font-weight: bold;
}

.screen-title {
    font-size: 16px;
    font-weight: 600;
}

.debug-badge {
    background: #D32F2F;
    color: white;
    font-size: 8px;
    padding: 2px 4px;
    border-radius: 4px;
    margin-left: 4px;
}

.cuts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    overflow-y: auto;
    flex: 1;
}

.cut-option {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.cut-option h3 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.cut-option p {
    font-size: 10px;
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.6;
    flex: 1;
}

.select-btn {
    background: #D32F2F;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    width: 100%;
}

.favorites-list {
    padding: 16px;
    flex: 1;
    overflow-y: auto;
}

.favorite-recipe {
    background: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    border: 1px solid #e5e5e5;
}

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

.recipe-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.recipe-actions {
    display: flex;
    gap: 8px;
}

.action-icon {
    font-size: 12px;
}

.action-icon.heart {
    background: #D32F2F;
    color: white;
    padding: 4px;
    border-radius: 4px;
}

.recipe-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 500;
}

.cut-tag {
    background: #ffe5e5;
    color: #D32F2F;
}

.doneness-tag {
    background: #fff3cd;
    color: #856404;
}

.thickness-tag {
    background: #e5e5e5;
    color: #666;
}

.cook-time {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

@media (max-width: 600px) {
    .phone-showcase {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
}

@media (max-width: 480px) {
    .phone-showcase {
        gap: 16px;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}



/* Description Section */
.description {
    padding: 26px;
    background: white;
}

.description-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.rating {
    font-size: 24px;
    color: #D32F2F;
    margin-bottom: 24px;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.description-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr 1fr auto;
    gap: 13px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 48px;
    align-items: stretch;
}

.step-card-wide {
    grid-column: 1 / -1;
}

.step-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.step-number {
    width: 41px;
    height: 41px;
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 700;
    margin: 0 auto 20px;
    flex-shrink: 0;
}





.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
    flex-shrink: 0;
    line-height: 1.4;
}

.step-description {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
    flex: 1;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.feature-card {
    background: #f8f8f8;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    background: white;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(10%) sepia(68%) saturate(5212%) hue-rotate(0deg) brightness(89%) contrast(104%);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.feature-description {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background: #f8f8f8;
    text-align: center;
}

.audience-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.audience-card {
    flex: 1;
    max-width: 350px;
    min-width: 280px;
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e5;
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.audience-description {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.download-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.download-description {
    font-size: 20px;
    color: #666;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.download-buttons-svg {
    max-width: 100%;
    height: auto;
    width: 866px;
    transition: transform 0.2s ease;
}

.download-buttons-svg:hover {
    transform: scale(1.02);
}

.download-btn {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #1a1a1a;
    min-width: 200px;
}

.download-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.download-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.download-icon {
    font-size: 24px;
}

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
}

.download-label {
    font-size: 12px;
    opacity: 0.8;
}

.download-store {
    font-size: 16px;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 48px 0;
    background: #f8f8f8;
    border-top: 1px solid #e5e5e5;
}

.footer-content {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #D32F2F;
}

.footer-copyright {
    color: #999;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .phone-showcase {
        gap: 16px;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
    }
    
    .phone-mockup.center {
        transform: scale(1.10) !important;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-heading {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .phone-showcase {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .phone-mockup.center {
        transform: scale(1.10) !important;
    }
    
    /* Mobile Header - Center logo and wordmark */
    .nav {
        justify-content: center;
        text-align: center;
    }
    
    .nav-brand {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Mobile Navigation Below Header */
    .mobile-nav {
        display: block;
        background: #fff;
        border-bottom: 1px solid #eee;
        padding: 15px 20px;
        text-align: center;
    }
    
    .mobile-nav-links {
        display: flex;
        gap: 30px;
        justify-content: center;
    }
    
    .mobile-nav-links a {
        color: #1a1a1a;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
    }
    
    .mobile-nav-links a:hover {
        color: #D32F2F;
    }
    
    /* Hide hero logo on mobile */
    .app-icon-large {
        display: none;
    }
    
    /* Mobile Hero CTA */
    .hero-cta-mobile {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        margin-bottom: 40px;
    }
    
    .hero-cta-button {
        background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
        color: white;
        padding: 13px 25px;
        border-radius: 31px;
        text-decoration: none;
        font-weight: 500;
        font-size: 18px;
        transition: all 0.2s ease;
        border: 1px solid #D32F2F;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(211, 47, 47, 0.2);
    }
    
    .hero-cta-button:hover {
        background: linear-gradient(135deg, #B71C1C 0%, #D32F2F 100%);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    }
    
    .hero {
        padding: 66px 0 80px;
    }
    
    .hero-title {
        font-size: 43px;
    }
    
    .section-heading {
        font-size: 24px;
    }
    
    .description-text {
        font-size: 16px;
    }
    
    .steps-grid {
        gap: 13px;
    }
    
    .features-grid,
    .audience-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    
    /* Features Carousel for Mobile */
    .features-carousel {
        margin-top: 48px;
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    
    .features-carousel-container {
        display: flex;
        transition: transform 0.3s ease;
        will-change: transform;
        width: 100%;
    }
    
    .features-carousel .feature-card {
        min-width: calc(100% - 32px);
        width: calc(100% - 32px);
        flex-shrink: 0;
        background: #f8f8f8;
        border-radius: 16px;
        padding: 28px 20px;
        margin: 0 16px;
        transition: all 0.3s ease;
        border: none;
        text-align: center;
        box-sizing: border-box;
    }
    
    .features-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }
    
    .feature-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .feature-dot.active {
        background: #D32F2F;
    }
    
    .download-title {
        font-size: 32px;
    }
    
    .download-description {
        font-size: 18px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons-svg {
        width: 692px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .description-text {
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .phone-showcase {
        gap: 20px;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .phone-mockup.center {
        transform: scale(1.10) !important;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .download-buttons-svg {
        width: 291px;
    }
}

.light-text {
    font-weight: 300;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq .section-heading {
    text-align: center;
}

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    border: none;
    background: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.2s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 16px 24px 24px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Mobile/Desktop Visibility */
.mobile-only { display: none; }
.desktop-only { display: block; }

/* Mobile Navigation - Hidden by default */
.mobile-nav {
    display: none;
}

/* Mobile Hero CTA - Hidden by default */
.hero-cta-mobile {
    display: none;
}

@media (max-width: 600px) {
    .mobile-only { display: block; }
    .desktop-only { display: none; }
    
    /* Show mobile navigation */
    .mobile-nav {
        display: block !important;
    }
    
    /* Show mobile hero CTA */
    .hero-cta-mobile {
        display: flex !important;
    }
}

/* Phone Slider */
.phone-slider {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px 0;
    background: transparent !important;
}

.phone-slider-container {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.phone-slider-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 300%;
    background: transparent !important;
}

.phone-slide {
    width: 33.333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
    background: transparent;
}

.phone-slide .phone-mockup {
    width: 242px;
    height: 484px;
    position: relative;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.phone-slide .phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/iPhone16Pro_Mockup.svg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.phone-slide .phone-screen {
    position: absolute;
    top: 38px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    z-index: 1;
}

.slide-info {
    display: none;
}

.slide-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.slide-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.phone-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 5px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(26, 26, 26, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dot.active {
    background: #D32F2F;
    transform: scale(1.2);
}

.slide-info h3 {
    line-height: 1.4;
}

/* Desktop Phone Showcase Override */
@media (min-width: 601px) {
    .phone-showcase.desktop-only {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 40px !important;
    }
}

/* Removed: Using real iPhone 16 Pro SVG instead */

/* SVG already includes the frame - removed redundant styles */
