:root {
    --register-bg: #f4efe7;
    --register-surface: rgba(255, 255, 255, 0.92);
    --register-card: #ffffff;
    --register-border: rgba(28, 39, 56, 0.12);
    --register-text: #17212f;
    --register-muted: #66768d;
    --register-accent: #f97316;
    --register-accent-strong: #d95f06;
    --register-accent-soft: rgba(249, 115, 22, 0.14);
    --register-dark: #1f2937;
    --register-shadow: 0 30px 80px rgba(23, 33, 47, 0.14);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Poppins", "Segoe UI", sans-serif;
    color: var(--register-text);
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 32%),
        radial-gradient(circle at bottom right, rgba(23, 33, 47, 0.12), transparent 28%),
        linear-gradient(145deg, #f8f2ea 0%, #eef2f7 52%, #f5f7fb 100%);
}

.register-shell {
    width: min(1420px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 48px;
    display: grid;
    grid-template-columns: 0.78fr 1.42fr;
    gap: 24px;
    align-items: start;
}

.register-hero,
.register-card {
    border: 1px solid var(--register-border);
    border-radius: 28px;
    box-shadow: var(--register-shadow);
    backdrop-filter: blur(12px);
}

.register-hero {
    position: sticky;
    top: 24px;
    padding: 28px;
    background:
        linear-gradient(160deg, rgba(23, 33, 47, 0.97) 0%, rgba(34, 46, 66, 0.95) 100%),
        var(--register-dark);
    color: #ffffff;
    overflow: hidden;
}

.register-hero::after {
    content: "";
    position: absolute;
    inset: auto -80px -80px auto;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.16);
    filter: blur(2px);
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.hero-logo {
    width: 184px;
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(249, 115, 22, 0.18);
    border: 1px solid rgba(249, 115, 22, 0.22);
    color: #ffd9bf;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(1.72rem, 2.3vw, 2.45rem);
    line-height: 1.08;
    font-weight: 700;
}

.hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
    line-height: 1.68;
}

.hero-points {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.hero-point {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.hero-point i {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.14);
    color: #ffcfac;
    font-size: 0.95rem;
}

.hero-point strong {
    display: block;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.hero-point span {
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.88rem;
    line-height: 1.48;
}

.register-card {
    padding: 30px;
    background: var(--register-surface);
}

.register-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.eyebrow {
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--register-accent);
}

.register-card-head h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.login-shortcut {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--register-border);
    color: var(--register-dark);
    text-decoration: none;
    font-weight: 600;
}

.login-shortcut:hover {
    color: var(--register-accent-strong);
}

.form-section + .form-section {
    margin-top: 30px;
}

.section-title {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    align-items: start;
    margin-bottom: 18px;
}

.section-title span {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--register-accent) 0%, #ff9d4d 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 18px 28px rgba(249, 115, 22, 0.24);
}

.section-title h3 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    font-weight: 700;
}

.section-title p {
    margin: 0;
    color: var(--register-muted);
    line-height: 1.6;
}

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

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.field label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--register-dark);
}

.form-control {
    min-height: 52px;
    border-radius: 16px;
    border: 1px solid rgba(102, 118, 141, 0.2);
    background: rgba(255, 255, 255, 0.88);
    padding: 14px 16px;
    color: var(--register-text);
    font-size: 0.98rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

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

.form-control:focus {
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
    transform: translateY(-1px);
}

.trial-banner {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.16), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(249, 115, 22, 0.22);
}

.trial-banner i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.14);
    color: var(--register-accent-strong);
    font-size: 1rem;
}

.trial-banner strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.98rem;
}

.trial-banner span {
    display: block;
    color: var(--register-muted);
    line-height: 1.5;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.plan-option {
    display: block;
    cursor: pointer;
}

.plan-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 64px 18px 20px;
    border-radius: 22px;
    background: var(--register-card);
    border: 1px solid rgba(102, 118, 141, 0.16);
    box-shadow: 0 20px 42px rgba(23, 33, 47, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.plan-option:hover .plan-card {
    transform: translateY(-4px);
    box-shadow: 0 24px 46px rgba(23, 33, 47, 0.12);
    border-color: rgba(249, 115, 22, 0.28);
}

.plan-option input:checked + .plan-card {
    border-color: rgba(249, 115, 22, 0.72);
    box-shadow:
        0 24px 46px rgba(249, 115, 22, 0.18),
        0 0 0 4px rgba(249, 115, 22, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 240, 0.98));
}

.plan-card.popular {
    border: 2px solid var(--register-accent);
    transform: scale(1.01);
}

.plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--register-accent) 0%, #ff9740 100%);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(249, 115, 22, 0.22);
}

