:root {
    --green-950: #073f3a;
    --green-900: #075f57;
    --green-800: #0f766e;
    --green-700: #128277;
    --green-600: #179688;
    --green-100: #dff6ef;
    --green-50: #f0fbf7;
    --orange-600: #ea6c16;
    --orange-500: #f58220;
    --orange-100: #fff0df;
    --cream: #fffaf2;
    --white: #ffffff;
    --ink: #18312f;
    --muted: #647a77;
    --border: #dce8e5;
    --danger: #b42318;
    --danger-bg: #fef3f2;
    --success: #067647;
    --success-bg: #ecfdf3;
    --shadow-sm: 0 6px 18px rgba(10, 72, 65, .08);
    --shadow: 0 18px 45px rgba(8, 73, 67, .13);
    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 30px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(90deg, #075f57 0%, #0d7469 55%, #23816f 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(7, 72, 65, .15);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand img {
    width: 44px;
    height: 44px;
}

.brand span {
    display: grid;
    line-height: 1.05;
}

.brand strong {
    font-size: 15px;
    letter-spacing: .2px;
}

.brand small {
    color: #ffd6a6;
    font-weight: 900;
    letter-spacing: 1.6px;
    font-size: 10px;
    margin-top: 4px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: auto;
}

.main-nav > a:not(.btn-login) {
    padding: 26px 15px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .15px;
    position: relative;
}

.main-nav > a:not(.btn-login)::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 16px;
    height: 3px;
    border-radius: 3px;
    background: var(--orange-500);
    transform: scaleX(0);
    transition: .22s ease;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    transform: scaleX(1);
}

.btn-login {
    margin-left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .1);
    font-weight: 800;
    transition: .2s ease;
}

.btn-login:hover {
    background: rgba(255, 255, 255, .26);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 7px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: .2s ease;
}

.user-menu {
    position: relative;
    margin-left: 10px;
}

.user-menu-btn {
    border: 0;
    color: white;
    background: rgba(255, 255, 255, .14);
    border-radius: 999px;
    padding: 6px 12px 6px 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--orange-500);
    color: white;
    font-weight: 900;
}

.user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 12px);
    width: 230px;
    background: white;
    color: var(--ink);
    border-radius: 14px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.user-dropdown.open {
    display: block;
}

.user-dropdown-head {
    padding: 15px 17px;
    border-bottom: 1px solid var(--border);
    display: grid;
}

.user-dropdown-head small {
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-dropdown a {
    display: block;
    padding: 12px 17px;
    color: var(--danger);
    font-weight: 700;
}

.user-dropdown a:hover {
    background: var(--danger-bg);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: grid;
    align-items: center;
    background: radial-gradient(circle at 80% 40%, rgba(255, 255, 255, .13), transparent 28%), linear-gradient(120deg, #064f49 0%, #0f766e 58%, #2e8a75 100%);
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50%;
    right: -150px;
    top: -160px;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .03), 0 0 0 150px rgba(255, 255, 255, .02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 49, 45, .2), rgba(3, 49, 45, 0));
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    align-items: center;
    gap: 44px;
    padding-block: 75px 110px;
}

.hero-copy {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    font-size: 12px;
    color: #ffd9ad;
    margin-bottom: 15px;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 4px;
    background: var(--orange-500);
}

.hero h1 {
    font-size: clamp(40px, 5vw, 67px);
    line-height: 1.07;
    letter-spacing: -2.3px;
    margin: 0 0 22px;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, .83);
    max-width: 630px;
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.hero-art {
    position: relative;
}

.hero-art img {
    width: min(100%, 520px);
    margin-inline: auto;
    filter: drop-shadow(0 25px 30px rgba(2, 41, 37, .25));
}

.hero-wave {
    position: absolute;
    left: -3%;
    right: -3%;
    bottom: -80px;
    height: 150px;
    background: white;
    border-radius: 50% 50% 0 0/55% 55% 0 0;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 13px 23px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-orange {
    background: linear-gradient(135deg, #f8993e, var(--orange-500));
    color: white;
    box-shadow: 0 12px 26px rgba(229, 99, 13, .27);
}

.btn-orange:hover {
    box-shadow: 0 16px 30px rgba(229, 99, 13, .35);
}

.btn-green {
    background: linear-gradient(135deg, var(--green-700), var(--green-900));
    color: white;
    box-shadow: 0 12px 28px rgba(7, 95, 87, .18);
}

.btn-ghost {
    color: white;
    border: 1px solid rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .08);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .16);
}

