/* Modern Premium Landing Page Styles for Growzy */

/* ========== HERO SECTION ========== */
.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.float-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation: float 20s ease-in-out infinite;
}

.float-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation: float 15s ease-in-out infinite 5s;
}

.float-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 15%;
    animation: float 18s ease-in-out infinite 3s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(30px, -30px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(20px, 30px) rotate(3deg); }
}

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

.hero-content-main {
    color: white;
}

.hero-badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 32px;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.badge-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.hero-title-new {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-line-1 {
    display: block;
    font-size: 2.5rem;
    font-weight: 600;
    opacity: 0.95;
}

.title-line-2 {
    display: block;
    margin-top: 8px;
}

.highlight-gradient {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #667eea;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

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

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    margin-left: -12px;
}

.trust-text p {
    margin: 4px 0 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    font-size: 1rem;
}

/* Hero Visual Cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-out;
}

.card-1 {
    top: 0;
    left: 0;
    width: 280px;
    z-index: 3;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.card-2 {
    top: 120px;
    right: 0;
    width: 200px;
    text-align: center;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.7s both;
}

.card-3 {
    bottom: 40px;
    left: 40px;
    width: 240px;
    z-index: 1;
    animation: fadeInRight 1s ease-out 0.9s both;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-icon {
    font-size: 1.5rem;
}

.card-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
}

.card-metric {
    margin-bottom: 20px;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 4px;
}

.card-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #667eea, #764ba2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.card-icon-large {
    font-size: 4rem;
    margin-bottom: 16px;
}

.card-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notif-icon {
    font-size: 1.5rem;
}

.notif-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1e293b;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== FEATURES SECTION ========== */
.features-modern {
    padding: 100px 0;
    background: #f8fafc;
}

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

.section-tag {
    display: inline-block;
    background: #ede9fe;
    color: #7c3aed;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.highlight-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc-modern {
    font-size: 1.25rem;
    color: #64748b;
}

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

.feature-card-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.feature-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    grid-column: span 2;
}


.feature-icon-modern {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.gradient-purple { background: linear-gradient(135deg, #667eea, #764ba2); }
.gradient-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.gradient-green { background: linear-gradient(135deg, #10b981, #059669); }
.gradient-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.gradient-pink { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.gradient-teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }

.feature-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-highlight h3 {
    color: white;
}

.feature-card-modern p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-highlight p {
    color: rgba(255, 255, 255, 0.95);
}

.feature-stats {
    display: flex;
    gap: 24px;
}

.stat-item {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-item strong {
    font-weight: 700;
}

/* ========== STATS SECTION ========== */
.stats-modern {
    padding: 80px 0;
    background: white;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item-modern {
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-modern {
    padding: 100px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.testimonial-info {
    flex: 1;
}

.testimonial-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 0.875rem;
    color: #64748b;
}

.testimonial-rating {
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.testimonial-result {
    display: flex;
    justify-content: flex-start;
}

.result-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ========== FINAL CTA SECTION ========== */
.cta-final {
    padding: 100px 0;
    background: white;
}

.cta-box-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content-modern {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.cta-title-modern {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle-modern {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 40px;
}

.cta-features-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #667eea;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-guarantee {
    font-size: 1rem;
    opacity: 0.9;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        display: none;
    }
    
    .features-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-highlight {
        grid-column: span 2;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-title-new {
        font-size: 2.5rem;
    }
    
    .title-line-1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .feature-highlight {
        grid-column: span 1;
    }
    
    .cta-features-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .cta-title-modern {
        font-size: 2rem;
    }
    
    .cta-box-modern {
        padding: 60px 32px;
    }
}

@media (max-width: 640px) {
    .stats-grid-modern {
        grid-template-columns: 1fr;
    }
}
