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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: #88B04B;
}

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

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #88B04B;
}

/* Buttons */
.cta-button {
    background: #88B04B;
    color: white !important;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid #88B04B;
}

.cta-button:hover {
    background: #759938;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(136, 176, 75, 0.3);
}

/* Ensure header CTA buttons have white text */
.nav-links .cta-button {
    color: white !important;
}

.nav-links .cta-button:visited,
.nav-links .cta-button:link {
    color: white !important;
}

.cta-button.large {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 12px;
}

.cta-button.outline {
    background: transparent;
    color: #88B04B;
    border: 2px solid #88B04B;
}

.cta-button.outline:hover {
    background: #88B04B;
    color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f2937;
}

.highlight {
    color: #88B04B;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(136, 176, 75, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #374151;
}

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

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

/* Text highlighting for key phrases */
.text-highlight {
    color: #88B04B;
    font-weight: 700;
    background: linear-gradient(135deg, #88B04B15, #88B04B10);
    padding: 2px 4px;
    border-radius: 4px;
}

/* Text highlighting on green backgrounds */
.solution .text-highlight {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 800;
}

.cta-note {
    color: #6b7280;
    font-size: 14px;
}

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

.phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1f2937, #374151);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.screenshot {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #f1f5f9;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.problem-item {
    text-align: center;
    padding: 40px 24px;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.problem-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.problem-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.problem-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: #88B04B;
    color: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.solution h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
}

.solution p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.check {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.framework-img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

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

.step-number {
    width: 64px;
    height: 64px;
    background: #88B04B;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

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

/* Features */
.features {
    padding: 80px 0;
    background: #f9fafb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

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

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

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.5;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    border-color: #88B04B;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(136, 176, 75, 0.1);
}

.pricing-card.featured {
    border-color: #88B04B;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(136, 176, 75, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #88B04B;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1f2937;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #88B04B;
    margin-bottom: 8px;
}

.period {
    font-size: 18px;
    font-weight: 500;
    color: #6b7280;
}

.savings {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    padding: 8px 0;
    color: #6b7280;
    border-bottom: 1px solid #f3f4f6;
}

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

/* Pricing Card Buttons */
.pricing-card .cta-button {
    background: #88B04B !important;
    color: white !important;
    border: 2px solid #88B04B !important;
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.pricing-card .cta-button.outline {
    background: transparent !important;
    color: #88B04B !important;
    border: 2px solid #88B04B !important;
}

.pricing-card .cta-button:hover {
    background: #759938 !important;
    color: white !important;
    border-color: #759938 !important;
}

.pricing-card .cta-button.outline:hover {
    background: #88B04B !important;
    color: white !important;
}

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

.download h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.download p {
    font-size: 18px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.download-btn img,
.download-badge {
    height: 60px;
    transition: transform 0.3s ease;
}

.download-btn:hover img,
.download-btn:hover .download-badge {
    transform: scale(1.05);
}

/* Launch Status Styling */
.launch-status {
    background: linear-gradient(135deg, #88B04B, #6a9333);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(136, 176, 75, 0.3);
}

/* Launch Info Cards */
.launch-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.launch-card {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.launch-card h3 {
    margin-bottom: 8px;
    color: #374151;
}

.launch-card p {
    color: #6b7280;
    margin-bottom: 16px;
}

.status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.review {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.planned {
    background: #e5e7eb;
    color: #6b7280;
}

/* Screenshot Carousel */
.screenshot-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.screenshot-carousel .screenshot {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.screenshot-carousel .screenshot.active {
    opacity: 1;
    position: relative;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(136, 176, 75, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #88B04B;
    transform: scale(1.2);
}

.dot:hover {
    background: #88B04B;
    transform: scale(1.1);
}

.coming-soon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-weight: 500;
}

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

.download-note {
    color: #9ca3af;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 64px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-description {
    color: #9ca3af;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.link-group h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.link-group a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: #88B04B;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .nav-links {
        display: none; /* Mobile menu can be added later */
    }
    
    .hero-cta {
        align-items: center; /* Center button on mobile */
        width: 100%;
    }
    
    .hero-text {
        text-align: center; /* Center all hero text on mobile */
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.problem-item,
.feature-card,
.step {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling improvements */
html {
    scroll-padding-top: 80px;
}

/* Focus states for accessibility */
.cta-button:focus,
.nav-links a:focus {
    outline: 2px solid #88B04B;
    outline-offset: 2px;
}