:root {
    --navy: #07366f;
    --navy-deep: #05234a;
    --teal: #078b84;
    --green: #006f4f;
    --gold: #d7a118;
    --gold-soft: #f7d46c;
    --ink: #10213d;
    --muted: #65758d;
    --line: #d9e4f2;
    --paper: #f7fbff;
    --white: #ffffff;
    --danger: #b42318;
    --success: #087443;
    --shadow: 0 18px 45px rgba(8, 38, 86, .14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Tahoma, "Noto Sans Thai", Arial, sans-serif;
    background: var(--paper);
    line-height: 1.6;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid rgba(7, 54, 111, .12);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.site-header.compact {
    position: relative;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    max-width: min(620px, 58vw);
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: var(--white);
    font-weight: 900;
    font-size: 24px;
    background: #ffffff;
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: var(--navy);
    line-height: 1.2;
    text-wrap: balance;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.35;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    color: var(--navy);
    font-weight: 700;
    white-space: nowrap;
}

.nav-button,
.primary-button,
.secondary-button,
.inline-admin-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 8px;
    padding: 10px 18px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.primary-button,
.nav-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--green), var(--teal));
    box-shadow: 0 10px 24px rgba(0, 111, 79, .18);
}

.secondary-button {
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--line);
}

.hero {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--white);
}

.hero-image {
    width: 100%;
    height: 640px;
    object-fit: cover;
    object-position: center top;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .82) 33%, rgba(255, 255, 255, .12) 78%);
}

.hero-panel {
    position: absolute;
    z-index: 1;
    left: clamp(20px, 6vw, 84px);
    top: 50%;
    width: min(660px, calc(100% - 40px));
    transform: translateY(-50%);
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: var(--green);
    font-weight: 900;
    letter-spacing: 0;
}

.hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(42px, 7vw, 86px);
    line-height: .96;
    text-transform: uppercase;
}

.lead {
    margin: 18px 0 0;
    color: var(--navy-deep);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-actions.centered {
    justify-content: center;
}

.info-strip {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 1px;
    width: min(1180px, calc(100% - 32px));
    margin: -54px auto 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: var(--line);
}

.info-strip div {
    padding: 22px;
    background: var(--white);
}

.info-strip span,
.fee-box span,
.stats-grid span,
table small {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.info-strip strong {
    color: var(--navy);
    font-size: 18px;
}

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 70px auto;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 38px;
    align-items: start;
}

.section h2,
.form-card h2,
.success-card h1,
.login-card h1 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.18;
}

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

.topic-card {
    min-height: 92px;
    display: grid;
    place-items: center;
    padding: 18px;
    border-radius: 8px;
    color: var(--white);
    text-align: center;
    font-weight: 900;
    background: linear-gradient(135deg, var(--navy), var(--teal));
}

.topic-card:nth-child(2n) {
    background: linear-gradient(135deg, var(--green), var(--teal));
}

.topic-card:nth-child(3n) {
    background: linear-gradient(135deg, var(--navy), #266bb4);
}

.topic-card:nth-child(4n) {
    background: linear-gradient(135deg, #53368d, #7b4fb0);
}

.topic-card:nth-child(6n) {
    background: linear-gradient(135deg, #bd8210, var(--gold));
}

.section-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

.speaker-grid,
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.speaker-card,
.schedule-grid article,
.form-card,
.summary-panel,
.success-card,
.login-card,
.table-wrap,
.stats-grid div {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(8, 38, 86, .07);
}

.speaker-card {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    padding: 18px;
    align-items: center;
}

.speaker-card img {
    width: 170px;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: 50% 70%;
    border-radius: 50%;
    border: 5px solid var(--gold-soft);
}

.speaker-card h3,
.schedule-grid h3 {
    margin: 0 0 8px;
    color: var(--navy);
}

.speaker-card p,
.schedule-grid p {
    margin: 0;
    color: var(--muted);
}

.schedule-grid article {
    padding: 24px;
}

.schedule-grid span {
    color: var(--green);
    font-weight: 900;
}

.cta-band {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 360px) auto;
    gap: 22px;
    align-items: center;
    padding: 30px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-deep), var(--green));
}

.cta-band h2,
.cta-band .section-kicker,
.cta-band p {
    color: var(--white);
}

.fee-box {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
}

.fee-box div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.fee-box span {
    font-size: 18px;
    font-weight: 700;
}

.fee-box strong {
    color: var(--green);
    font-size: 24px;
}

.site-footer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) minmax(190px, .8fr) minmax(220px, 1fr) minmax(160px, .7fr);
    gap: clamp(22px, 4vw, 42px);
    padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 70px) 22px;
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(5, 35, 74, .98), rgba(0, 79, 68, .97)),
        var(--navy-deep);
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--teal), #2b70b8);
}

.site-footer::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border: 36px solid rgba(247, 212, 108, .12);
    border-radius: 50%;
}

.site-footer > * {
    position: relative;
    z-index: 1;
}

.footer-main p,
.footer-info span,
.footer-info a,
.footer-links a,
.footer-bottom {
    color: rgba(255, 255, 255, .78);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-brand .brand-mark {
    flex: 0 0 auto;
    background: #ffffff;
}

.footer-brand strong,
.footer-brand small {
    display: block;
}

.footer-brand strong {
    font-size: 18px;
}

.footer-brand small {
    color: rgba(255, 255, 255, .72);
}

.footer-main p {
    margin: 0 0 10px;
    max-width: 560px;
}

.footer-info,
.footer-links {
    display: grid;
    align-content: start;
    gap: 8px;
}

.footer-info h3,
.footer-links h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 17px;
}

.footer-info a,
.footer-links a {
    width: fit-content;
    transition: color .18s ease, transform .18s ease;
}

.footer-info a:hover,
.footer-links a:hover {
    color: var(--gold-soft);
    transform: translateX(2px);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 13px;
}

.form-page,
.admin-page,
.center-page {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(247, 251, 255, .94), rgba(232, 243, 255, .96)),
        url("backdrop-cpd-2.png") center top / cover fixed;
}

.admin-page {
    background:
        radial-gradient(circle at 12% 0%, rgba(8, 139, 132, .16), transparent 30%),
        linear-gradient(180deg, rgba(244, 249, 252, .98), rgba(232, 243, 250, .98)),
        url("backdrop-cpd-2.png") center top / cover fixed;
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 820px);
    gap: 24px;
    width: min(1240px, calc(100% - 32px));
    margin: 34px auto 70px;
    align-items: start;
}

