/* 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;
    overflow-x: hidden;
}

.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: 36px 0;
}

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

.nav-brand {
    position: absolute;
    left: 24px;
}

.nav-cta {
    position: absolute;
    right: 24px;
}

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

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

.app-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    border-radius: 12px;
    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 60px;
    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: 0;
    width: 100%;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 40px 0;
    background: transparent;
}

.phone-mockup {
    width: 363px;
    height: 725px;
    position: relative;
    background: none !important;
    border: none !important;
    box-shadow: none;
    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 (default - no 3D/Overlap) */
.phone-showcase:not(.phone-showcase-3d):not(.phone-showcase-overlap) .phone-mockup.center {
    transform: scale(1.10);
    z-index: 10;
}

/* Phone hover effects (default) */
.phone-showcase:not(.phone-showcase-3d):not(.phone-showcase-overlap) .phone-mockup:hover {
    transform: translateY(-10px) scale(1.05);
}

.phone-showcase:not(.phone-showcase-3d):not(.phone-showcase-overlap) .phone-mockup.center:hover {
    transform: translateY(-10px) scale(1.12);
}

.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: 1.5%;
    left: 2.2%;
    right: 2.2%;
    bottom: 1.5%;
    border-radius: 38px;
    overflow: hidden;
    background: #000;
    z-index: 1;
}

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

/* New combined mockup images */
.phone-mockup-img {
    width: 320px;
    height: auto;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.phone-showcase-3d .phone-mockup-img.left {
    transform: perspective(1200px) rotateY(25deg) scale(0.85) translateX(70px);
    opacity: 1;
}

.phone-showcase-3d .phone-mockup-img.center {
    transform: scale(1);
    z-index: 20;
    opacity: 1;
}

.phone-showcase-3d .phone-mockup-img.right {
    transform: perspective(1200px) rotateY(-25deg) scale(0.85) translateX(-70px);
    opacity: 1;
}

.phone-showcase-3d .phone-mockup-img.left:hover {
    transform: scale(0.94) translateX(40px);
    opacity: 1;
    z-index: 30;
}

.phone-showcase-3d .phone-mockup-img.right:hover {
    transform: scale(0.94) translateX(-40px);
    opacity: 1;
    z-index: 30;
}

.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: 50px;
    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: 42px;
    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: 20px;
    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;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}





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

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

/* Section Divider with Tagline */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: linear-gradient(to bottom, #fafafa 50%, white 50%);
}

.divider-text {
    background: #fafafa;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.02em;
    border: 1px solid #e5e5e5;
    border-radius: 30px;
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 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: 10px;
}

.feature-icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.feature-icon svg {
    width: 58px;
    height: 58px;
    fill: #D32F2F;
}

/* Specific icons size adjustments */
.feature-icon img[alt="Extensive Cut Library"] {
    width: 58px;
    height: 58px;
}

.feature-icon img[alt="Multiple Cooking Methods"] {
    width: 58px;
    height: 58px;
}

.feature-icon img[alt="Cooking History"] {
    width: 50px;
    height: 50px;
}

.feature-icon img[alt="Favourites"] {
    width: 48px;
    height: 48px;
}

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

.feature-description {
    color: #666;
    line-height: 1.4;
    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: 16px;
    line-height: 1.4;
}