.plan-selected-indicator {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #15803d;
    border: 1px solid rgba(22, 163, 74, 0.18);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    opacity: 0;
    transform: translateY(-4px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.plan-option input:checked + .plan-card .plan-selected-indicator {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.plan-name {
    margin: 0;
    font-size: 1.48rem;
    line-height: 1.1;
    font-weight: 800;
    padding-right: 118px;
}

.plan-price {
    margin: 10px 0 6px;
    font-size: 1.95rem;
    line-height: 1;
    font-weight: 900;
    color: var(--register-accent-strong);
}

.plan-price small {
    margin-left: 6px;
    color: var(--register-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.plan-desc {
    margin: 0 0 20px;
    min-height: 48px;
    color: var(--register-muted);
    line-height: 1.55;
    font-size: 0.91rem;
}

.plan-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--register-text);
    flex: 1;
}

.plan-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.48;
    font-size: 0.89rem;
}

.plan-check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border-radius: 50%;
    background: #ecfdf5;
    color: #16a34a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    margin-top: 1px;
}

.plan-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(102, 118, 141, 0.22);
}

.plan-trial-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--register-accent-soft);
    color: var(--register-accent-strong);
    font-size: 0.76rem;
    font-weight: 700;
}

.plan-select-text {
    color: var(--register-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: right;
}

.submit-btn {
    margin-top: 30px;
    min-height: 56px;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--register-accent) 0%, #ff9740 100%);
    box-shadow: 0 22px 34px rgba(249, 115, 22, 0.22);
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 38px rgba(249, 115, 22, 0.26);
}

.submit-btn:disabled {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.disclaimer {
    margin: 14px 0 0;
    color: var(--register-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.alert-container {
    margin-bottom: 18px;
}

#cliq-loader .cliq-loader-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(37, 42, 52, 0.58);
}

.cliq-system-alert {
    border-radius: 22px;
    font-family: "Poppins", "Segoe UI", sans-serif;
}

.cliq-system-alert__confirm {
    min-width: 110px;
    border: 0;
    border-radius: 12px;
    padding: 11px 18px;
    background: linear-gradient(135deg, var(--register-accent) 0%, #ff9740 100%);
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 1180px) {
    .register-shell {
        grid-template-columns: 1fr;
    }

    .register-hero {
        position: static;
    }
}

@media (max-width: 920px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.popular {
        transform: none;
    }
}

@media (max-width: 1300px) and (min-width: 921px) {
    .register-shell {
        grid-template-columns: 0.72fr 1.48fr;
        gap: 20px;
    }

    .register-card {
        padding: 26px;
    }

    .plans-grid {
        gap: 16px;
    }

    .plan-card {
        padding: 58px 16px 18px;
    }

    .plan-name {
        font-size: 1.34rem;
        padding-right: 108px;
    }

    .plan-price {
        font-size: 1.72rem;
    }

    .plan-features li {
        font-size: 0.84rem;
    }
}

@media (max-width: 720px) {
    .register-shell {
        width: min(100% - 20px, 100%);
        padding: 18px 0 28px;
    }

    .register-hero,
    .register-card {
        border-radius: 22px;
        padding: 22px;
    }

    .register-card-head {
        flex-direction: column;
        align-items: stretch;
    }

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

    .section-title {
        grid-template-columns: 44px 1fr;
    }

    .section-title span {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .hero-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-logo {
        width: 180px;
    }

    .plan-card {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .plan-selected-indicator,
    .plan-badge {
        position: static;
        align-self: flex-start;
        margin-bottom: 12px;
    }

    .plan-name {
        font-size: 1.45rem;
        padding-right: 0;
        margin-top: 0;
    }

    .plan-price {
        font-size: 1.85rem;
    }
}
