* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f2f4f8;
    overflow-x: hidden;
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    background: url('./credit1.webp') no-repeat center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    max-width: 800px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    margin: 15px 0;
    font-size: 1.2rem;
}

.btn, .btn-secondary {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    margin: 10px;
    font-weight: 500;
    transition: 0.3s;
}

.btn {
    background: #ff5c8d;
    color: #fff;
}

.btn-secondary {
    background: #ffffff;
    color: #000;
}

.btn:hover {
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* FEATURES SECTION */
.features {
    padding: 70px 5%;
    text-align: center;
}

.features h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
}

.feature-box {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box img {
    width: 80px;
    margin-bottom: 15px;
}

/* TOOLS SECTION */
.tools-section {
    padding: 70px 5%;
    background: url('./credit1.webp') no-repeat center/cover;
    color: white;
    text-align: center;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 25px;
    margin-top: 40px;
}

.tool-box {
    padding: 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(6px);
    border-radius: 15px;
}

/* OFFERS */
.offers {
    padding: 70px 5%;
    text-align: center;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

.offer-card {
    background: linear-gradient(135deg,#ff7eb3,#ff758c);
    padding: 25px;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.offer-card:hover {
    transform: scale(1.06);
}

/* APP SECTION */
.app-section {
    padding: 90px 5%;
    background: url('./bac1.webp') no-repeat center/cover;
    text-align: center;
    color: #fff;
}

.app-content {
    background: rgba(0,0,0,0.55);
    padding: 50px;
    border-radius: 15px;
    display: inline-block;
}

.app-buttons a {
    margin: 10px;
    display: inline-block;
}

/* RESPONSIVE MEDIA QUERIES */
@media(max-width: 900px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

@media(max-width: 600px) {
    .hero {
        height: 80vh;
    }
    .app-content {
        padding: 30px;
    }
}
