:root {
    --alpha-blue: #2478f2;
    --alpha-blue-dark: #125ec7;
    --alpha-red: #f21f2f;
    --alpha-text: #111111;
    --alpha-muted: #666666;
    --alpha-white: #ffffff;
    --container: 1240px;
    --alpha-font: "Times New Roman", Times, serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--alpha-font);
    font-size: 14px;
    color: var(--alpha-text);
    background: #fff;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.section-padding {
    padding: 64px 0;
}

.section-title {
    margin: 0 0 48px;
    font-size: clamp(24px, 4.2vw, 40px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: 0;
}

.section-title-center {
    text-align: center;
}

.section-title-black {
    color: #000;
}

.section-title-red {
    color: var(--alpha-red);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.header-inner {
    position: relative;
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.site-logo img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.main-nav {
    margin-left: 18px;
    flex: 1 1 auto;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu li {
    position: relative;
}

.main-menu .is-hidden-menu-item {
    display: none;
}

.main-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: var(--alpha-blue-dark);
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
    padding: 0 2px;
    border-radius: 999px;
}

.main-menu a:hover,
.main-menu a:focus-visible {
    background: #ffd7df;
    color: var(--alpha-blue-dark);
    padding: 0 16px;
}

.main-menu .current-menu-item > a,
.main-menu .current_page_item > a,
.main-menu .current-menu-ancestor > a {
    background: #ffd7df;
    color: var(--alpha-blue-dark);
    padding: 0 16px;
}

.main-menu .sub-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 20;
    min-width: 210px;
    display: grid;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 10px;
    border: 1px solid #e6eefb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(18, 94, 199, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.main-menu li:hover > .sub-menu,
.main-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu .sub-menu a {
    width: 100%;
    justify-content: flex-start;
    min-height: 34px;
    padding: 0 12px;
    font-size: 16px;
}

.main-menu .sub-menu a:hover,
.main-menu .sub-menu a:focus-visible,
.main-menu .sub-menu .current-menu-item > a {
    padding: 0 12px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    background: var(--alpha-red);
    color: #fff;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.mobile-menu-toggle {
    display: none;
}

.home-hero {
    background: #fff;
}

.hero-heading {
    text-align: center;
    padding: 56px 0 28px;
}

.hero-heading h1 {
    margin: 0 0 12px;
    color: var(--alpha-blue);
    font-size: clamp(23px, 4.2vw, 36px);
    font-weight: 500;
    line-height: 1.15;
}

.hero-heading p {
    margin: 0;
    color: var(--alpha-red);
    font-size: clamp(18px, 2.7vw, 27px);
    font-weight: 500;
}

.hero-banner {
    width: 100%;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.home-intro {
    padding-top: 76px;
    padding-bottom: 42px;
}

.intro-grid {
    display: block;
}

.intro-heading {
    margin-bottom: 24px;
}

.intro-content {
    max-width: none;
}

.intro-heading h2,
.intro-content h2 {
    margin: 0 0 20px;
    color: var(--alpha-blue);
    font-size: clamp(26px, 4vw, 43px);
    line-height: 1;
    font-weight: 500;
}

.intro-heading h2 {
    margin-bottom: 0;
}

.intro-content p {
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 400;
}

.intro-heading .intro-eyebrow,
.intro-content .intro-eyebrow {
    margin: 0 0 10px;
    color: #050505;
    font-size: clamp(18px, 2.5vw, 29px);
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
}

.intro-rich-text p {
    margin: 0 0 18px;
}

.intro-rich-text p:last-child {
    margin-bottom: 0;
}

.entry-content p,
.intro-rich-text p,
.about-rich-text p,
.course-card p,
.notice-content p,
.notice-detail-content p,
.documents-intro p,
.document-info p,
.course-detail-intro p,
.course-registration-list p,
.alpha-registration-header p,
.contact-content p,
.contact-info p,
.contact-extra p {
    text-align: justify;
    text-align-last: left;
}

.home-courses {
    padding-top: 38px;
    padding-bottom: 86px;
}

.course-grid {
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px 36px;
}

.course-card {
    min-height: 390px;
    border-radius: 22px;
    padding: 46px 34px 34px;
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transform: translateY(0) scale(1);
    transition: transform 220ms ease, box-shadow 220ms ease;
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .course-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }
}

.course-card-blue {
    background: var(--alpha-blue);
}

.course-card-red {
    background: var(--alpha-red);
}

.course-card h3 {
    margin: 0;
    color: #fff;
    font-size: 31px;
    line-height: 1.25;
    font-weight: 500;
}

.course-card p {
    margin: 24px 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.45;
}

.course-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    color: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 400;
}

.home-stats {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stats-overlay {
    padding: 56px 0 64px;
    background: rgba(0, 0, 0, 0.58);
}

.stats-title {
    margin: 0 0 36px;
    color: #fff;
    text-align: center;
    font-size: clamp(26px, 4.2vw, 41px);
    line-height: 1.1;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 48px;
}

.stat-card {
    min-height: 105px;
    padding: 18px 22px;
    border: 2px solid rgba(36, 120, 242, 0.9);
    border-radius: 14px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card strong {
    color: var(--alpha-blue);
    font-size: 38px;
    line-height: 1;
    font-weight: 500;
}

.stat-card span {
    margin-top: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
}

.home-testimonials {
    padding-top: 56px;
    padding-bottom: 84px;
}

.testimonial-slider-wrap {
    background: var(--alpha-blue);
    border-radius: 42px;
    padding: 42px 42px 52px;
    overflow: hidden;
}

.testimonial-swiper {
    overflow: visible;
}

.testimonial-card {
    margin: 0;
    aspect-ratio: 4 / 3;
    background: #fff;
    border-radius: 24px;
    padding: 10px;
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: contain;
}

.testimonial-swiper .swiper-pagination {
    position: static;
    margin-top: 26px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.65;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 28px;
    z-index: 120;
    display: grid;
    gap: 14px;
}

.floating-contact-button {
    position: relative;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    isolation: isolate;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-contact-button::before,
.floating-contact-button::after {
    content: "";
    position: absolute;
    inset: -5px;
    z-index: -1;
    border-radius: inherit;
    background: currentColor;
    opacity: 0.16;
    animation: floating-contact-pulse 1800ms ease-out infinite;
}

.floating-contact-button::after {
    inset: -10px;
    opacity: 0.08;
    animation-delay: 450ms;
}

.floating-contact-button:hover,
.floating-contact-button:focus-visible {
    transform: translateY(-3px) scale(1.06);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.floating-contact-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.16);
    animation: floating-contact-swing 1350ms ease-in-out infinite;
    transform-origin: 50% 80%;
}

.floating-contact-button:nth-child(2) .floating-contact-icon {
    animation-delay: 150ms;
}

.floating-contact-button:nth-child(3) .floating-contact-icon {
    animation-delay: 300ms;
}

.floating-contact-facebook {
    background: #1877f2;
    color: #1877f2;
}

.floating-contact-zalo {
    background: #1aa7ec;
    color: #1aa7ec;
}

.floating-contact-phone {
    background: var(--alpha-red);
    color: var(--alpha-red);
}

.floating-contact-facebook .floating-contact-icon,
.floating-contact-zalo .floating-contact-icon,
.floating-contact-phone .floating-contact-icon {
    color: #fff;
}

.floating-contact svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.floating-contact-facebook-text {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 31px;
    line-height: 1;
    font-weight: 800;
}

.floating-contact-zalo-text {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

@keyframes floating-contact-swing {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
    }

    18% {
        transform: rotate(-10deg) translateY(-1px);
    }

    36% {
        transform: rotate(8deg) translateY(1px);
    }

    54% {
        transform: rotate(-6deg) translateY(0);
    }

    72% {
        transform: rotate(4deg) translateY(-1px);
    }
}

@keyframes floating-contact-pulse {
    0% {
        transform: scale(0.82);
        opacity: 0.24;
    }

    80%, 100% {
        transform: scale(1.28);
        opacity: 0;
    }
}

.site-footer {
    background: #f1fbff;
    color: #08345f;
    border-top: 4px solid #bfefff;
}

.footer-inner {
    width: min(1516px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 38px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-brand-image {
    display: block;
    width: min(100%, 1515px);
    height: clamp(120px, 17vw, 260px);
    object-fit: cover;
    object-position: center;
}

.footer-logo {
    width: 110px;
    flex: 0 0 auto;
}

.footer-brand-text {
    position: relative;
    padding-left: 30px;
}

.footer-brand-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: rgba(255, 255, 255, 0.34);
}

.footer-department,
.footer-center-name,
.footer-intro,
.footer-hours {
    margin: 0;
}

.footer-department {
    color: #79d8ff;
    font-size: 31px;
    line-height: 1.08;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-center-name {
    margin-top: 10px;
    color: #ffdf72;
    font-family: var(--alpha-font);
    font-size: 32px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-intro {
    max-width: 1515px;
    margin: 0 auto;
    color: #08345f;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.footer-hours {
    margin-top: 26px;
    color: #c40000;
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.footer-columns {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 120px;
    margin-top: 68px;
}

.footer-column h2 {
    margin: 0 0 22px;
    color: #0874c7;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-training-list,
.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-training-list {
    display: grid;
    gap: 17px;
}

.footer-training-list li {
    position: relative;
    padding-left: 34px;
    color: #08345f;
    font-size: 20px;
    line-height: 1.18;
    font-weight: 700;
}

.footer-training-list li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0.38em;
    width: 13px;
    height: 13px;
    border-top: 3px solid #0874c7;
    border-right: 3px solid #0874c7;
    transform: rotate(45deg);
}

.footer-contact-list {
    display: grid;
    gap: 20px;
}

.footer-contact-list li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    color: #08345f;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.footer-contact-list a {
    color: inherit;
    text-decoration: none;
}

.footer-contact-list a:hover,
.footer-contact-list a:focus-visible {
    text-decoration: underline;
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d7f3ff;
    color: #0874c7;
}

.footer-contact-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.footer-contact-icon-home::before {
    content: "⌂";
    transform: translateY(-1px);
}

.footer-contact-icon-phone::before {
    content: "☎";
    transform: translateY(1px);
}

.footer-contact-icon-mail::before {
    content: "✉";
    font-size: 23px;
}

.footer-contact-icon-web::before {
    content: "◎";
}

.content-layout {
    max-width: 820px;
}

.entry-content h1 {
    margin-top: 0;
    color: var(--alpha-blue-dark);
}

.entry-content {
    font-size: 16px;
    line-height: 1.7;
}

.contact-page {
    background: #fff;
}

.contact-page.section-padding {
    padding: 30px 0 118px;
}

.contact-layout {
    width: min(100% - 80px, 1180px);
}

.contact-content {
    color: #050505;
}

.contact-content h1 {
    margin: 0 0 24px;
    color: var(--alpha-red);
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0;
}

.contact-info {
    max-width: 820px;
    margin: 0 auto;
}

.contact-info h2 {
    margin: 0 0 8px;
    color: #050505;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: 0;
}

.contact-info p {
    margin: 0 0 8px;
    color: #050505;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.contact-info ul {
    margin: 0;
    padding-left: 28px;
}

.contact-info li {
    color: #050505;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;
}

.contact-extra {
    max-width: 820px;
    margin-top: 26px;
    color: #111;
    font-size: 16px;
    line-height: 1.7;
}

.contact-extra p {
    margin: 0 0 12px;
}

.about-page {
    background: #fff;
}

.about-layout {
    width: min(100% - 48px, 1180px);
    max-width: 1180px;
}

.about-hero {
    min-height: 360px;
    background-color: #163a5a;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-hero-overlay {
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 54px 24px;
    background: rgba(0, 0, 0, 0.54);
}

.about-hero h1 {
    margin: 0;
    color: #fff;
    text-align: center;
    font-size: clamp(36px, 6.5vw, 74px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
}

.about-intro.section-padding {
    padding: 74px 0 36px;
}

.about-intro-copy {
    max-width: 1060px;
}

.about-eyebrow {
    margin: 0 0 10px;
    color: #050505;
    font-size: clamp(19px, 2.8vw, 31px);
    line-height: 1.1;
    font-weight: 500;
    text-transform: uppercase;
}

.about-eyebrow,
.about-rich-text p,
.about-wide-image,
.about-stat-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 620ms ease var(--about-reveal-delay, 0ms), transform 760ms cubic-bezier(0.16, 1, 0.3, 1) var(--about-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.about-animation-ready .about-eyebrow:not(.is-visible),
.about-animation-ready .about-rich-text p:not(.is-visible),
.about-animation-ready .about-wide-image:not(.is-visible),
.about-animation-ready .about-stat-card:not(.is-visible) {
    opacity: 0;
    transform: translateY(30px);
}

.about-eyebrow.is-visible,
.about-rich-text p.is-visible,
.about-wide-image.is-visible,
.about-stat-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-intro h2,
.about-value h2,
.about-stats h2 {
    position: relative;
    margin: 0;
    color: var(--alpha-blue);
    font-size: clamp(26px, 4vw, 43px);
    line-height: 1.08;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 620ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1), text-shadow 760ms ease;
    will-change: opacity, transform;
}

.title-nowrap,
.about-title-nowrap {
    white-space: nowrap;
}

.about-animation-ready .about-intro h2:not(.is-visible),
.about-animation-ready .about-value h2:not(.is-visible),
.about-animation-ready .about-stats h2:not(.is-visible) {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
}

.about-intro h2.is-visible,
.about-value h2.is-visible,
.about-stats h2.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    text-shadow: 0 10px 28px rgba(36, 120, 242, 0.16);
}

.about-intro h2,
.about-value h2 {
    display: inline-block;
    padding-bottom: 10px;
    border-bottom: 0;
}

.about-intro h2::after,
.about-value h2::after,
.about-stats h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, rgba(36, 120, 242, 0), #6d8aa5 18%, var(--alpha-blue) 58%, rgba(36, 120, 242, 0));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1) 160ms;
}

.about-intro h2.is-visible::after,
.about-value h2.is-visible::after,
.about-stats h2.is-visible::after {
    transform: scaleX(1);
}

.about-intro h2::before,
.about-value h2::before,
.about-stats h2::before {
    content: "";
    position: absolute;
    inset: -8px -14px 0;
    background: linear-gradient(110deg, transparent 0%, rgba(36, 120, 242, 0.16) 45%, transparent 70%);
    opacity: 0;
    transform: translateX(-28%);
    pointer-events: none;
}

.about-intro h2.is-visible::before,
.about-value h2.is-visible::before,
.about-stats h2.is-visible::before {
    animation: about-heading-sheen 1200ms ease 220ms 1 both;
}

@keyframes about-heading-sheen {
    0% {
        opacity: 0;
        transform: translateX(-28%);
    }

    26% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(38%);
    }
}

.about-intro h2 {
    margin-bottom: 32px;
}

.about-rich-text {
    color: #050505;
    font-size: 18px;
    line-height: 1.38;
    font-weight: 400;
}

.about-rich-text p {
    margin: 0 0 31px;
}

.about-rich-text p:last-child {
    margin-bottom: 0;
}

.about-document-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;
    gap: 22px;
    max-width: 760px;
    margin: 38px auto 0;
}

.about-document-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 18px;
    color: #141414;
    text-decoration: none;
    border: 1px solid #d9dfe9;
    background: #fff;
    box-shadow: 0 8px 24px rgba(20, 54, 104, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-document-card:hover {
    color: #141414;
    border-color: #2878df;
    box-shadow: 0 12px 30px rgba(20, 54, 104, 0.16);
    transform: translateY(-3px);
}

.about-document-cover {
    display: grid;
    min-height: 230px;
    place-items: center;
    overflow: hidden;
    background: #f3f6fa;
}

.about-document-cover img {
    width: 100%;
    height: 230px;
    object-fit: contain;
}

.about-document-pdf {
    padding: 10px 14px;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    background: #e33333;
    border-radius: 5px;
}

.about-document-card strong {
    font-size: 16px;
    line-height: 1.4;
}

.about-document-action {
    color: #2878df;
    font-size: 14px;
    font-weight: 600;
}

.about-wide-image {
    margin: 46px 0 0;
}

.about-wide-image img {
    width: 100%;
    aspect-ratio: 16 / 5.2;
    object-fit: cover;
}

.about-values {
    padding: 38px 0 48px;
}

.about-value {
    display: grid;
    gap: 28px;
    margin-bottom: 58px;
}

.about-value:last-child {
    margin-bottom: 0;
}

.about-value-right h2 {
    justify-self: end;
    text-align: right;
}

.about-value-left h2 {
    justify-self: start;
    text-align: left;
}

.about-stats {
    background-color: #163a5a;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-stats-overlay {
    padding: 42px 0 62px;
    background: rgba(0, 0, 0, 0.58);
}

.about-stats h2 {
    margin-bottom: 30px;
    color: #fff;
    text-align: center;
    font-size: clamp(24px, 4.2vw, 41px);
    display: inline-block;
    left: 50%;
    transform: translate(-50%, 0) scale(1);
}

.about-animation-ready .about-stats h2:not(.is-visible) {
    transform: translate(-50%, 24px) scale(0.98);
}

.about-stats h2.is-visible {
    transform: translate(-50%, 0) scale(1);
}

.about-stats h2::after {
    bottom: -8px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 22%, var(--alpha-blue) 62%, rgba(255, 255, 255, 0));
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 54px;
}

.about-stat-card {
    min-height: 138px;
    padding: 24px 18px 20px;
    border: 2px solid rgba(36, 120, 242, 0.92);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-stat-card strong {
    color: var(--alpha-blue);
    font-size: clamp(28px, 4.4vw, 46px);
    line-height: 0.95;
    font-weight: 500;
}

.about-stat-card span {
    margin-top: 12px;
    color: #fff;
    font-size: clamp(16px, 2.2vw, 24px);
    line-height: 1.08;
    font-weight: 400;
    text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
    .about-eyebrow,
    .about-rich-text p,
    .about-wide-image,
    .about-stat-card,
    .about-intro h2,
    .about-value h2,
    .about-stats h2,
    .about-intro h2::after,
    .about-value h2::after,
    .about-stats h2::after {
        transition: none;
    }

    .about-animation-ready .about-intro h2:not(.is-visible),
    .about-animation-ready .about-value h2:not(.is-visible),
    .about-animation-ready .about-stats h2:not(.is-visible) {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .about-animation-ready .about-eyebrow:not(.is-visible),
    .about-animation-ready .about-rich-text p:not(.is-visible),
    .about-animation-ready .about-wide-image:not(.is-visible),
    .about-animation-ready .about-stat-card:not(.is-visible) {
        opacity: 1;
        transform: translateY(0);
    }

    .about-animation-ready .about-stats h2:not(.is-visible) {
        transform: translate(-50%, 0) scale(1);
    }

    .about-intro h2.is-visible::before,
    .about-value h2.is-visible::before,
    .about-stats h2.is-visible::before {
        animation: none;
    }
}

.home-featured-news {
    padding-top: 54px;
    padding-bottom: 58px;
    background: #fff;
}

.featured-news-container {
    max-width: 1180px;
}

.featured-news-header {
    position: relative;
    margin-bottom: 34px;
    padding-bottom: 18px;
}

.featured-news-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--alpha-red);
}

.featured-news-header h2 {
    display: grid;
    gap: 8px;
    margin: 0;
    line-height: 1.08;
    letter-spacing: 0;
    text-transform: uppercase;
}

.featured-news-header span {
    color: #111;
    font-size: 22px;
    font-weight: 900;
}

.featured-news-header strong {
    color: var(--alpha-red);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
}

.featured-news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 34px;
    align-items: start;
}

.featured-news-grid-single {
    grid-template-columns: minmax(0, 760px);
}

.featured-news-main-link,
.featured-news-item a {
    color: #111;
    text-decoration: none;
}

.featured-news-main-link:hover h3,
.featured-news-main-link:focus-visible h3,
.featured-news-item a:hover h3,
.featured-news-item a:focus-visible h3 {
    color: var(--alpha-blue);
    text-decoration: underline;
}

.featured-news-main-media,
.featured-news-item-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #f2f5f8;
}

.featured-news-main-media {
    aspect-ratio: 16 / 9;
}

.featured-news-item-media {
    aspect-ratio: 4 / 3;
}

.featured-news-main-media:empty::before,
.featured-news-item-media:empty::before {
    content: "ALPHA EDU";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--alpha-blue);
    font-size: 18px;
    font-weight: 900;
    background: linear-gradient(135deg, #eef6ff, #ffffff);
}

.featured-news-main-media img,
.featured-news-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.featured-news-main-link:hover img,
.featured-news-main-link:focus-visible img,
.featured-news-item a:hover img,
.featured-news-item a:focus-visible img {
    transform: scale(1.04);
}

.featured-news-main h3 {
    margin: 14px 0 0;
    color: #111;
    font-size: 22px;
    line-height: 1.28;
    font-weight: 900;
    text-transform: uppercase;
}

.featured-news-side {
    display: grid;
    gap: 22px;
}

.featured-news-item a {
    display: grid;
    grid-template-columns: 178px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.featured-news-item h3 {
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
    text-transform: uppercase;
}

.notice-page {
    background: #fff;
}

.notice-page.section-padding {
    padding: 38px 0 52px;
}

.notice-layout {
    width: min(100% - 32px, 1180px);
    max-width: 1180px;
}

.notice-page-title {
    margin: 0 0 24px;
    color: var(--alpha-red);
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0;
}

.notice-list {
    display: grid;
    gap: 8px;
}

.notice-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 255px;
    gap: 58px;
    align-items: start;
    justify-content: space-between;
}

.notice-copy {
    min-width: 0;
    max-width: 860px;
}

.notice-copy h2 {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 6px;
    color: #111;
    font-size: 20px;
    line-height: 1.58;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.notice-copy h2 a {
    color: inherit;
    text-decoration: none;
}

.notice-copy h2 a:hover,
.notice-copy h2 a:focus-visible {
    color: var(--alpha-blue);
    text-decoration: underline;
}

.notice-mark {
    position: relative;
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 7px;
}

.notice-mark::before,
.notice-mark::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.notice-mark::before {
    left: 0;
    top: 3px;
    width: 8px;
    height: 10px;
    background: #17a2b8;
    transform: rotate(-16deg);
}

.notice-mark::after {
    right: 0;
    top: 0;
    width: 6px;
    height: 14px;
    background: var(--alpha-red);
    transform: rotate(16deg);
}

.notice-copy time {
    display: block;
    margin: 0 0 7px;
    color: #111;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}

.notice-copy p,
.notice-content {
    margin: 0;
    color: #111;
    font-size: 15px;
    line-height: 1.86;
    font-weight: 400;
}

.notice-content p {
    margin: 0 0 8px;
}

.notice-content p:last-child {
    margin-bottom: 0;
}

.notice-content a {
    color: #21759b;
    font-weight: 500;
    text-decoration: none;
}

.notice-content a:hover,
.notice-content a:focus-visible {
    color: var(--alpha-blue-dark);
    text-decoration: underline;
}

.notice-media {
    width: 100%;
    margin: 42px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    justify-self: end;
}

.notice-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    background: #eef6ff;
    border-radius: 0;
}

.notice-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notice-empty {
    margin: 12px 0 0;
    color: var(--alpha-muted);
    text-align: center;
    font-size: 16px;
    line-height: 1.6;
}

.notice-detail-page {
    background: #fff;
}

.notice-detail {
    padding-top: 44px;
}

.notice-detail-inner {
    max-width: 980px;
}

.notice-back-link {
    display: inline-flex;
    margin-bottom: 22px;
    color: var(--alpha-blue);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
    text-decoration: none;
}

.notice-back-link:hover,
.notice-back-link:focus-visible {
    color: var(--alpha-blue-dark);
    text-decoration: underline;
}

.notice-detail-header {
    margin-bottom: 24px;
}

.notice-detail-header h1 {
    margin: 0 0 10px;
    color: #111;
    font-size: clamp(23px, 4.2vw, 38px);
    line-height: 1.15;
    font-weight: 900;
    text-transform: uppercase;
}

.notice-detail-header time {
    display: block;
    color: #555;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}

.notice-detail-content {
    color: #111;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.notice-detail-content p {
    margin: 0 0 18px;
    text-align: justify;
    text-align-last: left;
}

.notice-detail-media {
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.notice-detail-image {
    margin: 0;
}

.notice-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.score-page {
    background: #fff;
}

.score-page.section-padding {
    padding: 66px 0 92px;
}

.score-layout {
    max-width: 1180px;
}

.score-page-title {
    margin: 0 0 42px;
    padding-bottom: 24px;
    border-bottom: 4px solid #154f9f;
    color: #154f9f;
    font-size: 31px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.score-lookup-form {
    display: grid;
    gap: 42px;
}

.score-field {
    display: grid;
    gap: 14px;
}

.score-field span {
    color: #111;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
}

.score-field select,
.score-field input {
    width: 100%;
    min-height: 78px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 16px;
    line-height: 1.35;
    padding: 0 26px;
    outline: none;
}

.score-field select {
    appearance: auto;
}

.score-field input::placeholder {
    color: #8c8c8c;
}

.score-field select:focus,
.score-field input:focus {
    border-color: #154f9f;
    box-shadow: 0 0 0 3px rgba(21, 79, 159, 0.14);
}

.score-submit {
    width: 100%;
    min-height: 84px;
    border: 0;
    border-radius: 4px;
    background: #0349b8;
    color: #fff;
    font: inherit;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.score-submit:hover,
.score-submit:focus-visible {
    background: #023f9f;
}

.score-submit:active {
    transform: translateY(1px);
}

.score-result-wrap {
    margin-top: 66px;
}

.score-result-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    color: #222;
    background: #fff;
    font-size: 18px;
    line-height: 1.45;
}

.score-result-table th,
.score-result-table td {
    border: 1px solid #e1e1e1;
    text-align: center;
    vertical-align: middle;
}

.score-result-table th {
    height: 86px;
    background: #f7f7f7;
    font-weight: 900;
}

.score-result-table td {
    min-height: 150px;
    padding: 30px 24px;
}

.score-result-table th:nth-child(1) {
    width: 16%;
}

.score-result-table th:nth-child(2) {
    width: 20%;
}

.score-result-table th:nth-child(3) {
    width: 42%;
}

.score-result-table th:nth-child(4) {
    width: 22%;
}

.certificate-result-table th:nth-child(1) {
    width: 18%;
}

.certificate-result-table th:nth-child(2) {
    width: 62%;
}

.certificate-result-table th:nth-child(3) {
    width: 20%;
}

.certificate-result-table td:nth-child(2) {
    text-align: left;
}

.certificate-result-table td:nth-child(2) span {
    display: block;
}

.certificate-lookup-page .score-lookup-form {
    gap: 34px;
}

.certificate-lookup-page .score-result-table th {
    background: #f4f7fd;
}

.certificate-lookup-page .certificate-number {
    color: #0755a5;
    font-weight: 900;
}

.certificate-information dl {
    display: grid;
    gap: 8px;
    margin: 0;
}

.certificate-information dl > div {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 16px;
}

.certificate-information dt,
.certificate-information dd {
    margin: 0;
}

.certificate-information .certificate-student-name {
    color: #0755a5;
    font-weight: 900;
}

.score-result-table td:nth-child(3) {
    text-align: left;
}

.score-result-table td:nth-child(3) span {
    display: block;
}

.score-result-table strong {
    font-weight: 900;
}

.score-result-status.is-pass {
    color: #16803c;
}

.score-result-status.is-fail {
    color: var(--alpha-red);
}

.score-message {
    margin: 0;
    padding: 22px 24px;
    border: 1px solid #dbe7fb;
    background: #f6f9ff;
    color: #154f9f;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
}

.documents-page {
    background: #fff;
}

.documents-page.section-padding {
    padding: 56px 0 84px;
}

.documents-layout {
    max-width: 1180px;
}

.documents-header {
    margin-bottom: 34px;
}

.documents-header h1 {
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 4px solid #154f9f;
    color: #154f9f;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 900;
}

.documents-intro {
    margin-top: 20px;
    color: #111;
    font-size: 16px;
    line-height: 1.7;
}

.documents-intro p {
    margin: 0 0 10px;
}

.documents-list {
    display: grid;
    gap: 16px;
}

.document-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 22px 24px;
    border: 1px solid #e2e8f0;
    background: #fff;
    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.05);
}

.document-info {
    min-width: 0;
}

.document-info h2 {
    margin: 0;
    color: #111;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 900;
}

.document-info p {
    margin: 8px 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.document-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--alpha-red);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.document-download:hover,
.document-download:focus-visible {
    background: #d91827;
}

.documents-empty {
    margin: 0;
    padding: 22px 24px;
    border: 1px solid #dbe7fb;
    background: #f6f9ff;
    color: #154f9f;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}

.course-detail-page {
    background: #fff;
}

.course-detail {
    padding-top: 48px;
}

.course-detail-inner {
    max-width: 980px;
}

.course-detail-header h1 {
    margin: 0 0 20px;
    color: var(--alpha-blue);
    font-size: clamp(26px, 4.8vw, 43px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
}

.course-detail-intro {
    color: #111;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.course-detail-intro p {
    margin: 0 0 16px;
}

.course-fee-table-wrap {
    margin: 42px 0;
    overflow-x: auto;
}

.course-fee-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    table-layout: fixed;
    border: 1px solid #8c8c8c;
}

.course-fee-table th {
    padding: 15px 18px;
    border: 1px solid #155fc7;
    background: var(--alpha-blue);
    color: #fff;
    text-align: center;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 900;
}

.course-fee-table td {
    min-height: 64px;
    padding: 16px 18px;
    border: 1px solid #9b9b9b;
    color: #080808;
    text-align: center;
    vertical-align: middle;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 900;
}

.course-fee-table td strong {
    display: block;
    font-size: 16px;
}

.course-fee-table td small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.25;
    font-weight: 800;
}

.course-registration-guide {
    margin-top: 28px;
}

.course-registration-guide h2 {
    margin: 0 0 18px;
    color: var(--alpha-blue);
    font-size: clamp(21px, 3.3vw, 27px);
    line-height: 1.15;
    font-weight: 900;
}

.course-registration-list {
    display: grid;
    gap: 13px;
}

.course-registration-list p {
    margin: 0;
    color: #080808;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

.course-registration-list .is-main-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.course-registration-list .is-sub-item {
    padding-left: 0;
    font-size: 15px;
    font-weight: 700;
}

.course-registration-icon {
    position: relative;
    display: inline-block;
    width: 43px;
    height: 34px;
}

.course-registration-icon::before,
.course-registration-icon::after {
    content: "";
    position: absolute;
    top: 3px;
    width: 19px;
    height: 28px;
    background: var(--alpha-red);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--alpha-red);
}

.course-registration-icon::before {
    left: 2px;
    transform: skewY(10deg);
}

.course-registration-icon::after {
    right: 2px;
    transform: skewY(-10deg);
}

.course-register-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70px;
    margin-top: 28px;
    padding: 0 28px;
    border-radius: 18px;
    background: var(--alpha-red);
    color: #fff;
    text-align: center;
    font-size: clamp(18px, 3.2vw, 25px);
    line-height: 1.1;
    font-weight: 900;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}

.course-register-button:hover,
.course-register-button:focus-visible {
    background: #d91827;
    color: #fff;
}

.alpha-registration-section {
    margin-top: 18px;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: translateY(0);
    transition: max-height 650ms cubic-bezier(0.22, 1, 0.36, 1), opacity 360ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.registration-js-ready .alpha-registration-section {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-18px);
}

.registration-js-ready .alpha-registration-section.is-open {
    max-height: 2600px;
    opacity: 1;
    transform: translateY(0);
}

.alpha-registration-arrow {
    width: 0;
    height: 0;
    margin: 12px auto 14px;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 0;
    border-bottom: 42px solid var(--alpha-blue);
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 300ms ease 140ms, transform 420ms cubic-bezier(0.22, 1, 0.36, 1) 140ms;
}

.registration-js-ready .alpha-registration-section .alpha-registration-arrow {
    opacity: 0;
    transform: translateY(-8px) scale(0.82);
}

.registration-js-ready .alpha-registration-section.is-open .alpha-registration-arrow {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.alpha-registration-form {
    padding: 26px 24px 22px;
    border-radius: 10px;
    background: var(--alpha-blue);
    color: #fff;
    transform: translateY(0) scale(1);
    transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 520ms ease;
}

.registration-js-ready .alpha-registration-section .alpha-registration-form {
    transform: translateY(-10px) scale(0.985);
}

.registration-js-ready .alpha-registration-section.is-open .alpha-registration-form {
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 42px rgba(18, 94, 199, 0.22);
}

.alpha-registration-header {
    margin-bottom: 24px;
}

.alpha-registration-header h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(18px, 3.2vw, 25px);
    line-height: 1.1;
    font-weight: 900;
}

.alpha-registration-header p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.alpha-registration-success {
    margin: 0 0 18px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #fff;
    color: var(--alpha-blue-dark);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 900;
}

.alpha-registration-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.alpha-registration-grid label {
    min-width: 0;
}

.alpha-registration-grid span {
    display: block;
    margin: 0 0 6px;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
}

.alpha-registration-grid input,
.alpha-registration-grid select,
.alpha-registration-grid textarea {
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-family: var(--alpha-font);
    font-size: 14px;
    font-weight: 800;
    outline: none;
}

.alpha-registration-grid input,
.alpha-registration-grid select {
    padding: 0 14px;
}

.alpha-registration-grid select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
    background-position: calc(100% - 20px) 17px, calc(100% - 13px) 17px;
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
    padding-right: 38px;
}

.alpha-registration-grid textarea {
    min-height: 104px;
    padding: 14px;
    border-radius: 14px;
    resize: vertical;
}

.alpha-registration-wide {
    grid-column: 1 / -1;
}

.alpha-registration-submit {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 54px;
    min-height: 54px;
    padding: 0 18px;
    margin-top: 22px;
    border: 0;
    border-radius: 12px;
    background: var(--alpha-red);
    color: #fff;
    font-family: var(--alpha-font);
    font-size: clamp(17px, 3.2vw, 22px);
    line-height: 54px;
    font-weight: 900;
    text-align: center !important;
    cursor: pointer;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.14);
}

.alpha-registration-submit:hover,
.alpha-registration-submit:focus-visible {
    background: #d91827;
}

.alpha-registration-form-cf7 .wpcf7-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.alpha-registration-form-cf7 .wpcf7-form > p,
.alpha-registration-form-cf7 .wpcf7-form > label {
    margin: 0;
    min-width: 0;
}

.alpha-registration-form-cf7 .wpcf7-form > p:has(textarea),
.alpha-registration-form-cf7 .wpcf7-form > p:has(input[type="submit"]),
.alpha-registration-form-cf7 .wpcf7-form > label:has(textarea) {
    grid-column: 1 / -1;
}

.alpha-registration-form-cf7 .wpcf7-form > p:has(input[type="submit"]),
.alpha-registration-form-cf7 .alpha-registration-submit-row {
    display: grid;
    position: relative;
}

.alpha-registration-form-cf7 .wpcf7-form > p:has(input[type="submit"])::before,
.alpha-registration-form-cf7 .alpha-registration-submit-row::before {
    content: "ĐĂNG KÝ NGAY";
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    width: max-content;
    max-width: calc(100% - 36px);
    height: 54px;
    color: #fff;
    font-size: clamp(17px, 3.2vw, 22px);
    line-height: 54px;
    font-weight: 900;
    text-align: center;
    pointer-events: none;
    transform: translateX(-50%);
}

.alpha-registration-form-cf7 label {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
}

.alpha-registration-form-cf7 .wpcf7-form-control-wrap {
    display: block;
    margin-top: 6px;
}

.alpha-registration-form-cf7 input:not([type="submit"]),
.alpha-registration-form-cf7 select,
.alpha-registration-form-cf7 textarea {
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-family: var(--alpha-font);
    font-size: 14px;
    font-weight: 800;
    outline: none;
}

.alpha-registration-form-cf7 input:not([type="submit"]),
.alpha-registration-form-cf7 select {
    padding: 0 14px;
}

.alpha-registration-form-cf7 select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #111 50%), linear-gradient(135deg, #111 50%, transparent 50%);
    background-position: calc(100% - 20px) 17px, calc(100% - 13px) 17px;
    background-size: 8px 8px, 8px 8px;
    background-repeat: no-repeat;
    padding-right: 38px;
}