/* 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: 18px;
    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;
    margin-top: 40px;
}

.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-individual {
    height: 65px;
    width: auto;
    margin: 0 10px;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.download-btn-individual:hover {
    transform: scale(1.05);
}

.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-showcase:not(.phone-showcase-3d):not(.phone-showcase-overlap) .phone-mockup.center {
        transform: scale(1.10);
    }

    .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-showcase:not(.phone-showcase-3d):not(.phone-showcase-overlap) .phone-mockup.center {
        transform: scale(1.10);
    }

    /* Mobile Header - Center logo and wordmark */
    .nav {
        justify-content: center;
        text-align: center;
    }
    
    .nav-brand {
        position: static !important;
        left: auto !important;
        justify-content: center;
        display: flex;
        margin: 0 auto;
    }
    
    .app-icon {
        width: 53px;
        height: 53px;
        border-radius: 13px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Mobile Header - reduce height */
    .header {
        padding: 20px 0;
    }

    /* Mobile Navigation Below Header - Sticky */
    .mobile-nav {
        display: block;
        position: sticky;
        top: 93px; /* header height */
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid #eee;
        padding: 11px 20px;
        text-align: center;
        z-index: 999;
    }
    
    .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 {
        display: none;
    }
    
    .audience-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    /* Mobile padding adjustments */
    .target-audience {
        padding-top: 50px;
    }

    .description {
        padding-top: 42px;
    }
    
    /* 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-showcase:not(.phone-showcase-3d):not(.phone-showcase-overlap) .phone-mockup.center {
        transform: scale(1.10);
    }

    .container {
        padding: 0 16px;
    }

    .download-buttons-svg {
        width: 291px;
    }
}

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

.bold-text {
    font-weight: 700;
}

/* 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: 20px;
    border: none;
    background: none;
    text-align: left;
    font-size: 18px;
    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.2;
    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: 1.5%;
    left: 2.2%;
    right: 2.2%;
    bottom: 1.5%;
    border-radius: 30px;
    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: 80px;
}

.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;
    }
    
    .features-grid {
        display: grid !important;
    }
}

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

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

/* ========================================
   DESKTOP MOCKUP STYLES
   ======================================== */

/* Style A: 3D Perspective */
.phone-showcase.phone-showcase-3d {
    perspective: 1500px;
    perspective-origin: 50% 50%;
}

.phone-showcase.phone-showcase-3d .phone-mockup {
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.phone-showcase.phone-showcase-3d .phone-mockup.left {
    transform: rotateY(35deg) scale(0.86) translateX(80px) !important;
    opacity: 1 !important;
}

.phone-showcase.phone-showcase-3d .phone-mockup.center {
    transform: scale(0.98) !important;
    z-index: 20;
    opacity: 1 !important;
}

.phone-showcase.phone-showcase-3d .phone-mockup.right {
    transform: rotateY(-35deg) scale(0.86) translateX(-80px) !important;
    opacity: 1 !important;
}

.phone-showcase.phone-showcase-3d .phone-mockup.left:hover {
    transform: rotateY(25deg) scale(0.90) translateX(80px) !important;
    opacity: 1 !important;
}

.phone-showcase.phone-showcase-3d .phone-mockup.center:hover {
    transform: scale(1.02) translateY(-10px) !important;
}

.phone-showcase.phone-showcase-3d .phone-mockup.right:hover {
    transform: rotateY(-25deg) scale(0.90) translateX(-80px) !important;
    opacity: 1 !important;
}

/* Style B: Scale + Overlap */
.phone-showcase.phone-showcase-overlap {
    gap: 0 !important;
}

.phone-showcase.phone-showcase-overlap .phone-mockup {
    transition: transform 0.4s ease, opacity 0.4s ease, z-index 0s;
}

.phone-showcase.phone-showcase-overlap .phone-mockup.left {
    transform: scale(0.75) translateX(180px) !important;
    opacity: 0.7 !important;
    z-index: 5;
}

.phone-showcase.phone-showcase-overlap .phone-mockup.center {
    transform: scale(0.85) !important;
    z-index: 30;
    opacity: 1 !important;
}

.phone-showcase.phone-showcase-overlap .phone-mockup.right {
    transform: scale(0.75) translateX(-180px) !important;
    opacity: 0.7 !important;
    z-index: 5;
}

.phone-showcase.phone-showcase-overlap .phone-mockup.left:hover {
    transform: scale(0.78) translateX(180px) !important;
    opacity: 0.85 !important;
    z-index: 15;
}

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

.phone-showcase.phone-showcase-overlap .phone-mockup.right:hover {
    transform: scale(0.78) translateX(-180px) !important;
    opacity: 0.85 !important;
    z-index: 15;
}

/* ========================================
   MOBILE SLIDER STYLES
   ======================================== */

/* Style A: Subtle Wheel */
.phone-slider.phone-slider-subtle {
    overflow: visible !important;
    padding: 20px 0;
    max-width: 100% !important;
}

.phone-slider.phone-slider-subtle .phone-slider-container {
    overflow: visible !important;
    position: relative;
    height: 550px;
}

.phone-slider.phone-slider-subtle .phone-slider-track {
    overflow: visible !important;
    position: relative;
    width: 100% !important;
    height: 100%;
    display: block !important;
}

.phone-slider.phone-slider-subtle .phone-slide {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    width: 280px !important;
    margin-left: -140px;
    padding: 0 !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.4s ease;
    opacity: 0.5;
}

.phone-slider.phone-slider-subtle .phone-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    z-index: 10;
}

.phone-slider.phone-slider-subtle .phone-slide.prev {
    opacity: 0.6;
    transform: translateX(-95%) scale(0.85);
    z-index: 5;
}

.phone-slider.phone-slider-subtle .phone-slide.next {
    opacity: 0.6;
    transform: translateX(95%) scale(0.85);
    z-index: 5;
}

/* Hide slides that are not active, prev, or next */
.phone-slider.phone-slider-subtle .phone-slide:not(.active):not(.prev):not(.next) {
    opacity: 0;
    pointer-events: none;
}

/* Style B: Dramatic Wheel */
.phone-slider.phone-slider-dramatic {
    overflow: visible;
    padding: 20px 0;
    perspective: 1000px;
}

.phone-slider-dramatic .phone-slider-container {
    overflow: visible;
    position: relative;
    height: 550px;
    transform-style: preserve-3d;
}

.phone-slider-dramatic .phone-slider-track {
    overflow: visible;
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.phone-slider-dramatic .phone-slide {
    position: absolute;
    left: 50%;
    top: 0;
    width: 280px;
    margin-left: -140px;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.5s ease;
    transform-style: preserve-3d;
    opacity: 0.3;
}

.phone-slider-dramatic .phone-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0);
    z-index: 10;
}

