.offline-page {
    background: #efefef;
    padding: 32px 0 48px;
    font-family: "Poppins", sans-serif;
}

.offline-wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.offline-hero {
    width: 100%;
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 20px;
    padding: clamp(18px, 2.5vw, 40px) clamp(24px, 4.5vw, 84px);
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* .offline-hero-content {
    max-width: 760px;
} */

.hero-practical-tag {
    display: inline-block;
    background: #d40000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    transform: rotate(-12deg);
    margin-left: -10px;
    margin-bottom: 35px;
}

.offline-hero-content h1,
.offline-hero-content h2,
.offline-hero-content h3 {
    margin: 0;
    font-weight: 500;
    line-height: 1.1;
}

.offline-hero-content h1,
.offline-hero-content h3 {
    color: #000;
}

.offline-hero-content h2 {
    color: #d60808;
}

.offline-hero-content h1,
.offline-hero-content h2,
.offline-hero-content h3 {
    font-size: clamp(46px, 5vw, 52px);
}

.offline-hero-content p {
    margin: 14px 0 0;
    /* max-width: 680px; */
    font-size: clamp(22px, 2.1vw, 37px);
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.45;
}

.hero-cta-row {
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.offline-enroll-btn {
    display: inline-block;
    background: linear-gradient(90deg, #f00000 0%, #d00000 100%);
    color: #fff;
    border: 1px solid #ffffff;
    font-weight: 800;
    font-size: clamp(28px, 3.1vw, 46px);
    line-height: 1;
    padding: 15px 42px;
    border-radius: 20px;
    text-decoration: none;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
}

.hero-tour-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
    font-size: clamp(20px, 2.1vw, 36px);
    font-weight: 700;
}

.hero-tour-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #e00000;
    position: relative;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.22);
}

.hero-tour-icon::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 23px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 20px solid #fff;
}

.offline-hero-art {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.offline-hero-art > img {
    width: clamp(300px, 46vw, 720px);
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: 0;
    transform-origin: 78% 78%;
    animation: hero-arm-float 2.8s ease-in-out infinite;
}

.hero-conveyor {
    position: absolute;
    left: 9%;
    right: 2%;
    bottom: -6px;
    height: clamp(44px, 5.6vw, 122px);
    overflow: hidden;
    z-index: 5;
}

.hero-conveyor::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 16px;
    border-radius: 10px;
    background: repeating-linear-gradient(
        90deg,
        #5e5e63 0 18px,
        #4a4a4f 18px 36px
    );
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.12),
        inset 0 -3px 0 rgba(0, 0, 0, 0.18);
    animation: hero-belt-move 1.1s linear infinite;
}

.hero-conveyor::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 15px;
    height: 3px;
    background: linear-gradient(90deg, #8d8d92, #b3b3b7 40%, #8d8d92);
    opacity: 0.75;
}

.hero-box-art {
    position: absolute;
    width: clamp(58px, 5.2vw, 148px) !important;
    bottom: 14px;
    left: -8%;
    opacity: 1;
    height: auto;
    max-width: none;
    display: block;
    animation: hero-box-slide 22s linear infinite;
    transform-origin: center bottom;
    will-change: left, opacity, transform, filter;
    z-index: 7;
}

.hero-box-1 {
    animation-delay: 0s;
}

.hero-box-2 {
    animation-delay: -4.4s;
}

.hero-box-3 {
    animation-delay: -8.8s;
}

.hero-box-4 {
    animation-delay: -13.2s;
}

.hero-box-5 {
    animation-delay: -17.6s;
}

@keyframes hero-box-slide {
    0% {
        left: -8%;
        opacity: 0;
        transform: scale(0.92);
        filter: blur(0.6px);
    }

    8% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }

    54% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }

    66% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }

    84% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }

    93% {
        opacity: 0;
        transform: scale(0.58) translateY(10px);
        filter: blur(2.2px);
    }

    100% {
        left: 94%;
        opacity: 0;
        transform: scale(0.58) translateY(10px);
        filter: blur(2.2px);
    }
}

