.blender-hero,
.blender-section,
.blender-final-cta {
    position: relative;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
    color: #ffffff;
}

.blender-hero {
    min-height: 780px;
    overflow: hidden;
    background: #07090f;
    padding: clamp(96px, 13vh, 150px) 0 88px;
}

.blender-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 74% 34%, rgba(255, 130, 64, 0.22), transparent 24%),
        radial-gradient(circle at 18% 30%, rgba(79, 140, 255, 0.25), transparent 28%),
        radial-gradient(circle at 50% 70%, rgba(88, 166, 255, 0.12), transparent 38%),
        linear-gradient(180deg, #07090f 0%, #10131c 54%, #0e0f13 100%);
    z-index: 0;
}

.blender-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), transparent 84%);
    opacity: 0.72;
    transform: perspective(800px) rotateX(58deg) translateY(120px);
    transform-origin: center bottom;
    z-index: 1;
}

.blender-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.blender-orbit-one {
    width: 520px;
    height: 520px;
    right: 5vw;
    top: 130px;
    box-shadow: inset 0 0 45px rgba(79,140,255,0.08);
    animation: blenderFloat 8s ease-in-out infinite;
}

.blender-orbit-two {
    width: 290px;
    height: 290px;
    right: 17vw;
    top: 245px;
    border-style: dashed;
    animation: blenderFloat 10s ease-in-out infinite reverse;
}

.blender-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.86fr);
    gap: clamp(40px, 6vw, 88px);
    align-items: center;
}

.blender-kicker,
.blender-section-header span,
.blender-teacher-card span,
.blender-final-card span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    color: #ffb26b;
    background: rgba(255, 148, 77, 0.10);
    border: 1px solid rgba(255, 178, 107, 0.22);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blender-hero h1 {
    max-width: 790px;
    margin: 20px 0 20px;
    font-size: clamp(42px, 5.3vw, 76px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0;
}

.blender-lead {
    max-width: 660px;
    color: #e6edf3;
    font-size: clamp(1.12rem, 1.5vw, 1.35rem);
    line-height: 1.55;
    margin-bottom: 18px;
}

.blender-hero-text {
    max-width: 650px;
    color: #9fb0d1;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.blender-hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 680px;
    margin-bottom: 34px;
}

.blender-hero-facts span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border-radius: 12px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.08);
    color: #d9e7ff;
    font-size: 0.92rem;
}

.blender-hero-facts i {
    color: #58a6ff;
}

.blender-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.blender-btn-primary,
.blender-btn-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 13px 20px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.blender-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #4f8cff, #7c5cff);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 16px 42px rgba(79,140,255,0.34);
}

.blender-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 22px 56px rgba(79,140,255,0.42);
}

.blender-btn-secondary {
    color: #e6edf3;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.12);
}

.blender-btn-secondary:hover {
    color: #fff;
    background: rgba(255,255,255,0.085);
    transform: translateY(-2px);
}

.blender-hero-visual {
    display: flex;
    justify-content: center;
}

.blender-render-card {
    width: min(100%, 430px);
    min-height: 540px;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.035)),
        rgba(13,17,23,0.78);
    box-shadow: 0 26px 80px rgba(0,0,0,0.48);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transform: rotateY(-7deg) rotateX(3deg);
}

.blender-render-top {
    display: flex;
    gap: 8px;
    padding: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.blender-render-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.24);
}

.blender-character-placeholder {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(255,178,107,0.17), transparent 30%),
        radial-gradient(circle at 50% 65%, rgba(79,140,255,0.16), transparent 34%);
}

.blender-shape {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.18);
    background: linear-gradient(145deg, rgba(255,145,79,0.7), rgba(88,166,255,0.38));
    box-shadow: inset 0 0 30px rgba(255,255,255,0.08), 0 18px 50px rgba(0,0,0,0.35);
}

.blender-shape-head {
    width: 128px;
    height: 112px;
    top: 72px;
    border-radius: 42% 42% 48% 48%;
}

