/* ============================================
   SKILLFORGE DESIGN SYSTEM
   "Energetic Editorial" — Ported from reference
   ============================================ */
:root {
    --white: #ffffff;
    --off: #f5f3ef;
    --paper: #fafaf8;
    --ink: #0e0e0e;
    --ink2: #3a3a3a;
    --muted: #7a7a7a;
    --lime: #b8ff3c;
    --lime-d: #93d000;
    --coral: #ff5f3e;
    --coral-d: #e04020;
    --sky: #3d9fff;
    --purple: #8b5cf6;
    --yellow: #ffd60a;
    --green: #22c55e;
    --border: #e8e5df;
    --ff-h: 'Bricolage Grotesque', sans-serif;
    --ff-b: 'Outfit', sans-serif;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.13);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--ff-b);
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

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

a {
    text-decoration: none;
    color: inherit
}

ul,
ol {
    list-style: none
}

::-webkit-scrollbar {
    width: 6px
}

::-webkit-scrollbar-track {
    background: var(--off)
}

::-webkit-scrollbar-thumb {
    background: var(--lime-d);
    border-radius: 9px
}

/* ===== NAV ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1.5px solid var(--border);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    animation: dropIn .5s ease both
}

@keyframes dropIn {
    from {
        transform: translateY(-64px)
    }

    to {
        transform: translateY(0)
    }
}

.nav-logo {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -.03em;
    display: flex;
    align-items: center;
    gap: 8px
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(184, 255, 60, .3);
    animation: blink 2s infinite;
    flex-shrink: 0
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none
}

.nav-links a {
    text-decoration: none;
    font-size: .88rem;
    font-weight: 500;
    color: var(--ink2);
    transition: color .2s
}

.nav-links a:hover {
    color: var(--coral)
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-ghost {
    padding: 8px 20px;
    border-radius: 99px;
    border: 1.5px solid var(--border);
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    transition: all .2s
}

.nav-ghost:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white)
}

.nav-cta {
    padding: 9px 22px;
    border-radius: 99px;
    background: var(--ink);
    color: var(--white);
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2)
}

.nav-cta:hover {
    background: var(--coral);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 95, 62, .4)
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all .3s ease
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 32px 24px;
    flex-direction: column;
    gap: 20px
}

.mobile-nav.active {
    display: flex
}

.mobile-nav a {
    font-family: var(--ff-h);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--ink);
    padding: 10px 0;
    border-bottom: 1px solid var(--border)
}

/* ===== HERO ===== */
.hero {
    padding: 72px 40px 0;
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
    min-height: calc(100vh - 64px)
}

.sticker-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lime);
    color: var(--ink);
    font-family: var(--ff-h);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 99px;
    padding: 8px 18px;
    margin-bottom: 28px;
    transform: rotate(-1.5deg);
    box-shadow: 3px 3px 0 var(--lime-d);
    animation: tagIn .5s .2s ease both
}

@keyframes tagIn {
    from {
        opacity: 0;
        transform: rotate(-1.5deg) translateY(16px)
    }

    to {
        opacity: 1;
        transform: rotate(-1.5deg) translateY(0)
    }
}

.hero-title {
    font-family: var(--ff-h);
    font-size: clamp(3rem, 5.5vw, 5.2rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
    margin-bottom: 24px;
    animation: heroUp .6s .35s ease both
}

.line-accent {
    position: relative;
    display: inline-block;
    color: var(--coral)
}

.line-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--lime);
    opacity: .4;
    border-radius: 4px;
    z-index: -1;
    transform: skewX(-2deg)
}

.wavy {
    background: linear-gradient(135deg, var(--sky), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

@keyframes heroUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-sub {
    font-size: 1.08rem;
    line-height: 1.72;
    color: var(--ink2);
    max-width: 520px;
    margin-bottom: 36px;
    animation: heroUp .6s .5s ease both
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: heroUp .6s .65s ease both
}

.btn-xl {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 14px;
    font-family: var(--ff-h);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    cursor: pointer;
    border: none
}

.btn-xl-dark {
    background: var(--ink);
    color: var(--white);
    box-shadow: 4px 4px 0 var(--coral)
}

.btn-xl-dark:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--coral)
}

.btn-xl-dark:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--coral)
}

.btn-xl-lime {
    background: var(--lime);
    color: var(--ink);
    box-shadow: 4px 4px 0 var(--lime-d)
}

.btn-xl-lime:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--lime-d)
}

.btn-xl-lime:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--lime-d)
}

.btn-xl-ghost {
    background: rgba(255, 255, 255, .07);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .15)
}

.btn-xl-ghost:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .3)
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    animation: heroUp .6s .8s ease both
}

.avatars {
    display: flex
}

.avatars span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--ff-h)
}

.avatars span:first-child {
    margin-left: 0
}

.av1 {
    background: #ff7c5c
}

.av2 {
    background: var(--sky)
}

.av3 {
    background: var(--purple)
}

.av4 {
    background: var(--green)
}

.trust-txt {
    font-size: .84rem;
    color: var(--muted)
}

.trust-txt strong {
    color: var(--ink)
}

.trust-stars {
    color: var(--yellow);
    font-size: .85rem;
    letter-spacing: -1px
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: heroUp .7s .4s ease both;
    padding-bottom: 40px
}

.hero-card-main {
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative
}

.hero-card-main img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease
}

.hero-card-main:hover img {
    transform: scale(1.03)
}

.float-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 180px
}

.fc-1 {
    bottom: 20px;
    left: -40px;
    animation: floatA 4s ease-in-out infinite
}

.fc-2 {
    top: 28px;
    right: -36px;
    animation: floatB 4.5s 1s ease-in-out infinite
}

.fc-3 {
    bottom: 110px;
    right: -28px;
    animation: floatA 3.8s 2s ease-in-out infinite
}

@keyframes floatA {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg)
    }

    50% {
        transform: translateY(-8px) rotate(-1deg)
    }
}

@keyframes floatB {

    0%,
    100% {
        transform: translateY(0) rotate(1.5deg)
    }

    50% {
        transform: translateY(-10px) rotate(1.5deg)
    }
}

.fc-emoji {
    font-size: 1.6rem;
    line-height: 1
}

.fc-text strong {
    display: block;
    font-family: var(--ff-h);
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink)
}

.fc-text span {
    font-size: .75rem;
    color: var(--muted)
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--lime);
    color: var(--ink);
    font-family: var(--ff-h);
    font-size: .78rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 99px;
    letter-spacing: .04em;
    text-transform: uppercase;
    border: 2px solid var(--lime-d)
}

/* ===== MARQUEE ===== */
.marquee-strip {
    background: var(--ink);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink)
}

.marquee-track {
    display: inline-flex;
    animation: marquee 30s linear infinite
}

.marquee-track:hover {
    animation-play-state: paused
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    font-family: var(--ff-h);
    font-size: .88rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--white)
}

.marquee-item .dot {
    color: var(--lime)
}

/* ===== SECTION COMMONS ===== */
.section {
    padding: 96px 0
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px
}

.kicker {
    display: inline-block;
    font-family: var(--ff-h);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--lime);
    color: var(--ink);
    padding: 5px 14px;
    border-radius: 6px;
    margin-bottom: 16px
}

