/*------------------------------------------------------------------
[Home Page Premium Stylesheet]
Project: LaunchWe Homepage
-------------------------------------------------------------------*/

/* ===========================
   HERO SECTION
   =========================== */

.hero-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    padding: 120px 0 60px;
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0px, transparent 1px, transparent 40px, rgba(255, 255, 255, 0.02) 41px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0px, transparent 1px, transparent 40px, rgba(255, 255, 255, 0.02) 41px);
    pointer-events: none;
    z-index: 1;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: heroFloat 25s infinite ease-in-out;
    pointer-events: none;
}

.hero-decoration-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(156, 204, 101, 0.3) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.hero-decoration-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 179, 66, 0.25) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: 8s;
}

.hero-decoration-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(156, 204, 101, 0.2) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    animation-delay: 16s;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -40px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(50px, 15px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-main h1 {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-main .hero-gradient-text {
    background: linear-gradient(135deg, #9CCC65 0%, #7CB342 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-main .hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-btn-primary {
    padding: 18px 45px;
    background: linear-gradient(135deg, #9CCC65 0%, #7CB342 100%);
    color: #212121;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(156, 204, 101, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(156, 204, 101, 0.5);
}

.hero-btn-secondary {
    padding: 18px 45px;
    background: transparent;
    color: #f1f1f1;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-btn-secondary:hover {
    border-color: #9CCC65;
    color: #9CCC65;
    transform: translateY(-3px);
}

.hero-trust-bar {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 36px;
    font-weight: 900;
    color: #9CCC65;
    display: block;
    margin-bottom: 5px;
}

.trust-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   SERVICES SECTION
   =========================== */

.section-services {
    padding: 100px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #212121 100%);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9CCC65 0%, #7CB342 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-8px);
    border-color: rgba(156, 204, 101, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(156, 204, 101, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(156, 204, 101, 0.2);
    transition: all 0.3s ease;
}

.service-icon-svg {
    color: #9CCC65;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon-wrapper {
    background: rgba(156, 204, 101, 0.15);
    border-color: rgba(156, 204, 101, 0.4);
    transform: translateY(-4px);
}

.service-item:hover .service-icon-svg {
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: #9CCC65;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* ===========================
   WHY CHOOSE US
   =========================== */

.section-why-us {
    padding: 100px 0;
    background: #212121;
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.why-item {
    background: linear-gradient(135deg, rgba(156, 204, 101, 0.05) 0%, rgba(124, 179, 66, 0.02) 100%);
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid rgba(156, 204, 101, 0.15);
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: rgba(156, 204, 101, 0.4);
    box-shadow: 0 10px 30px rgba(156, 204, 101, 0.1);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.why-icon-wrapper {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(156, 204, 101, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(156, 204, 101, 0.15);
    transition: all 0.3s ease;
}

.why-icon-svg {
    color: #9CCC65;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon-wrapper {
    background: rgba(156, 204, 101, 0.15);
    border-color: rgba(156, 204, 101, 0.3);
    transform: scale(1.05);
}

.why-item:hover .why-icon-svg {
    transform: rotate(5deg);
}

.why-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #9CCC65;
    margin-bottom: 12px;
}

.why-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   PROCESS SECTION
   =========================== */

.section-process {
    padding: 100px 0;
    background: linear-gradient(180deg, #212121 0%, #1a1a1a 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.process-step {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(156, 204, 101, 0.3);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #9CCC65 0%, #7CB342 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    color: #212121;
    box-shadow: 0 4px 15px rgba(156, 204, 101, 0.4);
}

.process-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 10px 0 12px 0;
}

.process-step p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ===========================
   CTA SECTION
   =========================== */

.section-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #212121 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 30% 50%, rgba(156, 204, 101, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(124, 179, 66, 0.12) 0%, transparent 60%);
    pointer-events: none;
    animation: pulseGlow 8s infinite ease-in-out;
}

.cta-box {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.cta-box h2 {
    font-size: 38px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 35px;
    line-height: 1.6;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 991px) {
    .hero-main h1 {
        font-size: 48px;
    }
    
    .hero-main .hero-subtitle {
        font-size: 18px;
    }
    
    .services-grid-home {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 767px) {
    .hero-main {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero-main h1 {
        font-size: 36px;
    }
    
    .hero-main .hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-bar {
        gap: 30px;
        padding: 25px 20px;
    }
    
    .trust-number {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .services-grid-home {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 40px 25px;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
    
    .hero-decoration {
        opacity: 0.3;
        filter: blur(60px);
    }
}

@media (max-width: 480px) {
    .hero-main h1 {
        font-size: 28px;
    }
    
    .hero-main .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        font-size: 14px;
        padding: 14px 30px;
    }
    
    .hero-trust-bar {
        gap: 20px;
    }
    
    .trust-number {
        font-size: 24px;
    }
    
    .trust-label {
        font-size: 11px;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */

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

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
