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

body {
    font-family: 'DIN Round', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #3c3c3c;
    background: #ffffff;
}

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

/* Navigation */
.navbar {
    background: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #e5e5e5;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
}

.logo {
    font-size: 40px;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.brand-name {
    background: linear-gradient(90deg, #DC143C, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
    letter-spacing: -1px;
}

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

.nav-links a {
    text-decoration: none;
    color: #3c3c3c;
    font-weight: 800;
    font-size: 16px;
    transition: color 0.2s;
    border-bottom: 3px solid transparent;
    padding-bottom: 4px;
}

.nav-links a:hover {
    color: #DC143C;
    border-bottom-color: #DC143C;
}

.cta-button {
    background: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%);
    color: white !important;
    padding: 14px 32px;
    border-radius: 16px;
    border: none;
    font-weight: 900;
    transition: transform 0.2s, box-shadow 0.2s;
    border-bottom: none !important;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

/* Hero Section */
.hero {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #FFF5E6 0%, #FFEFD5 50%, #FFE4B5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #3c3c3c;
    letter-spacing: -2px;
}

.hero-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, #DC143C, #FF6B35, #FFD700);
    border-radius: 4px;
    margin-top: 16px;
}

.hero-subtitle {
    font-size: 22px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 56px;
}

.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 20px 40px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 900;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.primary-btn {
    background: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.3);
    border-bottom: 4px solid #B8121F;
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(220, 20, 60, 0.5);
}

.primary-btn:active {
    transform: translateY(-2px);
}

.secondary-btn {
    background: #ffffff;
    color: #DC143C;
    border: 4px solid #DC143C;
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.2);
}

.secondary-btn:hover {
    background: #FFF5F5;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.3);
}

.hero-stats {
    display: flex;
    gap: 56px;
}