.btn-block {
    width: 100%;
    border-radius: 12px;
}

.section {
    padding: 86px 0;
}

.center-heading {
    text-align: center;
    max-width: 760px;
}

.section-kicker {
    color: var(--orange-600);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.section-kicker.light {
    color: #ffe0bd;
}

.center-heading h2,
.why-copy h2,
.cta-box h2 {
    margin: 8px 0 12px;
    line-height: 1.16;
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -1px;
}

.center-heading p {
    margin: 0;
    color: var(--muted);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 42px;
}

.service-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    background: white;
    transition: .22s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    right: -45px;
    top: -45px;
    background: var(--green-50);
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: #c8ded9;
}

.service-card.featured {
    background: linear-gradient(145deg, #087168, #0d8b7d);
    color: white;
    border: 0;
}

.service-card.featured::before {
    background: rgba(255, 255, 255, .08);
}

.service-card.featured p {
    color: rgba(255, 255, 255, .78);
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--orange-100);
    color: var(--orange-600);
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 900;
}

.featured .service-icon {
    background: rgba(255, 255, 255, .14);
    color: white;
}

.service-card h3 {
    margin: 21px 0 8px;
    font-size: 22px;
}

.service-card p {
    color: var(--muted);
    margin: 0 0 20px;
}

.service-card a {
    color: var(--orange-600);
    font-weight: 900;
}

.featured a {
    color: #ffe1bc;
}

.why-section {
    background: linear-gradient(180deg, #fbfefd 0%, var(--green-50) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 70px;
    align-items: center;
}

.why-visual {
    min-height: 430px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, rgba(4, 71, 64, .2), rgba(11, 118, 105, .7)), url('../img/pattern.svg');
    background-size: cover;
    display: grid;
    place-items: end center;
    padding: 36px;
    box-shadow: var(--shadow);
}

.quote-card {
    width: min(100%, 440px);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.quote-mark {
    font-family: Georgia, serif;
    color: var(--orange-500);
    font-size: 62px;
    line-height: .6;
}

.quote-card p {
    font-family: Georgia, serif;
    font-size: 22px;
    line-height: 1.5;
    margin: 10px 0;
}

.quote-card small {
    color: var(--muted);
}

.why-copy > p {
    color: var(--muted);
}

.feature-list {
    margin-top: 28px;
    display: grid;
    gap: 20px;
}

.feature-list > div {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 15px;
    align-items: start;
}

.feature-list > div > span {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--orange-100);
    color: var(--orange-600);
    font-weight: 900;
}

.feature-list p {
    margin: 0;
    color: var(--muted);
}

.feature-list strong {
    color: var(--ink);
}

.cta-section {
    padding-top: 0;
}

.cta-box {
    background: linear-gradient(120deg, var(--green-950), var(--green-700));
    border-radius: 28px;
    color: white;
    padding: 44px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border: 40px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    right: 22%;
    top: -90px;
}

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

.cta-box p {
    color: rgba(255, 255, 255, .77);
    margin: 0;
}

.alert {
    margin-top: 18px;
    border-radius: 13px;
    padding: 13px 16px;
    font-weight: 700;
}

.alert-success {
    color: var(--success);
    background: var(--success-bg);
    border: 1px solid #abefc6;
}

.alert-error {
    color: var(--danger);
    background: var(--danger-bg);
    border: 1px solid #fecdca;
}

.alert.compact {
    margin: 0 0 18px;
    font-size: 14px;
}