.sec-title {
    font-family: var(--ff-h);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1.1
}

/* ===== WHY CARDS ===== */
.why {
    background: var(--off)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px
}

.why-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 30px;
    border: 1.5px solid var(--border);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--c, var(--lime));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.why-card:hover::before {
    transform: scaleX(1)
}

.why-card:nth-child(1) {
    --c: var(--lime)
}

.why-card:nth-child(2) {
    --c: var(--coral)
}

.why-card:nth-child(3) {
    --c: var(--sky)
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px
}

.wi1 {
    background: #efffcb
}

.wi2 {
    background: #fff1ee
}

.wi3 {
    background: #eef6ff
}

.why-card h3 {
    font-family: var(--ff-h);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -.02em
}

.why-card p {
    font-size: .9rem;
    color: var(--ink2);
    line-height: 1.7
}

/* ===== DARK BAND (Student / Perks) ===== */
.sband {
    background: var(--ink);
    padding: 64px 40px;
    position: relative;
    overflow: hidden
}

.sband::before {
    content: '🎓';
    position: absolute;
    right: -20px;
    top: -20px;
    font-size: 14rem;
    opacity: .04;
    pointer-events: none;
    line-height: 1
}

.sband-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.sband h2 {
    font-family: var(--ff-h);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--white);
    line-height: 1.15
}

.sband h2 em {
    font-style: normal;
    color: var(--lime)
}

.sband p {
    color: #aaa;
    font-size: .95rem;
    line-height: 1.7;
    margin-top: 16px
}

.perks {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 16px 20px;
    transition: background .2s, border-color .2s
}

.perk:hover {
    background: rgba(184, 255, 60, .08);
    border-color: rgba(184, 255, 60, .2)
}

.perk-ico {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px
}

.perk-txt strong {
    display: block;
    color: var(--white);
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: 3px
}

.perk-txt span {
    color: #888;
    font-size: .82rem
}

/* ===== COURSES ===== */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 52px
}

.course-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: transform .28s, box-shadow .28s;
    background: var(--white);
    display: flex;
    flex-direction: column
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.c-img {
    position: relative;
    overflow: hidden;
    height: 200px
}

.course-card:first-child .c-img {
    height: 260px
}

.c-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s
}

.course-card:hover .c-img img {
    transform: scale(1.06)
}

.c-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    font-family: var(--ff-h);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--ink);
    border-radius: 99px;
    padding: 5px 14px;
    border: 1.5px solid var(--border)
}

.c-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.c-body h3 {
    font-family: var(--ff-h);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 8px
}

.c-body p {
    font-size: .87rem;
    color: var(--ink2);
    line-height: 1.65;
    flex: 1
}

.c-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border)
}

.c-lvl {
    font-size: .75rem;
    font-weight: 600;
    color: var(--muted)
}

.c-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--ff-h);
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    background: var(--lime);
    padding: 6px 16px;
    border-radius: 99px;
    transition: all .2s
}

.c-cta:hover {
    background: var(--lime-d);
    transform: translateX(3px)
}

/* ===== STATS BAR ===== */
.stats-section {
    background: var(--coral);
    padding: 72px 40px
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, .15);
    border-radius: 20px;
    overflow: hidden
}

.stat-box {
    background: var(--coral);
    padding: 44px 24px;
    text-align: center;
    transition: background .2s
}

.stat-box:hover {
    background: var(--coral-d)
}

.stat-num {
    font-family: var(--ff-h);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.05em;
    line-height: 1
}

.stat-lbl {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
    margin-top: 8px;
    font-weight: 500
}

/* ===== HOW IT WORKS ===== */
.how {
    background: var(--paper)
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 56px;
    position: relative
}

.steps::after {
    content: '';
    position: absolute;
    top: 26px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 8px, transparent 8px, transparent 16px);
    z-index: 0
}

.step {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1
}

.step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--lime);
    font-family: var(--ff-h);
    font-size: 1.1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 6px var(--paper)
}

.step-icon {
    font-size: 1.6rem;
    margin-bottom: 12px
}

.step h3 {
    font-family: var(--ff-h);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -.02em
}

.step p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.6
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px
}

.t-card {
    border-radius: 20px;
    padding: 32px;
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s
}

.t-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.t-card:nth-child(1) {
    background: #efffd8;
    border-color: #c8f06a
}

.t-card:nth-child(2) {
    background: #fff0ee;
    border-color: #ffc4b9
}

.t-card:nth-child(3) {
    background: #eef4ff;
    border-color: #b9d4ff
}

.t-stars {
    color: var(--yellow);
    font-size: .88rem;
    letter-spacing: -1px;
    margin-bottom: 12px
}

.t-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 16px;
    display: block
}

.t-quote {
    font-size: .92rem;
    line-height: 1.75;
    color: var(--ink2);
    margin-bottom: 24px
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.t-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-h);
    font-size: .85rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0
}

.ta1 {
    background: var(--coral)
}

.ta2 {
    background: var(--purple)
}

.ta3 {
    background: var(--sky)
}

.t-name {
    font-family: var(--ff-h);
    font-weight: 700;
    font-size: .92rem
}

.t-role {
    font-size: .78rem;
    color: var(--muted)
}

/* ===== PRICING ===== */
.pricing {
    background: var(--off)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 52px;
    align-items: start
}

.p-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    border: 1.5px solid var(--border);
    position: relative;
    transition: transform .25s, box-shadow .25s
}

.p-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.p-card.popular {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
    transform: scale(1.04)
}

.p-card.popular:hover {
    transform: scale(1.04) translateY(-4px)
}

.pop-pill {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--lime);
    color: var(--ink);
    font-family: var(--ff-h);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 18px;
    border-radius: 99px;
    white-space: nowrap;
    border: 2px solid var(--lime-d)
}

.p-name {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 10px
}

.p-card.popular .p-name {
    color: rgba(255, 255, 255, .5)
}

.p-price {
    font-family: var(--ff-h);
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -.05em;
    margin-bottom: 4px
}

.p-dur {
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 20px
}

.p-card.popular .p-dur {
    color: rgba(255, 255, 255, .5)
}

.p-desc {
    font-size: .88rem;
    color: var(--ink2);
    margin-bottom: 24px;
    line-height: 1.6;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border)
}

.p-card.popular .p-desc {
    color: rgba(255, 255, 255, .65);
    border-bottom-color: rgba(255, 255, 255, .1)
}

.p-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px
}

.p-feats li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .87rem
}

.p-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-family: var(--ff-h);
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s
}

.p-btn-dark {
    background: var(--ink);
    color: var(--white)
}

.p-btn-dark:hover {
    background: var(--coral)
}

.p-btn-lime {
    background: var(--lime);
    color: var(--ink);
    border: 2px solid var(--lime-d)
}

.p-btn-lime:hover {
    background: var(--lime-d);
    transform: translateY(-2px)
}

/* ===== CTA FINAL ===== */
.cta-fin {
    background: var(--ink);
    padding: 100px 40px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-fin::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(184, 255, 60, .08), transparent);
    pointer-events: none
}

.confetti-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.confetti-bg span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: cfloat linear infinite
}

@keyframes cfloat {
    from {
        transform: translateY(100vh) rotate(0deg)
    }

    to {
        transform: translateY(-100px) rotate(720deg)
    }
}

