/* ============================================
   Landing Page Styles
   ============================================ */

.landing-page {
    background: #000000;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

.landing-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 1rem; */
    text-align: center;
}

/* ============================================
   Title Section
   ============================================ */

.landing-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.title-accent {
    color: #FF6B35;
}

/* ============================================
   Steps Section
   ============================================ */

.steps-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    width: 100%;
    max-width: 1000px;
    margin: 1rem 0;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 1.5rem; */
}

.step-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.step-text {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0;
    max-width: 300px;
}

.text-accent {
    color: #FF6B35;
    font-weight: 600;
}

/* ============================================
   Brand Section
   ============================================ */

.brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 1.5rem; */
    margin: 1.5rem 0;
}

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

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.brand-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    display: block;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.brand-slogan {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: #FF6B35;
    margin: 0;
    letter-spacing: 0.02em;
}

/* ============================================
   Call to Action Section
   ============================================ */

.cta-section {
    margin-top: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #FFFFFF;
    color: #FF6B35;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    background: #FF6B35;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ============================================
   Tablet Styles (768px and up)
   ============================================ */

@media (min-width: 768px) {
    .landing-container {
        padding: 3rem 2rem;
        /* gap: 4rem; */
    }

    .steps-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

   

    .step-icon {
        width: 140px;
        height: 140px;
    }

    .step-text {
        max-width: 100%;
    }

    .brand-logo {
        width: 140px;
        height: 140px;
    }

    .brand-slogan {
        font-size: 2rem;
    }
}

/* ============================================
   Desktop Styles (1024px and up)
   ============================================ */

@media (min-width: 1024px) {
    .landing-container {
        padding: 4rem 2rem;
        /* gap: 5rem; */
    }

    .landing-title {
        font-size: 4rem;
    }

    .steps-container {
        gap: 3rem;
    }

    .step-icon {
        width: 140px;
        height: 140px;
    }

    .step-text {
        font-size: 1rem;
    }

    .brand-logo {
        width: 160px;
        height: 160px;
    }

    .brand-slogan {
        font-size: 2.25rem;
    }

    .cta-button {
        padding: 1.25rem 3rem;
        font-size: 1.15rem;
    }
}

/* ============================================
   Large Desktop Styles (1200px and up)
   ============================================ */

@media (min-width: 1200px) {
    .landing-title {
        font-size: 4.5rem;
    }

    .step-text {
        font-size: 1.1rem;
    }
}

/* ============================================
   Animation for Page Load
   ============================================ */

.step-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.3s;
}

.brand-section {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.cta-section {
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.5s forwards;
}

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

/* ============================================
   Reduce Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .step-card,
    .brand-section,
    .cta-section {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