.auth-section {
    min-height: 780px;
    padding: 70px 16px;
    background: radial-gradient(circle at 8% 8%, rgba(245, 130, 32, .13), transparent 24%), linear-gradient(135deg, #f4fbf8, #fffaf3);
}

.auth-shell {
    width: min(1060px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(7, 76, 68, .16);
    background: white;
}

.auth-aside {
    color: white;
    padding: 58px 48px;
    background: radial-gradient(circle at 90% 15%, rgba(255, 255, 255, .13), transparent 25%), linear-gradient(145deg, #064a44, #0d7a6e);
    position: relative;
    overflow: hidden;
}

.auth-aside::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 45px solid rgba(255, 255, 255, .055);
    border-radius: 50%;
    left: -120px;
    bottom: -120px;
}

.auth-aside > * {
    position: relative;
    z-index: 1;
}

.auth-aside > img {
    width: 80px;
    height: 80px;
    margin-bottom: 34px;
}

.auth-aside h1 {
    font-size: 38px;
    line-height: 1.14;
    margin: 0 0 15px;
    letter-spacing: -.8px;
}

.auth-aside p {
    color: rgba(255, 255, 255, .76);
}

.auth-aside ul {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
    display: grid;
    gap: 11px;
    color: rgba(255, 255, 255, .9);
    font-weight: 700;
}

.mini-note {
    margin-top: 30px;
    padding: 15px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .12);
}

.auth-card {
    padding: 52px;
    align-self: center;
}

.auth-card.wide {
    padding-block: 38px;
}

.auth-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
}

.auth-card-head img {
    display: none;
    width: 50px;
    height: 50px;
}

.auth-card-head h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
}

.auth-card-head p {
    color: var(--muted);
    margin: 4px 0 0;
}

.form-stack {
    display: grid;
    gap: 17px;
}

