/* =========================================
   SUPERIOR SCHOLAR - HERO LEFT CONTENT
   ========================================= */

.hero-content {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 15px;
    text-align: center;
}


/* Main Heading
----------------------------------------- */

.hero-title {
    margin: 0;
    padding: 0;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-title span {
    display: block;
}

.title-free {
    color: #0755b8;
    font-size: clamp(48px, 5.5vw, 82px);
    font-weight: 900;
}

.title-worksheets {
    color: #f04423;
    font-size: clamp(38px, 4.6vw, 70px);
    font-weight: 900;
}


/* Practice Workbooks
----------------------------------------- */

.hero-workbooks {
    display: inline-block;

    margin-top: 8px;
    padding: 7px 22px;

    color: #000000;
    background: #f6c62e;

    font-size: clamp(20px, 2.3vw, 32px);
    font-weight: 800;

    line-height: 1.15;

    border-radius: 4px;

    transform: rotate(-1deg);

    box-shadow:
        0 3px 0 rgba(180, 125, 0, 0.25);
}


/* Subtitle
----------------------------------------- */

.hero-subtitle {
    margin: 14px 0 24px;

    color: #000;

    font-size: clamp(15px, 1.5vw, 21px);
    font-weight: 600;

    line-height: 1.4;
}

.hero-subtitle span {
    margin: 0 6px;
    color: #9aa7b7;
}


/* Benefits Container
----------------------------------------- */

.hero-benefits {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 12px;

    align-items: start;
}


/* Individual Benefit
----------------------------------------- */

.hero-benefit {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* Benefit Icon
----------------------------------------- */

.benefit-icon {
    width: 68px;
    height: 68px;

    margin-bottom: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    box-shadow:
        0 5px 12px rgba(0, 0, 0, 0.12);
}

.benefit-icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: #ffffff;

    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* Icon Colors
----------------------------------------- */

.icon-green {
    background: #20b96b;
}

.icon-pink {
    background: #ff5b78;
}

.icon-yellow {
    background: #f9b927;
}

.icon-blue {
    background: #2f91ed;
}


/* Benefit Text
----------------------------------------- */

.benefit-title {
    color: #000;

    font-size: 15px;
    font-weight: 800;

    line-height: 1.2;
}

.benefit-text {
    margin-top: 2px;

    color: #122e59;

    font-size: 13px;
    font-weight: 600;

    line-height: 1.25;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 991px) {

    .hero-content {
        max-width: 620px;
    }

    .hero-benefits {
        gap: 8px;
    }

    .benefit-icon {
        width: 58px;
        height: 58px;
    }

    .benefit-icon svg {
        width: 29px;
        height: 29px;
    }

    .benefit-title {
        font-size: 13px;
    }

    .benefit-text {
        font-size: 12px;
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 575px) {

    .hero-content {
        padding: 15px 12px;
    }

    .hero-title {
        letter-spacing: -1px;
    }

    .title-free {
        font-size: 48px;
    }

    .title-worksheets {
        font-size: 37px;
    }

    .hero-workbooks {
        margin-top: 7px;
        padding: 6px 13px;

        font-size: 19px;
    }

    .hero-subtitle {
        margin: 10px 0 18px;

        font-size: 14px;
    }

    .hero-subtitle span {
        margin: 0 3px;
    }

    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 8px;
    }

    .benefit-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 7px;
    }

    .benefit-icon svg {
        width: 27px;
        height: 27px;
    }

    .benefit-title {
        font-size: 13px;
    }

    .benefit-text {
        font-size: 11px;
    }
}
/* =========================================
   HERO CTA BUTTONS
   ========================================= */

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 28px;
}


/* Common Button */

.hero-btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 0 20px;

    border-radius: 28px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


/* Primary Button */

.hero-btn-primary {
    color: #ffffff;
    background: #FBA319;

    border: 2px solid #FBA319;

    box-shadow: 0 5px 14px rgba(251, 163, 25, 0.25);
}

.hero-btn-primary:hover {
    color: #ffffff;
    background: #e9920d;
    border-color: #e9920d;

    transform: translateY(-2px);

    box-shadow: 0 8px 18px rgba(251, 163, 25, 0.30);
}


/* Secondary Button */

.hero-btn-secondary {
    color: #173b70;
    background: #ffffff;

    border: 2px solid #FBA319;
}

.hero-btn-secondary:hover {
    color: #173b70;
    background: #fff7e8;

    transform: translateY(-2px);

    box-shadow: 0 5px 14px rgba(251, 163, 25, 0.18);
}


/* Arrow */

.btn-arrow {
    font-size: 19px;
    line-height: 1;

    transition: transform 0.2s ease;
}

.hero-btn:hover .btn-arrow {
    transform: translateX(3px);
}


/* Document Icon */

.btn-icon {
    width: 19px;
    height: 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 575px) {

    .hero-cta {
        flex-direction: column;

        width: 100%;

        gap: 10px;

        margin-top: 22px;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;

        min-height: 46px;

        font-size: 14px;
    }
}