/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 240, 241, 0.95));
    border-radius: 25px;
    padding: 4rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(52, 152, 219, 0.03), transparent);
    animation: shimmer 8s infinite;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, var(--secondary-color), #27ae60);
    border: none;
    color: white;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 204, 113, 0.4);
    color: white;
    text-decoration: none;
}

/* How it works section */
.how-it-works {
    margin: 4rem 0;
}

.step-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255,255,255,0.3);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Features section */
.features-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 4rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-right: 1.5rem;
    min-width: 60px;
}

.feature-content h5 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Target groups */
.target-groups {
    margin: 4rem 0;
}

.target-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.target-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.target-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Example preview */
.example-preview {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
}

.example-card {
    background: #fef4e8;
    color: #333;
    width: 300px;
    height: 180px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 20px;
    position: relative;
    border: 3px solid var(--primary-color);
    font-family: 'Segoe UI', sans-serif;
    margin: 0 auto 2rem;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.example-card .card-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background-color: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.example-card .card-emoji {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 30px;
}

/* Trust section */
.trust-section {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(255, 255, 255, 0.95));
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

/* Footer */
.homepage-footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.homepage-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.homepage-footer a:hover {
    color: white;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .step-card {
        margin-bottom: 2rem;
    }
    
    .example-card {
        width: 280px;
        height: 160px;
    }
    
    .hero-section {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }
    
    .features-section {
        padding: 2rem 1.5rem;
    }
}

/* Pricing Section */
.pricing-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-free {
    border-color: #6c757d;
}

.pricing-feedback {
    border-color: #17a2b8;
}

.pricing-basic {
    border-color: var(--primary-color);
}

.pricing-premium {
    border-color: var(--secondary-color);
}

.pricing-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 40px;
    transform: rotate(45deg);
    font-size: 0.875rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.pricing-header {
    margin-bottom: 2rem;
}

.package-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-large {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-premium .price-large {
    color: var(--secondary-color);
}

.price-old {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    font-weight: normal;
}

.promo-info {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.price-period {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-features {
    margin: 2rem 0;
    flex: 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
}

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

.pricing-footer {
    margin-top: 2rem;
}

.btn-block {
    width: 100%;
    padding: 1rem 2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-section {
        margin: 2rem 0;
        padding: 2rem 0;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .price-large {
        font-size: 2.5rem;
    }
    
    .pricing-badge {
        font-size: 0.75rem;
        padding: 6px 30px;
    }
}