html.site-marketing {
    --bg: #F5F7FA;
    --nav: #FFFFFF;
    --card: #FFFFFF;
    --line: #E3E8EE;
    --blue: #1193D4;
    --blue-dark: #0A6A9A;
    --accent: #0F8A7A;
    --tint: #E8F4FB;
    --muted: #5C6775;
    --text: #1B2430;
    --soft: #FFFFFF;
}

html.site-marketing,
body.site-body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Vazirmatn, Tahoma, "Segoe UI", Arial, sans-serif;
    line-height: 1.7;
}

* {
    box-sizing: border-box;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: var(--nav);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    box-shadow: 0 8px 24px rgba(17, 147, 212, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    direction: ltr;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
}

.brand-badge {
    background: var(--blue);
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding: 6px 14px;
    border-radius: 8px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    min-width: 56px;
    overflow: hidden;
}

.brand-badge.has-logo {
    padding: 4px 8px;
}

.brand-logo-img {
    display: block;
    max-height: 36px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-sub {
    font-size: 14px;
    color: var(--muted);
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

html[dir="rtl"] .nav-menu {
    direction: rtl;
}

html[dir="ltr"] .nav-menu {
    direction: ltr;
}

.nav-link {
    color: var(--text);
    font-size: 14px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--blue-dark);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    direction: ltr;
    position: relative;
}

.site-lang {
    position: relative;
}

.site-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 44px;
    min-width: 44px;
    padding: 6px 8px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    color: var(--text);
}

.site-lang-toggle:hover,
.site-lang-toggle:focus {
    border-color: var(--blue);
    outline: none;
}

.site-lang-flag {
    display: block;
    border-radius: 2px;
}

.site-lang-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 2px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--muted);
    font-size: 0;
    line-height: 0;
}

.site-lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 120;
    margin: 0;
    padding: 8px;
    list-style: none;
    min-width: 180px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(27, 36, 48, 0.12);
}

html[dir="rtl"] .site-lang-menu {
    right: 0;
    left: auto;
}

html[dir="ltr"] .site-lang-menu {
    right: 0;
    left: auto;
}

.site-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 6px 8px;
    border-radius: 6px;
    color: var(--text);
}

.site-lang-item:hover,
.site-lang-item:focus {
    background: var(--tint);
}

.site-lang-menu li.is-active .site-lang-item {
    background: var(--tint);
    font-weight: 600;
}

.nav-btn,
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-btn,
.btn-primary {
    background: var(--blue);
    color: #fff;
}

.nav-btn:hover,
.btn-primary:hover,
.nav-btn:focus,
.btn-primary:focus {
    background: var(--blue-dark);
    color: #fff;
}

.nav-btn-ghost,
.btn-secondary {
    background: var(--soft);
    border: 1px solid var(--line);
    color: var(--blue);
}

.nav-btn-ghost:hover,
.btn-secondary:hover,
.nav-btn-ghost:focus,
.btn-secondary:focus {
    background: var(--tint);
    color: var(--blue-dark);
}

.hamburger {
    display: none;
    background: none;
    border: 1px solid var(--line);
    color: var(--text);
    font-size: 22px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 6px;
    min-height: 44px;
}

.site-hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--tint);
    border-bottom: 1px solid var(--line);
}

.site-hero-track,
.site-hero-slide.is-active {
    position: relative;
}

.site-hero-slide {
    display: none;
}

.site-hero-slide.is-active {
    display: block;
}

.site-hero-hit {
    display: block;
    position: relative;
    width: 100%;
    height: var(--site-hero-height, 420px);
    min-height: 120px;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    background: var(--tint);
}

.site-hero-hit img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: var(--site-hero-fit, cover);
    object-position: center center;
}

.site-hero-copy {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 32px 8vw 48px;
    background: linear-gradient(180deg, rgba(10, 106, 154, 0) 0%, rgba(10, 106, 154, 0.78) 100%);
    color: #fff;
    pointer-events: none;
}

.site-hero-copy h2 {
    margin: 0 0 8px;
    color: var(--blue);
}

.site-hero-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue-dark);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-hero-nav::before,
.mockup-nav::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 auto;
    border-style: solid;
    border-color: currentColor;
    border-width: 0 2px 2px 0;
}

