﻿:root {
    --green: #0b7b0b;
    --green-dark: #075c07;
    --green-deep: #053f05;
    --red: #dc3545;
    --red-dark: #b02a37;
    --ink: #122412;
    --ink-soft: #4a5a4a;
    --paper: #fbfaf5;
    --mint: #eaf7ea;
    --mint-line: #d7ecd7;
    --white: #ffffff;
    --radius: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    overflow: visible !important;
}
body {
    font-family: "Panamera-Medium";
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow: visible !important;
}
h1,
h2,
h3,
h4 {
    font-family: "Panamera-Bold";
    line-height: 1.2;
}
h2 em,
h3 em,
h4 em {
    font-style: normal;
    color: var(--red);
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    display: block;
}
ul {
    list-style: none;
}
.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--red);
    display: inline-block;
    border-radius: 2px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.2s ease;
    white-space: nowrap;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(11, 123, 11, 0.55);
}
.btn-primary:hover {
    background: var(--green-dark);
}
.btn-primary:active,
.btn-primary:focus,
.btn-primary:focus-visible {
    background: var(--green-dark) !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.35) !important;
    outline: none !important;
}
.btn-outline:active,
.btn-outline:focus,
.btn-outline:focus-visible {
    border-color: var(--red) !important;
    color: var(--red) !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.35) !important;
    outline: none !important;
}
.btn-outline {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
}
.btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
}
.btn-light {
    background: #fff;
    color: var(--green);
}
.btn-light:hover {
    background: var(--mint);
}
.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 8px 20px -8px rgba(220, 53, 69, 0.55);
}
.btn-red:hover {
    background: var(--red-dark);
}

header.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 250, 245, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--mint-line);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1180px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Panamera-Bold";
    font-weight: 800;
    font-size: 20px;
}
.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--green), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}
.logo span {
    color: var(--green);
}
nav.links {
    display: flex;
    align-items: center;
    gap: 30px;
}
nav.links > a {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
}
nav.links > a:hover {
    color: var(--green);
}
.dropdown {
    position: relative;
}
.dropdown > .dd-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    padding: 6px 0;
}
.dropdown > .dd-trigger svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}
.dropdown:hover > .dd-trigger svg {
    transform: rotate(180deg);
}
.dropdown:hover > .dd-trigger {
    color: var(--green);
}
.dd-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 45px -20px rgba(5, 63, 5, 0.35);
    padding: 10px;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.18s ease;
    border: 1px solid var(--mint-line);
}
.dropdown:hover .dd-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dd-menu a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
}
.dd-menu a:hover {
    background: var(--mint);
}
.dd-menu a strong {
    font-size: 14.5px;
    font-weight: 600;
}
.dd-menu a small {
    color: var(--ink-soft);
    font-size: 12.5px;
    font-weight: 400;
}
.dd-menu .dd-active {
    background: var(--mint);
    border: 1px solid var(--mint-line);
}
.dd-soon {
    opacity: 0.55;
    cursor: default;
}
.dd-soon:hover {
    background: transparent;
}
.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}
.burger span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--mint) 0%, var(--paper) 78%);
}
.hero-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 24px 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}
.hero h1 {
    font-size: 46px;
    font-weight: 900;
    margin: 16px 0 18px;
    letter-spacing: -0.02em;
}
.hero h1 em {
    font-style: normal;
    color: var(--red);
    position: relative;
}
.hero p.lead {
    color: var(--ink-soft);
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 28px;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}
.hero-stats {
    display: flex;
    gap: 34px;
    flex-wrap: wrap;
}
.hero-stats div {
    display: flex;
    flex-direction: column;
}
.hero-stats strong {
    font-family: "Panamera-Bold";
    font-size: 26px;
    color: var(--green-dark);
}
.hero-stats span {
    font-size: 13px;
    color: var(--ink-soft);
    font-weight: 500;
}