.form-stack label > span:first-child {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

.form-stack input:not([type="checkbox"]),
.form-stack select,
.form-stack textarea {
    width: 100%;
    border: 1px solid #cfddda;
    border-radius: 12px;
    padding: 13px 14px;
    color: var(--ink);
    outline: none;
    background: white;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.form-stack input:focus,
.form-stack select:focus,
.form-stack textarea:focus {
    border-color: var(--green-600);
    box-shadow: 0 0 0 4px rgba(23, 150, 136, .11);
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #cfddda;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.input-group:focus-within {
    border-color: var(--green-600);
    box-shadow: 0 0 0 4px rgba(23, 150, 136, .11);
}

.input-group > span {
    padding-left: 14px;
    color: var(--muted);
    font-weight: 800;
}

.input-group input {
    border: 0 !important;
    box-shadow: none !important;
}

.input-group.plain input {
    padding-left: 14px;
}

.password-toggle {
    border: 0;
    background: transparent;
    color: var(--muted);
    padding: 0 14px;
}

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

.check-label {
    display: grid;
    grid-template-columns: 19px 1fr;
    gap: 10px;
    align-items: start;
    color: var(--muted);
    font-size: 14px;
}

.check-label input {
    width: 18px;
    height: 18px;
    accent-color: var(--green-700);
    margin-top: 2px;
}

.auth-switch {
    text-align: center;
    margin: 18px 0 0;
    color: var(--muted);
}

.auth-switch a {
    color: var(--green-700);
    font-weight: 900;
}

.staff-login-link {
    margin-top: 16px;
    display: block;
    text-align: center;
    color: var(--orange-600);
    font-size: 14px;
    font-weight: 800;
}

.coming-section {
    min-height: 640px;
    padding: 90px 0;
    background: linear-gradient(180deg, var(--green-50), white);
    display: grid;
    align-items: center;
}

.coming-card {
    max-width: 720px;
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 55px 35px;
    box-shadow: var(--shadow);
}

.coming-icon {
    width: 86px;
    height: 86px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: var(--orange-100);
    color: var(--orange-600);
    font-size: 39px;
}

.coming-card h1 {
    font-size: 44px;
    line-height: 1.1;
    margin: 7px 0 15px;
}

.coming-card p {
    color: var(--muted);
    font-size: 17px;
    margin: 0 auto;
    max-width: 540px;
}

.progress-track {
    width: min(100%, 400px);
    height: 9px;
    background: #e8f1ef;
    border-radius: 99px;
    margin: 30px auto;
    overflow: hidden;
}

.progress-track span {
    display: block;
    width: 62%;
    height: 100%;
    background: linear-gradient(90deg, var(--green-700), var(--orange-500));
    border-radius: inherit;
    animation: progress 2s ease-in-out infinite alternate;
}

@keyframes progress {
    from {
        width: 32%;
    }
    to {
        width: 70%;
    }
}

.site-footer {
    background: #052f2c;
    color: rgba(255, 255, 255, .76);
    padding: 62px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .7fr;
    gap: 65px;
}

.footer-brand {
    color: white;
    margin-bottom: 17px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
}

.footer-grid p {
    max-width: 500px;
}

.footer-grid h3 {
    color: white;
    margin: 0 0 15px;
    font-size: 16px;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-grid a:hover {
    color: #ffd2a5;
}

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

@media (max-width:980px) {
    .nav-toggle {
        display: block;
        margin-left: auto;
    }
    .main-nav {
        position: absolute;
        display: none;
        top: 76px;
        left: 0;
        right: 0;
        background: #075f57;
        padding: 10px 16px 20px;
        box-shadow: 0 18px 26px rgba(5, 56, 51, .2);
        flex-direction: column;
        align-items: stretch;
    }
    .main-nav.open {
        display: flex;
    }
    .main-nav > a:not(.btn-login) {
        padding: 12px 10px;
    }
    .main-nav > a:not(.btn-login)::after {
        left: 10px;
        right: auto;
        width: 45px;
        bottom: 4px;
    }
    .btn-login,
    .user-menu {
        margin: 6px 0 0;
    }
    .user-menu-btn {
        width: 100%;
        justify-content: flex-start;
    }
    .user-dropdown {
        position: static;
        width: 100%;
        margin-top: 8px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 65px;
    }
    .hero-copy {
        margin-inline: auto;
    }
    .eyebrow {
        justify-content: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-art img {
        max-width: 430px;
    }
    .service-grid {
        grid-template-columns: 1fr;
        max-width: 720px;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .why-visual {
        order: 2;
    }
    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .auth-shell {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
    .auth-aside {
        display: none;
    }
    .auth-card-head img {
        display: block;
    }
}

@media (max-width:680px) {
    .container {
        width: min(calc(100% - 24px), var(--container));
    }
    .brand img {
        width: 40px;
        height: 40px;
    }
    .nav-wrap {
        min-height: 68px;
    }
    .main-nav {
        top: 68px;
    }
    .hero {
        min-height: 690px;
    }
    .hero-content {
        padding-top: 50px;
        gap: 25px;
    }
    .hero h1 {
        font-size: 39px;
        letter-spacing: -1.3px;
    }
    .hero p {
        font-size: 16px;
    }
    .hero-art img {
        max-width: 330px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .section {
        padding: 67px 0;
    }
    .service-card {
        padding: 24px;
    }
    .why-visual {
        min-height: 350px;
        padding: 22px;
    }
    .quote-card {
        padding: 22px;
    }
    .quote-card p {
        font-size: 19px;
    }
    .cta-box {
        padding: 35px 25px;
    }
    .auth-section {
        padding: 28px 12px;
    }
    .auth-card {
        padding: 31px 22px;
    }
    .auth-card-head h2 {
        font-size: 26px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .coming-card {
        padding: 42px 22px;
    }
    .coming-card h1 {
        font-size: 36px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
    }
}

/* =========================================================
   HALAMAN PENDAFTARAN
   ========================================================= */
.registration-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 72px 0 96px;
    background:
        radial-gradient(circle at 8% 2%, rgba(245, 130, 32, .12), transparent 24%),
        radial-gradient(circle at 94% 15%, rgba(23, 150, 136, .12), transparent 26%),
        linear-gradient(180deg, #f7fcfa 0%, #fffaf4 48%, #f8fcfb 100%);
}

.registration-section::before,
.registration-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    border: 1px solid rgba(15, 118, 110, .08);
}

.registration-section::before {
    width: 420px;
    height: 420px;
    right: -230px;
    top: 180px;
    box-shadow: 0 0 0 70px rgba(15, 118, 110, .025), 0 0 0 140px rgba(15, 118, 110, .018);
}

.registration-section::after {
    width: 260px;
    height: 260px;
    left: -170px;
    bottom: 140px;
    box-shadow: 0 0 0 55px rgba(245, 130, 32, .025);
}

.registration-shell {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), 1040px);
}

.registration-heading {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 42px 46px 34px;
    color: #fff;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 12%, rgba(255, 255, 255, .14), transparent 24%),
        linear-gradient(135deg, #064f49 0%, #0f766e 58%, #188879 100%);
    box-shadow: 0 24px 55px rgba(7, 95, 87, .19);
}

.registration-heading::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -95px;
    bottom: -145px;
    border: 36px solid rgba(255, 255, 255, .055);
    border-radius: 50%;
}

.registration-heading > * {
    position: relative;
    z-index: 1;
}

.registration-heading .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ffe0bd;
}

.registration-heading .section-kicker::before {
    content: "";
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: var(--orange-500);
}

.registration-heading h1 {
    max-width: 720px;
    margin: 9px 0 12px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.7px;
}

.registration-heading > p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
}

.registration-overview {
    display: grid;
    grid-template-columns: auto minmax(24px, 1fr) auto minmax(24px, 1fr) auto;
    align-items: center;
    gap: 15px;
    margin-top: 32px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.registration-overview-item {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.registration-overview-item > span {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    font-weight: 900;
}

.registration-overview-item.is-active > span {
    background: var(--orange-500);
    border-color: var(--orange-500);
    box-shadow: 0 8px 20px rgba(234, 108, 22, .32);
}

.registration-overview-item strong,
.registration-overview-item small {
    display: block;
    white-space: nowrap;
}

.registration-overview-item strong {
    font-size: 13px;
}

.registration-overview-item small {
    color: rgba(255, 255, 255, .63);
    font-size: 11px;
}

.registration-overview-line {
    height: 1px;
    background: rgba(255, 255, 255, .18);
}

.registration-alert {
    margin: 0 0 24px;
    padding: 17px 19px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.registration-alert ul {
    margin: 9px 0 0;
    padding-left: 21px;
    font-weight: 600;
}

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

.registration-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border: 1px solid rgba(207, 221, 218, .82);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 16px 42px rgba(7, 76, 68, .09);
    backdrop-filter: blur(8px);
}

.registration-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-700), var(--orange-500));
}

.registration-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 29px;
    padding-bottom: 22px;
    border-bottom: 1px solid #e7efed;
}

.registration-step {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(145deg, var(--green-700), var(--green-900));
    box-shadow: 0 10px 22px rgba(7, 95, 87, .2);
    font-size: 19px;
    font-weight: 900;
}

.registration-card-head h2 {
    margin: 0;
    color: #123b37;
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -.35px;
}

.registration-card-head p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 14px;
}

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