.cta-title {
    font-family: var(--ff-h);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    z-index: 1
}

.cta-title span {
    color: var(--lime)
}

.cta-sub {
    font-size: 1.05rem;
    color: #888;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1
}

.cta-acts {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.cta-note {
    font-size: .78rem;
    color: #555;
    margin-top: 16px;
    position: relative;
    z-index: 1
}

.cta-note span {
    color: var(--lime);
    font-weight: 600
}

/* ===== FOOTER ===== */
footer {
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.f-logo {
    font-family: var(--ff-h);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none
}

.f-links {
    display: flex;
    gap: 24px
}

.f-links a {
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    transition: color .2s
}

.f-links a:hover {
    color: var(--lime)
}

footer p {
    font-size: .8rem;
    color: #555
}

/* ===== SPLIT SECTION ===== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.split-section img {
    border-radius: 20px;
    width: 100%;
    object-fit: cover
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--ink2)
}

.check-icon {
    color: var(--green);
    font-size: 1.2rem;
    flex-shrink: 0;
    line-height: 1.5
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    background: var(--white)
}

.contact-form-side {
    padding: 48px
}

.contact-info-side {
    padding: 48px;
    background: var(--ink);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.form-group {
    margin-bottom: 20px
}

.form-label {
    display: block;
    font-family: var(--ff-h);
    font-weight: 700;
    font-size: .85rem;
    margin-bottom: 8px;
    color: var(--ink)
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--ff-b);
    font-size: .95rem;
    color: var(--ink);
    background: var(--paper);
    transition: border-color .2s, box-shadow .2s;
    outline: none
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(184, 255, 60, .2)
}

.form-textarea {
    resize: vertical;
    min-height: 120px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0
}

.cdi-lime {
    background: var(--lime)
}

.cdi-coral {
    background: var(--coral)
}

.cdi-sky {
    background: var(--sky)
}

.contact-detail h4 {
    color: var(--white);
    font-family: var(--ff-h);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 2px
}

.contact-detail p {
    color: rgba(255, 255, 255, .65);
    font-size: .9rem
}

/* ===== FAQ ===== */
.faq-item {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--white)
}

.faq-item summary {
    padding: 20px 24px;
    font-family: var(--ff-h);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    transition: background .2s;
    user-select: none
}

.faq-item summary::-webkit-details-marker {
    display: none
}

.faq-item summary:hover {
    background: var(--off)
}

.faq-arrow {
    transition: transform .3s ease;
    font-size: 1rem;
    color: var(--muted)
}

.faq-item[open] .faq-arrow {
    transform: rotate(180deg)
}

.faq-body {
    padding: 0 24px 20px;
    color: var(--muted);
    line-height: 1.7;
    font-size: .95rem
}

/* ===== LEGAL PAGES ===== */
.legal-section {
    padding: 96px 0;
    background: var(--paper)
}

.legal-card {
    max-width: 880px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--border);
    overflow: hidden
}

.legal-header {
    background: var(--ink);
    padding: 48px;
    text-align: center
}

.legal-header h1 {
    font-family: var(--ff-h);
    font-weight: 800;
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.5rem)
}

.legal-header p {
    color: rgba(255, 255, 255, .6);
    margin-top: 8px;
    font-size: 1.05rem
}

.legal-body {
    padding: 48px
}

.legal-block {
    margin-bottom: 36px
}

.legal-block h3 {
    font-family: var(--ff-h);
    font-size: 1.15rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.legal-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: .8rem;
    flex-shrink: 0
}

.legal-block p,
.legal-block li {
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 8px;
    font-size: .95rem
}

.legal-block ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 8px
}

.legal-block li {
    margin-bottom: 6px
}

.legal-callout {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 12px;
    font-size: .9rem;
    color: var(--ink2)
}

.legal-contact-box {
    background: var(--off);
    border-radius: 16px;
    padding: 28px;
    margin-top: 40px
}

.legal-contact-box h3 {
    margin-bottom: 12px
}

.legal-contact-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap
}

.legal-date {
    text-align: center;
    padding-top: 28px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: .85rem
}

@media(max-width:640px) {
    .legal-section {
        padding: 20px 0
    }

    .legal-card {
        border-radius: 12px;
        margin: 0 8px
    }

    .legal-header {
        padding: 28px 20px
    }

    .legal-header h1 {
        font-size: 1.3rem
    }

    .legal-header p {
        font-size: .88rem
    }

    .legal-body {
        padding: 24px 16px
    }

    .legal-block {
        margin-bottom: 28px
    }

    .legal-block h3 {
        font-size: 1rem;
        gap: 10px
    }

    .legal-num {
        width: 28px;
        height: 28px;
        font-size: .72rem
    }

    .legal-block p,
    .legal-block li {
        font-size: .88rem;
        line-height: 1.65
    }

    .legal-callout {
        padding: 12px 14px;
        font-size: .82rem
    }

    .legal-contact-box {
        padding: 20px 16px
    }

    .legal-contact-actions {
        flex-direction: column
    }

    .legal-contact-actions a {
        text-align: center;
        width: 100%;
        box-sizing: border-box
    }
}

/* ===== ABOUT HERO ===== */
.hero-editorial {
    padding: 80px 40px;
    max-width: 1240px;
    margin: 0 auto
}

.hero-editorial .hero-title {
    max-width: 720px
}

/* Services & About Page Grids */
.svc-domains-grid,
.about-values-grid {
    grid-template-columns: repeat(4, 1fr)
}

.svc-testi-grid {
    grid-template-columns: repeat(2, 1fr)
}

@media(max-width:768px) {

    .svc-domains-grid,
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:640px) {

    .svc-domains-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .svc-testi-grid {
        grid-template-columns: 1fr
    }

    .hero-dark-section {
        padding: 48px 0
    }

    .hero-dark-center {
        padding: 0 20px
    }

    .hero-dark-center h1 {
        font-size: 1.8rem
    }

    .hero-dark-center p {
        font-size: .92rem
    }

    .hero-editorial {
        padding: 48px 20px
    }

    .hero-title {
        font-size: 2rem
    }

    .hero-sub {
        font-size: .9rem
    }

    .sband {
        padding: 48px 20px
    }

    .sband-inner {
        gap: 24px
    }

    .sband h2 {
        font-size: 1.5rem
    }

    .sband p {
        font-size: .9rem
    }

    .split-section img {
        border-radius: 14px
    }

    .sec-title {
        font-size: 1.5rem
    }

    .stats-section {
        padding: 40px 16px
    }

    .stat-num {
        font-size: 1.8rem
    }

    .stat-lbl {
        font-size: .72rem
    }
}

.hero-dark-section {
    background: var(--ink);
    padding: 80px 0
}

.hero-dark-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px
}

.hero-dark-center h1 {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    letter-spacing: -.04em;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 16px
}

.hero-dark-center p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.1rem;
    line-height: 1.7
}

/* ===== DOMAIN BADGES ===== */
.domain-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: .75rem;
    font-weight: 600
}

.db-red {
    background: #fee2e2;
    color: #dc2626
}

.db-purple {
    background: #f3e8ff;
    color: #7c3aed
}

.db-green {
    background: #dcfce7;
    color: #16a34a
}