.alpha-registration-form-cf7 textarea {
    min-height: 104px;
    padding: 14px;
    border-radius: 14px;
    resize: vertical;
}

.alpha-registration-form-cf7 input[type="submit"],
.alpha-registration-form-cf7 .wpcf7-submit {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 54px;
    min-height: 54px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--alpha-red);
    color: transparent;
    font-family: var(--alpha-font);
    font-size: clamp(17px, 3.2vw, 22px);
    line-height: 54px;
    font-weight: 900;
    text-align: center !important;
    cursor: pointer;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.14);
}

.alpha-registration-form-cf7 input[type="submit"]:hover,
.alpha-registration-form-cf7 input[type="submit"]:focus-visible,
.alpha-registration-form-cf7 .wpcf7-submit:hover,
.alpha-registration-form-cf7 .wpcf7-submit:focus-visible {
    background: #d91827;
}

.alpha-registration-form-cf7 .wpcf7-spinner {
    justify-self: center;
    margin: 10px 0 0;
}

.alpha-registration-form-cf7 .wpcf7-response-output {
    grid-column: 1 / -1;
    margin: 4px 0 0;
    border-color: #fff;
    color: #fff;
    font-weight: 800;
}

@media (max-width: 1120px) {
    .header-inner {
        gap: 12px;
    }

    .main-nav {
        margin-left: 10px;
    }

    .main-menu {
        gap: 12px;
    }

    .main-menu a {
        font-size: 14px;
    }

    .header-cta {
        padding: 0 14px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .course-grid {
        gap: 32px;
    }
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .header-inner {
        min-height: 64px;
        flex-wrap: wrap;
    }

    .site-logo img {
        width: 46px;
        height: 46px;
    }

    .main-nav {
        display: block;
        position: static;
        order: 4;
        width: 100%;
        margin-left: 0;
        flex: none;
        background: #fff;
        padding: 0 0 12px;
        box-shadow: none;
    }

    .main-menu {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 8px 14px;
    }

    .main-menu a {
        min-height: 32px;
        font-size: 13px;
    }

    .main-menu .menu-item-lookup-parent {
        display: grid;
        justify-items: center;
        gap: 4px;
    }

    .main-menu .sub-menu {
        position: static;
        min-width: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        padding: 0;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .main-menu .sub-menu a {
        min-height: 30px;
        padding: 0 10px;
        font-size: 12px;
    }

    .main-menu .sub-menu a:hover,
    .main-menu .sub-menu a:focus-visible,
    .main-menu .sub-menu .current-menu-item > a {
        padding: 0 10px;
    }

    .header-cta {
        margin-left: auto;
        min-height: 34px;
        padding: 0 14px;
        font-size: 12px;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu-toggle span {
        display: block;
        height: 3px;
        background: var(--alpha-blue-dark);
        border-radius: 999px;
    }

    .hero-heading {
        padding: 38px 0 22px;
    }

    .about-layout {
        width: calc(100% - 32px);
    }

    .about-hero,
    .about-hero-overlay {
        min-height: 280px;
    }

    .about-intro.section-padding {
        padding: 52px 0 28px;
    }

    .about-rich-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .about-wide-image img {
        aspect-ratio: 16 / 7;
    }

    .about-stats-grid {
        gap: 20px;
    }

    .intro-content p {
        font-size: 15px;
    }

    .course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .course-card {
        min-height: 315px;
        padding: 36px 26px 28px;
    }

    .course-card h3 {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-slider-wrap {
        border-radius: 28px;
        padding: 28px 18px 40px;
    }

    .footer-inner {
        padding: 34px 0 46px;
    }

    .footer-brand {
        gap: 20px;
    }

    .footer-logo {
        width: 82px;
    }

    .footer-department {
        font-size: 21px;
    }

    .footer-center-name {
        font-size: 23px;
    }

    .footer-intro {
        font-size: 16px;
    }

    .footer-hours {
        font-size: 16px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-top: 42px;
    }

    .footer-column h2 {
        font-size: 21px;
    }

    .footer-training-list li,
    .footer-contact-list li {
        font-size: 16px;
    }

    .footer-contact-list li {
        grid-template-columns: 36px minmax(0, 1fr);
    }

    .footer-contact-icon {
        width: 36px;
        height: 36px;
    }

    .footer-contact-icon svg {
        width: 24px;
        height: 24px;
    }

    .notice-layout {
        width: calc(100% - 24px);
    }

    .notice-page.section-padding {
        padding: 32px 0 46px;
    }

    .notice-item {
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 24px;
    }

    .notice-media {
        width: 100%;
    }

    .score-page-title {
        font-size: 28px;
    }

    .score-field span {
        font-size: 17px;
    }

    .score-field select,
    .score-field input {
        min-height: 66px;
        font-size: 15px;
        padding: 0 18px;
    }

    .score-submit {
        min-height: 70px;
        font-size: 18px;
    }

    .score-result-wrap {
        overflow-x: auto;
    }

    .score-result-table {
        min-width: 980px;
        font-size: 17px;
    }

    .documents-header h1 {
        font-size: 28px;
    }

    .contact-page.section-padding {
        padding: 28px 0 82px;
    }

    .contact-layout {
        width: calc(100% - 48px);
    }

    .contact-content h1 {
        font-size: 20px;
    }

    .contact-info h2 {
        font-size: 16px;
    }

    .course-detail {
        padding-top: 36px;
    }

    .course-detail-intro {
        font-size: 16px;
    }

    .course-fee-table th {
        font-size: 17px;
    }

    .course-fee-table td {
        font-size: 16px;
    }

    .course-registration-list p {
        font-size: 17px;
    }

    .alpha-registration-form {
        padding: 22px 18px 18px;
    }

    .alpha-registration-grid {
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .section-padding {
        padding: 44px 0;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        min-height: 300px;
    }

    .stat-card strong {
        font-size: 31px;
    }

    .stat-card span {
        font-size: 16px;
    }

    .footer-inner {
        padding: 28px 0 38px;
    }

    .footer-brand {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-logo {
        width: 76px;
    }

    .footer-brand-text {
        padding-left: 0;
    }

    .footer-brand-text::before {
        display: none;
    }

    .footer-department {
        font-size: 18px;
    }

    .footer-center-name {
        font-size: 19px;
    }

    .footer-intro {
        font-size: 15px;
        line-height: 1.45;
    }

    .footer-hours {
        margin-top: 20px;
        font-size: 15px;
    }

    .footer-columns {
        gap: 34px;
        margin-top: 34px;
    }

    .footer-column h2 {
        font-size: 19px;
    }

    .footer-training-list li,
    .footer-contact-list li {
        font-size: 15px;
    }

    .footer-training-list li {
        padding-left: 28px;
    }

    .footer-training-list li::before {
        top: 0.36em;
        width: 10px;
        height: 10px;
        border-top-width: 2px;
        border-right-width: 2px;
    }

    .footer-contact-list li {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 12px;
    }

    .course-detail-header h1 {
        margin-bottom: 16px;
    }

    .course-detail-intro {
        font-size: 16px;
    }

    .course-fee-table-wrap {
        margin: 28px 0;
    }

    .course-fee-table {
        min-width: 620px;
    }

    .course-fee-table th {
        padding: 12px;
        font-size: 16px;
    }

    .course-fee-table td {
        padding: 13px 12px;
        font-size: 15px;
    }

    .course-fee-table td strong {
        font-size: 15px;
    }

    .course-registration-list .is-main-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
    }

    .course-registration-list p {
        font-size: 15px;
    }

    .course-registration-list .is-sub-item {
        font-size: 15px;
    }

    .course-registration-icon {
        width: 35px;
        height: 28px;
    }

    .course-registration-icon::before,
    .course-registration-icon::after {
        width: 15px;
        height: 23px;
    }

    .course-register-button {
        min-height: 58px;
        border-radius: 14px;
    }

    .alpha-registration-arrow {
        border-left-width: 15px;
        border-right-width: 15px;
        border-bottom-width: 34px;
    }

    .alpha-registration-form {
        padding: 18px 14px 16px;
        border-radius: 8px;
    }

    .alpha-registration-grid {
        grid-template-columns: 1fr;
    }

    .alpha-registration-form-cf7 .wpcf7-form {
        grid-template-columns: 1fr;
    }

    .alpha-registration-grid span {
        font-size: 14px;
    }

    .alpha-registration-grid input,
    .alpha-registration-grid select,
    .alpha-registration-grid textarea {
        font-size: 14px;
    }

    .footer-contact-icon {
        width: 34px;
        height: 34px;
    }

    .footer-contact-icon svg {
        width: 22px;
        height: 22px;
    }

    .testimonial-card {
        padding: 8px;
        border-radius: 20px;
    }

    .testimonial-image {
        border-radius: 14px;
    }

    .about-hero,
    .about-hero-overlay {
        min-height: 220px;
    }

    .about-hero-overlay {
        padding: 42px 16px;
    }

    .about-intro.section-padding {
        padding: 38px 0 20px;
    }

    .about-intro h2 {
        margin-bottom: 24px;
    }

    .title-nowrap,
    .about-title-nowrap {
        white-space: normal;
    }

    .about-rich-text {
        font-size: 15px;
        line-height: 1.55;
    }

    .about-rich-text p {
        margin-bottom: 18px;
    }

    .about-document-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 26px;
    }

    .about-document-cover,
    .about-document-cover img {
        height: 210px;
        min-height: 210px;
    }

    .about-wide-image {
        margin-top: 30px;
    }

    .about-wide-image img {
        aspect-ratio: 4 / 3;
    }

    .about-values {
        padding: 28px 0 38px;
    }

    .about-value {
        gap: 18px;
        margin-bottom: 40px;
    }

    .about-value-right h2,
    .about-value-left h2 {
        justify-self: start;
        text-align: left;
    }

    .about-stats-overlay {
        padding: 34px 0 42px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-stat-card {
        min-height: 112px;
    }

    .notice-page-title {
        font-size: 20px;
    }

    .notice-page.section-padding {
        padding: 28px 0 42px;
    }

    .notice-list {
        gap: 18px;
    }

    .notice-item {
        grid-template-columns: minmax(0, 1fr) minmax(112px, 34vw);
        gap: 12px;
        align-items: start;
    }

    .notice-copy {
        max-width: none;
    }

    .notice-copy h2,
    .notice-copy time,
    .notice-copy p,
    .notice-content {
        font-size: 14px;
        line-height: 1.55;
    }

    .notice-media {
        width: 100%;
        margin-top: 34px;
    }

    .score-page.section-padding {
        padding: 44px 0 62px;
    }

    .score-page-title {
        margin-bottom: 30px;
        padding-bottom: 16px;
        font-size: 23px;
        border-bottom-width: 3px;
    }

    .score-lookup-form {
        gap: 26px;
    }

    .score-field {
        gap: 10px;
    }

    .score-field span {
        font-size: 15px;
    }

    .score-field select,
    .score-field input {
        min-height: 58px;
        font-size: 16px;
        padding: 0 14px;
    }

    .score-submit {
        min-height: 60px;
        font-size: 16px;
    }

    .score-result-wrap {
        margin-top: 38px;
    }

    .score-result-table {
        min-width: 860px;
        font-size: 15px;
    }

    .score-result-table th {
        height: 68px;
    }

    .score-result-table td {
        padding: 22px 16px;
    }

    .score-message {
        font-size: 14px;
    }

    .documents-page.section-padding {
        padding: 42px 0 62px;
    }

    .documents-header h1 {
        padding-bottom: 16px;
        font-size: 23px;
        border-bottom-width: 3px;
    }

    .contact-page.section-padding {
        padding: 24px 0 64px;
    }

    .contact-layout {
        width: calc(100% - 32px);
    }

    .contact-content h1 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .contact-info h2,
    .contact-info p,
    .contact-info li,
    .contact-extra {
        font-size: 14px;
    }

    .contact-info ul {
        padding-left: 22px;
    }

    .document-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 16px;
    }

    .document-info h2 {
        font-size: 15px;
    }

    .document-download {
        width: 100%;
    }
}



@media (max-width: 860px) {
    .home-featured-news {
        padding-top: 40px;
        padding-bottom: 44px;
    }

    .featured-news-header {
        margin-bottom: 24px;
        padding-bottom: 14px;
    }

    .featured-news-header span {
        font-size: 18px;
    }

    .featured-news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .featured-news-side {
        gap: 16px;
    }

    .featured-news-item a {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 14px;
    }

    .featured-news-main h3 {
        font-size: 19px;
    }

    .featured-news-item h3 {
        font-size: 16px;
    }
}

@media (max-width: 520px) {
    .featured-news-header h2 {
        gap: 5px;
    }

    .featured-news-header strong {
        font-size: 30px;
    }

    .featured-news-main h3 {
        font-size: 17px;
        line-height: 1.35;
    }

    .featured-news-item a {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 12px;
    }

    .featured-news-item h3 {
        font-size: 14px;
        line-height: 1.4;
    }
}


@media (max-width: 860px) {
    .floating-contact {
        right: 12px;
        bottom: 22px;
        gap: 11px;
    }

    .floating-contact-button {
        width: 48px;
        height: 48px;
    }

    .floating-contact-icon {
        width: 37px;
        height: 37px;
    }

    .floating-contact-facebook-text {
        font-size: 27px;
    }

    .floating-contact-zalo-text {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    .floating-contact {
        right: 10px;
        bottom: 18px;
        gap: 10px;
    }

    .floating-contact-button {
        width: 44px;
        height: 44px;
    }

    .floating-contact-icon {
        width: 34px;
        height: 34px;
    }

    .floating-contact svg {
        width: 21px;
        height: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-contact-button::before,
    .floating-contact-button::after,
    .floating-contact-icon {
        animation: none;
    }
}