.summary-panel {
    overflow: hidden;
}

.summary-panel img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.summary-panel h1,
.summary-panel p {
    margin-left: 20px;
    margin-right: 20px;
}

.summary-panel h1 {
    color: var(--navy);
    line-height: 1.1;
}

.summary-panel p:last-child {
    margin-bottom: 24px;
}

.form-card {
    padding: clamp(22px, 4vw, 36px);
}

.registration-form {
    display: grid;
    gap: 18px;
}

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

label {
    display: grid;
    gap: 7px;
    color: var(--navy);
    font-weight: 800;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 11px 12px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

textarea {
    resize: vertical;
}

.full {
    grid-column: 1 / -1;
}

.fee-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 18px;
    border-radius: 8px;
    background: #edf8f5;
    color: var(--green);
}

.fee-preview strong {
    font-size: 28px;
}

.consent {
    display: flex;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink);
    font-weight: 400;
}

.consent input {
    width: 18px;
    margin-top: 5px;
}

.center-page {
    display: grid;
    place-items: center;
    padding: 24px;
}

.success-card,
.login-card {
    width: min(620px, 100%);
    padding: clamp(26px, 5vw, 48px);
    text-align: center;
}

.registration-code {
    display: inline-block;
    margin: 8px 0 14px;
    padding: 12px 18px;
    border-radius: 8px;
    color: var(--navy);
    background: #eef6ff;
    font-size: 26px;
}

.login-card form {
    display: grid;
    gap: 14px;
    text-align: left;
}

.admin-login-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(320px, .95fr) minmax(340px, 520px);
    gap: clamp(22px, 5vw, 64px);
    align-items: center;
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: clamp(28px, 5vw, 60px) 0;
}

.login-intro,
.login-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 24px 60px rgba(8, 38, 86, .14);
}

.login-intro {
    min-height: 560px;
    display: grid;
    align-content: center;
    padding: clamp(28px, 5vw, 48px);
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(5, 35, 74, .92), rgba(0, 111, 79, .86)),
        url("backdrop-cpd-2.png") center / cover;
}

.login-intro::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border: 38px solid rgba(247, 212, 108, .14);
    border-radius: 50%;
}

.login-intro > * {
    position: relative;
    z-index: 1;
}

.login-intro .footer-brand {
    width: fit-content;
    color: #ffffff;
    text-decoration: none;
}

.admin-static-brand {
    cursor: default;
    user-select: none;
}

.login-intro .section-kicker {
    margin-top: 28px;
    color: var(--gold-soft);
}

.login-intro h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.06;
    text-wrap: balance;
}

.login-intro p:not(.section-kicker) {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
}

.login-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.login-highlights span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    font-weight: 900;
}

.login-card {
    width: 100%;
    padding: clamp(26px, 4vw, 42px);
    text-align: left;
}

.login-card h2 {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.16;
}

.login-card form {
    gap: 16px;
}

.login-card input {
    min-height: 50px;
    background: #f8fbff;
}

.login-card .primary-button {
    width: 100%;
    margin-top: 4px;
}

.login-card .muted {
    margin: 16px 0 0;
    font-size: 13px;
}

.login-back-link {
    display: inline-flex;
    margin-top: 14px;
    color: var(--navy);
    font-weight: 900;
}

.alert {
    padding: 12px;
    border-radius: 8px;
    color: var(--danger);
    background: #fff0ee;
}

.muted {
    color: var(--muted);
}

.admin-layout {
    width: min(1440px, calc(100% - 24px));
    margin: 26px auto 60px;
}

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

.stats-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stats-grid div {
    padding: 20px;
}

.stats-grid strong {
    color: var(--navy);
    font-size: 36px;
}

.search-bar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    margin-bottom: 18px;
}

.search-bar.with-status {
    grid-template-columns: 1fr 220px 160px auto auto;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1180px;
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--navy);
    background: #eef6ff;
}

td strong {
    color: var(--navy);
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0 4px 6px 0;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--navy);
    background: #eef6ff;
    font-size: 13px;
    font-weight: 800;
}

.badge.approved {
    color: var(--success);
    background: #e8f8ef;
}

.badge.cancelled,
.badge.rejected {
    color: var(--danger);
    background: #fff0ee;
}

.badge.confirmed {
    color: var(--success);
    background: #e8f8ef;
}

.badge.reviewing {
    color: #8a5d00;
    background: #fff7dc;
}

.badge.neutral {
    color: var(--muted);
    background: #f2f5f9;
}

.status-pair {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.status-pair .badge {
    margin: 0;
}

.combined-status-badge {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
}

.inline-admin-form {
    display: grid;
    grid-template-columns: 180px 78px;
    gap: 8px;
}

.inline-admin-form button {
    min-height: 40px;
    color: var(--white);
    background: var(--navy);
}

.empty {
    padding: 40px;
    color: var(--muted);
    text-align: center;
}

.payment-note {
    margin: 0 0 22px;
    padding: 18px;
    border: 1px solid #bfe2d8;
    border-radius: 8px;
    background: #edf8f5;
}

.payment-note h3,
.payment-note p {
    margin-top: 0;
}

.payment-note h3 {
    color: var(--green);
}

.payment-note dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0;
}

.payment-note dt {
    color: var(--muted);
    font-size: 13px;
}

.payment-note dd {
    margin: 0;
    color: var(--navy);
    font-weight: 800;
}

.action-stack {
    display: grid;
    gap: 6px;
    min-width: 68px;
    justify-items: start;
}

.mini-button,
.danger-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 62px;
    min-height: 32px;
    border: 0;
    border-radius: 8px;
    padding: 6px 10px;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
}

.mini-button {
    color: var(--navy);
    background: #eef6ff;
}

.mini-button.view-button {
    color: var(--white);
    background: var(--green);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.action-stack.compact-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 5px;
    min-width: 112px;
}

.compact-actions form {
    margin: 0;
}

.icon-action {
    display: inline-grid;
    place-items: center;
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font: inherit;
    font-size: 19px;
    font-weight: 900;
    line-height: 1;
    transition: transform .18s ease, background-color .18s ease;
}

.icon-action:hover {
    transform: translateY(-1px);
}

