* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #f8fafc;
    color: #0f172a;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

a {
    text-decoration: none;
}

.container-fluid {
    max-width: 1440px;
    padding-left: 36px;
    padding-right: 36px;
}

/* HEADER */

.public-header {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.public-nav {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.public-logo img {
    max-height: 90px;
}

.public-menu {
    display: flex;
    gap: 30px;
}

.public-menu a {
    color: #334155;
    font-weight: 800;
}

.public-menu a.active,
.public-menu a:hover {
    color: #ff572f;
}

.public-actions {
    display: flex;
    gap: 12px;
}

.login-btn,
.partner-btn {
    height: 46px;
    padding: 0 22px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    font-weight: 900;
}

.login-btn {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #d0d5dd;
}

.partner-btn {
    background: #ff572f;
    color: #ffffff;
}

.mobile-menu-btn {
    display: none;
    border: 0;
    background: #ff572f;
    color: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 12px;
}

/* HERO */

.hero-section {
    padding: 78px 0 50px;
    background:
        radial-gradient(circle at top right, rgba(255,87,47,.16), transparent 34%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 58px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #fff4ef;
    color: #ff572f;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 22px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.04;
    font-weight: 950;
    margin-bottom: 24px;
}

.hero-content h1 span {
    color: #ff572f;
}

.hero-content p {
    color: #475467;
    font-size: 18px;
    line-height: 1.7;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin: 34px 0 24px;
}

.primary-btn,
.secondary-btn {
    height: 56px;
    padding: 0 28px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    font-weight: 900;
}

.primary-btn {
    background: #ff572f;
    color: #ffffff;
}

.secondary-btn {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #d0d5dd;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hero-points span {
    color: #334155;
    font-weight: 800;
}

.hero-points i {
    color: #16a34a;
}

/* HERO VISUAL */

.hero-visual {
    position: relative;
    min-height: 520px;
}

.dashboard-preview-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 24px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .14);
    transform: rotate(-2deg);
}

.preview-top {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.preview-top span {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ff572f;
}

.preview-top span:nth-child(2) {
    background: #f79009;
}

.preview-top span:nth-child(3) {
    background: #16a34a;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.preview-stats div {
    background: #f8fafc;
    border-radius: 18px;
    padding: 18px;
}

.preview-stats small {
    color: #667085;
}

.preview-stats b {
    display: block;
    font-size: 20px;
    margin-top: 6px;
}

.preview-search {
    margin: 22px 0;
    background: #fff4ef;
    color: #ff572f;
    border-radius: 16px;
    padding: 16px;
    font-weight: 900;
}

.preview-list div {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-bottom: 1px solid #e5e7eb;
}

.preview-list span {
    width: 44px;
    height: 44px;
    background: #ff572f;
    border-radius: 12px;
}

.preview-list p {
    margin: 0;
    font-weight: 900;
}

.preview-list b {
    color: #16a34a;
}

.floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .15);
}

.floating-card i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #fff4ef;
    color: #ff572f;
}

.floating-card span {
    display: block;
    color: #667085;
    font-size: 13px;
}

.floating-card b {
    font-weight: 900;
}

.wallet-float {
    left: -18px;
    bottom: 65px;
}

.confirm-float {
    right: 0;
    top: 70px;
}

/* STATS */

.stats-section {
    padding: 28px 0;
}

.stats-grid {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 8px 24px rgba(16, 24, 40, .04);
}

.stats-grid div {
    padding: 30px;
    text-align: center;
    border-right: 1px solid #e5e7eb;
}

.stats-grid div:last-child {
    border-right: 0;
}

.stats-grid h2 {
    color: #ff572f;
    font-size: 36px;
    font-weight: 950;
}

.stats-grid p {
    color: #667085;
    font-weight: 800;
    margin: 0;
}

/* QUICK SEARCH */

.quick-search-section {
    padding: 16px 0 50px;
}

.quick-search-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 190px;
    gap: 18px;
    box-shadow: 0 8px 24px rgba(16,24,40,.04);
}

.quick-search-card label {
    font-weight: 900;
    margin-bottom: 8px;
}

.quick-search-card input,
.quick-search-card select {
    width: 100%;
    height: 50px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 0 14px;
}

