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

.hero-section {
    background: #ffffff;
}

.hero-row {
    min-height: 80vh;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 25px;
    padding: 8px 18px;
    color: #ff6b00;
    background: #fff3e8;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-title {
    max-width: 760px;
    margin-bottom: 25px;
    color: #1f2937;
    font-size: clamp(2.5rem, 5vw, 3.7rem);
    font-weight: 800;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.hero-description {
    max-width: 560px;
    margin-bottom: 35px;
    color: #5f6368;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 28px;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #444444;
    font-weight: 500;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
}

.hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-image {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
    .hero-image:hover {
        transform: translateY(-8px);
        box-shadow: 0 40px 90px rgba(0, 0, 0, 0.18);
    }
}

/* =========================
   SHARED SECTION HEADER
========================= */

.section-header {
    margin-top: 100px;
    margin-bottom: 70px;
}

.section-badge {
    color: #ff6b00;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    margin: 15px 0;
    color: #1f2937;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    overflow-wrap: anywhere;
}

.section-description {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    color: #6c757d;
    font-size: 1.125rem;
    line-height: 1.8;
}

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

.why-section {
    overflow: hidden;
}

.feature-card {
    height: 100%;
    padding: 35px 28px;
    background: #ffffff;
    border: 1px solid #ececec;
    border-radius: 18px;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.feature-icon {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.feature-card h4 {
    margin-bottom: 18px;
    color: #1f2937;
    font-weight: 700;
}

.feature-card p {
    margin-bottom: 0;
    color: #6c757d;
    line-height: 1.8;
}

@media (hover: hover) and (pointer: fine) {
    .feature-card:hover {
        transform: translateY(-10px);
        border-color: #ff6b00;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.15);
    }
}

/* =========================
   TABLETS
========================= */

@media (max-width: 991.98px) {
    .hero-row {
        min-height: auto;
        padding: 64px 0 30px;
        text-align: center;
    }

    .hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .hero-buttons,
    .hero-features {
        justify-content: center;
    }

    .hero-features {
        margin-bottom: 42px;
    }

    .hero-image-container {
        max-width: 720px;
        margin: 0 auto;
    }

    .section-header {
        margin-top: 80px;
        margin-bottom: 50px;
    }
}

/* =========================
   PHONES
========================= */

@media (max-width: 575.98px) {
    .hero-row {
        padding: 42px 0 20px;
    }

    .hero-badge {
        margin-bottom: 20px;
        padding: 7px 14px;
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .hero-title {
        margin-bottom: 20px;
        font-size: clamp(2rem, 10vw, 2.35rem);
        line-height: 1.15;
    }

    .hero-description {
        margin-bottom: 28px;
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        min-height: 50px;
    }

    .hero-features {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 34px;
        padding: 18px;
        gap: 11px;
        text-align: left;
        background: #fff7ed;
        border-radius: 14px;
    }

    .hero-image {
        max-height: none;
        border-radius: 18px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.13);
    }

    .section-header {
        margin-top: 64px;
        margin-bottom: 38px;
    }

    .section-title {
        font-size: clamp(1.8rem, 9vw, 2.15rem);
    }

    .section-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .feature-card {
        padding: 28px 22px;
        border-radius: 15px;
    }

    .feature-icon {
        font-size: 38px;
    }
}

/* =========================
   VERY SMALL PHONES
========================= */

@media (max-width: 359.98px) {
    .hero-row {
        padding-top: 34px;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .hero-badge {
        white-space: normal;
    }

    .feature-card {
        padding: 24px 18px;
    }
}

/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .hero-image,
    .feature-card,
    .feature-icon {
        transition: none;
    }
}