/* Landing Page Styles - Matching iOS App Design */
@import url('assets/colors.css');

/* Landing Page Specific Overrides */
.landing-page {
    padding: 0;
    background: var(--background, #111111);
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(var(--slate-accent-rgb, 250, 250, 250), 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary, #999999);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--slate-accent, #fafafa);
}

.nav-link-cta {
    background: var(--slate-accent, #fafafa);
    color: var(--slate-accent-contrast, #111111);
    padding: 10px 20px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.nav-link-cta:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 140px 2rem 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary, #fafafa);
    letter-spacing: -0.02em;
    text-align: left;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-secondary, #999999);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.btn-primary {
    background: var(--slate-accent, #fafafa);
    color: var(--slate-accent-contrast, #111111);
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
}

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

.btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

.apple-icon {
    display: flex;
    align-items: center;
}

.hero-app-note {
    font-size: 15px;
    color: var(--text-secondary, #999999);
    margin: 0;
}

/* Phone Mockup */
.phone-mockup {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    aspect-ratio: 9 / 19.5;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 48px;
    padding: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
    border: 3px solid #333;
    overflow: hidden;
}

.mockup-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    display: block;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #111111;
    border-radius: 38px;
    overflow: hidden;
    position: relative;
}

.mockup-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.mockup-card {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 280px;
    border: 1px solid rgba(var(--slate-accent-rgb, 250, 250, 250), 0.12);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.mockup-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mockup-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fafafa, #999999);
}

.mockup-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.mockup-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    width: 80%;
}

.mockup-line-small {
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    width: 60%;
}

.mockup-qr {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    margin: 0 auto 1rem;
}

.mockup-accent-line {
    height: 4px;
    background: var(--slate-accent, #fafafa);
    border-radius: 2px;
    width: 100%;
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary, #fafafa);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-align: center;
    justify-content: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary, #999999);
    line-height: 1.5;
    text-align: center;
}

/* Features Section */
.features {
    padding: 100px 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--card-background, #1e1e1e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--slate-accent, #fafafa);
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(var(--slate-accent-rgb, 250, 250, 250), 0.12);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary, #fafafa);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--text-secondary, #999999);
    line-height: 1.6;
    font-size: 16px;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 2rem;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.step {
    background: var(--card-background, #1e1e1e);
    border: 1px solid rgba(var(--slate-accent-rgb, 250, 250, 250), 0.14);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--slate-accent, #fafafa);
    color: var(--slate-accent-contrast, #111111);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary, #fafafa);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-secondary, #999999);
    line-height: 1.6;
    font-size: 16px;
}

.step-arrow {
    font-size: 32px;
    color: var(--slate-accent, #fafafa);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
}

.pricing-header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.pricing-header-wrapper .section-header {
    margin: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-grid::-webkit-scrollbar {
    height: 0;
}

.pricing-grid::-webkit-scrollbar-track {
    background: transparent;
}

.pricing-grid::-webkit-scrollbar-thumb {
    background: transparent;
}

.pricing-grid::-webkit-scrollbar-thumb:hover {
    background: transparent;
}

.pricing-card {
    background: var(--card-background, #1e1e1e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: 0 16px 40px rgba(var(--slate-accent-rgb, 250, 250, 250), 0.12), 0 0 0 1px rgba(var(--slate-accent-rgb, 250, 250, 250), 0.18);
    border-color: rgba(var(--slate-accent-rgb, 250, 250, 250), 0.28);
}

.pricing-card-featured {
    border-color: var(--slate-accent, #fafafa);
    box-shadow: 0 12px 32px rgba(var(--slate-accent-rgb, 250, 250, 250), 0.14);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--slate-accent, #fafafa);
    color: var(--slate-accent-contrast, #111111);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

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

.pricing-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary, #fafafa);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--slate-accent, #fafafa);
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary, #999999);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--text-secondary, #999999);
    line-height: 1.6;
    font-size: 16px;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary, #fafafa);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
    margin-top: auto;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
}

.pricing-btn-primary {
    background: var(--slate-accent, #fafafa);
    color: var(--slate-accent-contrast, #111111);
    border-color: var(--slate-accent, #fafafa);
}

.pricing-btn-primary:hover {
    transform: scale(1.03);
}

/* Download Section */
.download {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 2rem;
    background: linear-gradient(135deg, rgba(var(--slate-accent-rgb, 250, 250, 250), 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.section-container > .download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-content {
    text-align: left;
}

.download-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary, #fafafa);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.download-subtitle {
    font-size: 20px;
    color: var(--text-secondary, #999999);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.app-store-badge {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-store-badge:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.download-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 560px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 28px;
    background: #000;
    border-radius: 0 0 30px 30px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fafafa 0%, #111111 50%);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.phone-screen::before {
    content: 'Slate Card';
    position: absolute;
    top: 50px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.phone-screen::after {
    content: 'Digital Business Card';
    position: absolute;
    bottom: 50px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.phone-screenshot {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    display: block;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 2rem 30px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary, #999999);
    font-size: 15px;
}

.footer-heading {
    color: var(--text-primary, #fafafa);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: var(--text-secondary, #999999);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 15px;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--slate-accent, #fafafa);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary, #999999);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 42px;
        text-align: left;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        display: none;
    }
    
    .pricing {
        padding: 80px 0;
    }
    
    .pricing-header-wrapper {
        max-width: 100%;
        padding: 0 2rem 4rem;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 320px);
        gap: 20px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 0 2rem 16px 2rem;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }
    
    .pricing-card {
        padding: 32px;
        flex-shrink: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    .pricing-name {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 40px;
    }
    
    .price-period {
        font-size: 14px;
    }
    
    .pricing-features li {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .pricing-btn {
        padding: 14px;
        font-size: 14px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 120px 1.5rem 60px;
    }
    
    .hero-title {
        font-size: 36px;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
        text-align: center;
        justify-content: center;
    }
    
    .section-subtitle {
        font-size: 16px;
        text-align: center;
    }
    
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-header-wrapper {
        padding: 0 1.5rem 4rem;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 280px);
        gap: 16px;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        padding: 0 1.5rem 16px 1.5rem;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }
    
    .pricing-card {
        padding: 24px;
        flex-shrink: 0;
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }
    
    .pricing-name {
        font-size: 18px;
        margin-bottom: 0.75rem;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .price-period {
        font-size: 12px;
    }
    
    .pricing-features li {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .pricing-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .pricing-btn {
        padding: 12px;
        font-size: 14px;
    }
    
    .btn-primary {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .nav-links {
        display: none; /* Mobile menu would go here */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .features,
    .how-it-works,
    .pricing,
    .download {
        padding: 60px 1.5rem;
    }
}

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

.nav-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary, #999999);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--slate-accent, #fafafa);
}

.nav-link-cta {
    background: var(--slate-accent, #fafafa);
    color: var(--slate-accent-contrast, #111111);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-link-cta:hover {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding: 120px 2rem 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary, #fafafa);
    text-align: left;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary, #999999);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.btn-primary {
    background: var(--slate-accent, #fafafa);
    color: var(--slate-accent-contrast, #111111);
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

.apple-icon {
    display: flex;
    align-items: center;
}

.hero-app-note {
    font-size: 0.9rem;
    color: var(--text-secondary, #999999);
    margin: 0;
}

/* Phone Mockup */
.phone-mockup {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    aspect-ratio: 9 / 19.5;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 45px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid #333;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #111111;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.mockup-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.mockup-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 280px;
    border: 1px solid rgba(var(--slate-accent-rgb, 250, 250, 250), 0.14);
}

.mockup-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mockup-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fafafa, #999999);
}

.mockup-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.mockup-line {
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    width: 80%;
}

.mockup-line-small {
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    width: 60%;
}

.mockup-qr {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    margin: 0 auto 1rem;
}

.mockup-accent-line {
    height: 4px;
    background: var(--slate-accent, #fafafa);
    border-radius: 2px;
    width: 100%;
}

/* Sections */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #fafafa);
    margin-bottom: 1rem;
    text-align: center;
    justify-content: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary, #999999);
    text-align: center;
}

/* Features Section */
.features {
    padding: 80px 2rem;
    background: rgba(0, 0, 0, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-background, #1e1e1e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--slate-accent, #fafafa);
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(var(--slate-accent-rgb, 250, 250, 250), 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary, #fafafa);
    margin-bottom: 0.75rem;
    text-align: center;
}

.feature-description {
    color: var(--text-secondary, #999999);
    line-height: 1.6;
    text-align: center;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 2rem;
}

.steps-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.step {
    background: var(--card-background, #1e1e1e);
    border: 1px solid rgba(var(--slate-accent-rgb, 250, 250, 250), 0.14);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--slate-accent, #fafafa);
    color: var(--slate-accent-contrast, #111111);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary, #fafafa);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-secondary, #999999);
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: var(--slate-accent, #fafafa);
}

/* Pricing Section */
.pricing {
    padding: 80px 2rem;
    background: rgba(0, 0, 0, 0.3);
}

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

.pricing-card {
    background: var(--card-background, #1e1e1e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: 0 12px 32px rgba(var(--slate-accent-rgb, 250, 250, 250), 0.12), 0 0 0 1px rgba(var(--slate-accent-rgb, 250, 250, 250), 0.16);
    border-color: rgba(var(--slate-accent-rgb, 250, 250, 250), 0.24);
}

.pricing-card-featured {
    border-color: var(--slate-accent, #fafafa);
    box-shadow: 0 8px 24px rgba(var(--slate-accent-rgb, 250, 250, 250), 0.12);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--slate-accent, #fafafa);
    color: var(--slate-accent-contrast, #111111);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.pricing-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary, #fafafa);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate-accent, #fafafa);
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-secondary, #999999);
}

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

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary, #999999);
    line-height: 1.6;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary, #fafafa);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
}

.pricing-btn-primary {
    background: var(--slate-accent, #fafafa);
    color: var(--slate-accent-contrast, #111111);
    border-color: var(--slate-accent, #fafafa);
}

.pricing-btn-primary:hover {
    transform: scale(1.03);
}

/* Download Section */
.download {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 2rem;
}

.section-container > .download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary, #fafafa);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.download-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary, #999999);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 2rem 30px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary, #999999);
    font-size: 0.95rem;
}

.footer-heading {
    color: var(--text-primary, #fafafa);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: var(--text-secondary, #999999);
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--slate-accent, #fafafa);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary, #999999);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .section-container > .download-content {
        grid-template-columns: 1fr;
    }
    
    .download-visual {
        margin-top: 3rem;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: left;
    }
    
    .section-title {
        font-size: 2rem;
        text-align: center;
        justify-content: center;
    }
    
    .nav-links {
        display: none; /* Mobile menu would go here */
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .phone-frame {
        width: 180px;
        height: 360px;
    }
}