.registration-field {
    min-width: 0;
}

.registration-field > span,
.registration-address-group > legend {
    display: block;
    margin-bottom: 8px;
    padding: 0;
    color: #234844;
    font-size: 13px;
    font-weight: 850;
}

.registration-field > span b,
.registration-address-group > legend b {
    color: var(--orange-600);
}

.registration-field > span small {
    margin-left: 5px;
    padding: 2px 7px;
    border-radius: 99px;
    color: #6d7f7c;
    background: #edf4f2;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .35px;
}

.registration-field input,
.registration-field select,
.registration-field textarea,
.registration-address-grid input {
    width: 100%;
    min-height: 50px;
    border: 1px solid #ccdcd8;
    border-radius: 13px;
    padding: 13px 15px;
    color: var(--ink);
    background: #fbfdfc;
    outline: none;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.registration-field textarea {
    min-height: 116px;
    resize: vertical;
    line-height: 1.55;
}

.registration-field input::placeholder,
.registration-field textarea::placeholder {
    color: #93a6a2;
}

.registration-field input:hover,
.registration-field select:hover,
.registration-field textarea:hover,
.registration-address-grid input:hover {
    border-color: #aac9c3;
    background: #fff;
}

.registration-field input:focus,
.registration-field select:focus,
.registration-field textarea:focus,
.registration-address-grid input:focus {
    border-color: var(--green-600);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(23, 150, 136, .12), 0 8px 20px rgba(7, 95, 87, .07);
}

.registration-field input:required:valid,
.registration-field select:required:valid,
.registration-field textarea:required:valid {
    border-color: #90c9bb;
}

.registration-field select {
    appearance: none;
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--green-700) 50%),
        linear-gradient(135deg, var(--green-700) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 2px),
        calc(100% - 15px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

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

.registration-address-group {
    margin: 0;
    padding: 0;
    border: 0;
}

.registration-address-grid {
    display: grid;
    grid-template-columns: .85fr .85fr 1.3fr;
    gap: 12px;
    padding: 16px;
    border: 1px dashed #bfd5d0;
    border-radius: 16px;
    background: linear-gradient(135deg, #f3faf8, #fffaf4);
}

.registration-submit-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 25px 28px;
    border: 1px solid #cbdeda;
    border-radius: 21px;
    background: linear-gradient(135deg, #fff 0%, #f4fbf8 100%);
    box-shadow: 0 14px 36px rgba(7, 76, 68, .09);
}

.registration-submit-copy {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.registration-submit-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--green-800);
    background: var(--green-100);
    font-size: 20px;
    font-weight: 900;
}

.registration-confirmation {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 11px;
    align-items: start;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.48;
    cursor: pointer;
}

.registration-confirmation input {
    width: 19px;
    height: 19px;
    margin: 2px 0 0;
    accent-color: var(--green-700);
}

.registration-confirmation strong {
    display: block;
    margin-bottom: 2px;
    color: var(--ink);
    font-size: 14px;
}

.registration-submit {
    flex: 0 0 auto;
    min-width: 205px;
    padding: 14px 22px;
    border-radius: 13px;
    box-shadow: 0 13px 25px rgba(7, 95, 87, .22);
}

.registration-submit:hover {
    box-shadow: 0 17px 30px rgba(7, 95, 87, .28);
}

.registration-submit:disabled {
    cursor: wait;
    opacity: .7;
    transform: none;
}

.registration-submit-arrow {
    font-size: 20px;
    line-height: 1;
    transition: transform .18s ease;
}

.registration-submit:hover .registration-submit-arrow {
    transform: translateX(3px);
}

@media (max-width: 820px) {
    .registration-section {
        padding: 48px 0 72px;
    }

    .registration-heading {
        padding: 34px 30px 29px;
        border-radius: 24px;
    }

    .registration-overview {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .registration-overview-line {
        display: none;
    }

    .registration-overview-item {
        padding: 9px 11px;
        border-radius: 13px;
        background: rgba(255, 255, 255, .075);
    }

    .registration-overview-item strong,
    .registration-overview-item small {
        white-space: normal;
    }

    .registration-grid {
        grid-template-columns: 1fr;
    }

    .field-full {
        grid-column: auto;
    }

    .registration-address-grid {
        grid-template-columns: 1fr;
    }

    .registration-submit-card {
        align-items: stretch;
        flex-direction: column;
    }

    .registration-submit {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .registration-section {
        padding: 28px 0 52px;
    }

    .registration-shell {
        width: min(calc(100% - 22px), 1040px);
    }

    .registration-heading {
        margin-bottom: 20px;
        padding: 27px 21px 22px;
        border-radius: 20px;
    }

    .registration-heading h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .registration-heading > p {
        font-size: 14px;
    }

    .registration-overview {
        margin-top: 23px;
        padding-top: 18px;
    }

    .registration-card {
        padding: 24px 18px;
        border-radius: 19px;
    }

    .registration-card-head {
        align-items: flex-start;
        margin-bottom: 23px;
        padding-bottom: 18px;
    }

    .registration-step {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .registration-card-head h2 {
        font-size: 21px;
    }

    .registration-grid {
        gap: 18px;
    }

    .registration-field input,
    .registration-field select,
    .registration-field textarea,
    .registration-address-grid input {
        min-height: 49px;
        font-size: 16px;
    }

    .registration-address-grid {
        padding: 13px;
    }

    .registration-submit-card {
        padding: 21px 18px;
    }

    .registration-submit-copy {
        align-items: flex-start;
    }

    .registration-submit-icon {
        display: none;
    }
}