.hero-visual {
    position: relative;
}
.hero-card {
    /* background:
        linear-gradient(155deg, rgba(50, 191, 237, 0.25) 0%, rgba(5, 68, 146, 0.55) 100%),
        url("/media/new/fronend devs.png"); */
    background: url("/media/new/84406334_9975869.jpg");
    background-size: cover, contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 28px;
    padding: 26px;
    position: relative;
    box-shadow: 0 30px 60px -25px rgba(5, 63, 5, 0.45);
    aspect-ratio: 4/4.3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-card::before {
    content: "</>";
    position: absolute;
    top: 24px;
    right: 26px;
    font-family: "Panamera-Bold";
    font-weight: 700;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
}
.code-float {
    position: absolute;
    top: 26px;
    left: 26px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 12px;
    color: #fff;
    font-family: monospace;
}
.hero-badge {
    position: absolute;
    bottom: 110px;
    left: -18px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}
.hero-badge .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
}
.hero-card-foot {
    color: #fff;
}
.hero-card-foot strong {
    font-family: "Panamera-Bold";
    font-size: 22px;
}
.hero-card-foot p {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 4px;
}
.hero-chip {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--red);
    color: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 15px 25px -10px rgba(220, 53, 69, 0.5);
    z-index: 100 !important;
}
.floating-orb {
    position: absolute;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    color: var(--green);
    animation: drift 3.6s ease-in-out infinite;
}
.floating-orb--one {
    top: 18px;
    left: -16px;
}
.floating-orb--two {
    bottom: 32px;
    right: -12px;
    animation-duration: 4.2s;
}

.strip {
    background: var(--green-deep);
    color: #fff;
}
.strip-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 26px 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.strip-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.strip-item .ic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(220, 53, 69, 0.16);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.strip-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}
.strip-item span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

section {
    padding: 80px 0;
}
.section-head {
    max-width: 640px;
    margin-bottom: 44px;
}
.section-head h2 {
    font-size: 34px;
    font-weight: 900;
    margin-top: 14px;
    letter-spacing: -0.01em;
}
.section-head h2 strong {
    color: var(--red);
}
.section-head p {
    color: var(--ink-soft);
    margin-top: 14px;
    font-size: 16px;
}
.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.overview {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

.overview-list {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.overview-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
}
.overview-list .check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--green);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
    font-weight: 800;
}
.sidebar-sticky {
    position: sticky;
    top: 100px;
}
.cohort-card {
    background: #fff;
    border: 1px solid var(--mint-line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 20px 45px -30px rgba(5, 63, 5, 0.4);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.cohort-card:hover,
.module:hover,
.price-card:hover,
.salary-card:hover,
.register-wrap:hover,
.help-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(5, 63, 5, 0.12);
}
.cohort-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}
.cohort-card h3 strong {
    color: var(--red);
}
.cohort-card .date {
    color: var(--green);
    font-weight: 700;
    font-size: 22px;
    font-family: "Panamera-Bold";
    margin: 6px 0 18px;
}
.cohort-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--mint-line);
    font-size: 14px;
}
.cohort-row:last-of-type {
    border-bottom: none;
}
.cohort-row span:first-child {
    color: var(--ink-soft);
}
.cohort-row span:last-child {
    font-weight: 600;
}
.cohort-card .btn {
    width: 100%;
    margin-top: 20px;
}
.cohort-card .btn-outline {
    margin-top: 10px;
}
.youtube-box {
    margin-top: 20px;
    text-align: center;
    position: relative;
}
.youtube-arrow-wrap {
    position: absolute;
    right: 50%;
    bottom: 100%;
    transform: translateX(50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 4px;
    pointer-events: none;
}
.youtube-label {
    font-size: 11px;
    color: var(--ink-soft);
    font-family: "Panamera-Medium";
    white-space: nowrap;
    letter-spacing: 0.03em;
}
.youtube-arrow-svg {
    width: 18px;
    height: 18px;
    color: var(--red);
    animation: bounceArrow 1.4s ease infinite;
}
@keyframes bounceArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}
.youtube-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    animation: pulseIcon 2s ease infinite;
}
.youtube-link:hover {
    background: #cc0000;
    color: #fff;
}
.youtube-link svg {
    width: 22px;
    height: 22px;
    display: block;
}
@keyframes pulseIcon {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,0,0,0.4); }
    50% { transform: scale(1.1); box-shadow: 0 0 0 12px rgba(255,0,0,0); }
}

.curriculum-wrap {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 0;
    max-width: 780px;
    margin: 0 auto;
}
.rail {
    position: relative;
}
.rail::before {
    content: "";
    position: absolute;
    left: 17px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--mint-line);
}
.module {
    border: 1px solid var(--mint-line);
    border-radius: 14px;
    margin-bottom: 14px;
    background: #fff;
    overflow: hidden;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.module-row {
    position: relative;
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: stretch;
}
.module-dot {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 22px;
}
.module-dot span {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green);
    border: 3px solid var(--mint);
    z-index: 2;
}
.module-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 18px 4px;
    cursor: pointer;
    gap: 16px;
}
.module-head .m-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.module-head .m-tag {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.module-head h4 {
    font-size: 16.5px;
    font-weight: 800;
}
.module-head .m-meta {
    font-size: 12.5px;
    color: var(--ink-soft);
}
.module-head .m-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--green);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.2s ease;
}
.module.open .m-toggle {
    transform: rotate(45deg);
}
.module-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease;
}
.module-body-inner {
    padding: 0 20px 22px 4px;
    padding-left: 20px;
}
.module-body ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14.5px;
    color: var(--ink-soft);
}
.module-body ul li {
    display: flex;
    gap: 8px;
}
.module-body ul li::before {
    content: "—";
    color: var(--red);
    flex-shrink: 0;
}

