@import "variables.css";
@import "fonts.css";


:root {
    --primary: #F97316;
    --primary-dark: #EA580C;
    --secondary: #FB923C;
    --background: #FFF8F3;
    --surface: #FFFFFF;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --success: #10B981;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==================== NAVIGATION ==================== */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

h2, h3, h4, h5, h6 {
    font-weight: 800;
    font-family: 'Poppins-ExtraBold', sans-serif;
}

nav.scrolled {
    padding: 0.7rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Poppins-ExtraBold', sans-serif;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon{
    width: 60px;
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

a.cta-button{
    color: white;
}

a.cta-button:hover{
    color: white;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}

/* ==================== HERO SECTION ==================== */

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--background) 0%, #FDF2E9 100%);
    padding: 150px 5% 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    font-family: 'Poppins-ExtraBold', sans-serif;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content .highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-height: 700px;
}

.hero-image .image-mobile {
    display: none;
}

/* ==================== FEATURES SECTION ==================== */

.features {
    padding: 100px 5%;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.feature-card {
    background: var(--background);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-bottom: 2rem;
    padding: 0.7rem;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== HOW IT WORKS ==================== */

.how-it-works {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--background) 0%, #FDF2E9 100%);
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.step h3 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== CTA SECTION ==================== */

.cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-content .btn-primary:hover {
    background: var(--background);
}

/* ==================== FOOTER ==================== */

footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1400px;
    display: flex;
    justify-content: space-around;
    gap: 4rem;
    margin: 0 auto 3rem;
}

.help-section a{
    color: var(--primary);
    text-decoration: none;
}

.footer-brand {
    max-width: 50%;
}

.footer-brand h3 {
    font-size: 28px;
    color: var(--primary);
}

.footer-brand p {
    color: #9CA3AF;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.logo-brand{
    margin-bottom: 1rem;

    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-brand img{
    width: 50px;
    height: 50px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 18px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
    text-wrap: nowrap;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #9CA3AF;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-image .image-desktop {
        display: none;
    }

    .hero-image .image-mobile {
        display: block;
        max-width: 200px;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 790px) {
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-brand {
        max-width: 100%;
    }
}