
        * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    overflow-x: hidden;
}

/* Typography */
.h1 { 
    font-size: 28px; 
    font-weight: 700; 
    color: #2C2C2C; 
    line-height: 1.2; 
}

.h2 { 
    font-size: 24px; 
    font-weight: 600; 
    color: #2C2C2C; 
    line-height: 1.3; 
    text-align: center; 
    margin-bottom: 16px;
}

.h3 { 
    font-size: 20px; 
    font-weight: 500; 
    color: #2C2C2C; 
    line-height: 1.4; 
    margin-bottom: 12px;
}

.body { 
    font-size: 16px; 
    font-weight: 400; 
    color: #2C2C2C; 
    text-align: center; 
    color: #666666; 
    max-width: 600px; 
    margin: 0 auto;
}

.caption { 
    font-size: 14px; 
    font-weight: 400; 
    color: #666666; 
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C2C2C;
    height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #E6C200, #E6941A);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    border: 2px solid #FFD700;
    height: 48px;
    padding: 0 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #FFD700;
    color: #2C2C2C;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Cards */
.card {
    background: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FF6B6B, #4ECDC4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #FFD700;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2C2C2C;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2C2C2C;
    font-weight: 700;
}

/* Hero Section - Con imagen de fondo */
.hero {
    background-image: url('../photos/friends3.jpeg');
    background-size: cover;
    background-position: 90% 30%;
    background-repeat: no-repeat;
    padding: 150px 0 110px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Overlay oscuro para legibilidad */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 24px;
    animation: slideInUp 0.8s ease-out;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7);
    line-height: 1.1;
}

.hero p {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 40px;
    opacity: 0.95;
    animation: slideInUp 0.8s ease-out 0.2s both;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
}

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

/* Hero specific button styles */
.hero .btn-primary {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C2C2C;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    font-size: 18px;
    height: 56px;
    padding: 0 32px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background: linear-gradient(135deg, #FFA500, #FF8A00);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
    backdrop-filter: blur(10px);
    font-size: 18px;
    height: 56px;
    padding: 0 32px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero .btn-secondary:hover {
    background: #FFFFFF;
    color: #2C2C2C;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

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

.problem-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: 20px;
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B, #EE5A52);
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: pulse 3s ease-in-out infinite;
}


/* Video Section */
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2);
    background: transparent;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    border: none;
}

.video-section {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.video-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.video-title {
    color: #2C2C2C;
    margin-bottom: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: none;
}

.video-subtitle {
    color: #666666;
    margin-bottom: 60px;
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
}

.video-container {
    position: relative;
    display: inline-block;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.2);
    background: transparent;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.video-container:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    max-width: 100%;
}

/* Decorative elements */
.video-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

.video-decoration-1 {
    width: 120px;
    height: 120px;
    top: -20px;
    left: -30px;
    animation-delay: 0s;
}

.video-decoration-2 {
    width: 80px;
    height: 80px;
    bottom: -10px;
    right: -20px;
    animation-delay: 2s;
}

.video-decoration-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: -40px;
    animation-delay: 4s;
}

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

/* Video Stats */
.video-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: #2C2C2C;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    margin-bottom: 8px;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1rem;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-section {
        padding: 80px 0;
    }
    
    .video-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .video-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .video-wrapper {
        margin-bottom: 60px;
    }
    
    .video-container {
        border-radius: 15px;
    }
    
    .video-container video {
        border-radius: 15px;
    }
    
    .video-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .video-decoration {
        opacity: 0.5;
    }
}

@media (max-width: 480px) {
    .video-title {
        font-size: 1.8rem;
    }
    
    .video-stats {
        gap: 30px;
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
}



/* Solution Section */
.solution {
    background-color: #f4f4f4; /* Gris muy claro */
    padding-top: 60px;
    padding-bottom: 60px;
}



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

.feature-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #2C2C2C;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

/* App Screenshots Section */
.app-screenshots {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F4FD 100%);
}

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

.screenshot-card {
    background: #FFFFFF;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.screenshot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-card:hover::before {
    opacity: 1;
}

.screenshot-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.screenshot-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.screenshot-card:hover .screenshot-img {
    transform: scale(1.05);
}

.screenshot-content {
    padding: 32px 24px;
    text-align: center;
}

.screenshot-content .h3 {
    color: #2C2C2C;
    margin-bottom: 16px;
    font-size: 18px;
}

.screenshot-content .caption {
    color: #666666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
}