.site-hero-prev::before,
.mockup-prev::before {
    transform: rotate(-45deg);
}

.site-hero-next::before,
.mockup-next::before {
    transform: rotate(135deg);
}

.site-hero-prev {
    right: 16px;
}

.site-hero-next {
    left: 16px;
}

.site-hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.site-hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid var(--blue);
    background: transparent;
    cursor: pointer;
}

.site-hero-dot.is-active {
    background: var(--blue);
}

.site-main {
    flex: 1;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 16px 56px;
}

.site-main-full {
    max-width: none;
    padding: 0;
}

.site-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #E8F4FB, #F5F7FA 55%, #FFFFFF);
    border-bottom: 1px solid var(--line);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--tint);
    border: 1px solid var(--blue);
    color: var(--blue-dark);
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text);
    margin: 0 0 16px;
    line-height: 1.4;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 780px;
    margin: 0 0 28px;
}

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

.mockup {
    background: var(--nav);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 18px 50px rgba(17, 147, 212, 0.12);
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.mockup-media {
    padding: 12px;
}

.mockup-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: var(--mockup-height, 400px);
    border-radius: 12px;
    overflow: hidden;
    background: #0b1f2c;
    min-height: 160px;
}

.mockup-slider-track {
    position: absolute;
    inset: 0;
}

.mockup-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.mockup-media-el {
    width: 100%;
    height: 100%;
    object-fit: var(--mockup-fit, cover);
    object-position: center center;
    display: block;
    background: #000;
}

.mockup-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: var(--blue-dark);
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-prev {
    right: 10px;
}

.mockup-next {
    left: 10px;
}

.mockup-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.mockup-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.mockup-dot.is-active {
    background: #fff;
}

.screen {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    color: var(--text);
}

.avatar {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--blue);
    margin-bottom: 14px;
}

.bar {
    height: 12px;
    border-radius: 20px;
    background: var(--line);
    margin: 12px 0;
}

.bar.short {
    width: 58%;
}

.chips {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.chip {
    background: var(--tint);
    color: var(--blue);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 13px;
}

.section {
    padding: 70px 0;
    border-bottom: 1px solid var(--line);
}

.section-head {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 40px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--text);
    text-align: center;
    margin: 0 0 14px;
}

.section-desc {
    font-size: 16px;
    color: var(--muted);
    text-align: center;
    margin: 0 auto;
}

.features-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.value-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: var(--blue);
}

.value-card h3 {
    margin: 8px 0;
    color: var(--text);
    font-size: 16px;
}

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

.value-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--tint);
    color: var(--blue);
    border-radius: 8px;
    font-weight: bold;
}

.highlight {
    background: var(--blue-dark);
    border: 1px solid var(--blue-dark);
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.highlight h2 {
    color: #fff;
    font-size: 24px;
    margin: 12px 0;
}

.highlight p {
    color: #E8F4FB;
    margin: 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
    max-width: 950px;
    margin: 0 auto;
}

.pkg-card {
    background: var(--card);
    border: 2px solid var(--line);
    border-radius: 16px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pkg-featured {
    border-color: var(--blue);
    background: var(--tint);
    box-shadow: 0 8px 30px rgba(17, 147, 212, 0.15);
}

.pkg-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 16px;
    border-radius: 12px;
}

.pkg-title {
    font-size: 22px;
    color: var(--text);
    text-align: center;
    margin: 8px 0;
}

.pkg-media {
    margin: 4px 0 16px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04);
    aspect-ratio: 16 / 10;
}

.pkg-media img,
.pkg-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pkg-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--blue-dark);
    text-align: center;
    margin: 0 0 20px;
}

.pkg-price small {
    font-size: 14px;
    color: var(--muted);
    font-weight: normal;
}

.pkg-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    flex-grow: 1;
}