.blender-shape-body {
    width: 170px;
    height: 190px;
    top: 180px;
    border-radius: 44% 44% 28% 28%;
}

.blender-shape-left,
.blender-shape-right {
    width: 72px;
    height: 120px;
    top: 214px;
    border-radius: 48px;
}

.blender-shape-left {
    left: 74px;
    transform: rotate(18deg);
}

.blender-shape-right {
    right: 74px;
    transform: rotate(-18deg);
}

.blender-wire-ring {
    position: absolute;
    width: 265px;
    height: 265px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.22);
    box-shadow: 0 0 45px rgba(79,140,255,0.18);
    animation: blenderSpin 24s linear infinite;
}

.blender-render-footer {
    padding: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.blender-render-footer strong,
.blender-render-footer span {
    display: block;
}

.blender-render-footer strong {
    color: #ffffff;
}

.blender-render-footer span {
    margin-top: 4px;
    color: #9fb0d1;
    font-size: 0.9rem;
}

.blender-section {
    padding: var(--space-section) 0;
    background: var(--bg-section);
}

.blender-section:nth-of-type(odd) {
    background: var(--bg-alt);
}

.blender-section-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.blender-section-header.is-left {
    margin-left: 0;
    text-align: left;
}

.blender-section-header h2,
.blender-teacher-card h2,
.blender-final-card h2 {
    margin: 16px 0 12px;
    color: #ffffff;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.12;
    font-weight: 760;
}

.blender-section-header p,
.blender-teacher-card p,
.blender-final-card p {
    color: #9fb0d1;
    line-height: 1.7;
    margin-bottom: 0;
}

.blender-outcome-grid,
.blender-two-columns,
.blender-format-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.blender-outcome-card,
.blender-why-card {
    border-radius: 22px;
    overflow: hidden;
    background: #161b22;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: var(--shadow-lg);
}

.blender-outcome-card img,
.blender-why-card img {
    display: block;
    width: 100%;
    min-height: 360px;
    object-fit: cover;
    opacity: 0.88;
}

.blender-check-panel,
.blender-price-card,
.blender-teacher-card,
.blender-final-card {
    border: 1px solid rgba(255,255,255,0.10);
    background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.032));
    border-radius: 22px;
    box-shadow: var(--shadow-md);
}

.blender-check-panel {
    padding: clamp(22px, 3vw, 34px);
}

.blender-check-panel h3 {
    margin-bottom: 18px;
    font-size: 1.35rem;
}

.blender-check-list {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.blender-check-item,
.blender-benefit-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    color: #d9e7ff;
}

.blender-check-item i {
    color: #48c97e;
}

.blender-check-panel p {
    color: #9fb0d1;
    line-height: 1.7;
    margin-bottom: 0;
}

.blender-audience-grid,
.blender-skill-grid,
.blender-program-grid,
.blender-faq-grid {
    display: grid;
    gap: 18px;
}

.blender-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blender-mini-card,
.blender-skill-card,
.blender-program-card,
.blender-faq-item {
    background: #161b22;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.blender-mini-card {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
}

.blender-mini-card i,
.blender-skill-card i {
    color: #58a6ff;
    font-size: 1.7rem;
}

.blender-mini-card:hover,
.blender-skill-card:hover,
.blender-program-card:hover,
.blender-faq-item:hover {
    transform: translateY(-5px);
    border-color: rgba(88,166,255,0.34);
    background: #1b222c;
}

.blender-skill-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blender-skill-card {
    padding: 24px;
}

.blender-skill-card h3 {
    margin: 16px 0 8px;
    font-size: 1.08rem;
}

.blender-skill-card p {
    color: #9fb0d1;
    line-height: 1.58;
    margin-bottom: 0;
}

.blender-program-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blender-program-card {
    position: relative;
    padding: 26px;
    overflow: hidden;
}

.blender-program-card::after {
    content: "";
    position: absolute;
    inset: auto -30px -55px auto;
    width: 150px;
    height: 150px;
    border: 1px dashed rgba(255,255,255,0.12);
    border-radius: 50%;
}