.phone-slider-dramatic .phone-slide.prev {
    opacity: 0.5;
    transform: translateX(-110%) scale(0.75) rotateY(35deg);
    z-index: 5;
}

.phone-slider-dramatic .phone-slide.next {
    opacity: 0.5;
    transform: translateX(110%) scale(0.75) rotateY(-35deg);
    z-index: 5;
}

.phone-slider-dramatic .phone-slide:not(.active):not(.prev):not(.next) {
    opacity: 0;
    pointer-events: none;
}

/* Style C: Coverflow */
.phone-slider.phone-slider-coverflow {
    overflow: visible !important;
    padding: 20px 0;
    max-width: 100% !important;
    perspective: 1200px;
}

.phone-slider.phone-slider-coverflow .phone-slider-container {
    overflow: visible !important;
    position: relative;
    height: 455px;
    transform-style: preserve-3d;
}

.phone-slider.phone-slider-coverflow .phone-slider-track {
    overflow: visible !important;
    position: relative;
    width: 100% !important;
    height: 100%;
    display: block !important;
    transform-style: preserve-3d;
}

.phone-slider.phone-slider-coverflow .phone-slide {
    position: absolute !important;
    left: 50% !important;
    top: 0 !important;
    width: 232px !important;
    margin-left: -116px;
    padding: 0 !important;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0s;
    transform-style: preserve-3d;
    opacity: 0;
    visibility: hidden;
}

.phone-slider.phone-slider-coverflow .phone-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1) rotateY(0);
    z-index: 100;
}

.phone-slider.phone-slider-coverflow .phone-slide.prev {
    opacity: 0.7;
    visibility: visible;
    transform: translateX(-73%) scale(0.8) rotateY(45deg);
    z-index: 5;
}

.phone-slider.phone-slider-coverflow .phone-slide.next {
    opacity: 0.7;
    visibility: visible;
    transform: translateX(73%) scale(0.8) rotateY(-45deg);
    z-index: 5;
}

.phone-slider.phone-slider-coverflow .phone-slide:not(.active):not(.prev):not(.next) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 0;
}

.phone-slider.phone-slider-coverflow .phone-slide .phone-mockup-img {
    width: 100%;
    height: auto;
}

/* ========================================
   GET NOTIFY SECTION - 3 Style Options
   ======================================== */

/* Base Notify Section Styles */
.notify-section {
    max-width: 800px;
    margin: 48px auto 0;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    scroll-margin-top: calc(50vh - 150px);
}

.notify-title {
    font-size: 50px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.notify-text {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.notify-form {
    display: flex;
    flex-direction: row;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
}

.notify-input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 25px 0 0 25px;
    border: 2px solid #e5e5e5;
    border-right: none;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
    text-align: left;
}

.notify-input:focus {
    outline: none;
    border-color: #D32F2F;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.notify-input::placeholder {
    color: #999;
}

.notify-button {
    padding: 14px 24px;
    border-radius: 0 25px 25px 0;
    border: 2px solid #D32F2F;
    font-size: 16px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    background: linear-gradient(135deg, #D32F2F 0%, #B71C1C 100%);
    color: white;
    white-space: nowrap;
}

.notify-button:hover {
    background: linear-gradient(135deg, #B71C1C 0%, #8B0000 100%);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.notify-button:active {
    transform: scale(0.98);
}

.notify-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.notify-form.form-success .notify-button {
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    border-color: #4CAF50;
}

.notify-privacy {
    font-size: 13px;
    color: #999;
    margin-top: 16px;
    margin-bottom: 0;
}

/* -----------------------------------------
   STYLE 1: Subtle & Clean (Default)
   ----------------------------------------- */
.notify-style-subtle {
    background: transparent;
    border: none;
    padding: 30px 20px;
}

.notify-style-subtle .notify-input {
    border: 2px solid #e0e0e0;
    background: #f8f8f8;
}

.notify-style-subtle .notify-input:focus {
    background: white;
    border-color: #D32F2F;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .notify-section {
        margin: 36px auto 0;
        padding: 28px 16px;
        max-width: 100%;
    }

    .notify-title {
        font-size: 24px;
    }

    .notify-text {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .notify-form {
        flex-direction: row;
    }

    .notify-input {
        padding: 12px 14px;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 20px 0 0 20px;
        border-right: none;
    }

    .notify-button {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 0 20px 20px 0;
    }

    .notify-privacy {
        font-size: 12px;
    }
}
