:root {
    --pink: #ff00a8;
    --violet: #8d1dea;
    --purple: #67189f;
    --gradient: linear-gradient(90deg, var(--pink) 0%, var(--violet) 100%);
    --dark: #0f172a;
    --muted: #6b778b;
    --line: #e7eaf2;
    --bg: #f8f7fc;
    --white: #fff;
    --green: #19a463;
}

* {
    box-sizing: border-box
}

.bi {
    margin-right: 6px;
    vertical-align: -2px;
    line-height: 1
}

.circle .bi,
.play .bi,
.testi-stars .bi,
.reg-toast-icon .bi {
    margin-right: 0;
    vertical-align: middle
}

.gallery-tile .bi,
.expect>div>.bi {
    margin-right: 0;
    display: block
}

.testi-stars .bi {
    color: #f5a623;
    font-size: 14px;
    margin-right: 2px
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Poppins', 'Gordita Regular', Arial, sans-serif;
    font-weight: 400;
    color: var(--dark);
    background: #ffff;
}

h1,
h2,
h3,
h4 {
    font-weight: 600
}

b,
strong {
    font-weight: 500
}

.container {
    width: min(1200px, 92%);
    margin: auto
}

/* every section between hero and footer matches hero-video's width */
main .container {
    max-width: 850px
}

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

.center {
    text-align: center
}

.sub {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6
}

.sub.center {
    max-width: 560px;
    margin: 10px auto 0
}

/* ============ big section headings ============ */
h2.center {
    margin: 0;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: -1px;
    color: var(--dark)
}

.accent-grad {
    background: linear-gradient(100deg, var(--pink) 0%, var(--violet) 35%, #ffe1f5 50%, var(--violet) 65%, var(--pink) 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: accentShine 3s linear infinite
}

@keyframes accentShine {
    from {
        background-position: 200% center
    }

    to {
        background-position: 0% center
    }
}

/* ============ 1. HERO (hero-body plain, hero-video card carries the gradient) ============ */
.hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    padding: 26px 0 6px
}

.logo img {
    height: 42px;
    width: auto
}

.tag {
    font-size: 12px;
    color: var(--muted);
    font-weight: 500;
    letter-spacing: .3px
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 0 auto 32px;
    max-width: 820px;
    flex-wrap: wrap
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #9aa1b5
}

.circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f1eefa;
    color: var(--violet);
    border: 1px solid #e6ddf7;
    flex-shrink: 0
}

.step.done {
    color: var(--violet)
}

.step.done .circle {
    background: var(--gradient);
    color: #fff;
    border-color: transparent
}

.step.active {
    color: var(--dark)
}

.step.active .circle {
    background: var(--gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 16px rgba(141, 29, 234, .3)
}

.line {
    height: 2px;
    width: 55px;
    background: var(--line)
}

.hero-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--dark);
    margin: 14px 0 40px;
}

.hero h1 {
    font-size: 44px;
    line-height: 1.05;
    margin: 0 0 10px;
    letter-spacing: -1.8px;
    font-weight: 600
}

.accent-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero-body p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto
}

.hero-cta-row {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap
}

.hero-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 12px 26px rgba(141, 29, 234, .28)
}

/* ============ hero checks (payment confirmed / seat reserved / access after form) ============ */
.checks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    width: 100%;
    max-width: 850px;
    margin: 22px auto 0;
    text-align: left
}

.check {
    background: #fff;
    border: 1px solid var(--line);
    border-left: 3px solid var(--violet);
    border-radius: 12px;
    padding: 15px 16px;
    box-shadow: 0 12px 30px rgba(32, 42, 90, .05);
    transition: transform .2s ease, box-shadow .2s ease
}

.check:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(32, 42, 90, .1)
}

.check b {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
    font-size: 14.5px;
    color: var(--dark)
}

.check i.bi {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-right: 0;
    flex-shrink: 0
}

.check small {
    color: var(--muted)
}

.hero-video {
    width: 100%;
    max-width: 850px;
    margin: 22px auto 0;
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .10), transparent 42%),
        radial-gradient(circle at 92% 90%, rgba(255, 255, 255, .08), transparent 45%),
        linear-gradient(115deg, #3a0f6e, #6a15b8 55%, #c2179e);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .22)
}

.hero-video .video {
    margin-top: 0
}

.hero-video .host {
    border-top-color: rgba(255, 255, 255, .2);
    text-align: left
}

.hero-video .host small {
    color: #e9e1fa
}

/* ============ shared section rhythm (2-9: no background color) ============ */
.section {
    margin: 46px 0
}