.admin-page .icon-action.view-button {
    flex-basis: 34px;
    width: 34px;
    min-width: 34px;
    border: 1px solid #e8ca67;
    color: var(--navy);
    background: #fff3bf;
}

.admin-page .icon-action.view-button:hover {
    background: #ffe99a;
}

.icon-action svg {
    width: 18px;
    height: 18px;
}

.icon-action.edit-button {
    color: var(--navy);
    background: #e8f2ff;
}

.icon-action.delete-button {
    color: var(--danger);
    background: #fff0ee;
}

.danger-button {
    color: var(--danger);
    background: #fff0ee;
}

.form-layout.single {
    grid-template-columns: minmax(0, 960px);
    justify-content: center;
}

@media (max-width: 900px) {
    .site-header,
    .top-nav,
    .site-footer {
        align-items: flex-start;
    }

    .site-header {
        position: relative;
        flex-direction: column;
    }

    .top-nav {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
    }

    .hero,
    .hero-image {
        min-height: 620px;
        height: 620px;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .86) 56%, rgba(255, 255, 255, .25));
    }

    .hero-panel {
        top: 38px;
        transform: none;
    }

    .info-strip,
    .two-column,
    .speaker-grid,
    .schedule-grid,
    .cta-band,
    .form-layout,
    .stats-grid,
    .stats-grid.four {
        grid-template-columns: 1fr;
    }

    .info-strip {
        margin-top: 16px;
    }

    .cta-band {
        padding: 22px;
    }

    .form-grid,
    .search-bar,
    .search-bar.with-status,
    .payment-note dl {
        grid-template-columns: 1fr;
    }

    .inline-admin-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .brand {
        min-width: 0;
        max-width: 100%;
    }

    .speaker-card {
        grid-template-columns: 1fr;
    }

    .speaker-card img {
        width: 140px;
    }

    .section {
        margin: 46px auto;
    }
}

/* Polished responsive UI layer */
html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 8% 0%, rgba(9, 139, 132, .12), transparent 30%),
        linear-gradient(180deg, #f7fbff 0%, #eef6fb 100%);
}

.site-header {
    min-height: 76px;
    border-bottom: 1px solid rgba(12, 56, 107, .1);
    box-shadow: 0 10px 30px rgba(8, 38, 86, .06);
}

.brand-mark {
    border: 1px solid rgba(255, 255, 255, .45);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), 0 10px 22px rgba(7, 54, 111, .16);
}

.top-nav a:not(.nav-button) {
    position: relative;
    padding: 8px 0;
}

.top-nav a:not(.nav-button)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    border-radius: 999px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .18s ease;
}

.top-nav a:not(.nav-button):hover::after {
    transform: scaleX(1);
}

.primary-button,
.nav-button {
    transition: transform .18s ease, box-shadow .18s ease;
}

.primary-button:hover,
.nav-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(0, 111, 79, .22);
}

.secondary-button,
.mini-button,
.danger-button {
    transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.secondary-button:hover,
.mini-button:hover,
.danger-button:hover {
    transform: translateY(-1px);
}

.hero {
    min-height: min(760px, calc(100vh - 20px));
    background: #edf6fb;
}

.hero-image {
    height: min(760px, calc(100vh - 20px));
    min-height: 620px;
    filter: saturate(1.04) contrast(1.02);
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(246, 251, 255, .98) 0%, rgba(246, 251, 255, .9) 36%, rgba(246, 251, 255, .28) 72%, rgba(246, 251, 255, .04) 100%);
}

.hero-panel {
    width: min(720px, calc(100% - 40px));
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 24px 60px rgba(6, 33, 74, .16);
    backdrop-filter: blur(14px);
}

.hero h1 {
    max-width: 11ch;
    color: var(--navy-deep);
    text-wrap: balance;
}

.lead {
    max-width: 680px;
    text-wrap: balance;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-stats span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border: 1px solid rgba(7, 54, 111, .12);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, .8);
    font-weight: 800;
    font-size: 14px;
}

.info-strip {
    border: 1px solid rgba(7, 54, 111, .1);
    box-shadow: 0 22px 50px rgba(8, 38, 86, .13);
}

.info-strip div {
    position: relative;
    padding: 24px 26px;
}

.info-strip div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold), var(--teal));
}

.section {
    margin: clamp(52px, 7vw, 86px) auto;
}

.section-copy {
    padding: clamp(8px, 2vw, 18px) 0;
}

.section-copy p:not(.section-kicker),
.section-heading + p {
    color: var(--muted);
}

.topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.topic-card {
    min-height: 108px;
    align-content: end;
    justify-items: start;
    padding: 20px;
    text-align: left;
    box-shadow: 0 16px 30px rgba(8, 38, 86, .13);
}

.speaker-card,
.schedule-grid article,
.form-card,
.summary-panel,
.success-card,
.login-card,
.table-wrap,
.stats-grid div {
    border-color: rgba(7, 54, 111, .1);
    box-shadow: 0 18px 38px rgba(8, 38, 86, .08);
}

.speaker-card {
    min-height: 218px;
    padding: 22px;
}

.speaker-card img {
    box-shadow: 0 12px 24px rgba(189, 130, 16, .2);
}

.schedule-grid article {
    position: relative;
    overflow: hidden;
}

.schedule-grid article::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--teal), var(--gold));
}

.cta-band {
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 50px rgba(5, 35, 74, .18);
}

.cta-band::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 42px solid rgba(247, 212, 108, .18);
}

.cta-band > * {
    position: relative;
    z-index: 1;
}

.form-page,
.admin-page,
.center-page {
    background:
        linear-gradient(180deg, rgba(247, 251, 255, .96), rgba(235, 245, 251, .98)),
        url("backdrop-cpd-2.png") center top / cover fixed;
}

.form-layout {
    grid-template-columns: minmax(280px, 360px) minmax(0, 860px);
    gap: clamp(18px, 3vw, 32px);
}

.summary-panel {
    position: sticky;
    top: 98px;
}

.summary-panel h1 {
    margin-top: 22px;
    font-size: 28px;
}

.form-card h1,
.form-card h2 {
    text-wrap: balance;
}

.form-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 20px;
}

.registration-intro {
    margin: 0 0 18px;
    padding: 16px 18px;
    border-left: 5px solid var(--gold);
    border-radius: 8px;
    color: var(--navy-deep);
    background: #fff9e8;
}