.blender-program-number {
    color: #ffb26b;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.blender-program-card h3 {
    min-height: 56px;
    margin-bottom: 14px;
    font-size: 1.28rem;
}

.blender-program-card p {
    color: #9fb0d1;
    line-height: 1.62;
}

.blender-result {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.blender-result span,
.blender-muted {
    display: block;
    color: rgba(255,255,255,0.48);
    font-size: 0.86rem;
}

.blender-result strong {
    display: block;
    margin-top: 5px;
    color: #e6edf3;
    line-height: 1.45;
}

.blender-format-shell {
    grid-template-columns: minmax(0, 1fr) 360px;
}

.blender-format-list {
    display: grid;
    gap: 10px;
    color: #d9e7ff;
}

.blender-format-list div {
    display: flex;
    align-items: center;
}

.blender-format-list i {
    color: #58a6ff;
    font-size: 1.5rem;
}

.blender-price-card {
    padding: 26px;
}

.blender-discount {
    width: fit-content;
    margin-bottom: 18px;
    color: #ffe6cc;
    background: rgba(255,178,107,0.12);
    border: 1px solid rgba(255,178,107,0.24);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.84rem;
    font-weight: 700;
}

.blender-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 12px;
}

.blender-current-price {
    font-size: 3.25rem;
    font-weight: 800;
    line-height: 1;
}

.blender-old-price {
    color: rgba(255,255,255,0.42);
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: line-through;
}

.blender-price-card p {
    color: #9fb0d1;
    line-height: 1.6;
    margin-bottom: 22px;
}

.blender-benefit-list {
    display: grid;
    gap: 13px;
}

.blender-benefit-item i {
    color: #ffb26b;
}

.blender-teacher-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: clamp(24px, 4vw, 42px);
}

.blender-teacher-avatar {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background:
        radial-gradient(circle at 35% 25%, rgba(255,178,107,0.3), transparent 34%),
        linear-gradient(145deg, rgba(79,140,255,0.24), rgba(255,255,255,0.045));
    border: 1px solid rgba(255,255,255,0.12);
}

.blender-teacher-avatar i {
    color: #ffffff;
    font-size: 4rem;
}

.blender-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blender-faq-item {
    padding: 22px;
}

.blender-faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
}

.blender-faq-item p {
    color: #9fb0d1;
    line-height: 1.62;
    margin-bottom: 0;
}

.blender-final-cta {
    padding: 70px 0;
    background:
        radial-gradient(circle at 70% 20%, rgba(79,140,255,0.16), transparent 30%),
        #0e0f13;
}

.blender-final-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
    padding: clamp(26px, 4vw, 46px);
}

.blender-final-card p {
    max-width: 700px;
}

@keyframes blenderFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

@keyframes blenderSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991.98px) {
    .blender-hero-inner,
    .blender-outcome-grid,
    .blender-two-columns,
    .blender-format-shell {
        grid-template-columns: 1fr;
    }

    .blender-hero {
        min-height: unset;
        padding-bottom: 64px;
    }

    .blender-render-card {
        transform: none;
    }

    .blender-skill-grid,
    .blender-program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .blender-hero {
        padding-top: 96px;
    }

    .blender-hero h1 {
        font-size: clamp(38px, 12vw, 52px);
    }

    .blender-hero-actions,
    .blender-final-card {
        align-items: stretch;
        flex-direction: column;
    }

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

    .blender-audience-grid,
    .blender-skill-grid,
    .blender-program-grid,
    .blender-faq-grid {
        grid-template-columns: 1fr;
    }

    .blender-outcome-card img,
    .blender-why-card img {
        min-height: 240px;
    }

    .blender-teacher-card {
        grid-template-columns: 1fr;
    }

    .blender-teacher-avatar {
        width: 100%;
        height: 130px;
    }

    .blender-current-price {
        font-size: 2.8rem;
    }
}