@keyframes hero-belt-move {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 36px 0;
    }
}

@keyframes hero-arm-float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1.3deg);
    }
}

.offline-strip {
    background: #d70000;
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.2;
}

.offline-tags {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 60px;
    padding: 18px 24px 24px;
    justify-items: center;
}

.offline-tags p {
    margin: 0;
    background: #fff;
    border: 1px solid #9ca3af;
    width: 354px;
    height: 42px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
    display: flex;
    align-items: center;
}

.offline-why {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 30px;
    padding: 40px 24px 28px;
    font-family: "Poppins", sans-serif;
}

.offline-why-left h2,
.offline-why-left h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.05;
}

.offline-why-left h2 {
    color: #1e1e1e;
    font-size: 45px;
}

.offline-why-left h3 {
    color: #d60808;
    font-size: 52px;
}

.offline-why-desc {
    margin: 10px 0 0;
    color: #222;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    word-spacing: 4px;
}

.offline-points {
    margin-top: 22px;
}

.offline-point {
    margin-bottom: 14px;
}

.offline-point-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #121212;
}

.offline-point-title span {
    width: 28px;
    height: 28px;
    margin-top: 2px;
    border-radius: 50%;
    background: #d60808;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex: 0 0 auto;
}

.offline-point-desc {
    margin: 6px 0 0 38px;
    font-size: 16px;
    color: #444;
    line-height: 1.45;
}

.offline-why-main {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #d1d5db;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.offline-why-subgrid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.offline-why-subgrid img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.offline-benefits {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 26px;
    padding: 8px 24px 28px;
    font-family: "Poppins", sans-serif;
}

.offline-benefits-left h2,
.offline-benefits-left h3 {
    margin: 0;
    font-weight: 700;
    line-height: 1.06;
}

.offline-benefits-left h2 {
    color: #16181d;
    font-size: 40px;
}

.offline-benefits-left h3 {
    color: #cc0000;
    font-size: 52px;
}

.offline-benefits-list {
    margin: 14px 0 0;
    padding-left: 30px;
    list-style: disc;
    list-style-position: outside;
}

.offline-benefits-list li {
    color: #151515;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 2px;
}

.offline-learn {
    width: 100%;
    background: #ffffff;
    padding: 22px 0 14px;
    font-family: "Poppins", sans-serif;
}