.db-blue {
    background: #dbeafe;
    color: #2563eb
}

/* ===== ADMIN PANEL ===== */
.adm-shell {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background: var(--off)
}

/* Sidebar */
.adm-side {
    width: 260px;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, .06);
    position: relative;
    z-index: 50
}

@media(max-width:768px) {
    .adm-side {
        position: fixed;
        inset: 0;
        width: 260px;
        transform: translateX(-100%);
        transition: transform .3s ease
    }

    .adm-side.open {
        transform: translateX(0)
    }
}

.adm-side-brand {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    gap: 10px
}

.adm-side-brand span {
    font-family: var(--ff-h);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.02em
}

.adm-side-brand .adm-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    animation: admDotPulse 2s ease-in-out infinite
}

@keyframes admDotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(184, 255, 60, .4)
    }

    50% {
        box-shadow: 0 0 0 6px rgba(184, 255, 60, 0)
    }
}

.adm-nav {
    flex: 1;
    overflow-y: auto;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: stretch
}

.adm-nav-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #555;
    padding: 0 14px;
    margin: 16px 0 8px;
    text-align: left;
    width: 100%
}

.adm-nav-label:first-child {
    margin-top: 0
}

.adm-nav-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: .88rem;
    font-weight: 500;
    color: #888;
    text-decoration: none;
    transition: all .15s;
    width: 100%;
    box-sizing: border-box;
    text-align: left
}

.adm-nav-link:hover {
    background: rgba(255, 255, 255, .05);
    color: var(--white)
}

.adm-nav-link.active {
    background: var(--lime);
    color: var(--ink);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(184, 255, 60, .2)
}

.adm-nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

/* User section at bottom */
.adm-side-user {
    padding: 16px 12px;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.adm-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 14px
}

.adm-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .1);
    position: relative
}

.adm-user-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
    border: 2px solid var(--ink)
}

.adm-user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover
}

.adm-user-name {
    font-size: .88rem;
    font-weight: 600;
    color: var(--white)
}

.adm-user-role {
    font-size: .72rem;
    color: #666;
    text-transform: capitalize
}

.adm-logout {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    color: #888;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s;
    box-sizing: border-box
}

.adm-logout:hover {
    background: rgba(255, 95, 62, .1);
    color: var(--coral);
    border-color: rgba(255, 95, 62, .2)
}

/* Content */
.adm-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.adm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: var(--white);
    border-bottom: 1.5px solid var(--border);
    z-index: 10
}

.adm-header-title {
    font-family: var(--ff-h);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em
}

.adm-header-sub {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500
}

.adm-mobile-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    margin-right: 16px
}

@media(max-width:768px) {
    .adm-mobile-btn {
        display: block
    }

    .adm-header {
        padding: 14px 20px
    }
}

.adm-notif-btn {
    position: relative;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--muted);
    transition: color .2s
}

.adm-notif-btn:hover {
    color: var(--ink)
}

.adm-notif-dot {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    border: 2px solid var(--white)
}

.adm-toast {
    display: none;
    position: absolute;
    right: 0;
    top: 48px;
    width: 320px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    z-index: 50
}

.adm-toast.show {
    display: block
}

.adm-toast-bar {
    height: 3px;
    background: var(--lime)
}

.adm-toast-body {
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.adm-toast-title {
    font-size: .85rem;
    font-weight: 700;
    color: var(--ink)
}

.adm-toast-msg {
    font-size: .82rem;
    color: var(--muted);
    margin-top: 2px
}

.adm-main {
    flex: 1;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 32px
}

@media(max-width:768px) {
    .adm-main {
        padding: 20px
    }
}

/* Overlay for mobile */
.adm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(4px);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease
}

@media(max-width:768px) {
    .adm-overlay.show {
        opacity: 1;
        visibility: visible
    }
}

/* ── Admin Stats Cards ── */
.adm-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 28px
}

.adm-stat {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--border);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform .2s, box-shadow .2s
}

.adm-stat:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg)
}

.adm-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0
}

.adm-stat-icon-lime {
    background: rgba(184, 255, 60, .12);
    color: var(--lime)
}

.adm-stat-icon-coral {
    background: rgba(255, 95, 62, .1);
    color: var(--coral)
}

.adm-stat-icon-sky {
    background: rgba(56, 182, 255, .1);
    color: var(--sky)
}

.adm-stat-label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    margin-bottom: 4px
}

.adm-stat-value {
    font-family: var(--ff-h);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.03em
}

.adm-stat-trend {
    font-size: .75rem;
    font-weight: 600;
    margin-top: 4px
}

.adm-stat-trend-up {
    color: var(--green)
}

.adm-stat-trend-down {
    color: var(--coral)
}

/* ── Chart Card ── */
.adm-chart-card {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--border);
    padding: 28px;
    margin-bottom: 28px
}

.adm-chart-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px
}

.adm-chart-title {
    font-family: var(--ff-h);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink)
}

.adm-chart-select {
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--off);
    cursor: pointer;
    outline: none
}

.adm-chart-select:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(184, 255, 60, .15)
}

.adm-chart-wrap {
    position: relative;
    height: 320px;
    width: 100%
}

/* ── Action Cards (Manager/Viewer) ── */
.adm-action-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px
}

.adm-action-card {
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s
}

.adm-action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.adm-action-body {
    padding: 28px
}

.adm-action-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.adm-action-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all .25s
}

.adm-action-title {
    font-family: var(--ff-h);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px
}

.adm-action-desc {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6
}

.adm-action-foot {
    padding: 14px 28px;
    border-top: 1.5px solid var(--off);
    transition: background .2s
}

.adm-action-foot span {
    font-family: var(--ff-h);
    font-size: .82rem;
    font-weight: 700
}

.adm-action-card:hover .adm-action-foot {
    background: var(--off)
}

.adm-badge-pending {
    background: rgba(255, 95, 62, .1);
    color: var(--coral);
    font-family: var(--ff-h);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 99px
}

/* ── Info Banner ── */
.adm-banner {
    padding: 24px 28px;
    border-radius: 16px;
    margin-bottom: 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px
}

.adm-banner-info {
    background: var(--off);
    border-left: 4px solid var(--border)
}

.adm-banner-info .adm-banner-icon {
    font-size: 1.2rem
}

.adm-banner-title {
    font-family: var(--ff-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px
}

.adm-banner-desc {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6
}

.adm-banner-hero {
    background: var(--ink);
    color: var(--white);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden
}

.adm-banner-hero::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(184, 255, 60, .06)
}

.adm-banner-hero h2 {
    font-family: var(--ff-h);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative
}

.adm-banner-hero p {
    font-size: .92rem;
    color: #888;
    max-width: 600px;
    line-height: 1.6;
    position: relative
}

/* ── Admin Tables ── */
.adm-table-wrap {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--border);
    overflow: hidden
}

.adm-table {
    width: 100%;
    border-collapse: collapse
}

.adm-table thead {
    background: var(--off)
}

.adm-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    border-bottom: 1.5px solid var(--border)
}

.adm-table th.right {
    text-align: right
}

.adm-table td {
    padding: 16px 20px;
    font-size: .88rem;
    color: var(--ink);
    border-bottom: 1px solid var(--off);
    vertical-align: middle
}

.adm-table tr:last-child td {
    border-bottom: none
}