.registration-intro strong {
    display: block;
    color: var(--navy);
    font-size: 18px;
}

.registration-intro p {
    margin: 4px 0 0;
    color: #52657d;
}

.form-steps > div,
.form-steps > a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 78px;
    padding: 12px;
    border: 1px solid #cfe0ee;
    border-radius: 8px;
    color: var(--navy);
    background: #f3f8fc;
}

.form-steps > a {
    transition: border-color .2s ease, background .2s ease;
}

.form-steps > a:hover {
    border-color: var(--teal);
    background: #edf8f5;
}

.form-steps b {
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    font-size: 18px;
}

.form-steps span,
.form-steps strong {
    display: block;
}

.form-steps span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.form-steps strong {
    margin-bottom: 3px;
    color: var(--navy);
    font-size: 15px;
}

.payment-guide {
    margin: 0 0 26px;
    overflow: hidden;
    border: 1px solid rgba(7, 54, 111, .14);
    border-radius: 8px;
    background: #f8fbff;
}

.payment-guide__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 16px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}

.payment-guide__heading .section-kicker {
    margin-bottom: 2px;
    color: var(--gold-soft);
    font-size: 12px;
}

.payment-guide__heading h3 {
    margin: 0;
    color: var(--white);
    font-size: 19px;
}

.payment-guide__notice {
    flex: 0 0 auto;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    font-size: 13px;
    font-weight: 900;
}

.payment-guide__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px;
}

.bank-transfer-card,
.qr-payment-card {
    padding: 15px 16px;
}

.bank-transfer-card {
    border-right: 1px solid var(--line);
}

.payment-method-label {
    display: block;
    margin-bottom: 9px;
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
}

.bank-transfer-card dl {
    display: grid;
    grid-template-columns: .75fr 1.4fr 1fr;
    gap: 10px;
    margin: 0;
}

.bank-transfer-card dl div {
    padding: 0 10px 0 0;
    border-right: 1px solid #e5edf6;
}

.bank-transfer-card dl div:last-child {
    padding-right: 0;
    border-right: 0;
}

.bank-transfer-card dt {
    color: var(--muted);
    font-size: 12px;
}

.bank-transfer-card dd {
    margin: 1px 0 0;
    color: var(--navy);
    font-weight: 900;
}

.bank-transfer-card .account-number dd {
    color: var(--green);
    font-size: 21px;
    line-height: 1.2;
}

.payment-rates {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
}

.payment-rates span {
    padding: 7px 10px;
    border-radius: 8px;
    color: var(--muted);
    background: #edf5fb;
    font-size: 13px;
}

.payment-rates strong {
    display: block;
    color: var(--navy);
    font-size: 16px;
}

.qr-payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
}

.qr-payment-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border: 2px solid #bed5e8;
    border-radius: 8px;
    color: var(--navy);
    background: #eef6ff;
    font-size: 18px;
    font-weight: 900;
}

.qr-payment-card p {
    margin: 8px 0 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
}

.qr-open-button {
    width: 100%;
    min-height: 40px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--green);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.payment-reminder {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 16px;
    border-top: 1px solid #f0d999;
    color: #5d4b16;
    background: #fff9e8;
}

.payment-reminder strong {
    flex: 0 0 auto;
    color: #8b6500;
}

.field-help {
    color: var(--muted);
    font-weight: 400;
    line-height: 1.45;
}

.required-mark {
    display: inline;
    color: var(--danger);
    font-weight: 900;
}

.field-label {
    display: inline;
}

.is-hidden {
    display: none !important;
}

.document-preference {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 16px;
    border: 1px solid #cddced;
    border-radius: 8px;
}

.document-preference legend {
    padding: 0 6px;
    color: var(--navy);
    font-weight: 900;
}

.document-preference label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #f8fbff;
    cursor: pointer;
}

.document-preference input {
    flex: 0 0 auto;
    width: 18px;
    min-height: 18px;
    margin-top: 3px;
}

.document-preference strong,
.document-preference small {
    display: block;
}

.document-preference small {
    color: var(--muted);
    font-weight: 400;
}

.required-status-update {
    overflow: hidden;
    margin: 6px 0;
    border: 2px solid #e0a716;
    border-radius: 8px;
    background: #fffdf5;
    box-shadow: 0 10px 24px rgba(215, 161, 24, .14);
}

.required-status-update__heading {
    padding: 14px 16px;
    border-bottom: 1px solid #efd98e;
    background: #fff5cc;
}

.required-status-update__heading span {
    display: inline-flex;
    margin-bottom: 5px;
    padding: 3px 8px;
    border-radius: 999px;
    color: #ffffff;
    background: #a76100;
    font-size: 12px;
    font-weight: 900;
}

.required-status-update__heading strong,
.required-status-update__heading small {
    display: block;
}

.required-status-update__heading strong {
    color: var(--navy);
    font-size: 18px;
}

.required-status-update__heading small {
    color: #6e5a24;
}

.required-status-update__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
}

.required-status-update select {
    border-width: 2px;
    border-color: #d7a118;
    background: #ffffff;
}

.current-slip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border: 1px solid #b9d8cf;
    border-radius: 8px;
    background: #edf8f5;
}

.current-slip span,
.current-slip small {
    display: block;
}

.current-slip span {
    color: var(--green);
    font-weight: 900;
}

.current-slip small {
    color: var(--muted);
}

.slip-view-button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 9px 18px;
    border: 0;
    border-radius: 8px;
    color: var(--white);
    background: var(--navy);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.slip-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.slip-modal.is-open {
    display: flex;
}

.slip-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 24, 52, .78);
    backdrop-filter: blur(6px);
}

.slip-modal__panel {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(720px, 100%);
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    overflow: hidden;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 28px 70px rgba(0, 15, 40, .34);
}

.slip-modal__header {
    padding: 18px 54px 12px 20px;
    border-bottom: 1px solid var(--line);
}

.slip-modal__header .section-kicker {
    margin-bottom: 2px;
}

.slip-modal__header h2 {
    margin: 0;
    color: var(--navy);
    font-size: 24px;
}

.slip-modal__header p:last-child {
    margin: 3px 0 0;
    color: var(--muted);
}

.slip-modal__body {
    min-height: 0;
    overflow: auto;
    padding: 16px;
    background: #eef3f8;
}

.slip-modal__body img {
    width: auto;
    max-width: 100%;
    max-height: 62vh;
    margin: 0 auto;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 8px 28px rgba(8, 38, 86, .14);
}