.stat {
    text-align: center;
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    border: 3px solid #FFD700;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, #DC143C, #FF6B35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Image/Mockup */
.phone-mockup {
    width: 350px;
    height: 700px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    border-radius: 48px;
    padding: 14px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6B2E89, #3D1F5C);
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-preview {
    text-align: center;
    padding: 40px;
}

.preview-word {
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.preview-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.audio-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.audio-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.preview-sub {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    margin-bottom: 32px;
}

.preview-icon {
    margin-top: 20px;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.namaste-icon .hand-left {
    animation: handMoveLeft 2s ease-in-out infinite;
    transform-origin: 70px 90px;
}

.namaste-icon .hand-right {
    animation: handMoveRight 2s ease-in-out infinite;
    transform-origin: 90px 90px;
}

@keyframes handMoveLeft {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(-2deg);
    }
}

@keyframes handMoveRight {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

.namaste-icon .glow-circle {
    animation: pulse 2s ease-in-out infinite;
}

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

.namaste-icon .sparkle {
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 { animation-delay: 0s; }
.sparkle-2 { animation-delay: 0.6s; }
.sparkle-3 { animation-delay: 1.2s; }
.sparkle-4 { animation-delay: 1.8s; }
.sparkle-5 { animation-delay: 2.4s; }

@keyframes sparkleFloat {
    0%, 100% {
        opacity: 0;
        transform: translateY(0px) scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px) scale(1);
    }
}

.preview-emoji {
    font-size: 120px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: linear-gradient(180deg, #E8F5FF 0%, #FFEFD5 100%);
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #3c3c3c;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    font-size: 22px;
    color: #666;
    margin-bottom: 80px;
    font-weight: 600;
}

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

.feature-card {
    background: white;
    border: 4px solid #3c3c3c;
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 8px 8px 0 0 #FFD700;
}

.feature-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 0 #DC143C;
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 3px solid #3c3c3c;
}

.feature-card h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #3c3c3c;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-weight: 600;
    font-size: 16px;
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(135deg, #FFE4E1 0%, #FFF5EE 50%, #E8F5FF 100%);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 56px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 4px solid #3c3c3c;
    box-shadow: 8px 8px 0 0 #38A169;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #38A169, #2F855A);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    flex-shrink: 0;
    border: 4px solid #3c3c3c;
    box-shadow: 4px 4px 0 0 #FFD700;
}

.step-content h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #3c3c3c;
}

.step-content p {
    color: #666;
    font-size: 18px;
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 600;
}

/* Pricing */
.pricing {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFF5E6 0%, #E8F5FF 100%);
}

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

.pricing-card {
    background: white;
    border: 5px solid #3c3c3c;
    border-radius: 32px;
    padding: 48px;
    position: relative;
    box-shadow: 10px 10px 0 0 #FFD700;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 14px 14px 0 0 #DC143C;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%);
    color: white;
    border-color: #3c3c3c;
    transform: scale(1.05);
    box-shadow: 12px 12px 0 0 #FFD700;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translate(-4px, -4px);
    box-shadow: 16px 16px 0 0 #FFD700;
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #3c3c3c;
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    border: 3px solid #3c3c3c;
    letter-spacing: 1px;
}

.plan-name {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.plan-price {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 32px;
    letter-spacing: -2px;
}

.plan-price span {
    font-size: 24px;
    font-weight: 700;
}

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

.plan-features li {
    padding: 16px 0;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
    border-bottom: 2px solid rgba(60, 60, 60, 0.1);
}

.pricing-card.featured .plan-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-button {
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    border: 4px solid #3c3c3c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-button.primary {
    background: #FFD700;
    color: #3c3c3c;
}

.plan-button.outline {
    background: transparent;
    border: 4px solid #DC143C;
    color: #DC143C;
}

.plan-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #E8F5FF 0%, #FFEFD5 100%);
}

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

.testimonial-card {
    background: white;
    border: 4px solid #3c3c3c;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 8px 8px 0 0 #38A169;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 0 #DC143C;
}

.stars {
    font-size: 24px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #3c3c3c;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
    font-weight: 600;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #3c3c3c;
}

.author-name {
    font-weight: 900;
    font-size: 18px;
    color: #3c3c3c;
}

.author-title {
    font-size: 14px;
    color: #666;
    font-weight: 700;
}

/* Download CTA */
.download-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.download-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.download-cta h2 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.download-cta p {
    font-size: 24px;
    margin-bottom: 56px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.download-buttons {
    display: flex;
    gap: 32px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    color: #3c3c3c;
    padding: 20px 40px;
    border-radius: 20px;
    border: 4px solid #3c3c3c;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 6px 6px 0 0 #FFD700;
}

.store-button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 0 #FFD700;
}

.store-icon {
    font-size: 40px;
}

.store-text {
    font-size: 12px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
}

.store-name {
    font-size: 22px;
    font-weight: 900;
    text-align: left;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFEFD5 0%, #E8F5FF 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 64px;
}

.contact-form {
    background: white;
    padding: 48px;
    border-radius: 24px;
    border: 4px solid #3c3c3c;
    box-shadow: 12px 12px 0 0 rgba(220, 20, 60, 0.2);
}

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

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    border: 3px solid #e5e5e5;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 600;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #DC143C;
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.form-input::placeholder {
    color: #999;
    font-weight: 500;
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233c3c3c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 12px;
    padding-right: 48px;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, #DC143C 0%, #FF6B35 100%);
    color: white;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

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

.contact-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 4px solid #3c3c3c;
    box-shadow: 8px 8px 0 0 #FFD700;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 0 #FFD700;
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 900;
    color: #3c3c3c;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 16px;
    color: #666;
    font-weight: 600;
}

.contact-card a {
    color: #DC143C;
    text-decoration: none;
    font-weight: 700;
}

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

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* Footer */
.footer {
    background: #3c3c3c;
    color: white;
    padding: 80px 0 32px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 14px;
    transition: color 0.2s;
    font-weight: 700;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

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

    .nav-links {
        display: none;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 40px;
    }
}


/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
}

.logo {
    font-size: 32px;
}

.brand-name {
    background: linear-gradient(135deg, #11998E, #38EF7D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #11998E;
}

.cta-button {
    background: linear-gradient(135deg, #11998E, #38EF7D);
    color: white !important;
    padding: 10px 24px;
    border-radius: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 153, 142, 0.3);
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #f8fffe 0%, #ffffff 100%);
}

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

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #11998E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.primary-btn, .secondary-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.primary-btn {
    background: linear-gradient(135deg, #11998E, #38EF7D);
    color: white;
    box-shadow: 0 4px 16px rgba(17, 153, 142, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 153, 142, 0.4);
}

.secondary-btn {
    background: white;
    color: #11998E;
    border: 2px solid #11998E;
}

.secondary-btn:hover {
    background: #f8fffe;
    transform: translateY(-2px);
}

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

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #11998E;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

/* Phone Mockup */
.phone-mockup {
    background: linear-gradient(135deg, #1a1a2e, #0f0f1e);
    border-radius: 32px;
    padding: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    max-width: 360px;
    margin: 0 auto;
}

.mockup-screen {
    background: linear-gradient(180deg, #2a1a4a, #1a0a2e);
    border-radius: 24px;
    overflow: hidden;
}

.app-preview {
    padding: 48px 24px;
    text-align: center;
}

.preview-header {
    margin-bottom: 16px;
}

.preview-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 16px;
}

.preview-word {
    font-size: 48px;
    font-weight: 900;
    color: white;
    display: block;
}

.preview-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    margin-bottom: 32px;
}

.preview-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.option-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px 12px;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #666;
    margin-bottom: 64px;
}

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

.feature-card {
    background: #f8fffe;
    border: 1px solid rgba(17, 153, 142, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(17, 153, 142, 0.15);
}

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

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

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

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #11998E, #38EF7D);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 24px;
}

.step-example {
    background: white;
    border: 1px solid rgba(17, 153, 142, 0.15);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.example-emoji {
    font-size: 48px;
}

.example-text .nepali {
    font-size: 32px;
    font-weight: 800;
    color: #11998E;
}

.example-text .english {
    font-size: 16px;
    color: #666;
}

.practice-preview {
    text-align: center;
}

.practice-preview .question {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.practice-preview .word {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.mini-options {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.mini-options span {
    padding: 8px 16px;
    border-radius: 8px;
    background: #f0f0f0;
    font-size: 14px;
    font-weight: 600;
}

.progress-preview {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.progress-stat {
    padding: 12px 16px;
    background: linear-gradient(135deg, #11998E, #38EF7D);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
}

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

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

.pricing-card {
    background: #f8fffe;
    border: 2px solid rgba(17, 153, 142, 0.15);
    border-radius: 24px;
    padding: 40px;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(180deg, #11998E 0%, #0a7d73 100%);
    color: white;
    border-color: #11998E;
    transform: scale(1.05);
    box-shadow: 0 24px 64px rgba(17, 153, 142, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #1a1a1a;
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.plan-name {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.plan-price {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 32px;
}

.plan-price span {
    font-size: 20px;
    font-weight: 600;
    opacity: 0.7;
}

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

.plan-features li {
    padding: 12px 0;
    font-size: 16px;
    line-height: 1.5;
}

.plan-button {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.plan-button.primary {
    background: white;
    color: #11998E;
}

.plan-button.outline {
    background: transparent;
    border: 2px solid #11998E;
    color: #11998E;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fffe 0%, #ffffff 100%);
}

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

.testimonial-card {
    background: white;
    border: 1px solid rgba(17, 153, 142, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    font-size: 40px;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
}

.author-title {
    font-size: 14px;
    color: #666;
}

/* Download CTA */
.download-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #11998E, #38EF7D);
    text-align: center;
    color: white;
}

.download-cta h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.download-cta p {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.9;
}

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

.store-button {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    color: #1a1a1a;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.store-icon {
    font-size: 40px;
}

.store-text {
    font-size: 12px;
    text-align: left;
}

.store-name {
    font-size: 20px;
    font-weight: 800;
    text-align: left;
}

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

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #38EF7D;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

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

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

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

    .nav-links {
        display: none;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}