.adm-table tr:hover td {
    background: rgba(184, 255, 60, .03)
}

.adm-table .td-name {
    font-weight: 600;
    color: var(--ink)
}

.adm-table .td-sub {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 2px
}

.adm-table .td-muted {
    font-size: .82rem;
    color: var(--muted)
}

.adm-table .td-right {
    text-align: right
}

/* ── Admin Badges ── */
.adm-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: .72rem;
    font-weight: 700;
    font-family: var(--ff-h);
    letter-spacing: .02em
}

.adm-badge-green {
    background: rgba(74, 222, 128, .12);
    color: #16a34a
}

.adm-badge-red {
    background: rgba(255, 95, 62, .1);
    color: var(--coral)
}

.adm-badge-yellow {
    background: rgba(255, 200, 60, .12);
    color: #b45309
}

.adm-badge-blue {
    background: rgba(56, 182, 255, .1);
    color: #0284c7
}

.adm-badge-purple {
    background: rgba(168, 85, 247, .1);
    color: #7c3aed
}

.adm-badge-gray {
    background: var(--off);
    color: var(--muted)
}

/* ── Admin Buttons ── */
.adm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    border: none;
    text-decoration: none
}

.adm-btn-sm {
    padding: 6px 12px;
    font-size: .75rem;
    border-radius: 8px
}

.adm-btn-primary {
    background: var(--ink);
    color: var(--white);
    border-bottom: 3px solid var(--lime)
}

.adm-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.adm-btn-success {
    background: #16a34a;
    color: var(--white)
}

.adm-btn-success:hover {
    background: #15803d
}

.adm-btn-danger {
    background: var(--coral);
    color: var(--white)
}

.adm-btn-danger:hover {
    background: #e5533a
}

.adm-btn-outline {
    background: var(--white);
    color: var(--ink);
    border: 1.5px solid var(--border)
}

.adm-btn-outline:hover {
    background: var(--off);
    border-color: var(--ink)
}

.adm-btn-ghost {
    background: none;
    border: none;
    padding: 6px 10px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: color .2s
}

.adm-btn-ghost-blue {
    color: var(--sky)
}

.adm-btn-ghost-blue:hover {
    color: #0369a1
}

.adm-btn-ghost-red {
    color: var(--coral)
}

.adm-btn-ghost-red:hover {
    color: #dc2626
}

.adm-btn-ghost-indigo {
    color: #6366f1
}

.adm-btn-ghost-indigo:hover {
    color: #4338ca
}

/* ── Admin Forms ── */
.adm-form-group {
    margin-bottom: 18px
}

.adm-form-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px
}

.adm-form-input,
.adm-form-select,
.adm-form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: .88rem;
    font-family: inherit;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box
}

.adm-form-input:focus,
.adm-form-select:focus,
.adm-form-textarea:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(184, 255, 60, .15)
}

.adm-form-input::placeholder {
    color: #aaa
}

.adm-form-hint {
    font-size: .75rem;
    color: var(--muted);
    margin-top: 4px
}

.adm-form-check {
    display: flex;
    align-items: center;
    gap: 10px
}

.adm-form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--lime);
    border-radius: 4px
}

.adm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

@media(max-width:640px) {
    .adm-form-row {
        grid-template-columns: 1fr
    }
}

.adm-form-inline {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    flex-wrap: wrap
}

/* ── Admin Modal ── */
.adm-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.adm-modal.show {
    display: flex
}

.adm-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(4px)
}

.adm-modal-card {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: admSlideUp .3s ease
}

@keyframes admSlideUp {
    from {
        transform: translateY(20px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.adm-modal-head {
    padding: 24px 28px 0;
    border-bottom: none
}

.adm-modal-title {
    font-family: var(--ff-h);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--ink)
}

.adm-modal-subtitle {
    font-size: .85rem;
    color: var(--muted);
    margin-top: 4px
}

.adm-modal-body {
    padding: 20px 28px
}

.adm-modal-foot {
    padding: 16px 28px;
    background: var(--off);
    display: flex;
    justify-content: flex-end;
    gap: 10px
}

/* ── Admin Section Card ── */
.adm-section {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--border);
    padding: 24px 28px;
    margin-bottom: 20px
}

.adm-section-title {
    font-family: var(--ff-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px
}

.adm-section-desc {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 16px
}

.adm-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px
}

/* ── Admin Toolbar ── */
.adm-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap
}

.adm-search {
    position: relative;
    flex: 1;
    max-width: 400px
}

.adm-search input {
    width: 100%;
    padding: 10px 14px 10px 40px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-size: .88rem;
    color: var(--ink);
    background: var(--white);
    outline: none;
    box-sizing: border-box
}

.adm-search input:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(184, 255, 60, .15)
}

.adm-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted)
}

/* ── Admin Page Header ── */
.adm-page-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px
}

.adm-back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--off);
    color: var(--muted);
    text-decoration: none;
    transition: all .2s
}

.adm-back-link:hover {
    background: var(--border);
    color: var(--ink)
}

.adm-page-label {
    font-size: .78rem;
    color: var(--muted);
    font-weight: 500
}

.adm-page-name {
    font-family: var(--ff-h);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em
}

/* ── User Row (avatar + info) ── */
.adm-user-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.adm-user-row img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border)
}

/* ── FAB ── */
.adm-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--lime);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
    transition: transform .2s, box-shadow .2s;
    z-index: 30
}

.adm-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .3)
}

/* ── List Card (Payments/Submissions) ── */
.adm-list-card {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--border);
    overflow: hidden
}

.adm-list-item {
    padding: 20px 24px;
    border-bottom: 1px solid var(--off);
    transition: background .15s
}

.adm-list-item:last-child {
    border-bottom: none
}

.adm-list-item:hover {
    background: rgba(184, 255, 60, .02)
}

.adm-list-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px
}

.adm-list-item-name {
    font-size: .92rem;
    font-weight: 600;
    color: var(--ink)
}

.adm-list-item-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px
}

.adm-list-item-meta span,
.adm-list-item-meta a {
    font-size: .78rem;
    color: var(--muted)
}

.adm-list-item-meta a {
    color: var(--sky);
    text-decoration: underline
}

.adm-list-item-meta a:hover {
    color: #0369a1
}

.adm-list-item-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.adm-empty {
    padding: 40px 20px;
    text-align: center;
    color: var(--muted);
    font-size: .88rem;
    font-style: italic
}

/* ===== AUTH PAGES ===== */
.auth-page {
    display: flex;
    min-height: 100vh
}

.auth-brand {
    display: none;
    width: 50%;
    background: var(--ink);
    position: relative;
    overflow: hidden;
    padding: 64px 56px;
    flex-direction: column;
    justify-content: center
}

@media(min-width:1024px) {
    .auth-brand {
        display: flex
    }
}

.auth-brand::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(184, 255, 60, .06);
    pointer-events: none
}

.auth-brand::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 95, 62, .05);
    pointer-events: none
}

.auth-brand-title {
    font-family: var(--ff-h);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.04em;
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative
}

.auth-brand-title em {
    font-style: normal;
    color: var(--lime)
}

.auth-brand-sub {
    font-size: 1.05rem;
    color: #888;
    line-height: 1.7;
    max-width: 420px
}