.quick-search-card button {
    height: 50px;
    align-self: end;
    border: 0;
    background: #ff572f;
    color: #ffffff;
    border-radius: 12px;
    font-weight: 900;
}

/* COMMON SECTIONS */

.section-padding {
    padding: 76px 0;
}

.section-title {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px;
}

.section-title span {
    color: #ff572f;
    font-weight: 950;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 950;
    margin: 10px 0;
}

.section-title p {
    color: #667085;
    font-size: 17px;
}

.product-grid,
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.public-card,
.why-grid div {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(16,24,40,.04);
    transition: .25s ease;
}

.public-card:hover,
.why-grid div:hover,
.destination-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(16,24,40,.1);
}

.public-card i,
.why-grid i {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: #fff4ef;
    color: #ff572f;
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.public-card h3,
.why-grid h4 {
    font-weight: 950;
}

.public-card p,
.why-grid p {
    color: #667085;
}

/* WHY */

.why-section {
    background: #ffffff;
}

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

/* DESTINATIONS */

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.destination-card {
    position: relative;
    height: 260px;
    border-radius: 24px;
    overflow: hidden;
    transition: .25s ease;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
}

.destination-card div {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    color: #ffffff;
}

.destination-card h3 {
    font-size: 28px;
    font-weight: 950;
}

/* PROCESS */

.process-section {
    background: #ffffff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.process-grid div {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 22px;
    padding: 26px;
}

.process-grid span {
    color: #ff572f;
    font-size: 28px;
    font-weight: 950;
}

.process-grid h4 {
    font-weight: 950;
    margin-top: 12px;
}

.process-grid p {
    color: #667085;
}

/* CTA */

.cta-section {
    padding: 60px 0 80px;
}

.cta-card {
    background: linear-gradient(135deg, #ff572f, #ff7b55);
    border-radius: 28px;
    padding: 58px;
    color: #ffffff;
    text-align: center;
}

.cta-card h2 {
    font-size: 42px;
    font-weight: 950;
}

.cta-card p {
    font-size: 18px;
    opacity: .92;
}

.cta-card a {
    margin-top: 24px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #ff572f;
    border-radius: 14px;
    padding: 0 30px;
    font-weight: 950;
}

/* FOOTER */

.public-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 64px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 34px;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 18px;
    background: #ffffff;
    border-radius: 10px;
    padding: 6px;
}

.public-footer h4 {
    color: #ffffff;
    font-weight: 900;
    margin-bottom: 18px;
}

.public-footer a,
.public-footer p {
    display: block;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.footer-bottom {
    border-top: 1px solid #334155;
    margin-top: 34px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between;
}

/* RESPONSIVE */

@media(max-width: 1100px) {
    .hero-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .why-grid,
    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .quick-search-card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .container-fluid {
        padding-left: 18px;
        padding-right: 18px;
    }

    .public-menu,
    .public-actions {
        display: none;
    }

    .public-menu.show {
        display: grid;
        position: absolute;
        top: 86px;
        left: 18px;
        right: 18px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-radius: 18px;
        padding: 20px;
        box-shadow: 0 18px 45px rgba(15,23,42,.16);
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-buttons,
    .footer-bottom {
        display: block;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
        margin-bottom: 12px;
    }

    .hero-visual {
        min-height: auto;
    }

    .floating-card {
        position: static;
        margin-top: 14px;
    }

    .stats-grid,
    .product-grid,
    .why-grid,
    .destination-grid,
    .process-grid,
    .quick-search-card {
        grid-template-columns: 1fr;
    }

    .stats-grid div {
        border-right: 0;
        border-bottom: 1px solid #e5e7eb;
    }

    .section-title h2,
    .cta-card h2 {
        font-size: 32px;
    }

    .cta-card {
        padding: 36px 20px;
    }
}

/* PREMIUM LOGIN MODAL */

.login-modal-dialog {
    max-width: 920px;
}

.login-glass-modal {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(22px);
    box-shadow: 0 35px 90px rgba(15, 23, 42, 0.25);
    position: relative;
}

.login-close-btn {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    z-index: 5;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.login-modal-left {
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.35), transparent 35%),
        linear-gradient(135deg, #ff572f, #ff7b55);
    color: #ffffff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-modal-logo {
    width: 155px;
    background: #ffffff;
    border-radius: 14px;
    padding: 8px;
    margin-bottom: 36px;
}

.login-modal-left h2 {
    font-size: 38px;
    font-weight: 950;
    margin-bottom: 14px;
}

.login-modal-left p {
    font-size: 17px;
    opacity: 0.92;
    line-height: 1.7;
}

.login-benefits {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.login-benefits span {
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 12px;
    padding: 13px 16px;
    font-weight: 900;
}

.login-benefits i {
    margin-right: 10px;
}

.login-modal-right {
    padding: 48px;
    background: rgba(255,255,255,.92);
}

.login-badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #fff4ef;
    color: #ff572f;
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 900;
    margin-bottom: 20px;
}

.login-modal-right h3 {
    font-size: 28px;
    font-weight: 950;
    margin-bottom: 26px;
}

.login-form-group {
    margin-bottom: 18px;
}

.login-form-group label {
    font-size: 13px;
    font-weight: 900;
    color: #344054;
    margin-bottom: 8px;
}

.login-input {
    height: 52px;
    border: 1px solid #d0d5dd;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    background: #ffffff;
}

.login-input i {
    color: #ff572f;
}

.login-input input {
    border: 0;
    outline: 0;
    width: 100%;
    background: transparent;
    font-weight: 700;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0 22px;
    font-size: 14px;
}

.login-options label {
    color: #344054;
    font-weight: 700;
}

.login-options input {
    accent-color: #ff572f;
    margin-right: 6px;
}

.login-options a {
    color: #ff572f;
    font-weight: 900;
}

.login-submit-btn {
    width: 100%;
    height: 54px;
    border: 0;
    border-radius: 14px;
    background: #ff572f;
    color: #ffffff;
    font-weight: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .25s ease;
}

.login-submit-btn:hover {
    background: #e84a25;
    transform: translateY(-2px);
}

.login-divider {
    text-align: center;
    margin: 24px 0 16px;
    position: relative;
}

.login-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e5e7eb;
}

.login-divider span {
    position: relative;
    background: #ffffff;
    padding: 0 14px;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
}

.register-link-btn {
    width: 100%;
    height: 52px;
    border: 1px solid #ff572f;
    border-radius: 14px;
    color: #ff572f;
    background: #ffffff;
    display: grid;
    place-items: center;
    font-weight: 950;
}

.register-link-btn:hover {
    background: #fff4ef;
    color: #ff572f;
}

@media(max-width: 768px) {
    .login-modal-dialog {
        max-width: calc(100% - 24px);
    }

    .login-glass-modal {
        grid-template-columns: 1fr;
    }

    .login-modal-left {
        padding: 32px;
    }

    .login-modal-right {
        padding: 32px;
    }

    .login-modal-left h2 {
        font-size: 30px;
    }
}

/* PARTNER REGISTRATION PAGE */

.register-page {
    min-height: calc(100vh - 86px);
    padding: 58px 0;
    background:
        radial-gradient(circle at top right, rgba(255, 87, 47, .14), transparent 32%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.register-layout {
    display: grid;
    grid-template-columns: 440px minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
}

.register-left {
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.35), transparent 35%),
        linear-gradient(135deg, #ff572f, #ff7b55);
    border-radius: 28px;
    padding: 46px;
    color: #ffffff;
    position: sticky;
    top: 110px;
    height: fit-content;
    box-shadow: 0 28px 70px rgba(255,87,47,.24);
}

.register-logo {
    width: 160px;
    background: #ffffff;
    border-radius: 14px;
    padding: 8px;
    margin-bottom: 34px;
}

.register-left h1 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 950;
    margin-bottom: 18px;
}

.register-left p {
    opacity: .92;
    line-height: 1.7;
    font-size: 16px;
}

.register-benefits {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.register-benefits div {
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 13px;
    padding: 14px 16px;
    font-weight: 900;
}

.register-benefits i {
    margin-right: 10px;
}

.register-stat-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.register-stat-box div {
    background: rgba(255,255,255,.16);
    border-radius: 14px;
    padding: 18px;
}

.register-stat-box h3 {
    font-size: 28px;
    font-weight: 950;
    margin-bottom: 4px;
}

.register-stat-box span {
    opacity: .9;
    font-weight: 800;
}

.register-right {
    min-width: 0;
}

.register-card {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    box-shadow: 0 28px 70px rgba(15,23,42,.12);
    padding: 38px;
}

.register-header {
    text-align: center;
    margin-bottom: 28px;
}

.register-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff4ef;
    color: #ff572f;
    border-radius: 999px;
    padding: 9px 15px;
    font-weight: 950;
    margin-bottom: 18px;
}

.register-header h2 {
    font-size: 34px;
    font-weight: 950;
    margin-bottom: 8px;
}

.register-header p {
    color: #667085;
}

.register-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px;
}

.step-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
}