.slip-modal__body iframe {
    width: 100%;
    height: 62vh;
    border: 0;
    border-radius: 8px;
    background: var(--white);
}

.slip-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 16px;
    border-top: 1px solid var(--line);
}

.qr-modal {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.qr-modal.is-open {
    display: flex;
}

.qr-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 35, 74, .72);
    backdrop-filter: blur(5px);
}

.qr-modal__panel {
    position: relative;
    width: min(430px, 100%);
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    overflow: auto;
    padding: 20px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 28px 70px rgba(0, 20, 50, .3);
    text-align: center;
}

.qr-modal__header {
    padding: 0 34px 12px;
}

.qr-modal__header .section-kicker {
    margin-bottom: 3px;
}

.qr-modal__header h2 {
    margin: 0;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.25;
}

.qr-modal__header p:last-child {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.qr-modal__body img {
    width: min(100%, 280px);
    max-height: 55vh;
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    object-fit: contain;
}

.qr-modal__account {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
    color: var(--muted);
}

.qr-modal__account strong {
    color: var(--green);
}

.qr-modal__done {
    width: 100%;
}

.form-section-title {
    grid-column: 1 / -1;
    margin-top: 4px;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--navy);
    background: linear-gradient(90deg, #eef6ff, #edf8f5);
    font-weight: 900;
}

input,
select,
textarea {
    min-height: 46px;
    border-color: #cddced;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(8, 139, 132, .18);
    border-color: var(--teal);
}

.payment-note {
    border-color: rgba(8, 139, 132, .22);
    background:
        linear-gradient(135deg, rgba(237, 248, 245, .98), rgba(255, 248, 222, .72));
}

.fee-preview {
    border: 1px solid rgba(8, 139, 132, .24);
}

.admin-layout {
    width: min(1480px, calc(100% - 28px));
    display: grid;
    gap: 18px;
}

.admin-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 0;
    padding: clamp(20px, 3vw, 30px);
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(237, 248, 245, .9)),
        #ffffff;
    box-shadow: 0 20px 42px rgba(8, 38, 86, .1);
}

.admin-hero h1 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.18;
}

.admin-hero p:last-child {
    margin: 0;
    color: var(--muted);
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: minmax(220px, .9fr) minmax(260px, 1fr) minmax(320px, 1.35fr) minmax(220px, .8fr);
    gap: 14px;
    margin: 0 0 18px;
}

.dashboard-panel {
    display: grid;
    align-content: start;
    gap: 10px;
    min-height: 168px;
    padding: 20px;
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 18px 38px rgba(8, 38, 86, .08);
}

.dashboard-panel > span,
.dashboard-panel-head span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.dashboard-panel strong {
    color: var(--navy);
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.1;
}

.dashboard-panel small,
.dashboard-panel-head small {
    color: var(--muted);
}

.dashboard-money {
    background: linear-gradient(135deg, rgba(237, 248, 245, .98), rgba(255, 248, 222, .86));
}

.dashboard-slip {
    background: linear-gradient(135deg, rgba(238, 246, 255, .98), rgba(255, 255, 255, .94));
}

.dashboard-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.mini-bars,
.status-bars {
    display: grid;
    gap: 10px;
}

.mini-bars div,
.status-bars div {
    display: grid;
    grid-template-columns: minmax(96px, 1fr) auto;
    gap: 8px;
    align-items: center;
}

.mini-bars label,
.status-bars label {
    color: var(--navy);
    font-weight: 800;
}

.mini-bars span,
.status-bars span {
    color: var(--muted);
    font-weight: 900;
}

.mini-bars i,
.status-bars i {
    grid-column: 1 / -1;
    display: block;
    height: 9px;
    border-radius: 999px;
    background:
        linear-gradient(90deg, var(--teal) var(--bar), #edf3f9 var(--bar));
}

.status-bars i.confirmed,
.status-bars i.approved {
    background: linear-gradient(90deg, var(--success) var(--bar), #edf3f9 var(--bar));
}

.status-bars i.rejected,
.status-bars i.cancelled {
    background: linear-gradient(90deg, var(--danger) var(--bar), #edf3f9 var(--bar));
}

.status-bars i.reviewing {
    background: linear-gradient(90deg, var(--gold) var(--bar), #edf3f9 var(--bar));
}

.stats-grid div {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    transition: transform .18s ease, box-shadow .18s ease;
}

.stats-grid div:hover,
.dashboard-panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(8, 38, 86, .11);
}

.stats-grid div::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
}

.search-bar {
    padding: 12px;
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 12px 28px rgba(8, 38, 86, .06);
}

.admin-list-panel {
    padding: 16px;
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 18px 38px rgba(8, 38, 86, .08);
}

.admin-list-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.admin-list-head h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(24px, 3vw, 34px);
}

.admin-list-head .section-kicker {
    margin-bottom: 4px;
}

.admin-list-head > span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 999px;
    color: var(--green);
    background: #edf8f5;
    font-weight: 900;
    white-space: nowrap;
}

.table-wrap {
    border-radius: 8px;
    border: 1px solid rgba(7, 54, 111, .08);
    box-shadow: none;
}

th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #eaf4ff;
    font-size: 13px;
    text-transform: none;
}

tbody tr:hover td {
    background: #fbfdff;
}

.admin-page td,
.admin-page th {
    padding: 13px 12px;
}

.admin-page th:last-child,
.admin-page td:last-child {
    width: 132px;
    min-width: 132px;
}

.admin-page tbody tr {
    transition: background-color .18s ease;
}

.admin-page .table-wrap a:not(.mini-button) {
    color: var(--green);
    font-weight: 800;
}

.slip-table-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border: 1px solid #b8d9cf;
    border-radius: 8px;
    color: var(--green);
    background: #edf8f5;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.slip-table-button:hover {
    background: #dff2eb;
}

.admin-page .badge {
    margin-bottom: 0;
}

.mobile-registration-list {
    display: none;
}

.mobile-registration-card {
    padding: 16px;
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 28px rgba(8, 38, 86, .08);
}

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

.mobile-card-head strong,
.mobile-card-head small {
    display: block;
}

.mobile-card-head strong {
    color: var(--navy);
}

.mobile-card-head span {
    color: var(--green);
    font-weight: 900;
    white-space: nowrap;
}