/* buttons */
button,
.btn {
    border: 0;
    border-radius: 999px;
    padding: 15px 22px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
    font-size: 14px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover,
button:hover {
    transform: translateY(-2px)
}

.primary {
    background: var(--gradient);
    color: #fff;
    width: 100%;
    box-shadow: 0 12px 26px rgba(141, 29, 234, .28)
}

.ghost-light {
    background: #fff;
    color: var(--violet);
    border: 1px solid #e2d3f7
}

.join {
    margin-top: 16px;
    background: var(--gradient);
    color: #fff;
    width: 100%;
    box-shadow: 0 12px 26px rgba(141, 29, 234, .22)
}

.channel {
    margin-top: 16px;
    background: #fff;
    color: var(--violet);
    border: 1px solid #e2d3f7;
    width: 100%
}

.wa-btn {
    background: #25d366;
    border: 1px solid #25d366;
    color: #fff;
    box-shadow: 0 12px 26px rgba(37, 211, 102, .28)
}

/* cards */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px;
    box-shadow: 0 12px 30px rgba(32, 42, 90, .05)
}

.card h2 {
    margin: 0 0 7px;
    font-size: 24px;
    font-weight: 600
}

.form-card {
    position: relative;
    z-index: 0;
    box-shadow: none
}

/* welcome video */
.video {
    height: 380px;
    border-radius: 13px;
    background: linear-gradient(135deg, #1c0f3d, #6a15b8);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.video:before {
    content: "WELCOME TO YOUR WEBINAR";
    position: absolute;
    top: 22px;
    left: 22px;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
    font-size: 11.5px;
    letter-spacing: 1px
}

.play {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #fff;
    color: var(--violet);
    display: grid;
    place-items: center;
    font-size: 26px;
    padding-left: 4px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .35);
    border: 0;
    cursor: pointer
}

.play::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    animation: playPulse 2.2s ease-out infinite
}

@keyframes playPulse {
    0% {
        transform: scale(.85);
        opacity: .8
    }

    100% {
        transform: scale(1.35);
        opacity: 0
    }
}

.host {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line)
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 500;
    flex-shrink: 0
}

.host b {
    display: block
}

.host small {
    color: var(--muted)
}

/* ============ 2. achievements ============ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 26px
}

.stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(32, 42, 90, .05)
}

.stat b {
    display: block;
    font-size: 30px;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600
}

.stat span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 500
}

.trust-row {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap
}

.trust-badge {
    background: #faf5ff;
    border: 1px solid #ecd9ff;
    color: var(--purple);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 13px
}

.list {
    padding: 0;
    margin: 15px 0 0;
    list-style: none;
    display: grid;
    gap: 11px
}

.list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5
}

.list li:before {
    content: "\2713";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 0
}

.expect {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 18px
}

.expect div {
    background: #fafaff;
    border: 1px solid #ececf7;
    border-radius: 14px;
    padding: 17px;
    text-align: center;
    font-size: 22px
}

.expect strong {
    display: block;
    margin-top: 8px;
    font-size: 13px
}

.expect small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px
}

/* ============ 3. registration form + access ============ */
.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start
}

.reg-info {
    padding-top: 26px
}

.reg-info h2 {
    font-size: 19px;
    margin: 0 0 10px;
    font-weight: 600
}

.reg-info h2:not(:first-of-type) {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line)
}

.reg-info .list {
    margin-top: 0
}

.reg-info .expect {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: start;
    gap: 10px;
    margin-top: 0
}

.reg-info .expect div {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    padding: 12px 14px;
    box-shadow: 0 8px 20px rgba(32, 42, 90, .04);
    transition: transform .2s ease, box-shadow .2s ease
}

.reg-info .expect div:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(32, 42, 90, .09)
}

.reg-info .expect i.bi {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin: 0;
    flex-shrink: 0
}

.reg-info .expect strong {
    font-size: 12px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.25;
    white-space: nowrap;
    margin-top: 0
}

.reg-cta {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    flex-wrap: wrap
}

.reg-cta a {
    flex: none
}

.reg-cta .call {
    background: #fff;
    border: 1px solid #e2d3f7;
    color: var(--violet)
}

.reg-cta .join-now {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 12px 26px rgba(141, 29, 234, .22)
}

form {
    margin-top: 18px
}

.field {
    margin: 12px 0
}

.field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #dfe3ee;
    border-radius: 11px;
    padding: 10px 14px;
    font: inherit;
    outline: none;
    background: #fff
}

.input-icon {
    position: relative
}

.input-icon i.bi {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--violet);
    font-size: 15px;
    margin: 0;
    pointer-events: none
}

.input-icon input,
.input-icon select {
    padding-left: 40px
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--violet);
    box-shadow: none
}

input.invalid {
    border-color: #e5484d;
    box-shadow: 0 0 0 4px rgba(229, 72, 77, .08)
}

.checkbox {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #596277;
    margin: 14px 0;
    align-items: flex-start
}