.pkg-item {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.pkg-item:before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

.pkg-card .btn-primary,
.pkg-card .btn-secondary {
    width: 100%;
}

.faq {
    max-width: 800px;
    margin: 0 auto;
}

.faq details {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.faq summary {
    font-weight: 800;
    cursor: pointer;
    color: var(--text);
}

.faq p {
    color: var(--muted);
    margin: 10px 0 0;
}

.contact-section {
    background: var(--tint);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.contact-box {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px;
}

.contact-box h3 {
    color: var(--text);
    margin: 0 0 12px;
}

.contact-box p,
.contact-box a {
    color: var(--muted);
    display: block;
}

.tel-link {
    color: var(--blue);
    direction: ltr;
    text-align: start;
    margin: 7px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.tel-link:hover,
.tel-link:focus {
    color: var(--blue-dark);
}

.footer {
    background: var(--nav);
    border-top: 1px solid var(--line);
    padding: 50px 0 30px;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

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

.footer-info h4,
.footer-contacts h4 {
    color: var(--text);
    margin: 0 0 14px;
}

.footer-address,
.footer-note {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-social-link {
    color: var(--blue);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--card);
    text-decoration: none;
}

.footer-social-link:hover,
.footer-social-link:focus {
    color: var(--blue-dark);
    border-color: var(--blue);
}

.footer-social-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    flex: 0 0 auto;
}

.footer-enamad {
    margin: 16px 0 0;
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}

.site-page-title {
    margin: 0 0 16px;
    color: var(--text);
    text-align: start;
}

.site-page-body {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    color: var(--text);
    text-align: start;
}

.site-page-body img,
.site-page-body video {
    max-width: 100%;
    height: auto;
}

.site-job-wrap {
    padding-top: 24px;
    padding-bottom: 40px;
}

.site-job-form .site-job-section {
    margin: 20px 0 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    color: var(--text);
    text-align: start;
}

.site-job-form .site-job-section:first-of-type {
    margin-top: 0;
}

.site-job-grid {
    display: grid;
    gap: 12px 16px;
    margin-bottom: 8px;
}

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

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

.site-job-field {
    min-width: 0;
}

.site-job-field-full {
    margin-bottom: 12px;
}

.site-job-form .control-label {
    display: block;
    width: 100%;
    margin-bottom: 6px;
    text-align: start;
    float: none;
    font-weight: 600;
    color: var(--text);
}

.site-job-form .form-control {
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
    box-shadow: none;
    box-sizing: border-box;
}

.site-job-form textarea.form-control {
    min-height: 88px;
    resize: vertical;
}

.site-job-form .site-job-check {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.site-job-form .site-job-check-label {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-weight: normal;
    cursor: pointer;
}

.site-job-form .site-job-file-hint {
    margin: 0;
    min-height: 42px;
    text-align: start;
    padding: 10px 12px;
}

.site-job-captcha {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.site-job-captcha img {
    height: 42px;
    width: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.site-job-captcha .form-control {
    flex: 1 1 160px;
    max-width: 240px;
}

.site-job-footer-row .site-job-actions {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 0;
    text-align: start;
}

.site-job-actions .btn {
    min-height: 48px;
    min-width: 160px;
    border-radius: 10px;
    width: 100%;
    max-width: 240px;
}

@media (max-width: 900px) {
    .site-job-grid-3,
    .site-job-grid-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-job-grid-3,
    .site-job-grid-2 {
        grid-template-columns: 1fr;
    }

    .site-job-actions .btn {
        max-width: none;
    }
}

.site-body .form-control,
.site-body input,
.site-body select,
.site-body textarea {
    background: var(--soft);
    color: var(--text);
    border: 1px solid var(--line);
}

.site-body .btn-success,
.site-body .btn-primary {
    background: var(--blue);
    border-color: var(--blue-dark);
    color: #fff;
}

@media (max-width: 991px) {
    .hamburger {
        display: block;
        order: 2;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .brand-logo {
        order: 1;
    }

    .nav-actions {
        order: 3;
        margin-right: auto;
    }

    .nav-menu {
        display: none;
        order: 4;
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        background: var(--nav);
        padding: 12px 0 8px;
        gap: 8px;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 8px 4px;
    }

    .hero-grid,
    .highlight,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 48px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions a {
        width: 100%;
    }

    .nav-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .highlight {
        padding: 24px;
    }
}

:focus-visible {
    outline: 3px solid var(--blue);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    .value-card {
        transition: none;
    }

    .value-card:hover {
        transform: none;
    }
}

.order-register-wrap {
    max-width: 760px;
}

.order-register-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 28px 24px 32px;
    box-shadow: 0 8px 28px rgba(17, 40, 64, 0.06);
}

.order-register-title,
.order-register-package {
    text-align: start;
    margin-top: 0;
}

.order-register-package {
    margin-bottom: 20px;
}

.order-register-form .site-job-grid {
    gap: 16px 20px;
}

.order-register-form .field-validation-error,
.order-register-form .text-danger,
.order-register-form span.field-validation-error {
    display: block;
    margin-top: 6px;
    color: #c62828;
    font-size: 13px;
    font-weight: 600;
}

.order-register-form .input-validation-error,
.order-register-form input.input-validation-error {
    border-color: #e53935 !important;
    background: #fff5f5;
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.12);
}

.order-alert {
    margin: 0 0 16px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff5f5;
    border: 1px solid #ffcdd2;
    color: #c62828;
    font-weight: 600;
    text-align: start;
}

.order-inviter-label-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.order-inviter-label-row .control-label {
    margin-bottom: 0;
}

.order-inviter-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-dark);
}

.order-inviter-name.is-error {
    color: #c62828;
}

.order-inviter-name.is-ok {
    color: #2e7d32;
}

.order-regs-row {
    margin-top: 18px;
}

.order-regs-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 600;
    cursor: pointer;
}

.order-regs-label input {
    margin-top: 3px;
}

.order-register-actions {
    margin-top: 22px;
    justify-content: flex-start;
}

@media (max-width: 640px) {
    .order-register-card {
        padding: 20px 16px 24px;
    }

    .order-register-form .site-job-grid-2 {
        grid-template-columns: 1fr;
    }
}

.order-regs-row {
    margin-top: 18px;
}

.order-regs-link {
    font-weight: 700;
    color: var(--blue-dark);
    text-decoration: underline;
    margin-right: 6px;
}

.order-regs-link:hover,
.order-regs-link:focus {
    color: var(--blue);
}

.cq-reg-modal {
    display: none;
    position: fixed;
    z-index: 10050;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 36, 48, 0.45);
    padding: 16px 12px;
    overflow: auto;
}

.cq-reg-modal.is-open {
    display: block !important;
}

.cq-reg-dialog {
    max-width: 720px;
    margin: 24px auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 16px 20px;
}

.cq-reg-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin: 0 0 12px;
}

.cq-reg-head .cq-title {
    flex: 1 1 auto;
    margin: 0;
    text-align: start;
    font-size: 18px;
}

.cq-reg-close {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.cq-reg-dialog .cq-text {
    max-height: min(55vh, 420px);
    overflow: auto;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.7;
    text-align: start;
}

body.cq-reg-lock {
    overflow: hidden;
}

.order-register-form > .site-job-field {
    margin-bottom: 16px;
}

.order-shortlink-status {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 700;
    min-height: 1.2em;
}

.order-shortlink-status.is-ok {
    color: #2e7d32;
}

.order-shortlink-status.is-error {
    color: #c62828;
}

.order-info {
    margin: 0 0 16px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #eef8ff;
    border: 1px solid #c5e4f7;
    color: var(--blue-dark);
    font-weight: 600;
    text-align: start;
}

.order-local-otp {
    margin: 0 0 16px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff8e1;
    border: 1px solid #ffe082;
    color: #6d4c00;
    font-weight: 700;
    text-align: start;
}

.order-otp-input {
    letter-spacing: 0.2em;
    font-size: 20px;
    text-align: center;
    font-weight: 700;
}

.order-otp-resend {
    margin-top: 14px;
}

.order-otp-back {
    margin: 12px 0 0;
    text-align: center;
    font-size: 14px;
    color: #5a6570;
}

.order-otp-back a {
    color: #0A6A9A;
    text-decoration: none;
    font-weight: 600;
}

.order-otp-back a:hover,
.order-otp-back a:focus {
    text-decoration: underline;
}

.order-otp-back-sep {
    margin: 0 8px;
    color: #c5ced8;
}

.order-otp-resend .btn-secondary {
    width: 100%;
}

.order-otp-resend .btn-secondary:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.order-otp-cooldown {
    margin: 10px 0 0;
    font-size: 14px;
    color: #5a6570;
    text-align: center;
}