.step-item span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #344054;
    display: grid;
    place-items: center;
    margin: 0 auto 8px;
    font-weight: 950;
}

.step-item p {
    margin: 0;
    font-size: 13px;
    font-weight: 900;
    color: #344054;
}

.step-item.active {
    border-color: #ff572f;
    background: #fff7f3;
}

.step-item.active span {
    background: #ff572f;
    color: #ffffff;
}

.step-item.completed span {
    background: #16a34a;
    color: #ffffff;
}

.register-step-content {
    display: none;
}

.register-step-content.active {
    display: block;
}

.register-step-content h3 {
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 22px;
}

.register-step-content label {
    font-size: 13px;
    color: #344054;
    font-weight: 900;
    margin-bottom: 8px;
}

.register-step-content .form-control {
    height: 52px;
    border: 1px solid #d0d5dd;
    border-radius: 13px;
    font-weight: 700;
}

.register-step-content textarea.form-control {
    min-height: 120px;
    padding-top: 14px;
}

.register-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.register-checkbox-grid label {
    height: 50px;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-weight: 800;
}

.register-checkbox-grid input {
    accent-color: #ff572f;
    margin-right: 8px;
}

.document-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.document-upload-box {
    border: 1px dashed #ff572f;
    background: #fff8f3;
    border-radius: 18px;
    padding: 26px;
    text-align: center;
}