.auth-features {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 16px
}

.auth-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(184, 255, 60, .1);
    border: 1px solid rgba(184, 255, 60, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0
}

.auth-feature-text h4 {
    font-family: var(--ff-h);
    font-size: .92rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px
}

.auth-feature-text p {
    font-size: .82rem;
    color: #666
}

.auth-brand-copy {
    position: absolute;
    bottom: 40px;
    left: 56px;
    font-size: .82rem;
    color: #555
}

/* Form Side */
.auth-form-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 40px;
    background: var(--paper);
    position: relative
}

.auth-back {
    position: absolute;
    top: 28px;
    left: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s
}

.auth-back:hover {
    color: var(--ink)
}

.auth-form-wrap {
    max-width: 440px;
    margin: 0 auto;
    width: 100%
}

.auth-heading {
    font-family: var(--ff-h);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.03em;
    margin-bottom: 8px
}

.auth-subtext {
    font-size: .9rem;
    color: var(--muted);
    margin-bottom: 32px
}

.auth-subtext a {
    color: var(--coral);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s
}

.auth-subtext a:hover {
    color: var(--ink)
}

/* Form Elements */
.auth-error {
    background: rgba(255, 95, 62, .08);
    border-left: 4px solid var(--coral);
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: .88rem;
    color: #c0301a;
    display: flex;
    align-items: center;
    gap: 10px
}

.auth-field {
    margin-bottom: 20px
}

.auth-label {
    display: block;
    font-family: var(--ff-h);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .02em;
    color: var(--ink);
    margin-bottom: 8px
}

.auth-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--ff-b);
    font-size: .9rem;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box
}

.auth-input:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(184, 255, 60, .2)
}

.auth-input::placeholder {
    color: var(--muted)
}

.auth-select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--ff-b);
    font-size: .9rem;
    color: var(--ink);
    background: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3e%3cpath d='M6 9l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    cursor: pointer
}

.auth-select:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(184, 255, 60, .2)
}

.auth-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.auth-check-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px
}

.auth-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--ink2)
}

.auth-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--lime)
}

.auth-check a,
.auth-link {
    color: var(--coral);
    font-weight: 600;
    font-size: .85rem;
    text-decoration: none;
    transition: color .2s
}

.auth-check a:hover,
.auth-link:hover {
    color: var(--ink)
}

.auth-submit {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 12px;
    background: var(--ink);
    color: var(--lime);
    font-family: var(--ff-h);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 4px 4px 0 var(--lime-d)
}

.auth-submit:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--lime-d)
}

.auth-submit:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--lime-d)
}

@media(max-width:640px) {
    .auth-form-side {
        padding: 24px 16px
    }

    .auth-back {
        position: static;
        margin-bottom: 16px
    }

    .auth-heading {
        font-size: 1.4rem;
        margin-bottom: 4px
    }

    .auth-subtext {
        font-size: .82rem;
        margin-bottom: 20px
    }

    .auth-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .auth-field {
        margin-bottom: 14px
    }

    .auth-input,
    .auth-select {
        padding: 11px 14px;
        font-size: .85rem
    }

    .auth-label {
        font-size: .78rem;
        margin-bottom: 6px
    }

    .auth-check-row {
        margin-bottom: 16px
    }

    .auth-submit {
        padding: 12px 20px;
        font-size: .88rem
    }
}

/* ===== ERROR PAGES ===== */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    background: var(--paper)
}

.error-card {
    text-align: center;
    max-width: 480px
}

.error-code {
    font-family: var(--ff-h);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: 1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--lime), var(--coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.error-title {
    font-family: var(--ff-h);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px
}

.error-msg {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 32px
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--lime);
    font-family: var(--ff-h);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 4px 4px 0 var(--lime-d)
}

.error-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--lime-d)
}

/* ===== PLANS PAGE ===== */
.plans-page {
    min-height: 80vh;
    background: var(--paper);
    padding: 80px 24px
}

.plans-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px
}

.plans-head h1 {
    font-family: var(--ff-h);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--ink);
    margin-bottom: 12px
}

.plans-head p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7
}

.plans-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.plan-card {
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    position: relative
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.plan-card-popular {
    border-color: var(--lime);
    box-shadow: 0 0 0 2px rgba(184, 255, 60, .2);
    transform: scale(1.04)
}

.plan-card-popular:hover {
    transform: scale(1.04) translateY(-4px)
}

.plan-popular-tag {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--lime);
    color: var(--ink);
    font-family: var(--ff-h);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 0 0 10px 10px
}

.plan-body {
    padding: 32px 28px
}

.plan-name {
    font-family: var(--ff-h);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px
}

.plan-desc {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 24px
}

.plan-price {
    font-family: var(--ff-h);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.03em;
    margin-bottom: 4px
}

.plan-price span {
    font-size: .9rem;
    font-weight: 500;
    color: var(--muted)
}

.plan-select-btn {
    display: block;
    width: 100%;
    padding: 13px;
    margin-top: 24px;
    border: none;
    border-radius: 12px;
    font-family: var(--ff-h);
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    text-align: center
}

.plan-select-btn-default {
    background: var(--off);
    color: var(--ink);
    border: 1.5px solid var(--border)
}

.plan-select-btn-default:hover {
    background: var(--ink);
    color: var(--lime);
    border-color: var(--ink)
}

.plan-select-btn-popular {
    background: var(--ink);
    color: var(--lime);
    box-shadow: 3px 3px 0 var(--lime-d)
}

.plan-select-btn-popular:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--lime-d)
}

.plan-features {
    padding: 24px 28px;
    border-top: 1.5px solid var(--off)
}

.plan-features h4 {
    font-family: var(--ff-h);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: 16px
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--ink2)
}

.plan-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: .75rem
}

/* ===== PAYMENT PAGE ===== */
.pay-page {
    min-height: 80vh;
    background: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px
}

.pay-card {
    max-width: 900px;
    width: 100%;
    background: var(--white);
    border-radius: 24px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr
}

.pay-info {
    background: var(--ink);
    padding: 48px 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden
}

.pay-info::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(184, 255, 60, .06)
}

.pay-info h2 {
    font-family: var(--ff-h);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative
}

.pay-info>p {
    font-size: .92rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative
}

.pay-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative
}

.pay-perks li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .88rem;
    font-weight: 500
}

.pay-perks li span:first-child {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(184, 255, 60, .1);
    border: 1px solid rgba(184, 255, 60, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0
}

.pay-amount-card {
    margin-top: 40px;
    padding: 20px;
    background: rgba(184, 255, 60, .08);
    border: 1px solid rgba(184, 255, 60, .2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.pay-amount-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #888;
    margin-bottom: 4px
}

.pay-amount-value {
    font-family: var(--ff-h);
    font-size: 2rem;
    font-weight: 800;
    color: var(--lime)
}

.pay-form-side {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.pay-form-title {
    font-family: var(--ff-h);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    text-align: center;
    margin-bottom: 6px
}

.pay-form-sub {
    font-size: .85rem;
    color: var(--muted);
    text-align: center;
    margin-bottom: 28px
}

.pay-qr-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 20px
}

.pay-qr-img {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    border: 2px dashed var(--border);
    padding: 8px;
    object-fit: cover
}

.pay-upi-id {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--off);
    border-radius: 99px;
    padding: 8px 18px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink2);
    margin: 0 auto 28px;
    cursor: pointer;
    user-select: all
}

