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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 50%, #e8f4f0 100%);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', 'SF Rounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

p {
    font-size: 1.125rem;
    color: #6e6e73;
    line-height: 1.6;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #218838 0%, #1ea085 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
}

.btn-secondary {
    background-color: #f5f5f7;
    color: #1d1d1f;
}

.btn-secondary:hover {
    background-color: #e5e5e7;
}

.btn-outline {
    background-color: transparent;
    color: #28a745;
    border: 1px solid #28a745;
}

.btn-outline:hover {
    background-color: #28a745;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
}

.app-store-icon {
    font-size: 1.25rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e5e7;
    z-index: 1000;
    padding: 16px 0;
}

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

.logo-text {
    font-family: 'Nunito', 'SF Rounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    text-decoration: none;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.2s ease;
    letter-spacing: -0.02em;
}

.logo-text:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #28a745;
}

.nav-cta {
    display: flex;
    gap: 12px;
}

.app-store-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
}

.app-store-icon {
    font-size: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #1d1d1f;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f6 50%, #f8fffe 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%2328a745" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%2320c997" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%2328a745" opacity="0.1"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 120px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
    line-height: 1.1;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6e6e73;
    margin-bottom: 40px;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-stats {
    display: flex;
    gap: 48px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
}

.stat-label {
    font-size: 0.875rem;
    color: #6e6e73;
    font-weight: 600;
    margin-top: 4px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Carousel */
.hero-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: end;
    max-width: 800px;
    margin-left: auto;
    padding-left: 40px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 24px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0px;
    padding: 0px;
}

.carousel-slide {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
    margin: 0 -22px;
}

.hero-screenshot {
    width: 300px;
    height: 560px;
    object-fit: contain;
    object-position: bottom center;
    /* Hide only the phone status bar area while keeping the full bottom visible */
    clip-path: inset(24px 0 0 0 round 20px);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
    cursor: pointer;
    margin-left: -18px;
    margin-right: -18px;
    border: 1px solid #e5e5e7;
}

.hero-screenshot:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-screenshot:active {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.screenshot-caption {
    font-size: 1.125rem;
    color: #1d1d1f;
    font-weight: 700;
    line-height: 1.3;
    max-width: 300px;
    text-align: center;
    margin-top: 8px;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e5e5e7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    transform: scale(1.2);
}

.dot:hover {
    background: #28a745;
    transform: scale(1.1);
}

/* App Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-screen {
    width: 320px;
    height: 600px;
    background-color: #1d1d1f;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.mockup-header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    background-color: #6e6e73;
    border-radius: 50%;
}

.mockup-content {
    background-color: #f5f5f7;
    border-radius: 16px;
    padding: 20px;
    height: calc(100% - 40px);
}

.mockup-card {
    background-color: white;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mockup-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e5e5e7;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background-color: #28a745;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.wallet-amount,
.earn-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 8px;
}

.mockup-card p {
    font-size: 0.875rem;
    color: #6e6e73;
    margin: 0;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%2328a745" opacity="0.05"/><circle cx="90" cy="30" r="1.5" fill="%2320c997" opacity="0.05"/><circle cx="30" cy="90" r="1" fill="%2328a745" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    margin-bottom: 16px;
    color: #1d1d1f;
}

.section-header p {
    font-size: 1.25rem;
    color: #6e6e73;
}

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

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(40, 167, 69, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(40, 167, 69, 0.15);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

/* Color-coded feature cards */
.feature-card:nth-child(1)::before { background: linear-gradient(90deg, #ffc107 0%, #ffb300 100%); } /* Earn - Yellow */
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, #007bff 0%, #0056b3 100%); } /* Save - Blue */
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, #6f42c1 0%, #5a2d91 100%); } /* Grow - Purple */
.feature-card:nth-child(4)::before { background: linear-gradient(90deg, #28a745 0%, #20c997 100%); } /* Safe - Green */
.feature-card:nth-child(5)::before { background: linear-gradient(90deg, #fd7e14 0%, #e55a00 100%); } /* Responsibility - Orange */
.feature-card:nth-child(6)::before { background: linear-gradient(90deg, #e83e8c 0%, #d63384 100%); } /* Peace of Mind - Pink */

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: inline-block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
}

.feature-card h3 {
    margin-bottom: 16px;
    color: #1d1d1f;
}

.feature-card p {
    color: #6e6e73;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f6 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="15" cy="15" r="1" fill="%2328a745" opacity="0.08"/><circle cx="85" cy="25" r="1.5" fill="%2320c997" opacity="0.08"/><circle cx="25" cy="85" r="1" fill="%2328a745" opacity="0.08"/></svg>');
    pointer-events: none;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1); opacity: 0.3; }
}

.step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(40, 167, 69, 0.4);
}

.step h3 {
    margin-bottom: 16px;
    color: #1d1d1f;
}

.step p {
    color: #6e6e73;
    line-height: 1.6;
}

/* App Download Section */
.app-download-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.app-screenshots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.screenshot-card {
    perspective: 1000px;
}

.app-screenshot {
    width: 200px;
    height: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: rotateY(-15deg);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.screenshot-card:nth-child(2) .app-screenshot {
    transform: rotateY(0deg);
}

.screenshot-card:nth-child(3) .app-screenshot {
    transform: rotateY(15deg);
}

.screenshot-card:hover .app-screenshot {
    transform: rotateY(0deg) scale(1.05);
}



.download-cta {
    text-align: center;
}

.download-cta h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.download-cta p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: #6e6e73;
}

.app-store-rating {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #ffd700;
    font-size: 1.25rem;
}

.app-store-rating span {
    font-size: 0.875rem;
    color: #6e6e73;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: #ffffff;
}

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

.pricing-card {
    background-color: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background-color: #007aff;
    color: white;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff3b30;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.price {
    margin-bottom: 32px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
}

.price-period {
    font-size: 1rem;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 1rem;
}

.pricing-card.featured .pricing-features li {
    color: white;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/><circle cx="75" cy="35" r="1.5" fill="white" opacity="0.1"/><circle cx="45" cy="75" r="1" fill="white" opacity="0.1"/></svg>');
    pointer-events: none;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta .btn-primary {
    background-color: white;
    color: #28a745;
    margin-bottom: 16px;
}

.cta .btn-primary:hover {
    background-color: #f5f5f7;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background-color: #1d1d1f;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 24px;
    color: white;
}

.footer-section p {
    color: #86868b;
    margin-bottom: 24px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #86868b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #86868b;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: #86868b;
    font-size: 0.875rem;
}

/* Mobile-First Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid #e5e5e7;
        z-index: 1000;
        padding: 12px 0;
    }

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

    .logo-text {
        font-size: 2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    /* Mobile menu when active */
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid #e5e5e7;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .nav-menu.active a {
        padding: 12px 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: #1d1d1f;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: color 0.2s ease;
    }

    .nav-menu.active a:hover {
        color: #28a745;
    }

    .nav-menu.active a:last-child {
        border-bottom: none;
    }

    .nav-cta.active {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: calc(100% + 200px); /* Position below nav-menu */
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid #e5e5e7;
        padding: 20px;
        gap: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    /* Hero Section - Complete Mobile Redesign */
    .hero {
        padding: 100px 0 60px;
        background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f6 50%, #f8fffe 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-container {
        max-width: 100%;
        margin: 0;
        padding: 0 20px;
        display: block;
        text-align: left;
    }

    .hero-content {
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 2.25rem;
        font-weight: 800;
        line-height: 1.2;
        color: #1d1d1f;
        margin-bottom: 20px;
        text-align: left;
        max-width: 100%;
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        color: #6e6e73;
        line-height: 1.5;
        margin-bottom: 32px;
        text-align: left;
        max-width: 100%;
    }

    .hero-cta {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 40px;
    }

    .hero-cta .btn-primary {
        padding: 14px 24px;
        font-size: 1rem;
    }

    /* Mobile Hero Carousel */
    .hero-visual {
        width: 100%;
    }

    .hero-carousel {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .carousel-container {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        border-radius: 16px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .carousel-container::-webkit-scrollbar {
        display: none;
    }

    .carousel-track {
        display: flex;
        gap: 16px;
        padding: 0 20px;
        width: max-content;
    }

    .carousel-slide {
        flex: 0 0 auto;
        width: 280px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        scroll-snap-align: center;
    }

    .hero-screenshot {
        width: 260px;
        height: 480px;
        object-fit: contain;
        object-position: bottom center;
        clip-path: inset(24px 0 0 0 round 16px);
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        border: 1px solid #e5e5e7;
        margin-bottom: 12px;
    }

    .screenshot-caption {
        font-size: 0.85rem;
        color: #6e6e73;
        line-height: 1.3;
        max-width: 260px;
        text-align: center;
        margin: 0 auto;
        padding: 0 8px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-dots {
        display: none;
    }

    .dot {
        display: none;
    }

    /* Other sections */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .app-download-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-screenshots {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .app-screenshot {
        width: 280px;
        height: 520px;
        margin: 0 auto;
    }

    .screenshot-card:nth-child(1) .app-screenshot,
    .screenshot-card:nth-child(2) .app-screenshot,
    .screenshot-card:nth-child(3) .app-screenshot {
        transform: rotateY(0deg);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }

    .logo-text {
        font-size: 1.75rem;
    }

    .hero-container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .carousel-slide {
        width: 240px;
    }

    .hero-screenshot {
        width: 220px;
        height: 420px;
    }

    .screenshot-caption {
        font-size: 0.8rem;
        max-width: 220px;
        padding: 0 6px;
    }

    .features,
    .how-it-works,
    .pricing,
    .cta {
        padding: 60px 0;
    }

    .description-text {
        font-size: 1rem;
    }

    .mockup-screen {
        width: 280px;
        height: 520px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #28a745;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f6 50%, #e8f4f0 100%);
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e5e7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #1d1d1f;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.875rem;
    color: #6e6e73;
}

.rating {
    color: #ffd700;
    font-size: 1.125rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.contact-info p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    color: #6e6e73;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 50%;
}

.contact-method h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1d1d1f;
}

.contact-method a {
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.contact-method p {
    font-size: 0.875rem;
    color: #6e6e73;
    margin: 0;
}

.contact-faq h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.faq-list details {
    background: #f8fffe;
    border: 1px solid #e5e5e7;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: #1d1d1f;
}

.faq-list p {
    margin-top: 8px;
    color: #6e6e73;
}

.contact-form {
    background: #f8fffe;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e5e5e7;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive adjustments for testimonials and contact */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 24px;
    }
}
    outline-offset: 2px;
}

/* Animation for progress bar */
@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: 75%;
    }
}

.progress-fill {
    animation: progressFill 2s ease-out;
}