.offline-learn-inner {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.offline-learn h2 {
    margin: 0;
    text-align: center;
    color: #c80000;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.1;
}

.offline-learn p {
    margin: 4px 0 16px;
    text-align: center;
    color: #111;
    font-size: 23px;
    font-weight: 500;
}

.offline-learn-track {
    position: relative;
    height: 220px;
}

.learn-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    min-width: 260px;
    max-width: 380px;
    transform: translate(-50%, -50%) scale(0.86);
    opacity: 0.85;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease,
        z-index 0.35s ease;
    z-index: 1;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 10px 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.learn-card h3 {
    margin: 0;
    text-align: center;
    font-size: 84px;
    line-height: 0.95;
    font-weight: 800;
    color: #ffea00;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
}

.learn-thumbs {
    margin-top: 8px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.learn-thumbs img {
    width: 100%;
    height: 84px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.card-blue {
    background: linear-gradient(180deg, #05234e 0%, #05204a 55%, #021433 100%);
}

.card-red {
    background: linear-gradient(180deg, #a00000 0%, #760000 55%, #510000 100%);
}

.card-purple {
    background: linear-gradient(180deg, #5b0039 0%, #3f002d 55%, #2a001e 100%);
}

.learn-card.is-center {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 1;
    z-index: 3;
}

.learn-card.is-left {
    transform: translate(-152%, -50%) scale(0.86);
    opacity: 0.92;
    z-index: 2;
}

.learn-card.is-right {
    transform: translate(52%, -50%) scale(0.86);
    opacity: 0.92;
    z-index: 2;
}

.learn-card.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.offline-learn-dots {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.offline-learn-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d9d9d9;
    display: inline-block;
    border: 0;
    cursor: pointer;
}

.offline-learn-dots .dot.active {
    background: #d10000;
}

.offline-lab {
    width: 100%;
    background: #efefef;
    padding: 22px 0 36px;
    font-family: "Poppins", sans-serif;
}

.offline-lab-inner {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.offline-lab h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
}

.offline-lab h2 span {
    color: #c90000;
}

.offline-lab p {
    margin: 6px 0 14px;
    font-size: 20px;
    font-weight: 500;
    color: #1f1f1f;
}

.offline-lab-pill {
    display: inline-block;
    background: #f7f7f7;
    border: 1px solid #d6d6d6;
    border-radius: 999px;
    padding: 8px 20px;
    color: #c90000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
}

.offline-lab-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.lab-card {
    position: relative;
    border-radius: 18px;
    overflow: visible;
    min-height: 390px;
    text-align: left;
}

.lab-card-bg {
    position: absolute;
    inset: 8px -8px -8px 8px;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.15);
    z-index: 0;
    filter: blur(0.2px);
}

.lab-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    z-index: 1;
}

.lab-overlay {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.lab-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 36px);
    z-index: 3;
    color: #fff;
    text-align: center;
}

.lab-content h3 {
    margin: 0 0 2px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.lab-content p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.25;
    color: #fff;
    text-align: center;
}

.lab-btn {
    display: inline-block;
    background: #d00000;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    text-decoration: none;
    line-height: 1.1;
}

.offline-projects {
    width: 100%;
    background: #efefef;
    padding: 26px 0 38px;
    font-family: "Poppins", sans-serif;
}

.offline-projects-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.offline-projects-pill {
    width: fit-content;
    margin: 0 auto 18px;
    background: #f8f8f8;
    border: 1px solid #d8d8d8;
    border-radius: 999px;
    padding: 8px 22px;
    color: #c90000;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

.projects-track {
    position: relative;
    height: 340px;
    perspective: 1200px;
}

.project-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 29%;
    min-width: 280px;
    max-width: 430px;
    height: 280px;
    transform-style: preserve-3d;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #d0d0d0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.45s ease,
        opacity 0.45s ease,
        z-index 0.45s ease;
    opacity: 0.92;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.03) 48%,
        rgba(0, 0, 0, 0.62) 100%
    );
}

.project-card h3 {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 10px;
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
}

.project-card.is-center {
    transform: translate(-50%, -50%) scale(1.08) rotateY(0deg);
    z-index: 4;
    opacity: 1;
}

.project-card.is-left {
    transform: translate(-145%, -50%) scale(0.92) rotateY(-10deg);
    z-index: 3;
}

.project-card.is-right {
    transform: translate(45%, -50%) scale(0.92) rotateY(10deg);
    z-index: 3;
}

.project-card.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.offline-team {
    width: 100%;
    background: #efefef;
    padding: 18px 0 50px;
    font-family: "Poppins", sans-serif;
}

.offline-team-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.offline-team h2 {
    margin: 0 auto;
    width: fit-content;
    border: 1px solid #dd6868;
    border-radius: 6px;
    padding: 4px 10px;
    color: #c80000;
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
    background: #ffffff;
}

.offline-team > p,
.offline-team-inner > p {
    margin: 8px 0 16px;
    color: #151515;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 28px;
}

.team-card {
    background: #fff;
    border: 1px solid #dadada;
    border-radius: 12px;
    width: 300px;
    height: 333px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.16);
    padding: 18px 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: #d3d3d6;
    margin-bottom: 12px;
}

.team-card h3 {
    margin: 0 0 4px;
    color: #121212;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.team-card p {
    margin: 0;
    color: #1e1e1e;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
}

.offline-doubt-divider {
    width: 100%;
    background: #cc0000;
    padding: 10px 14px 12px;
    font-family: "Poppins", sans-serif;
}