.careers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.career-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.career-list li {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--mint-line);
    font-size: 15px;
}
.career-list li span:first-child {
    font-weight: 600;
}
.career-list li span:last-child {
    color: var(--green-dark);
    font-weight: 700;
}
.salary-card {
    background: var(--green-deep);
    border-radius: var(--radius);
    overflow: hidden;
    color: #fff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.salary-card table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.salary-card thead {
    background: rgba(255, 255, 255, 0.08);
}
.salary-card th,
.salary-card td {
    padding: 12px 20px;
    text-align: left;
}
.salary-card tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.04);
}
.salary-card .head-bar {
    padding: 20px;
    font-weight: 700;
    font-family: "Panamera-Bold";
    background: var(--green);
    font-size: 15px;
}
.roles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.roles span {
    background: var(--mint);
    color: var(--green-dark);
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
}

.pricing-band {
    background: var(--green);
    color: #fff;
}
.pricing-band .section-head p {
    color: rgba(255, 255, 255, 0.8);
}
.pricing-band .eyebrow {
    color: var(--red);
}
.pricing-band .eyebrow::before {
    background: #fff;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 720px;
    margin: 0 auto;
    position: relative;
}
.pricing-or {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--red);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    font-family: "Panamera-Bold";
    border: 2px solid #fff;
    z-index: 2;
    pointer-events: none;
}
.price-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    position: relative;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.price-card.featured {
    background: #fff;
    color: var(--ink);
}
.price-card .badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: #241800;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
}
.price-card .price-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.1);
    margin-bottom: 16px;
}
.price-card .price-icon [data-lucide] {
    width: 28px;
    height: 28px;
    color: var(--red);
}
.price-card h4 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    color: var(--ink);
}
.price-card h4 strong {
    color: var(--red);
}
.price-card .amount {
    font-family: "Panamera-Bold";
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 4px;
}
.price-card .sub {
    font-size: 13px;
    opacity: 0.75;
    margin-bottom: 22px;
}
.price-card .btn {
    width: 100%;
}