.mobile-registration-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.mobile-badges {
    margin-top: 12px;
}

.action-stack.horizontal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 12px;
}

.admin-view-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 28px auto 64px;
}

.admin-view-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 18px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(8, 38, 86, .08);
}

.admin-view-hero h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 42px);
}

.admin-view-hero p:last-child {
    margin: 5px 0 0;
    color: var(--muted);
}

.admin-view-actions {
    display: flex;
    gap: 10px;
}

.view-status-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 18px;
    overflow: hidden;
    border: 1px solid #c7dfd7;
    border-radius: 8px;
    background: #c7dfd7;
}

.view-status-band div {
    padding: 16px;
    background: #edf8f5;
}

.view-status-band span,
.view-status-band strong {
    display: block;
}

.view-status-band span {
    color: var(--muted);
    font-size: 13px;
}

.view-status-band strong {
    color: var(--green);
    font-size: 18px;
}

.admin-view-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.view-detail-section {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 28px rgba(8, 38, 86, .06);
}

.view-detail-section h2 {
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d9e8f3;
    color: var(--navy);
    font-size: 21px;
}

.view-detail-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.view-detail-list div {
    padding: 11px 12px;
    border-radius: 8px;
    background: #f6f9fc;
}

.view-detail-list .wide {
    grid-column: 1 / -1;
}

.view-detail-list dt {
    color: var(--muted);
    font-size: 12px;
}

.view-detail-list dd {
    margin: 3px 0 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-weight: 800;
}

.view-slip-preview {
    display: grid;
    gap: 8px;
    width: 100%;
    padding: 12px;
    border: 1px solid #cbddeb;
    border-radius: 8px;
    color: var(--navy);
    background: #f4f8fb;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
}

.view-slip-preview img {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    object-fit: contain;
    background: #e9f0f6;
}

.view-slip-file {
    display: grid;
    gap: 14px;
    justify-items: start;
}

@media (max-width: 900px) {
    .admin-view-hero {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-view-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .admin-view-layout {
        width: min(100% - 20px, 1180px);
        margin-top: 16px;
    }

    .admin-view-hero,
    .view-detail-section {
        padding: 16px;
    }

    .admin-view-actions,
    .view-status-band {
        grid-template-columns: 1fr;
    }

    .admin-view-actions {
        display: grid;
    }

    .view-detail-list {
        grid-template-columns: 1fr;
    }

    .view-detail-list .wide {
        grid-column: auto;
    }

    .view-slip-preview img {
        height: 240px;
    }
}

.participants-section {
    margin-top: clamp(52px, 7vw, 88px);
}

.participants-section .section-heading p:not(.section-kicker) {
    margin: 0;
    color: var(--muted);
}

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

.participant-card {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-height: 120px;
    padding: 20px;
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 16px 34px rgba(8, 38, 86, .08);
}

.participant-card h3,
.participant-card p {
    margin: 0;
}

.participant-card h3 {
    color: var(--navy);
    font-size: 20px;
}

.participant-card p,
.participant-card small {
    color: var(--muted);
}

.participant-status {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
    min-width: 180px;
}

.participant-empty {
    grid-column: 1 / -1;
    border: 1px dashed rgba(7, 54, 111, .2);
    border-radius: 8px;
    background: rgba(255, 255, 255, .76);
}

.participants-page {
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(247, 251, 255, .97), rgba(235, 245, 251, .98)),
        url("backdrop-cpd-2.png") center top / cover fixed;
}

.participants-page-layout {
    width: min(1240px, calc(100% - 28px));
    margin: 28px auto 70px;
}

.participants-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(237, 248, 245, .9)),
        #ffffff;
    box-shadow: 0 18px 38px rgba(8, 38, 86, .08);
}

.participants-hero h1 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.14;
}

.participants-hero p:last-child {
    margin: 0;
    color: var(--muted);
}

.participants-filter {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.2fr) 150px auto auto;
    gap: 12px;
    align-items: end;
    margin: 18px 0;
    padding: 16px;
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 12px 28px rgba(8, 38, 86, .06);
}

.participants-filter label span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.combined-status-filter {
    display: grid;
    gap: 7px;
}

.combined-status-filter > span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.combined-status-filter > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.participants-results {
    display: grid;
    gap: 14px;
}

.participants-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 10px 14px;
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    color: var(--navy);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 10px 22px rgba(8, 38, 86, .05);
}

.participants-count strong {
    color: var(--green);
    font-size: 26px;
}

.participants-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(8, 38, 86, .08);
}

.participants-table {
    min-width: 900px;
}

.participants-table th {
    background: linear-gradient(180deg, #eef6ff, #e8f4fb);
}

.participants-table td {
    background: rgba(255, 255, 255, .98);
}

.participants-table tr:hover td {
    background: #fbfdff;
}

.participants-table td strong,
.participants-table td small {
    display: block;
}

.participants-table td small {
    color: var(--muted);
}

.schedule-section .section-heading p:not(.section-kicker) {
    margin: 0;
    color: var(--muted);
}

.schedule-table-card {
    display: grid;
    gap: 18px;
}

.schedule-day {
    overflow: hidden;
    border: 1px solid rgba(7, 54, 111, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 18px 38px rgba(8, 38, 86, .08);
}

.schedule-day-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 20px 22px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(5, 35, 74, .98), rgba(0, 111, 79, .94)),
        var(--navy-deep);
}

.schedule-day-header span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 40px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    color: var(--navy-deep);
    background: var(--gold-soft);
    font-weight: 900;
}

.schedule-day-header h3,
.schedule-day-header p {
    margin: 0;
}

.schedule-day-header h3 {
    font-size: clamp(20px, 3vw, 28px);
}

.schedule-day-header p {
    color: rgba(255, 255, 255, .78);
    font-weight: 800;
}

.schedule-table-wrap {
    overflow-x: auto;
}

.schedule-table {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
}

.schedule-table th,
.schedule-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #e4edf6;
    text-align: left;
    vertical-align: top;
}

.schedule-table th {
    color: var(--navy);
    background: #f1f7fd;
    font-size: 14px;
}

.schedule-table td:first-child {
    width: 170px;
    color: var(--green);
    font-weight: 900;
    white-space: nowrap;
}

.schedule-table td:nth-child(2) {
    width: 240px;
    color: var(--navy);
}

.schedule-table td:nth-child(3) {
    color: var(--muted);
}