.checkbox input {
    width: auto;
    margin-top: 2px
}

.access {
    display: none;
    margin-top: 26px
}

.access.show {
    display: block;
    animation: fadeUp .5s ease
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

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

.access-head {
    text-align: center;
    margin-bottom: 18px
}

.access-head h2 {
    font-size: 30px;
    margin: 10px 0 5px;
    font-weight: 600
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.info {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px;
    background: #fff
}

.info h3 {
    margin: 0 0 15px;
    color: var(--violet);
    font-weight: 600
}

.row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eef0f5;
    font-size: 14px
}

.row:last-child {
    border: 0
}

.row span:first-child {
    color: #737d91
}

.note {
    display: block;
    text-align: center;
    margin-top: 8px;
    color: #6d768b;
    font-size: 12px
}

.mini-guarantee {
    margin-top: 16px;
    font-size: 12px;
    color: #737d91;
    background: #faf7ff;
    border: 1px solid #efe6fb;
    border-radius: 10px;
    padding: 10px 12px
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap
}

.cd-box {
    background: #1c0f3d;
    color: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    min-width: 64px;
    text-align: center
}

.cd-box span {
    display: block;
    font-size: 20px;
    font-weight: 500
}

.cd-box small {
    font-size: 10px;
    color: #c9b6ec;
    letter-spacing: .5px
}

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

.testi-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(32, 42, 90, .05)
}

.testi-stars {
    color: #f5a623;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.testi-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5468;
    font-style: italic
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 500;
    flex-shrink: 0
}

.testi-user b {
    display: block
}

.testi-user small {
    color: var(--muted)
}

/* ============ 6. photo gallery ============ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 26px
}

.gallery-tile {
    aspect-ratio: 4/3;
    border-radius: 16px;
    background: #f4f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 32px;
    border: 1.5px dashed #d5d9e6;
    color: #b3b9cc
}

.gallery-tile small {
    font-size: 11px;
    font-weight: 500;
    color: #aab0c2;
    text-transform: uppercase;
    letter-spacing: .4px
}

.gallery-tile span {
    font-size: 12px;
    font-weight: 500;
    color: #54607a;
    margin-top: 4px
}

/* ============ 7. student feedback (auto-sliding carousel, 2 cards visible) ============ */
.feedback-carousel {
    overflow: hidden;
    margin-top: 26px
}

.feedback-track {
    display: flex;
    gap: 20px;
    transition: transform .6s ease
}

.feedback-card {
    flex: 0 0 calc(50% - 10px);
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e2e5ef;
    border-radius: 18px;
    padding: 24px
}

.fb-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px
}

.fb-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 500;
    flex-shrink: 0
}

.fb-meta {
    flex: 1;
    min-width: 0
}

.fb-meta b {
    display: block;
    font-size: 14px
}

.fb-stars {
    color: #f5a623;
    font-size: 11px;
    letter-spacing: 1px;
    margin-top: 3px
}

.fb-google {
    color: #4285f4;
    font-size: 17px;
    margin: 2px 0 0;
    flex-shrink: 0
}

.feedback-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #4b5468
}


/* ============ FAQ ============ */
.faq-list {
    max-width: 100%;
    margin: 26px auto 0;
    display: grid;
    gap: 12px
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 8px 20px rgba(32, 42, 90, .04)
}

.faq-item summary {
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

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

.faq-item summary:after {
    content: "+";
    font-size: 20px;
    color: var(--violet);
    flex-shrink: 0
}

.faq-item[open] summary:after {
    content: "\2212"
}

.faq-item p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6
}

/* ============ 8. what you can expect ============ */
.expect.four-col {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 32px
}

.expect.four-col div {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 18px;
    box-shadow: 0 12px 30px rgba(32, 42, 90, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.expect.four-col div:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(32, 42, 90, .12)
}

.expect.four-col i.bi {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 14px;
}

.expect.four-col strong {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.4em;
    line-height: 1.2;
    font-size: 14px;
    font-weight: 600
}

.expect.four-col small {
    font-size: 12.5px
}

/* ============ 10. footer ============ */
footer {
    margin-top: 35px;
    background: #0e1a3a;
    color: #c3cbe8;
    padding: 0
}

.foot-help {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.foot-help h4 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 600
}

.foot-help .sub {
    color: #9aa5cc;
    font-size: 13px;
    margin: 0
}

.footerin {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 26px 0
}

.foot-brand {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.foot-logo-text {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px
}

.foot-brand small {
    color: #9aa5cc;
    font-size: 14px
}

.foot-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap
}

.foot-links a {
    color: #b7c0e6;
    text-decoration: none;
    font-size: 14px;
    transition: color .15s ease
}

.foot-links a:hover {
    color: #fff
}

.foot-links .dot {
    color: #4c5a8a;
    font-size: 14px
}

footer small {
    color: #9aa5cc
}

/* ============ live registration toast ============ */
.reg-toast {
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 999;
    max-width: 290px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    border: 1px solid var(--green);
    border-radius: 14px;
    padding: 11px 12px;
    box-shadow: 0 16px 40px rgba(32, 42, 90, .18);
    transform: translateY(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .3s ease;
}

.reg-toast.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto
}

.reg-toast-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--green);
    display: grid;
    place-items: center;
    font-size: 14px;
    flex-shrink: 0
}