.pricing .h2,
.pricing .body {
    color: #FFFFFF;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: #FFFFFF;
    border: 2px solid #E5E5E5;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.pricing-card.premium {
    border-color: #FFD700;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFEF7 100%);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.pricing-card.premium::before {
    content: "Más Popular";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C2C2C;
    padding: 8px 32px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.plan-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.plan-icon.free {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.plan-icon.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C2C2C;
}

.plan-title {
    font-size: 28px;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 12px;
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    color: #2C2C2C;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: #666666;
}

.plan-description {
    font-size: 16px;
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.5;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #2C2C2C;
    line-height: 1.5;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.premium .feature-check {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #2C2C2C;
}

.plan-cta {
    width: 100%;
    margin-top: auto;
    height: 52px;
    font-size: 18px;
}

.pricing-card.free .btn-primary {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.pricing-card.free .btn-primary:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.pricing-disclaimer {
    text-align: center;
    margin-top: 48px;
}

.pricing-disclaimer .caption {
    color: #CCCCCC;
    font-size: 16px;
}

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

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

.testimonial-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #E5E5E5;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 80px;
    color: #FFD700;
    font-weight: bold;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #FFD700;
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
    color: #FFD700;
}

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

.testimonial-author strong {
    color: #2C2C2C;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #666666;
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2C2C2C 0%, #1C1C1C 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite reverse;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 42px;
    position: relative;
    z-index: 2;
}

.cta p {
    color: #CCCCCC;
    margin-bottom: 40px;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-disclaimer {
    margin-top: 24px;
    color: #999999;
    font-size: 16px;
    position: relative;
    z-index: 2;
}


/* Formulario estilo solución */
.form-section {
    background-color: #f4f4f4; /* Igual que .solution */
    padding: 60px 0;
}

.form-content {
    text-align: center;
}

.form-iframe-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    margin: 40px auto 0;
    max-width: 900px;
    transition: all 0.3s ease;
}

.form-iframe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.form-iframe-card iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .form-iframe-card {
        padding: 16px;
        border-radius: 16px;
    }

    .form-iframe-card iframe {
        height: 500px;
    }
}



/* Footer */
.footer {
    background: #1A1A1A;
    color: #CCCCCC;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    justify-content: center;
    margin-bottom: 32px;
    color: #CCCCCC;
    font-size: 28px;
}

.footer-copyright {
    margin-top: 24px;
    color: #666666;
    font-size: 16px;
}

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

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-15px) rotate(1deg); 
    }
    66% { 
        transform: translateY(-5px) rotate(-1deg); 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { 
        font-size: 36px; 
        line-height: 1.2;
    }
    
    .hero p { 
        font-size: 18px; 
        margin-bottom: 32px;
    }
    
    .hero-buttons { 
        flex-direction: column; 
        align-items: center; 
        gap: 16px;
    }
    
    .problem-grid, 
    .features-grid,
    .screenshots-grid,
    .testimonials-grid { 
        grid-template-columns: 1fr; 
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cta h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero,
    .problem,
    .solution,
    .app-screenshots,
    .pricing,
    .testimonials,
    .cta {
        padding: 60px 0;
    }
}

    /* Mobile Screenshots Styles */
.app-screenshots {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8F9FA 0%, #E8F4FD 100%);
    position: relative;
    overflow: hidden;
}

.app-screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 165, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mobile-showcase {
    margin-top: 80px;
    position: relative;
}

.phones-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.phone-mockup {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 280px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-mockup.featured {
    transform: scale(1.1);
    z-index: 2;
}

.phone-mockup:hover {
    transform: translateY(-10px);
}

.phone-mockup.featured:hover {
    transform: scale(1.1) translateY(-10px);
}

.phone-frame {
    position: relative;
    width: 250px;
    height: 500px;
    background: linear-gradient(145deg, #2C2C2C, #1A1A1A);
    border-radius: 35px;
    padding: 8px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

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

.phone-notch {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #2C2C2C;
    border-radius: 15px;
    z-index: 10;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mock Interface Styles */
.mock-interface {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'Inter', sans-serif;
}

.mock-header {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 40px 20px 20px;
    text-align: center;
    color: #2C2C2C;
}

.mock-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.mock-location {
    font-size: 12px;
    opacity: 0.8;
}

/* Map Interface */
.mock-map {
    flex: 1;
    background: linear-gradient(135deg, #E8F4FD, #F0F8FF);
    position: relative;
    overflow: hidden;
}

.bus-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: pulse 2s ease-in-out infinite;
}

.route-line {
    position: absolute;
    top: 25%;
    left: 35%;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transform: rotate(45deg);
    border-radius: 1px;
}

.mock-bottom-panel {
    background: #FFFFFF;
    padding: 20px;
    border-top: 1px solid #E5E5E5;
}

.transport-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.route-name {
    font-weight: 600;
    color: #2C2C2C;
}

.arrival-time {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Planner Interface */
.route-planner {
    flex: 1;
    padding: 30px 20px;
    background: #FFFFFF;
}

.location-input {
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: #F8F9FA;
    border-radius: 12px;
    font-size: 14px;
    color: #2C2C2C;
}

.location-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.route-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.route-option {
    padding: 16px;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.route-option.selected {
    border-color: #FFD700;
    background: #FFFEF7;
}

.route-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.route-time {
    font-weight: 700;
    color: #2C2C2C;
    font-size: 16px;
}

.route-changes {
    font-size: 12px;
    color: #666666;
    background: #E5E5E5;
    padding: 4px 8px;
    border-radius: 8px;
}

.route-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.step {
    font-size: 12px;
    color: #666666;
    background: #F8F9FA;
    padding: 4px 8px;
    border-radius: 6px;
}

.phone-info {
    text-align: center;
    max-width: 250px;
}

.phone-info .h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 12px;
    text-align: center;
}

.phone-info .caption {
    color: #666666;
    line-height: 1.5;
    font-size: 14px;
}

/* Features Highlight */
.features-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 80px;
    padding: 0 20px;
}

.feature-highlight {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.feature-highlight .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.feature-highlight h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 12px;
}

.feature-highlight p {
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .phones-container {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .phone-mockup.featured {
        transform: none;
    }
    
    .phone-mockup.featured:hover {
        transform: translateY(-10px);
    }
    
    .features-highlight {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 60px;
    }
    
    .app-screenshots {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .phone-frame {
        width: 200px;
        height: 400px;
    }
    
    .phone-info {
        max-width: 200px;
    }
    
    .mock-title {
        font-size: 16px;
    }
    
    .route-time {
        font-size: 14px;
    }
}

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

.form-section {
    background-color: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.form-button {
    margin-top: 32px;
    font-size: 20px;
    padding: 22px 52px;
}
