.hp-container {
    max-width: 1120px;
}

.hp-hero {
    background: radial-gradient(circle at 90% 10%, #e8f9f8 0%, #f7fcff 40%, #ffffff 100%);
    padding: 74px 0 58px;
}

.hp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hp-eyebrow {
    display: inline-block;
    color: #0eaaa6;
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px;
}

.hp-hero-content h1 {
    color: #18262c;
    font-size: 50px;
    line-height: 1.08;
    margin-bottom: 16px;
    font-weight: 700;
    max-width: 620px;
}

.hp-hero-content p {
    color: #516168;
    font-size: 18px;
    margin-bottom: 24px;
    max-width: 560px;
}

.hp-search-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.hp-search-input {
    flex: 1 1 100%;
}

.hp-search-input input {
    width: 100%;
    height: 52px;
    border: 1px solid #e2e8ed;
    border-radius: 12px;
    padding: 0 16px;
    font-size: 15px;
    background: #fff;
}

.hp-search-input input:focus {
    outline: none;
    border-color: #8ad7d4;
    box-shadow: 0 0 0 4px rgba(14, 170, 166, 0.13);
}

.hp-btn {
    height: 48px;
    border-radius: 10px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.hp-btn-primary {
    background: #f58634;
    color: #fff;
    box-shadow: 0 8px 20px rgba(245, 134, 52, 0.26);
}

.hp-btn-primary:hover {
    color: #fff;
    background: #e97a29;
    text-decoration: none;
    transform: translateY(-1px);
}

.hp-btn-outline {
    border: 1px solid #87d7d4;
    color: #0eaaa6;
    background: #fff;
}

.hp-btn-outline:hover {
    text-decoration: none;
    color: #067f7c;
    border-color: #67c8c4;
    transform: translateY(-1px);
}

.hp-social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hp-social-proof p {
    margin: 0;
    font-size: 12px;
    color: #5b6970;
}

.hp-avatars {
    display: flex;
}

.hp-avatars span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -6px;
    background: linear-gradient(135deg, #f6af73, #0eaaa6);
}

.hp-avatars span:first-child {
    margin-left: 0;
}

.hp-contact-quick {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 18px;
}

.hp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    background: #0eaaa6;
    box-shadow: 0 6px 16px rgba(14, 170, 166, 0.28);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hp-contact-btn:hover {
    color: #fff;
    text-decoration: none;
    background: #0c9692;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(14, 170, 166, 0.35);
}

.hp-contact-btn i {
    font-size: 18px;
}

.hp-contact-wa {
    background: #25d366;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.28);
}

.hp-contact-wa:hover {
    background: #1fb855;
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}

.hp-contact-btn strong {
    font-weight: 700;
}

.hp-hero-visual {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    grid-template-areas:
        "main score"
        "main weak"
        "main graph";
    gap: 12px;
}

.hp-hero-main-card {
    grid-area: main;
    border-radius: 16px;
    min-height: 320px;
    background: linear-gradient(155deg, #f2fdfc 0%, #ffffff 62%);
    border: 1px solid #e6f2f2;
    box-shadow: 0 14px 30px rgba(15, 44, 58, 0.08);
    position: relative;
    overflow: hidden;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hp-hero-main-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    right: -30px;
    top: -45px;
    background: rgba(14, 170, 166, 0.1);
}

.hp-hero-photo-wrap {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: calc(100% + 32px);
    max-width: none;
    margin: -16px -16px 14px;
    aspect-ratio: 16 / 10;
    min-height: 200px;
    max-height: min(320px, 42vw);
    border-radius: 14px 14px 10px 10px;
    overflow: hidden;
    background: #e8f4f3;
}

.hp-hero-photo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center 28%;
}

.hp-main-card-copy {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.hp-main-card-copy h4 {
    font-size: 20px;
    color: #1f2a2f;
    margin: 0 0 6px;
}

.hp-main-card-copy p {
    color: #63737a;
    font-size: 14px;
    margin: 0;
}

.hp-card {
    background: #fff;
    border: 1px solid #e9eef2;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 10px 22px rgba(12, 40, 54, 0.06);
}

.hp-score-card {
    grid-area: score;
}

.hp-weak-card {
    grid-area: weak;
}

.hp-graph-card {
    grid-area: graph;
}

.hp-card-label {
    font-size: 13px;
    color: #72818a;
    margin-bottom: 6px;
}

.hp-score-value {
    font-size: 32px;
    color: #0eaaa6;
    font-weight: 700;
}

.hp-weak-value {
    font-size: 22px;
    color: #f58634;
    font-weight: 700;
}

.hp-score-meta,
.hp-muted {
    color: #5f7078;
    font-size: 13px;
    margin: 0;
}

.hp-mini-bars {
    height: 72px;
    display: flex;
    gap: 6px;
    align-items: flex-end;
    margin: 8px 0;
}

.hp-mini-bars span {
    display: block;
    width: 16px;
    border-radius: 5px 5px 0 0;
    background: linear-gradient(180deg, #f58634 0%, #0eaaa6 100%);
}

.hp-trust-strip {
    background: transparent;
    margin-top: -16px;
    margin-bottom: 10px;
}

.hp-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    background: #fff;
    border: 1px solid #ebf0f4;
    border-radius: 14px;
    box-shadow: 0 10px 20px rgba(12, 35, 46, 0.05);
    padding: 18px;
}

.hp-trust-item {
    text-align: center;
    color: #25343a;
}

.hp-trust-item strong {
    display: block;
    font-size: 30px;
    line-height: 1;
    color: #18262c;
}

.hp-trust-item span {
    font-size: 14px;
    color: #65727a;
}

.hp-section {
    padding: 66px 0;
}

.hp-section-alt {
    background: #f8fbfd;
}

.hp-section-head {
    text-align: center;
    margin-bottom: 24px;
}

.hp-section-head h2 {
    color: #1a282e;
    font-size: 34px;
    margin-bottom: 6px;
    font-weight: 700;
}

.hp-section-head p {
    color: #61737d;
    margin: 0;
    font-size: 15px;
}

.hp-compare-grid,
.hp-report-grid,
.hp-steps-grid,
.hp-benefits-grid {
    display: grid;
    gap: 16px;
}

.hp-compare-grid {
    grid-template-columns: 1fr 1fr;
    position: relative;
    background: #fff;
    border: 1px solid #eaf0f3;
    border-radius: 14px;
    padding: 10px;
}

.hp-compare-grid::after {
    content: "VS";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #dbe7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5f7178;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.hp-compare-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
    color: #1d2c32;
}

.hp-compare-old {
    border: 0;
    border-radius: 12px;
    background: #fcfdff;
    padding: 20px 22px;
}

.hp-compare-new {
    border: 0;
    border-radius: 12px;
    background: #f5fcfc;
    padding: 20px 22px;
}

.hp-compare-card ul {
    margin: 0;
    padding-left: 18px;
}

.hp-compare-card li {
    margin-bottom: 8px;
    color: #3b4a51;
}

.hp-report-shell {
    background: #fff;
    border: 1px solid #e8eef2;
    border-radius: 14px;
    padding: 14px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 14px;
    box-shadow: 0 12px 24px rgba(13, 42, 55, 0.06);
}

.hp-report-sidebar {
    background: linear-gradient(160deg, #0eaaa6 0%, #078f8c 100%);
    border-radius: 12px;
    padding: 20px 14px;
    color: #fff;
    text-align: center;
}

.hp-student-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto 10px;
    background: rgba(255, 255, 255, 0.22);
    border: 2px solid rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.hp-report-sidebar h5 {
    margin: 0;
    color: #fff;
}

.hp-report-sidebar p {
    margin: 4px 0 14px;
    font-size: 12px;
    opacity: 0.9;
}

.hp-report-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.hp-report-sidebar li {
    margin-bottom: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.hp-report-main {
    display: grid;
    gap: 12px;
}

.hp-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hp-kpi {
    border: 1px solid #ecf1f4;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
}

.hp-kpi span {
    display: block;
    color: #708089;
    font-size: 12px;
}

.hp-kpi strong {
    color: #1f2d34;
    font-size: 22px;
    line-height: 1.2;
}

.hp-kpi em {
    display: block;
    color: #6f7f88;
    font-size: 11px;
    font-style: normal;
}

.hp-report-lower {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.hp-strength-card {
    border-left: 3px solid #0eaaa6;
}

.hp-weakness-card {
    border-left: 3px solid #f58634;
}

.hp-metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #edf2f5;
    font-size: 13px;
    color: #44535a;
}

.hp-metric-row:last-child {
    border-bottom: 0;
}

.hp-line-mock {
    position: relative;
    height: 94px;
    border-left: 2px solid #d7e2e8;
    border-bottom: 2px solid #d7e2e8;
    margin-bottom: 10px;
}

.hp-line-mock span {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    transform: translate(-50%, 50%);
    background: #0eaaa6;
}

.hp-line-mock::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: linear-gradient(120deg, transparent 0 10%, rgba(14, 170, 166, 0.18) 10% 86%, transparent 86% 100%);
    pointer-events: none;
}

.hp-steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.hp-step {
    border: 0;
    border-radius: 0;
    padding: 0 12px;
    background: #fff;
    text-align: center;
    position: relative;
}

.hp-step:not(:last-child)::after {
    content: "";
    position: absolute;
    width: 56px;
    height: 1px;
    right: -28px;
    top: 17px;
    background: #d4e1e7;
}

.hp-step span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f58634;
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
}

.hp-step h4 {
    margin: 8px 0 8px;
    color: #1f2a2e;
    font-size: 17px;
}

.hp-step p {
    margin: 0;
    color: #617179;
    font-size: 14px;
}

.hp-benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.hp-benefit {
    background: #fff;
    border: 1px solid #edf2f5;
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    color: #344148;
    font-weight: 600;
}

.hp-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hp-testimonial {
    background: #fff;
    border: 1px solid #ebf1f4;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 6px 16px rgba(12, 35, 48, 0.04);
}

.hp-testimonial p {
    color: #4c5a61;
    margin-bottom: 14px;
}

.hp-testimonial h5 {
    margin: 0;
    color: #1f2a2e;
}

.hp-testimonial span {
    color: #74848b;
    font-size: 13px;
}

.hp-final-cta {
    padding: 52px 0;
    background: linear-gradient(135deg, #0eaaa6 0%, #078f8c 100%);
    color: #fff;
}

.hp-final-cta h2 {
    color: #fff;
    margin-bottom: 8px;
}

.hp-final-cta p {
    color: rgba(255, 255, 255, 0.93);
    margin-bottom: 18px;
}

.hp-final-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .hp-hero-grid,
    .hp-steps-grid,
    .hp-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hp-hero {
        padding-top: 64px;
    }

    .hp-hero-content h1 {
        font-size: 38px;
    }

    .hp-hero-visual {
        grid-template-columns: 1fr;
        grid-template-areas:
            "main"
            "score"
            "weak"
            "graph";
    }

    .hp-hero-main-card {
        min-height: 280px;
    }

    .hp-hero-photo-wrap {
        min-height: 200px;
        max-height: min(280px, 55vw);
        aspect-ratio: 16 / 10;
    }

    .hp-report-shell {
        grid-template-columns: 1fr;
    }

    .hp-report-lower {
        grid-template-columns: 1fr;
    }

    .hp-kpi-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-compare-grid {
        grid-template-columns: 1fr;
    }

    .hp-compare-grid::after {
        display: none;
    }

    .hp-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hp-trust-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hp-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .hp-section,
    .hp-hero {
        padding: 46px 0;
    }

    .hp-hero-content h1 {
        font-size: 32px;
    }

    .hp-hero-photo-wrap {
        min-height: 176px;
        max-height: min(240px, 62vw);
        aspect-ratio: 4 / 3;
    }

    .hp-search-wrap .hp-btn {
        width: 100%;
    }

    .hp-kpi-grid,
    .hp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .hp-section-head h2 {
        font-size: 28px;
    }
}