.offline-doubt-inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.offline-doubt-inner h2 {
    margin: 0 auto 6px;
    display: inline-block;
    background: #ffffff;
    color: #cc0000;
    border-radius: 4px;
    padding: 2px 14px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
}

.offline-doubt-inner p {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    font-weight: 500;
    line-height: 1.28;
}

.offline-placement {
    width: 100%;
    background: #efefef;
    padding: 40px 0 50px;
    font-family: "Poppins", sans-serif;
}

.offline-placement-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 14px;
    text-align: center;
}

.offline-placement h2 {
    margin: 0;
    color: #cc0000;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.08;
}

.offline-placement h3 {
    margin: 2px 0 8px;
    color: #111111;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.05;
    margin-top: 15px;
}

.offline-placement p {
    margin: 0 auto;
    max-width: 980px;
    color: #151515;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.32;
}

.offline-placement-tags {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.offline-placement-tags p {
    margin: 0;
    background: #ffffff;
    border: 1px solid #a7a7a7;
    border-radius: 4px;
    padding: 2px 10px;
    font-size: 25px;
    font-weight: 700;
    text-align: left;
    max-width: none;
}

.offline-cta-split {
    width: 100%;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    /* position: relative; */
    margin-top: 40px;
}

.offline-cta-inner {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 160px;
    position: relative;
}

.offline-cta-split::before,
.offline-cta-split::after,
.cta-row + .cta-row::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: #d2d2d2;
}

.offline-cta-split::before {
    top: 0;
}

.offline-cta-split::after {
    bottom: 0;
}

.cta-row + .cta-row::before {
    top: 0;
}

.cta-col {
    padding: 20px 24px;
}

.cta-left {
    border-right: 0;
}

.cta-left h3 {
    margin: 0 0 6px;
    color: #121212;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
}

.cta-left h3 span {
    color: #cb0000;
}

.cta-left p {
    margin: 0;
    color: #242424;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
}

.cta-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.cta-btn {
    display: inline-block;
    background: #df0000;
    color: #fff;
    text-decoration: none;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    border-radius: 10px;
    padding: 8px 18px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}

.offline-final-cta {
    width: 100%;
    background: #d00000;
    padding: 20px 0;
    font-family: "Poppins", sans-serif;
}

.offline-final-cta-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
}

.final-cta-left h2 {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.05;
}

.final-cta-left p {
    margin: 8px 0 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
}

.final-cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #c90000;
    text-decoration: none;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    border-radius: 17px;
    padding: 10px 18px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.22);
}

.offline-benefits-right {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.96fr;
    gap: 10px;
    align-items: end;
}

.offline-benefits-main {
    width: 346px;
    height: 474px;
    border-radius: 30px;
    border: 1px solid #d1d5db;
    object-fit: cover;
}

.offline-benefits-side {
    width: 100%;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    height: 78%;
    object-fit: cover;
    height: 22rem;
}

.offline-badge {
    position: absolute;
    right: 0;
    top: 109px;
    transform: translateY(-4px);
    background: #cc0000;
    color: #fff;
    border-radius: 24px;
    padding: 10px 18px 12px;
    text-align: center;
    /* min-width: 83px; */
    width: 17rem;
    height: 7rem;
    /* font-size: 34px; */
}

