.home-page {
    background: #f8f6f1;
}

/* =========================
   SECTIONS
========================= */

.hero-section,
.directions-section,
.projects-section,
.stats-section,
.testimonials-section,
.news-section,
.cta-section {
    padding: 140px 0;
}

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

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* HERO BADGE */

.hero-badge {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 34px;

    min-width: 280px;
    min-height: 74px;

    margin-bottom: 40px;

    background-image: url('../images/brush-purple.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;

    color: #ffffff;

    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* HERO TITLE */

.hero-title {

    font-size: 110px;
    line-height: 0.88;

    font-weight: 900;

    letter-spacing: -4px;

    margin-bottom: 35px;

    color: #111111;
}

.hero-title span {
    color: var(--green);
}

/* HERO DESCRIPTION */

.hero-description {

    max-width: 620px;

    margin-bottom: 45px;

    font-size: 22px;
    line-height: 1.9;

    color: #444444;
}

/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* =========================
   BUTTONS
========================= */

.btn-primary,
.btn-secondary {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 20px 38px;

    border-radius: 18px;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.5px;

    transition: 0.3s ease;
}

.btn-primary {

    background: var(--purple);

    color: #ffffff;

    box-shadow: 0 15px 35px rgba(111,60,255,0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {

    border: 2px solid #dddddd;

    background: #ffffff;

    color: #111111;
}

.btn-secondary:hover {
    transform: translateY(-3px);
}

/* =========================
   HERO IMAGE
========================= */

.hero-image {
    position: relative;
}

.hero-image img {

    width: 100%;

    border-radius: 50px;

    box-shadow: 0 30px 60px rgba(0,0,0,0.15);

    position: relative;
    z-index: 2;
}

/* HERO BACKGROUND DECOR */

.hero-section::before {

    content: '';

    position: absolute;

    top: -120px;
    right: -120px;

    width: 500px;
    height: 500px;

    background: rgba(111,60,255,0.05);

    border-radius: 50%;

    filter: blur(20px);
}

/* =========================
   TITLES
========================= */

.section-title {

    font-size: 72px;
    line-height: 1;

    font-weight: 900;

    margin-bottom: 70px;

    color: #111111;
}

/* =========================
   SECTION HEAD
========================= */

.section-head {

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 60px;
}

.section-link {

    color: var(--purple);

    font-size: 15px;
    font-weight: 700;
}

/* =========================
   GRIDS
========================= */

.directions-grid,
.projects-grid,
.stats-grid,
.testimonials-grid,
.news-grid {
    display: grid;
    gap: 30px;
}

.directions-grid {
    grid-template-columns: repeat(4, 1fr);
}

.projects-grid {
    grid-template-columns: repeat(3, 1fr);
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
}

.testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
}

.news-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* =========================
   CARDS
========================= */

.direction-card,
.project-card,
.stat-card,
.testimonial-card,
.news-card {

    background: #ffffff;

    border-radius: 32px;

    padding: 40px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.06);

    transition: 0.3s ease;
}

.direction-card:hover,
.project-card:hover,
.stat-card:hover,
.testimonial-card:hover,
.news-card:hover {
    transform: translateY(-6px);
}

/* =========================
   DIRECTIONS
========================= */

.direction-card {
    text-align: center;
}

.direction-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.direction-card h3 {
    margin-bottom: 12px;
    font-size: 24px;
}

.direction-card p {
    line-height: 1.7;
    color: #555555;
}

/* =========================
   PROJECTS
========================= */

.project-image img,
.news-image img {

    width: 100%;

    border-radius: 24px;

    margin-bottom: 24px;
}

.project-content h3,
.news-content h3 {

    margin-bottom: 15px;

    font-size: 28px;
}

.project-content p,
.news-content p {

    line-height: 1.7;

    color: #555555;
}

.project-button {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 24px;

    padding: 14px 26px;

    border-radius: 14px;

    background: var(--green);

    color: #ffffff;

    font-weight: 700;
}

/* =========================
   STATS
========================= */

.stat-card {
    text-align: center;
}

.stat-card h3 {

    font-size: 64px;

    color: var(--green);

    margin-bottom: 14px;
}

.stat-card p {
    font-size: 18px;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-card p {

    line-height: 1.9;

    margin-bottom: 24px;

    font-size: 18px;
}

.testimonial-card h4 {
    color: var(--purple);
}

/* =========================
   NEWS
========================= */

.news-date {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--purple);

    font-weight: 700;
}

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

.cta-box {

    background: linear-gradient(
        135deg,
        var(--purple),
        #8f63ff
    );

    border-radius: 40px;

    padding: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #ffffff;

    box-shadow: 0 25px 50px rgba(111,60,255,0.25);
}

.cta-box h2 {

    font-size: 52px;

    margin-bottom: 15px;
}

.cta-box p {
    font-size: 20px;
}

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

@media (max-width: 1200px) {

    .hero-title {
        font-size: 82px;
    }

    .section-title {
        font-size: 58px;
    }

}

@media (max-width: 992px) {

    .hero-grid,
    .directions-grid,
    .projects-grid,
    .stats-grid,
    .testimonials-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .hero-section,
    .directions-section,
    .projects-section,
    .stats-section,
    .testimonials-section,
    .news-section,
    .cta-section {
        padding: 100px 0;
    }

    .hero-title {
        font-size: 58px;
        letter-spacing: -2px;
    }

    .section-title {
        font-size: 42px;
    }

    .cta-box {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

}

@media (max-width: 768px) {

    .hero-badge {
        min-width: 240px;
        min-height: 66px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .direction-card,
    .project-card,
    .stat-card,
    .testimonial-card,
    .news-card {
        padding: 28px;
    }

    .cta-box {
        padding: 40px 30px;
    }

}