.pay-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: var(--ink);
    color: var(--lime);
    font-family: var(--ff-h);
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 3px 3px 0 var(--lime-d);
    margin-top: 8px
}

.pay-submit-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--lime-d)
}

.pay-cancel {
    display: block;
    text-align: center;
    margin-top: 16px;
    font-size: .84rem;
    color: var(--muted);
    text-decoration: none;
    transition: color .2s
}

.pay-cancel:hover {
    color: var(--coral)
}

.pay-trust {
    text-align: center;
    margin-top: 20px;
    font-size: .78rem;
    color: var(--muted);
    display: flex;
    justify-content: center;
    gap: 16px
}

@media(max-width:768px) {
    .pay-card {
        grid-template-columns: 1fr
    }

    .pay-info {
        padding: 32px 24px
    }

    .pay-form-side {
        padding: 32px 24px
    }
}

/* ===== CERTIFICATE PAGE ===== */
.cert-page {
    background: var(--off);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px
}

.cert-card {
    width: 840px;
    max-width: 100%;
    background: var(--white);
    border: 8px solid var(--ink);
    padding: 60px 56px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12)
}

.cert-card::before,
.cert-card::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--lime)
}

.cert-card::before {
    top: 16px;
    left: 16px;
    border-right: none;
    border-bottom: none
}

.cert-card::after {
    bottom: 16px;
    right: 16px;
    border-left: none;
    border-top: none
}

.cert-logo {
    font-family: var(--ff-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 32px
}

.cert-title {
    font-family: var(--ff-h);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 8px
}

.cert-subtitle {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 40px
}

.cert-name {
    font-family: var(--ff-h);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--coral);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
    display: inline-block;
    min-width: 60%;
    margin-bottom: 20px
}

.cert-course {
    font-family: var(--ff-h);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 60px
}

.cert-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 40px
}

.cert-sig {
    border-top: 1px solid var(--ink);
    padding-top: 10px;
    width: 200px;
    font-size: .82rem;
    color: var(--ink2)
}

.cert-sig strong {
    display: block;
    color: var(--ink);
    font-family: var(--ff-h)
}

@media print {
    body {
        background: white
    }

    .cert-card {
        border-width: 5px;
        box-shadow: none;
        width: 100%;
        padding: 40px
    }
}

/* ===== STUDENT DASHBOARD ===== */
.sd-page {
    background: var(--off);
    min-height: 100vh;
    padding-bottom: 64px
}

/* Hero */
.sd-hero {
    background: var(--ink);
    padding: 48px 40px 72px;
    position: relative;
    overflow: hidden
}

.sd-hero::before {
    content: '🚀';
    position: absolute;
    right: 40px;
    top: -10px;
    font-size: 10rem;
    opacity: .04;
    pointer-events: none;
    line-height: 1
}

.sd-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.sd-greeting {
    font-family: var(--ff-h);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.03em;
    line-height: 1.2
}

.sd-greeting em {
    font-style: normal;
    color: var(--lime)
}

.sd-subtitle {
    color: #888;
    font-size: .95rem;
    margin-top: 8px;
    line-height: 1.6
}

.sd-track-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 255, 60, .12);
    border: 1.5px solid rgba(184, 255, 60, .25);
    color: var(--lime);
    font-family: var(--ff-h);
    font-size: .82rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 99px;
    letter-spacing: .04em;
    text-transform: uppercase
}

/* Progress Bar */
.sd-progress-wrap {
    max-width: 1200px;
    margin: -36px auto 0;
    padding: 0 40px;
    position: relative;
    z-index: 10
}

.sd-progress-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.sd-progress-info {
    flex-shrink: 0
}

.sd-progress-label {
    font-family: var(--ff-h);
    font-weight: 700;
    font-size: .88rem;
    color: var(--ink);
    margin-bottom: 4px
}

.sd-progress-sub {
    font-size: .78rem;
    color: var(--muted)
}

.sd-bar-wrap {
    flex: 1;
    min-width: 200px
}

.sd-bar {
    width: 100%;
    height: 12px;
    background: var(--off);
    border-radius: 99px;
    overflow: hidden;
    position: relative
}

.sd-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--lime), var(--green));
    border-radius: 99px;
    transition: width 1s cubic-bezier(.25, .8, .25, 1);
    position: relative
}

.sd-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
    animation: barShimmer 2s infinite
}

@keyframes barShimmer {
    from {
        transform: translateX(-100%)
    }

    to {
        transform: translateX(100%)
    }
}

.sd-pct {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--ink);
    letter-spacing: -.04em;
    flex-shrink: 0
}

/* Main Grid */
.sd-main {
    max-width: 1200px;
    margin: 32px auto 0;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 28px;
    align-items: start
}

/* Alerts */
.sd-alert {
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    border: 1.5px solid;
    background: var(--white)
}

.sd-alert-warning {
    border-color: var(--yellow);
    border-left: 4px solid var(--yellow)
}

.sd-alert-info {
    border-color: var(--sky);
    border-left: 4px solid var(--sky)
}

.sd-alert-error {
    border-color: var(--coral);
    border-left: 4px solid var(--coral)
}

.sd-alert-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0
}

.sd-alert-warning .sd-alert-icon {
    background: #fef9c3
}

.sd-alert-info .sd-alert-icon {
    background: #dbeafe
}

.sd-alert-error .sd-alert-icon {
    background: #fee2e2
}

.sd-alert h3 {
    font-family: var(--ff-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px
}

.sd-alert p {
    font-size: .88rem;
    color: var(--ink2);
    line-height: 1.6
}

.sd-alert-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 10px 22px;
    border-radius: 10px;
    font-family: var(--ff-h);
    font-size: .85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    border: none;
    cursor: pointer
}

.sd-alert-warning .sd-alert-action {
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 3px 3px 0 #e6b800
}

.sd-alert-warning .sd-alert-action:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #e6b800
}

.sd-alert-error .sd-alert-action {
    background: var(--coral);
    color: var(--white);
    box-shadow: 3px 3px 0 var(--coral-d)
}

/* Section Header */
.sd-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.sd-section-title {
    font-family: var(--ff-h);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--ink)
}

.sd-task-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--lime);
    color: var(--ink);
    font-family: var(--ff-h);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 99px
}

/* Project Cards */
.sd-projects {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.sd-project {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative
}

.sd-project::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c, var(--border));
    transition: height .2s
}

.sd-project:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.sd-project:hover::before {
    height: 4px
}

.sd-project-active {
    --c: var(--lime);
    border-color: rgba(184, 255, 60, .4);
    box-shadow: 0 0 0 2px rgba(184, 255, 60, .15)
}

.sd-project-locked {
    --c: var(--border);
    opacity: .6;
    filter: grayscale(.3)
}

.sd-project-locked:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--border)
}

.sd-project-submitted {
    --c: var(--sky)
}

.sd-project-approved {
    --c: var(--green)
}

.sd-project-rejected {
    --c: var(--coral)
}

.sd-project-body {
    padding: 24px
}

.sd-project-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px
}

.sd-project-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--off);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-h);
    font-size: .9rem;
    font-weight: 800;
    color: var(--ink);
    flex-shrink: 0
}