.schedule-table tr:last-child td {
    border-bottom: 0;
}

.schedule-table tr:hover td {
    background: #fbfdff;
}

.schedule-break td {
    background: #fff8df;
}

.schedule-break td:first-child,
.schedule-break td:nth-child(2),
.schedule-break td:nth-child(3) {
    color: #8a5d00;
}

.terms-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.terms-modal.is-open {
    display: flex;
}

.terms-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 35, 74, .58);
    backdrop-filter: blur(6px);
}

.terms-modal__panel {
    position: relative;
    width: min(720px, 100%);
    max-height: min(86vh, 760px);
    overflow: auto;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.terms-modal__panel h2 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.18;
}

.terms-modal__panel > p:not(.section-kicker) {
    margin-top: 0;
    color: var(--muted);
}

.terms-list {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

.terms-list li {
    position: relative;
    padding: 12px 14px 12px 42px;
    border: 1px solid #dbe8f4;
    border-radius: 8px;
    background: #f8fbff;
}

.terms-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 12px;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--teal);
    font-size: 13px;
    font-weight: 900;
}

.terms-payment-summary {
    display: grid;
    gap: 4px;
    padding: 16px;
    border-radius: 8px;
    color: var(--green);
    background: #edf8f5;
}

.terms-payment-summary span {
    color: var(--muted);
}

.modal-consent {
    margin-top: 16px;
}

.terms-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.terms-actions .primary-button:disabled {
    cursor: not-allowed;
    opacity: .5;
    transform: none;
    box-shadow: none;
}

.modal-open {
    overflow: hidden;
}

/* Terms modal refinement */
.terms-modal {
    padding: clamp(14px, 3vw, 28px);
}

.terms-modal__backdrop {
    background:
        radial-gradient(circle at 30% 10%, rgba(8, 139, 132, .28), transparent 34%),
        rgba(5, 35, 74, .68);
}

.terms-modal__panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(760px, calc(100vw - 32px));
    max-height: min(820px, calc(100dvh - 32px));
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .8);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.terms-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid #d8e5f2;
    border-radius: 999px;
    color: var(--navy);
    background: rgba(255, 255, 255, .9);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
}

.terms-modal__header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: clamp(22px, 4vw, 34px) clamp(22px, 4vw, 34px) 18px;
    background:
        linear-gradient(135deg, rgba(237, 248, 245, .96), rgba(238, 246, 255, .94)),
        #ffffff;
}

.terms-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(135deg, var(--green), var(--teal));
    box-shadow: 0 14px 28px rgba(0, 111, 79, .22);
    font-weight: 900;
    font-size: 26px;
}

.terms-modal__header .section-kicker {
    margin-bottom: 6px;
}

.terms-modal__header h2 {
    margin: 0 42px 8px 0;
    color: var(--navy);
    font-size: clamp(25px, 4vw, 36px);
    line-height: 1.18;
    text-wrap: balance;
}

.terms-modal__header p:last-child {
    margin: 0;
    color: var(--muted);
}

.terms-modal__body {
    min-height: 0;
    overflow: auto;
    padding: 0 clamp(22px, 4vw, 34px) 18px;
}

.terms-modal__body::-webkit-scrollbar {
    width: 10px;
}

.terms-modal__body::-webkit-scrollbar-thumb {
    border: 3px solid #f8fbff;
    border-radius: 999px;
    background: #b9cadc;
}

.terms-payment-summary {
    position: sticky;
    top: 0;
    z-index: 1;
    margin: 0 0 14px;
    border: 1px solid rgba(8, 139, 132, .2);
    box-shadow: 0 10px 22px rgba(8, 38, 86, .07);
}

.terms-payment-summary strong {
    color: var(--green);
    font-size: 18px;
}

.terms-list {
    gap: 9px;
    margin: 0;
}

.terms-list li {
    padding: 12px 14px 12px 44px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(8, 38, 86, .04);
}

.terms-list li::before {
    top: 13px;
    background: linear-gradient(135deg, var(--teal), var(--green));
}

.terms-modal__footer {
    padding: 16px clamp(22px, 4vw, 34px) clamp(18px, 3vw, 26px);
    border-top: 1px solid #dbe8f4;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -12px 28px rgba(8, 38, 86, .06);
}

.terms-modal__footer .modal-consent {
    margin: 0 0 14px;
    padding: 12px;
    border: 1px solid #dbe8f4;
    border-radius: 8px;
    background: #f8fbff;
}

.terms-actions {
    margin-top: 0;
}