.reg-toast-text {
    flex: 1;
    min-width: 0
}

.reg-toast-text b {
    display: block;
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.reg-toast-text small {
    display: block;
    color: #fff;
    opacity: .85;
    font-size: 11.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.reg-toast-close {
    flex-shrink: 0;
    border: 0;
    background: none;
    color: #fff;
    opacity: .8;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    padding: 4px
}

.reg-toast-close:hover {
    opacity: 1
}

/* ============ RESPONSIVE: tablet (<=992px) ============ */
@media(max-width:992px) {
    .container {
        width: min(1200px, 94%)
    }

    .reg-grid {
        gap: 20px
    }
}

/* ============ RESPONSIVE: tablet / large mobile (<=768px) ============ */
@media(max-width:768px) {

    .access-grid,
    .reg-grid,
    .checks {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 36px
    }

    .video {
        height: 240px
    }

    h2.center {
        font-size: 27px
    }

    .stats-grid,
    .expect,
    .expect.four-col {
        grid-template-columns: 1fr 1fr
    }

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

    .feedback-card {
        flex-basis: 100%
    }

    .steps {
        gap: 5px
    }

    .line {
        width: 20px
    }

    .step span:not(.circle) {
        display: none
    }

    .footerin,
    .foot-help {
        flex-direction: column;
        align-items: flex-start
    }

    .hero-cta-row {
        width: 100%
    }

    .hero-cta-row .btn {
        flex: 1 1 auto
    }

    .reg-info {
        padding-top: 6px
    }

    .reg-info .expect {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .reg-info .expect strong {
        white-space: normal
    }

    .reg-cta {
        flex-direction: column
    }

    .reg-cta a {
        width: 100%
    }
}

/* ============ RESPONSIVE: mobile (<=520px) ============ */
@media(max-width:520px) {

    /* reorder: steps, then the form, then left-side content, then unlocked access */
    #register .container {
        display: flex;
        flex-direction: column
    }

    #register .reg-grid {
        display: contents
    }

    #register .steps {
        order: 1
    }

    #register .form-card {
        order: 2
    }

    #register .reg-info {
        order: 3;
        margin-top: 24px
    }

    #register .access {
        order: 4
    }

    .reg-toast {
        left: 14px;
        right: 14px;
        top: 14px;
        max-width: none
    }

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

    .stats-grid,
    .gallery-grid,
    .expect,
    .expect.four-col {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .stat {
        padding: 16px
    }

    .stat b {
        font-size: 24px
    }

    .expect.four-col div {
        padding: 16px 12px
    }

    .expect.four-col i.bi {
        width: 42px;
        height: 42px;
        font-size: 17px;
        margin-bottom: 10px
    }

    .expect.four-col strong {
        font-size: 12.5px;
        min-height: 2.6em
    }

    .expect.four-col small {
        font-size: 11px
    }

    .reg-info .expect {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px
    }

    .reg-info .expect div {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        padding: 10px 4px
    }

    .reg-info .expect i.bi {
        width: 26px;
        height: 26px;
        font-size: 11px
    }

    .reg-info .expect strong {
        font-size: 9.5px;
        line-height: 1.2
    }

    .feedback-card {
        flex-basis: 100%;
        padding: 20px
    }

    h2.center {
        font-size: 23px
    }

    .hero h1 {
        font-size: 30px;
        letter-spacing: -1px
    }

    .hero-body p {
        font-size: 14.5px
    }

    .hero-video {
        padding: 10px
    }

    .video {
        height: 190px
    }

    .card {
        padding: 20px
    }

    .access-head h2 {
        font-size: 24px
    }

    .cd-box {
        min-width: 52px;
        padding: 8px 10px
    }

    .countdown {
        gap: 8px
    }

    .checks {
        gap: 10px
    }
}

/* ============ RESPONSIVE: small mobile (<=380px) ============ */
@media(max-width:380px) {
    .hero h1 {
        font-size: 26px
    }

    .cd-box {
        min-width: 46px;
        padding: 7px 8px
    }

    .cd-box span {
        font-size: 17px
    }

    .btn,
    button {
        padding: 13px 18px;
        font-size: 13px
    }
}