.badge-top {
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.badge-count {
    display: block;
    font-size: 50px;
    font-weight: 800;
    line-height: 0.95;
}

.badge-bottom {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .offline-hero {
        min-height: 620px;
    }

    .hide-mobile {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .offline-hero {
        min-height: 680px;
        grid-template-columns: 1.08fr 0.92fr;
        gap: 28px;
        padding: 26px 28px 18px;
    }

    .hero-practical-tag {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .offline-hero-content h1,
    .offline-hero-content h2,
    .offline-hero-content h3 {
        font-size: clamp(42px, 4.8vw, 58px);
        line-height: 1.06;
    }

    .offline-hero-content p {
        font-size: clamp(20px, 2.15vw, 28px);
        line-height: 1.38;
        max-width: 96%;
        margin-top: 12px;
    }

    .offline-enroll-btn {
        font-size: clamp(24px, 2.7vw, 38px);
        padding: 12px 26px;
        border-radius: 16px;
    }

    .hero-tour-link {
        font-size: clamp(20px, 2vw, 28px);
    }

    .hero-tour-icon {
        width: 56px;
        height: 56px;
    }

    .hero-tour-icon::before {
        left: 23px;
        top: 18px;
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 14px;
    }

    .hero-cta-row {
        margin-top: 18px;
        gap: 16px;
    }

    .offline-hero-art {
        min-height: 420px;
    }

    .offline-hero-art > img {
        width: clamp(320px, 43vw, 520px);
    }

    .offline-hero-art > img {
        max-width: 85%;
    }

    .hero-conveyor {
        left: 6%;
        right: 2%;
        bottom: -8px;
    }
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none;
    }

    .offline-page {
        padding: 20px 0 28px;
    }

    .offline-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 12px 12px 4px;
        gap: 10px;
    }

    .hero-practical-tag {
        font-size: 13px;
        margin-left: 0;
        margin-bottom: 8px;
    }

    .offline-hero-content h1,
    .offline-hero-content h2,
    .offline-hero-content h3 {
        font-size: clamp(24px, 9vw, 20px);
        line-height: 1.05;
    }

    .hero-practical-tag {
        transform: rotate(354deg);
    }

    .offline-hero-content p {
        font-size: clamp(14px, 4.2vw, 22px);
        line-height: 1.35;
    }

    .hero-cta-row {
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 16px;
    }

    .offline-enroll-btn {
        font-size: 14px;
        padding: 10px 18px;
        border-radius: 12px;
    }

    .hero-tour-link {
        font-size: 18px;
        gap: 8px;
    }

    .hero-tour-icon {
        width: 40px;
        height: 40px;
    }

    .hero-tour-icon::before {
        left: 17px;
        top: 13px;
        border-top-width: 8px;
        border-bottom-width: 8px;
        border-left-width: 12px;
    }

    .offline-hero-art {
        min-height: 190px;
    }

    .offline-hero-art > img {
        width: clamp(190px, 64vw, 300px);
        margin-left: auto;
    }

    .hero-conveyor {
        left: -5%;
        right: -13px;
        height: 36px;
        bottom: -4px;
    }

    .hero-conveyor::after {
        display: none;
    }

    .hero-conveyor::before {
        height: 5px;
        border-radius: 4px;
        animation: hero-belt-move 1.4s linear infinite;
    }

    .hero-box-art {
        width: 51px !important;
        bottom: 1px;
        left: -10%;
    }

    @keyframes hero-box-slide {
        0% {
            left: -10%;
            opacity: 1;
        }

        100% {
            left: 96%;
            opacity: 1;
        }
    }

    .offline-strip {
        font-size: 15px;
    }

    .offline-tags {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 14px 10px 18px;
    }

    .offline-tags p {
        width: 100%;
        max-width: 354px;
        font-size: 12px;
    }

    .offline-why {
        grid-template-columns: 1fr;
        padding: 20px 12px 20px;
        gap: 18px;
    }

    .offline-why-left h2 {
        font-size: 30px;
    }

    .offline-why-left h3 {
        font-size: 30px;
    }

    .offline-why-desc {
        font-size: 14px;
    }

    .offline-point-title {
        font-size: 16px;
    }

    .offline-point-desc {
        font-size: 12px;
        margin-left: 34px;
    }

    .offline-benefits {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 8px 12px 18px;
    }

    .offline-benefits-left h2 {
        font-size: 28px;
    }

    .offline-benefits-left h3 {
        font-size: 30px;
    }

    .offline-benefits-list {
        padding-left: 24px;
    }

    .offline-benefits-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .offline-benefits-right {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        align-items: stretch;
    }

    .offline-benefits-main,
    .offline-benefits-side {
        width: 100%;
        height: 280px;
        border-radius: 18px;
        object-fit: cover;
    }

    .offline-benefits-main {
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .offline-badge {
        left: 50%;
        right: auto;
        top: 108px;
        transform: translateX(-50%);
        width: min(82vw, 300px);
        height: auto;
        min-width: 0;
        border-radius: 18px;
        padding: 10px 10px 12px;
    }

    .badge-top {
        font-size: 12px;
    }

    .badge-count {
        font-size: clamp(44px, 12vw, 58px);
    }

    .badge-bottom {
        font-size: clamp(20px, 6vw, 28px);
    }

    .offline-learn {
        padding: 14px 0 10px;
    }

    .offline-learn h2 {
        font-size: 28px;
    }

    .offline-learn p {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .offline-learn-track {
        height: auto;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .learn-card,
    .learn-card.is-center,
    .learn-card.is-left,
    .learn-card.is-right,
    .learn-card.is-hidden {
        position: static;
        width: 86vw;
        min-width: 86vw;
        max-width: 86vw;
        transform: none;
        opacity: 1;
        scroll-snap-align: center;
    }

    .learn-card h3 {
        font-size: 56px;
    }

    .learn-thumbs img {
        height: 68px;
    }

    .offline-lab h2 {
        font-size: 22px;
    }

    .offline-lab p {
        font-size: 15px;
    }

    .offline-lab-pill {
        font-size: 18px;
        margin-bottom: 14px;
    }

    .offline-lab-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .lab-card {
        min-height: 320px;
        flex: 0 0 86vw;
        width: 86vw;
        scroll-snap-align: center;
    }

    .lab-content h3 {
        font-size: 38px;
    }

    .lab-btn {
        font-size: 24px;
    }

    .offline-projects {
        padding: 16px 0 24px;
    }

    .offline-projects-pill {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .projects-track {
        height: auto;
        perspective: none;
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .project-card,
    .project-card.is-center,
    .project-card.is-left,
    .project-card.is-right,
    .project-card.is-hidden {
        position: static;
        width: 86vw;
        min-width: 86vw;
        max-width: 86vw;
        transform: none;
        height: 220px;
        opacity: 1;
        scroll-snap-align: center;
    }

    .offline-team h2 {
        font-size: 32px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .team-card {
        width: 100%;
        height: auto;
        min-height: 210px;
        padding: 14px 10px 12px;
    }

    .team-card h3 {
        font-size: 20px;
    }

    .team-card p {
        font-size: 12px;
    }

    .offline-doubt-inner h2 {
        font-size: 20px;
        padding: 4px 10px;
    }

    .offline-doubt-inner p {
        font-size: 13px;
        line-height: 1.35;
    }

    .offline-placement h2 {
        font-size: 26px;
    }

    .offline-placement h3 {
        font-size: 18px;
    }

    .offline-placement p {
        font-size: 14px;
    }

    .offline-placement-tags {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .offline-placement-tags p {
        font-size: 14px;
    }

    .offline-cta-inner {
        border-left: 0;
        border-right: 0;
        padding: 0 10px;
    }

    .cta-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .offline-cta-split {
        margin-top: 16px;
    }

    .cta-col {
        padding: 10px 12px;
    }

    .cta-left {
        border-right: 0;
        border-bottom: 1px solid #d2d2d2;
    }

    .cta-left h3 {
        font-size: 20px;
        margin: 0 0 4px;
    }

    .cta-btn {
        font-size: 18px;
        padding: 8px 14px;
    }

    .offline-final-cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 10px;
    }

    .final-cta-left h2 {
        font-size: 22px;
    }

    .final-cta-left p {
        font-size: 12px;
    }

    .final-cta-btn {
        font-size: 26px;
        padding: 10px 16px;
    }

    /* .offline-hero {
        min-height: 520px;
    } */

    .offline-learn-dots {
        display: none;
    }

    .offline-placement-tags p {
        width: 80%;
    }
}