@media (max-width: 1100px) {
    .topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-grid.four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .inline-admin-form {
        grid-template-columns: minmax(180px, 1fr) 78px;
    }

    .participants-list {
        grid-template-columns: 1fr;
    }

    .participants-filter {
        grid-template-columns: 1fr 1fr;
    }

    .participants-filter .search-input-label {
        grid-column: 1 / -1;
    }

    .combined-status-filter {
        grid-column: 1 / -1;
    }

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

    .site-footer {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-main {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .site-header {
        min-height: 0;
        padding: 14px 18px;
    }

    .admin-login-layout {
        grid-template-columns: 1fr;
        align-items: start;
        padding: 18px 0 40px;
    }

    .login-intro {
        min-height: auto;
    }

    .hero,
    .hero-image {
        min-height: 680px;
        height: 680px;
    }

    .hero-image {
        object-position: 60% top;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(246, 251, 255, .98), rgba(246, 251, 255, .9) 62%, rgba(246, 251, 255, .3));
    }

    .hero-panel {
        left: 18px;
        right: 18px;
        top: 24px;
        width: auto;
        padding: 22px;
    }

    .hero h1 {
        max-width: 100%;
    }

    .summary-panel {
        position: static;
    }

    .form-layout,
    .form-layout.single {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-layout {
        margin-top: 18px;
    }

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

    .admin-list-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .table-wrap {
        display: none;
    }

    .mobile-registration-list {
        display: grid;
        gap: 12px;
    }

    .participant-card {
        flex-direction: column;
    }

    .participant-status {
        justify-content: flex-start;
        min-width: 0;
    }

    .participants-table-wrap {
        overflow: visible;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .participants-table,
    .participants-table thead,
    .participants-table tbody,
    .participants-table tr,
    .participants-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .participants-table thead {
        display: none;
    }

    .participants-table tr {
        margin-bottom: 12px;
        padding: 14px;
        border: 1px solid rgba(7, 54, 111, .1);
        border-radius: 8px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 12px 28px rgba(8, 38, 86, .07);
    }

    .participants-table td {
        display: grid;
        grid-template-columns: 125px minmax(0, 1fr);
        gap: 10px;
        padding: 9px 0;
        border-bottom: 1px solid #edf3f9;
        background: transparent;
    }

    .participants-table td:last-child {
        border-bottom: 0;
    }

    .participants-table td::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 13px;
        font-weight: 900;
    }

    .schedule-day-header {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .schedule-day-header span {
        width: fit-content;
    }

    .schedule-table-wrap {
        overflow: visible;
    }

    .schedule-table,
    .schedule-table thead,
    .schedule-table tbody,
    .schedule-table tr,
    .schedule-table td {
        display: block;
        width: 100%;
        min-width: 0;
    }

    .schedule-table thead {
        display: none;
    }

    .schedule-table tr {
        position: relative;
        margin: 0;
        padding: 16px 16px 16px 24px;
        border-bottom: 1px solid #e4edf6;
        background: #ffffff;
    }

    .schedule-table tr::before {
        content: "";
        position: absolute;
        left: 12px;
        top: 20px;
        bottom: 20px;
        width: 4px;
        border-radius: 999px;
        background: linear-gradient(180deg, var(--teal), var(--gold));
    }

    .schedule-table tr:last-child {
        border-bottom: 0;
    }

    .schedule-table td {
        display: grid;
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 10px;
        padding: 5px 0;
        border-bottom: 0;
        background: transparent;
        white-space: normal;
    }

    .schedule-table td:first-child,
    .schedule-table td:nth-child(2),
    .schedule-table td:nth-child(3) {
        width: auto;
    }

    .schedule-table td::before {
        content: attr(data-label);
        color: var(--muted);
        font-size: 13px;
        font-weight: 900;
    }

    .schedule-break {
        background: #fff8df !important;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .footer-main,
    .footer-bottom {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    body {
        font-size: 15px;
    }

    .admin-login-layout {
        width: min(100% - 20px, 1120px);
    }

    .login-intro,
    .login-card {
        padding: 22px 18px;
    }

    .login-intro h1 {
        font-size: 32px;
    }

    .login-intro p:not(.section-kicker) {
        font-size: 15px;
    }

    .brand {
        width: 100%;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .top-nav {
        gap: 10px;
        flex-wrap: wrap;
        overflow-x: visible;
    }

    .top-nav a,
    .nav-button {
        min-height: 38px;
        padding: 8px 10px;
        font-size: 14px;
    }

    .hero,
    .hero-image {
        min-height: 720px;
        height: 720px;
    }

    .hero-panel {
        padding: 18px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .lead {
        font-size: 20px;
    }

    .hero-stats span {
        width: 100%;
        justify-content: center;
    }

    .hero-actions a,
    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .info-strip div {
        padding: 18px 18px 18px 22px;
    }

    .topic-grid,
    .form-steps,
    .stats-grid.four {
        grid-template-columns: 1fr;
    }

    .registration-intro {
        padding: 14px;
    }

    .payment-guide__heading,
    .payment-reminder {
        align-items: flex-start;
        flex-direction: column;
    }

    .payment-guide__grid {
        grid-template-columns: 1fr;
    }

    .bank-transfer-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .bank-transfer-card dl {
        grid-template-columns: 1fr;
    }

    .bank-transfer-card dl div {
        padding: 0 0 8px;
        border-right: 0;
        border-bottom: 1px solid #e5edf6;
    }

    .bank-transfer-card dl div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .bank-transfer-card,
    .qr-payment-card {
        padding: 16px;
    }

    .payment-rates {
        grid-template-columns: 1fr 1fr;
    }

    .document-preference {
        grid-template-columns: 1fr;
    }

    .required-status-update__fields {
        grid-template-columns: 1fr;
    }

    .current-slip,
    .slip-modal__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .slip-view-button,
    .slip-modal__actions > * {
        width: 100%;
    }

    .slip-modal__header h2 {
        font-size: 21px;
    }

    .qr-modal__panel {
        padding: 16px;
    }

    .qr-modal__header h2 {
        font-size: 21px;
    }

    .speaker-card {
        text-align: center;
        justify-items: center;
    }

    .speaker-card img {
        width: 132px;
    }

    .summary-panel img {
        height: 230px;
    }

    .form-card {
        padding: 20px 16px;
    }

    .payment-note {
        padding: 16px;
    }

    .fee-preview {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-layout {
        width: min(100% - 20px, 1480px);
        margin-top: 16px;
    }

    .admin-hero {
        padding: 18px;
    }

    .admin-list-panel {
        padding: 12px;
    }

    .stats-grid strong {
        font-size: 30px;
    }

    .participants-page-layout {
        width: min(100% - 20px, 1240px);
        margin-top: 16px;
    }

    .participants-hero {
        padding: 20px 16px;
    }

    .participants-filter {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .combined-status-filter > div {
        grid-template-columns: 1fr;
    }

    .participants-filter .primary-button,
    .participants-filter .secondary-button {
        width: 100%;
    }

    .participants-table td {
        grid-template-columns: 110px minmax(0, 1fr);
        font-size: 14px;
    }

    .site-footer {
        padding: 34px 18px 20px;
    }

    .footer-brand {
        align-items: flex-start;
    }

    .terms-modal {
        align-items: flex-end;
        padding: 0;
    }

    .terms-modal__panel {
        width: 100%;
        max-height: 92dvh;
        border-radius: 8px 8px 0 0;
    }

    .terms-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .terms-modal__header {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 18px 14px;
    }

    .terms-icon {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .terms-modal__header h2 {
        margin-right: 34px;
        font-size: 25px;
    }

    .terms-modal__body {
        padding: 0 14px 14px;
    }

    .terms-payment-summary {
        position: relative;
        top: auto;
    }

    .terms-list li {
        padding: 11px 12px 11px 40px;
        font-size: 14px;
    }

    .terms-list li::before {
        left: 12px;
        width: 18px;
        height: 18px;
        font-size: 12px;
    }

    .terms-modal__footer {
        padding: 12px 14px 14px;
    }

    .terms-modal__footer .modal-consent {
        font-size: 14px;
    }

    .terms-actions {
        flex-direction: column-reverse;
    }
}