.document-upload-box i {
    color: #ff572f;
    font-size: 42px;
    margin-bottom: 14px;
}

.document-upload-box h4 {
    font-size: 17px;
    font-weight: 950;
}

.document-upload-box p {
    color: #667085;
}

.document-upload-box label {
    background: #ff572f;
    color: #ffffff;
    border-radius: 10px;
    padding: 11px 22px;
    cursor: pointer;
}

.upload-note {
    margin-top: 18px;
    background: #f5f9ff;
    border: 1px solid #cfe0ff;
    color: #2563eb;
    border-radius: 14px;
    padding: 16px;
    font-weight: 800;
}

.approval-info {
    margin-top: 20px;
    background: #e8f8ee;
    border: 1px solid #c7eed4;
    border-radius: 16px;
    padding: 18px;
    display: flex;
    gap: 14px;
}

.approval-info i {
    color: #16a34a;
    font-size: 26px;
}

.approval-info h4 {
    color: #16a34a;
    font-weight: 950;
}

.approval-info p {
    margin: 0;
    color: #344054;
}

.terms-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.terms-check input {
    margin-top: 4px;
    accent-color: #ff572f;
}

.register-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 14px;
}

.register-prev-btn,
.register-next-btn,
.register-submit-btn {
    height: 54px;
    border-radius: 14px;
    padding: 0 28px;
    font-weight: 950;
}

.register-prev-btn {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #d0d5dd;
}

.register-next-btn,
.register-submit-btn {
    background: #ff572f;
    color: #ffffff;
    border: 1px solid #ff572f;
    margin-left: auto;
}

.register-login-text {
    text-align: center;
    margin-top: 24px;
    color: #667085;
    font-weight: 700;
}

.register-login-text a {
    color: #ff572f;
    font-weight: 950;
}

/* RESPONSIVE */

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

    .register-left {
        position: static;
    }
}

@media(max-width: 768px) {
    .register-page {
        padding: 28px 0;
    }

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

    .register-left h1 {
        font-size: 32px;
    }

    .register-header h2 {
        font-size: 28px;
    }

    .register-steps,
    .register-checkbox-grid,
    .document-grid,
    .register-stat-box {
        grid-template-columns: 1fr;
    }

    .register-buttons {
        display: block;
    }

    .register-buttons button {
        width: 100%;
        margin-bottom: 12px;
    }
}