.register-wrap {
    background: #fff;
    border: 1px solid var(--mint-line);
    border-radius: 24px;
    padding: 44px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 44px;
    box-shadow: 0 30px 60px -35px rgba(5, 63, 5, 0.35);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.register-info h2 {
    font-size: 28px;
    margin-bottom: 14px;
}
.register-info h2 em {
    font-style: normal;
    color: var(--red);
}
.register-info p {
    color: var(--ink-soft);
    margin-bottom: 22px;
}
.register-info ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.register-info li {
    display: flex;
    gap: 10px;
    font-size: 14.5px;
    align-items: center;
}
.register-info li .ic {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}
.register-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.register-form iframe {
    border-radius: 12px;
}

.faq-item {
    border-bottom: 1px solid var(--mint-line);
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15.5px;
}
.faq-q .plus {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.faq-item.open .plus {
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    color: var(--ink-soft);
    font-size: 14.5px;
}
.faq-a-inner {
    padding: 0 4px 20px;
}

.help-banner {
    background: linear-gradient(120deg, var(--red), #ffb84d);
    border-radius: 24px;
    padding: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    color: #241800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.help-banner h3 {
    font-size: 26px;
    margin-bottom: 8px;
}
.help-banner h3 strong {
    color: var(--red);
}
.help-banner p {
    font-size: 14.5px;
    max-width: 420px;
}

footer {
    background: var(--green-deep);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 64px;
}
.footer-top {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px 44px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
footer .logo span {
    color: var(--red);
}
footer .logo {
    color: #fff;
}
.footer-top p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 14px;
    max-width: 260px;
}
.footer-top h5 {
    font-size: 14px;
    margin-bottom: 16px;
    color: #fff;
}
.footer-top ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13.5px;
}
.footer-top ul a:hover {
    color: var(--red);
}
.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    flex-wrap: wrap;
    gap: 10px;
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s ease forwards;
}
.delay-1 {
    animation-delay: 0.08s;
}
.delay-2 {
    animation-delay: 0.16s;
}
.delay-3 {
    animation-delay: 0.24s;
}
.delay-4 {
    animation-delay: 0.32s;
}
.delay-5 {
    animation-delay: 0.4s;
}
.delay-6 {
    animation-delay: 0.48s;
}
.delay-7 {
    animation-delay: 0.56s;
}
.delay-8 {
    animation-delay: 0.64s;
}
.delay-9 {
    animation-delay: 0.72s;
}
.delay-10 {
    animation-delay: 0.8s;
}
.delay-11 {
    animation-delay: 0.88s;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes drift {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -8px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}
.why-card {
    background: #fff;
    border: 1px solid var(--mint-line);
    border-radius: var(--radius);
    padding: 15px;
    text-align: center;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(5, 63, 5, 0.1);
}
.why-card [data-lucide] {
    width: 48px;
    height: 48px;
    color: var(--red);
    background: rgba(220, 53, 69, 0.1);
    padding: 12px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.why-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--ink);
}
.why-card p {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
}

.cert-section {
    padding: 60px 0;
    background: #fff;
}
.cert-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.cert-marquee + .cert-marquee {
    margin-top: 20px;
}
.cert-track {
    display: flex;
    width: max-content;
    animation: certScroll 40s linear infinite;
}
.reverse .cert-track {
    animation: certScrollReverse 40s linear infinite;
}
.cert-img {
    height: 180px;
    margin: 0 10px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: none;
}
@keyframes certScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes certScrollReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
    .strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .overview {
        grid-template-columns: 1fr;
    }
    .sidebar-wrap {
        width: 100%;
    }
    .cohort-card {
        position: static;
    }
    .youtube-arrow-wrap {
        display: none;
    }
    .careers {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-or {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin: 0 auto;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .register-wrap {
        grid-template-columns: 1fr;
        padding: 28px;
    }
    form.register-form {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .hero {
        padding-top: 20px;
    }
    .hero-inner {
        padding: 40px 20px 30px;
    }
    .hero-visual {
        width: 100%;
        max-width: 380px;
    }
    .hero-card {
        aspect-ratio: 4/5;
        min-height: 320px;
        border-radius: 20px;
    }
    .floating-orb {
        width: 42px;
        height: 42px;
    }
    .floating-orb [data-lucide] {
        width: 20px;
        height: 20px;
    }
    .floating-orb--one {
        top: 10px;
        left: -10px;
    }
    .floating-orb--two {
        bottom: 20px;
        right: -8px;
    }
    .hero-badge {
        bottom: 80px;
        left: -10px;
        padding: 10px 12px;
        font-size: 12px;
    }
    .hero-chip {
        top: -12px;
        right: -10px;
        padding: 8px 12px;
        font-size: 12px;
    }
    nav.links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 18px;
        box-shadow: 0 20px 30px -20px rgba(0, 0, 0, 0.2);
        display: none;
    }
    nav.links.open {
        display: flex;
    }
    .dropdown {
        width: 100%;
    }
    .dd-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        display: none;
        width: 100%;
        margin-top: 8px;
        border: none;
        padding: 0;
    }
    .dropdown.open .dd-menu {
        display: flex;
        flex-direction: column;
    }
    .burger {
        display: flex;
    }
    .hero h1 {
        font-size: 38px;
    }
    .strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-stats {
        gap: 20px;
    }
    .hero-stats strong {
        font-size: 22px;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cert-img {
        height: 120px;
    }
}
@media (max-width: 480px) {
    .hero {
        padding-top: 10px;
    }
    .hero-inner {
        padding: 30px 16px 20px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero p.lead {
        font-size: 15px;
    }
    .hero-visual {
        width: 100%;
        max-width: 340px;
    }
    .hero-card {
        aspect-ratio: 4/5.2;
        min-height: 280px;
        padding: 20px;
    }
    .hero-stats strong {
        font-size: 18px;
    }
    .hero-stats span {
        font-size: 12px;
    }
    .floating-orb {
        width: 36px;
        height: 36px;
    }
    .floating-orb [data-lucide] {
        width: 16px;
        height: 16px;
    }
    .floating-orb--one {
        top: 6px;
        left: -6px;
    }
    .floating-orb--two {
        bottom: 14px;
        right: -4px;
    }
    .hero-badge {
        bottom: 60px;
        left: -6px;
        padding: 8px 10px;
        font-size: 11px;
    }
    .hero-badge .dot {
        width: 8px;
        height: 8px;
    }
    .hero-chip {
        top: -8px;
        right: -6px;
        padding: 6px 10px;
        font-size: 11px;
    }
    .hero-card::before {
        font-size: 12px;
        top: 18px;
        right: 18px;
    }
    .cert-img {
        margin: 0 4px;
        height: 100px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