.sd-project-active .sd-project-num {
    background: var(--lime);
    color: var(--ink)
}

.sd-project-approved .sd-project-num {
    background: #dcfce7;
    color: #16a34a
}

.sd-project-info {
    flex: 1;
    margin-left: 14px
}

.sd-project-title {
    font-family: var(--ff-h);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.02em;
    margin-bottom: 6px;
    transition: color .2s
}

.sd-project:hover .sd-project-title {
    color: var(--coral)
}

.sd-project-locked:hover .sd-project-title {
    color: var(--ink)
}

.sd-project-desc {
    font-size: .87rem;
    color: var(--ink2);
    line-height: 1.6
}

/* Status Badges */
.sd-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 99px;
    font-family: var(--ff-h);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap
}

.sd-badge-active {
    background: rgba(184, 255, 60, .18);
    color: #5a8200;
    border: 1px solid rgba(184, 255, 60, .4)
}

.sd-badge-active::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime-d);
    animation: badgePulse 1.5s ease-in-out infinite
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

.sd-badge-locked {
    background: var(--off);
    color: var(--muted);
    border: 1px solid var(--border)
}

.sd-badge-submitted {
    background: rgba(61, 159, 255, .12);
    color: #1d6fcc;
    border: 1px solid rgba(61, 159, 255, .3)
}

.sd-badge-approved {
    background: rgba(34, 197, 94, .12);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, .3)
}

.sd-badge-rejected {
    background: rgba(255, 95, 62, .12);
    color: #c0301a;
    border: 1px solid rgba(255, 95, 62, .3)
}

/* Project Actions */
.sd-project-actions {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1.5px solid var(--off)
}

.sd-resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--sky);
    text-decoration: none;
    margin-bottom: 16px;
    transition: color .2s
}

.sd-resource-link:hover {
    color: var(--coral)
}

.sd-submit-form {
    display: flex;
    gap: 10px;
    align-items: stretch
}

.sd-submit-input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    font-family: var(--ff-b);
    font-size: .88rem;
    color: var(--ink);
    background: var(--paper);
    transition: border-color .2s, box-shadow .2s;
    outline: none
}

.sd-submit-input:focus {
    border-color: var(--lime);
    box-shadow: 0 0 0 3px rgba(184, 255, 60, .2)
}

.sd-submit-input::placeholder {
    color: var(--muted)
}

.sd-submit-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    background: var(--ink);
    color: var(--lime);
    font-family: var(--ff-h);
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 3px 3px 0 var(--lime-d);
    white-space: nowrap
}

.sd-submit-btn:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 var(--lime-d)
}

.sd-submit-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--lime-d)
}

.sd-submit-hint {
    font-size: .76rem;
    color: var(--muted);
    margin-top: 8px
}

.sd-submit-hint span {
    color: var(--coral)
}

/* Sidebar */
.sd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 84px
}

/* Certificate Card */
.sd-cert {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    background: var(--white)
}

.sd-cert-head {
    background: var(--ink);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 10px
}

.sd-cert-head span {
    font-size: 1.2rem
}

.sd-cert-head h3 {
    font-family: var(--ff-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white)
}

.sd-cert-body {
    padding: 28px 24px;
    text-align: center
}

.sd-cert-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem
}

.sd-cert-locked .sd-cert-icon {
    background: var(--off);
    opacity: .5
}

.sd-cert-unlocked .sd-cert-icon {
    background: #dcfce7;
    animation: certBounce 2s ease-in-out infinite
}

@keyframes certBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

.sd-cert-body h4 {
    font-family: var(--ff-h);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px
}

.sd-cert-body p {
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px
}

.sd-cert-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: var(--ff-h);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    border: none;
    cursor: pointer
}

.sd-cert-btn-active {
    background: var(--green);
    color: var(--white);
    box-shadow: 3px 3px 0 #15803d
}

.sd-cert-btn-active:hover {
    transform: translate(-2px, -2px);
    box-shadow: 5px 5px 0 #15803d
}

.sd-cert-btn-disabled {
    background: var(--off);
    color: var(--muted);
    cursor: not-allowed;
    border: 1.5px solid var(--border)
}

/* Support Card */
.sd-support {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--border);
    padding: 24px
}

.sd-support h3 {
    font-family: var(--ff-h);
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.sd-support-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--off);
    font-size: .85rem;
    color: var(--ink2)
}

.sd-support-item:last-child {
    border-bottom: none
}

.sd-support-item span:first-child {
    font-size: 1.1rem
}

.sd-support-item a {
    color: var(--sky);
    font-weight: 600;
    text-decoration: none;
    transition: color .2s
}

.sd-support-item a:hover {
    color: var(--coral)
}

/* Empty State */
.sd-empty {
    background: var(--white);
    border-radius: 16px;
    padding: 64px 40px;
    text-align: center;
    border: 1.5px solid var(--border)
}

.sd-empty-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block
}

.sd-empty h3 {
    font-family: var(--ff-h);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px
}

.sd-empty p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.6
}

/* Student Dashboard Responsive */
@media(max-width:1024px) {
    .sd-main {
        grid-template-columns: 1fr;
        padding: 0 20px
    }

    .sd-sidebar {
        position: static
    }

    .sd-hero {
        padding: 40px 20px 64px
    }

    .sd-progress-wrap {
        padding: 0 20px
    }
}

@media(max-width:640px) {
    .sd-hero-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .sd-progress-card {
        flex-direction: column;
        align-items: stretch;
        text-align: center
    }

    .sd-submit-form {
        flex-direction: column
    }

    .sd-project-head {
        flex-direction: column
    }
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 80px 24px 40px
    }

    .hero-visual {
        display: none
    }

    .why-grid,
    .pricing-grid {
        grid-template-columns: 1fr 1fr
    }

    .courses-grid {
        grid-template-columns: 1fr
    }

    .course-card:first-child .c-img {
        height: 200px
    }

    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .steps::after {
        display: none
    }

    .stats-inner {
        grid-template-columns: 1fr 1fr
    }

    .sband-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .split-section {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    nav {
        padding: 0 20px
    }

    .nav-links {
        display: none
    }

    .nav-right {
        display: none
    }

    .nav-hamburger {
        display: flex
    }
}

@media(max-width:640px) {

    .why-grid,
    .pricing-grid,
    .steps,
    .stats-inner,
    .courses-grid {
        grid-template-columns: 1fr
    }

    .p-card.popular {
        transform: none
    }

    .hero-title {
        font-size: 2.6rem
    }

    footer {
        flex-direction: column;
        gap: 10px;
        text-align: center
    }

    .section {
        padding: 64px 0
    }

    .container {
        padding: 0 20px
    }

    .stats-section {
        padding: 56px 20px
    }

    .sband {
        padding: 56px 20px
    }

    .cta-fin {
        padding: 72px 24px
    }

    .hero {
        padding: 48px 20px 20px
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch
    }

    .btn-xl {
        justify-content: center
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .contact-form-side,
    .contact-info-side {
        padding: 32px
    }

    .legal-body,
    .legal-header {
        padding: 32px
    }

    .hero-editorial {
        padding: 48px 20px
    }

    .legal-contact-actions {
        flex-direction: column
    }
}