body.client-main-theme {
    font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
    color: #2f3d4a;
    background: #f3f7fb;
}

.client-page {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 16px 20px;
}

.client-header {
    background: #fff;
    border: 1px solid #dbeaf5;
    border-radius: 14px;
    padding: 18px 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 80px;
    height: auto;
}

.client-logo {
    flex: 0 0 auto;
}

.client-logo img {
    max-height: 48px;
    width: auto;
    display: block;
    position: relative;
    top: 0;
}

.client-header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex: 1 1 auto;
    min-width: 0;
}

.client-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
}

.client-nav-account {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
    margin-left: auto;
}

.client-nav a,
.client-nav-login {
    text-decoration: none;
    font-weight: 600;
    color: #64717c;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 12px;
    border-radius: 999px;
    transition: 500ms ease;
    white-space: nowrap;
}

.client-nav a:hover,
.client-nav-login:hover {
    color: #fff;
    background: linear-gradient(180deg, #6ecaf3 0%, #1f95d6 100%);
    box-shadow: 0 4px 10px rgba(31, 149, 214, 0.28);
    transition: all 500ms ease;
}

.client-nav a.active {
    color: #fff;
    background: linear-gradient(180deg, #6ecaf3 0%, #1f95d6 100%);
    box-shadow: 0 4px 10px rgba(31, 149, 214, 0.28);
}

.client-nav-account-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #d7e0e7;
    border-radius: 999px;
    background: #fff;
    color: #1f95d6;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: 250ms ease;
}

.client-nav-account-btn::after {
    display: none;
}

.client-nav-account-btn:hover,
.client-nav-account-btn.is-active,
.client-nav-account-btn.show {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(180deg, #6ecaf3 0%, #1f95d6 100%);
    box-shadow: 0 4px 10px rgba(31, 149, 214, 0.28);
}

.client-nav-account-menu {
    min-width: 240px;
    padding: 8px 0;
    border: 1px solid #dbeaf5;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(31, 79, 107, 0.12);
    margin-top: 8px !important;
}

.client-nav-account-meta {
    border-bottom: 1px solid #e6eef5;
    margin-bottom: 4px;
}

.client-nav-account-name {
    font-size: 14px;
    font-weight: 700;
    color: #043d6e;
    line-height: 1.3;
}

.client-nav-account-email {
    margin-top: 2px;
    font-size: 12px;
    color: #64717c;
    word-break: break-all;
}

.client-nav-account-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 14px;
    color: #3f5f74;
}

.client-nav-account-menu .dropdown-item i {
    font-size: 15px;
    color: #1f95d6;
}

.client-nav-account-menu .dropdown-item:hover,
.client-nav-account-menu .dropdown-item:focus,
.client-nav-account-menu .dropdown-item.active {
    background: #eef6fd;
    color: #043d6e;
}

.client-nav-account-balance {
    justify-content: space-between;
    font-weight: 600;
}

.client-nav-account-balance strong {
    color: #043d6e;
    font-weight: 800;
}

.client-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 340px;
    gap: 16px;
}

.client-content-card {
    background: #fff;
    border: 1px solid #dbeaf5;
    border-radius: 14px;
    padding: 50px 40px;
}

.client-content-card h1 {
    margin: 0 0 12px;
    font-size: 30px;
    color: #34c3ff;
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 25px;
}
.client-content-card h2 {
    margin: 18px 0 10px;
    font-size: 21px;
    color: #34c3ff;
}

.client-content-card p {
    margin: 0 0 12px;
    line-height: 1.55;
    color: #64717c;
}

.client-gallery {
    margin: 14px 0 8px;
}

#clientGalleryModal .modal-content {
    border: 1px solid #dbeaf5;
    border-radius: 12px;
}

.client-gallery-modal-body {
    position: relative;
}

.client-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(31, 79, 107, 0.82);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    transition: background 0.18s ease, opacity 0.18s ease;
}

.client-gallery-nav:hover:not(:disabled) {
    background: rgba(31, 79, 107, 0.94);
}

.client-gallery-nav:disabled {
    opacity: 0.45;
    cursor: default;
}

.client-gallery-nav-prev {
    left: 12px;
}

.client-gallery-nav-next {
    right: 12px;
}

.client-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 20px;
    margin-top: 14px;
}

.client-features ul {
    margin: 0;
    padding-left: 18px;
}

.client-features li {
    margin-bottom: 8px;
}

.client-home-features {
    margin-top: 14px;
}

.client-home-ai-highlight {
    position: relative;
    margin-top: 20px;
    padding: 18px 18px 16px;
    border: 1px solid #b8d8ee;
    border-radius: 14px;
    background: linear-gradient(135deg, #f3f9ff 0%, #eef6fd 45%, #f8f3ff 100%);
    box-shadow: 0 12px 28px rgba(31, 149, 214, 0.1);
    overflow: hidden;
}

.client-home-ai-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #1f95d6 0%, #7b61c9 100%);
}

.client-home-ai-highlight-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #7b61c9;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.client-home-ai-highlight-main {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.client-home-ai-highlight-copy h2 {
    margin: 0 0 8px;
    font-size: 24px;
    color: #1f4f6b;
}

.client-home-ai-highlight-lead {
    margin: 0 0 10px;
    color: #3f5f74;
    font-size: 15px;
    line-height: 1.5;
}

.client-home-ai-highlight-list {
    margin: 0 0 14px;
    padding-left: 18px;
    color: #3f5f74;
    font-size: 14px;
}

.client-home-ai-highlight-list li {
    margin-bottom: 6px;
}

.client-home-ai-highlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.client-home-ai-highlight-link {
    padding-left: 0;
    padding-right: 0;
    font-weight: 600;
    text-decoration: none;
}

.client-home-pricing {
    margin-top: 20px;
    padding: 18px;
    border: 1px solid #dbeaf5;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fbfe 0%, #f1f7fc 100%);
}

.client-home-pricing-head h2 {
    margin: 0 0 6px;
    font-size: 21px;
    color: #1f4f6b;
}

.client-home-pricing-head p {
    margin: 0 0 16px;
    color: #5a7386;
    font-size: 14px;
}

.client-home-pricing-foot {
    margin-top: 14px;
    text-align: center;
}

.client-home-pricing-foot a {
    font-weight: 600;
    color: #1f95d6;
    text-decoration: none;
}

.client-home-pricing-foot a:hover {
    text-decoration: underline;
}

.client-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.client-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border: 1px solid #dbeaf5;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(31, 79, 107, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.client-pricing-card:hover {
    transform: translateY(-2px);
    border-color: #b8d8ee;
    box-shadow: 0 12px 24px rgba(31, 149, 214, 0.12);
}

.client-pricing-card--featured {
    border-color: #7ec0e8;
    box-shadow: 0 12px 28px rgba(31, 149, 214, 0.16);
}

.client-pricing-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 8px;
    border-radius: 999px;
    background: #1f95d6;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.client-pricing-card-title {
    margin: 0;
    font-size: 18px;
    color: #1f4f6b;
}

.client-pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.client-pricing-card-amount {
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #1f4f6b;
}

.client-pricing-card-period {
    font-size: 14px;
    color: #5a7386;
    font-weight: 600;
}

.client-pricing-card-features {
    margin: 0;
    padding-left: 18px;
    flex: 1 1 auto;
    color: #3f5f74;
    font-size: 14px;
}

.client-pricing-card-features li {
    margin-bottom: 6px;
}

.client-prices-lead {
    color: #5a7386;
    margin-bottom: 20px;
}

.client-prices-section {
    margin-top: 28px;
}

.client-prices-section h2 {
    margin: 0 0 8px;
    font-size: 22px;
    color: #1f4f6b;
}

.client-prices-note {
    margin: 0 0 16px;
    color: #5a7386;
}

.client-prices-trial-card {
    padding: 16px 18px;
    border: 1px solid #dbeaf5;
    border-radius: 12px;
    background: #fbfdff;
    color: #3f5f74;
}

.client-pricing-packages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.client-pricing-packages--single {
    grid-template-columns: minmax(0, 420px);
}

.client-pricing-package-card {
    padding: 16px;
    border: 1px solid #dbeaf5;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(31, 79, 107, 0.05);
}

.client-pricing-package-card h3 {
    margin: 0 0 10px;
    font-size: 17px;
    color: #1f4f6b;
}

.client-pricing-package-base {
    margin: 0 0 12px;
    font-size: 14px;
    color: #5a7386;
}

.client-prices-actions {
    margin-top: 18px;
}

.client-home-requirements {
    margin-top: 22px;
    padding: 18px;
    border: 1px solid #dbeaf5;
    border-radius: 14px;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f9fd 100%);
}

.client-home-requirements-head h2 {
    margin: 0 0 6px;
    font-size: 21px;
    color: #1f4f6b;
}

.client-home-requirements-head p {
    margin: 0 0 16px;
    color: #5a7386;
    font-size: 14px;
}

.client-req-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.client-req-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    border: 1px solid #dbeaf5;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(31, 79, 107, 0.06);
}

.client-req-card-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f95d6 0%, #3a7ca5 100%);
    color: #fff;
    font-size: 22px;
    margin-bottom: 4px;
}

.client-req-card-icon--dotnet {
    background: linear-gradient(135deg, #6b4fa0 0%, #8b6bb8 100%);
}

.client-req-card h3 {
    margin: 0;
    font-size: 16px;
    color: #1f4f6b;
}

.client-req-card-value {
    margin: 0;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
    color: #1f4f6b;
}

.client-req-card-note {
    margin: 0;
    font-size: 13px;
    color: #5a7386;
}

.client-req-card-list {
    margin: 4px 0 0;
    padding-left: 18px;
    font-size: 13px;
    color: #3f5f74;
}

.client-req-card-list li {
    margin-bottom: 4px;
}

.client-home-article h3,
.client-home-article h4,
.client-home-article h5,
.client-home-article h6 {
    color: #34c3ff;
    margin-top: 1.1rem;
}

.client-home-article h3 {
    font-size: 21px;
}

.client-home-article h4 {
    font-size: 18px;
}

.client-home-article h5 {
    font-size: 16px;
}

.client-article-text h1,
.client-article-text h2,
.client-article-text h3,
.client-article-text h4,
.client-article-text h5,
.client-article-text h6 {
    color: #34c3ff;
    margin-top: 1rem;
}

.client-article-text p,
.client-article-text li {
    line-height: 1.6;
    color: #64717c;
}

.client-article-text code {
    padding: 0.12rem 0.35rem;
    border-radius: 6px;
    background: #eef6fd;
    color: #1f4f6b;
    font-size: 0.95em;
}

.client-article-text pre {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid #d7e8f5;
    border-radius: 10px;
    background: #f8fcff;
    overflow-x: auto;
}

.client-article-text pre code {
    display: block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #1f4f6b;
    font-size: 0.95rem;
    line-height: 1.6;
    white-space: pre;
}

.client-help-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 14px;
}

.client-help-toc a {
    padding: 6px 10px;
    border: 1px solid #d7e8f5;
    border-radius: 999px;
    text-decoration: none;
    color: #2d617e;
    background: #f6fbff;
    font-weight: 600;
    font-size: 13px;
}

.client-help-toc a:hover {
    color: #1f95d6;
}

.client-download-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.client-download-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #cfe3f3;
    border-radius: 12px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.client-download-card:hover {
    transform: translateY(-2px);
    border-color: #9fc8e6;
    box-shadow: 0 10px 24px rgba(31, 79, 107, 0.14);
    color: inherit;
}

.client-download-card--primary {
    grid-column: 1 / -1;
    border-color: #7eb8e0;
    background: linear-gradient(135deg, #f3f9ff 0%, #e8f4fd 100%);
}

.client-download-card--primary .client-download-card-icon {
    background: #1f95d6;
    color: #fff;
}

.client-download-card--primary .client-download-card-action {
    background: #1f95d6;
    color: #fff;
}

.client-download-in-app-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding: 12px 14px;
    border: 1px solid #dbeaf5;
    border-radius: 12px;
    background: #f8fbfe;
}

.client-download-in-app-note-icon {
    flex: 0 0 auto;
    margin-top: 1px;
    color: #1f95d6;
    font-size: 18px;
    line-height: 1;
}

.client-download-in-app-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #3f5f74;
}

.client-download-card-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef6fd;
    color: #2d617e;
    font-size: 1.25rem;
}

.client-download-card-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-download-card-title {
    font-weight: 700;
    color: #1f4f6b;
    line-height: 1.3;
}

.client-download-card-meta {
    font-size: 13px;
    color: #5a7386;
    line-height: 1.35;
}

.client-download-card-action {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef6fd;
    color: #1f95d6;
    font-size: 1rem;
    transition: background 0.18s ease, color 0.18s ease;
}

.client-download-card:hover .client-download-card-action {
    background: #1f95d6;
    color: #fff;
}

.client-download-card--primary:hover .client-download-card-action {
    background: #167eb8;
}

.client-download-hero {
    margin-bottom: 14px;
}

.client-download-version {
    display: inline-block;
    margin: 0;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef6fd;
    color: #2d617e;
    font-weight: 600;
    font-size: 13px;
}

.client-download-section {
    border: 1px solid #dbeaf5;
    border-radius: 12px;
    background: #fbfdff;
    padding: 14px;
    margin-bottom: 14px;
}

.client-download-notes {
    margin-top: 12px;
    padding: 10px 12px;
    border-left: 3px solid #9fc8e6;
    background: #f3f9fe;
}

.client-download-ol {
    margin: 0;
    padding-left: 20px;
}

.client-download-ol li {
    margin-bottom: 8px;
}

.client-features-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.client-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border: 1px solid #dbeaf5;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.client-feature-card--with-shot {
    grid-column: 1 / -1;
    align-items: flex-start;
}

.client-feature-card:hover {
    transform: translateY(-2px);
    border-color: #b9d9ef;
    box-shadow: 0 8px 20px rgba(31, 79, 107, 0.12);
}

.client-feature-card-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef6fd;
    color: #1f95d6;
    font-size: 1.15rem;
}

.client-feature-card-body {
    flex: 1 1 auto;
    min-width: 0;
}

.client-feature-card-text {
    margin: 0;
    line-height: 1.5;
    color: #2f3d4a;
    font-size: 14px;
}

.client-feature-card-shots {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.client-feature-shot {
    display: block;
    flex: 1 1 280px;
    max-width: 100%;
    border: 1px solid #d7e8f5;
    border-radius: 10px;
    overflow: hidden;
    background: #f8fcff;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.client-feature-shot:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 79, 107, 0.14);
}

.client-feature-shot img {
    width: 100%;
    height: auto;
    display: block;
}

.client-sitemap-list {
    margin: 0;
    padding-left: 20px;
}

.client-sitemap-list li {
    margin-bottom: 10px;
}

.client-sitemap-list a {
    color: #2d617e;
    text-decoration: none;
    font-weight: 600;
}

.client-sitemap-list a:hover {
    color: #1f95d6;
}

.client-reviews-list {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.client-review-item {
    border: 1px solid #dbeaf5;
    border-radius: 12px;
    background: #fbfdff;
    padding: 14px;
}

.client-review-question {
    margin: 0 0 10px;
    font-weight: 600;
    color: #1f4f6b;
}

.client-review-answer {
    margin: 0;
    color: #2f3d4a;
    line-height: 1.55;
}

.client-review-form-wrap {
    border: 1px solid #dbeaf5;
    border-radius: 12px;
    background: #f8fcff;
    padding: 16px;
}

.client-review-form-wrap h2 {
    margin-top: 0;
    font-size: 21px;
    color: #1f4f6b;
}

.client-review-policy {
    font-size: 14px;
    color: #4a6275;
}

.client-demo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.client-demo-card {
    border: 1px solid #d7e8f5;
    border-radius: 12px;
    background: #f8fcff;
    padding: 14px;
}

.client-demo-card h2 {
    margin-top: 0;
}

.client-sidebar {
    position: sticky;
    top: 14px;
    height: fit-content;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 55%, #eef6fd 100%);
    border: 1px solid #cfe3f3;
    border-radius: 16px;
    padding: 18px 16px 16px;
    box-shadow: 0 10px 28px rgba(31, 79, 107, 0.08);
}

.client-sidebar-title {
    margin: 0;
    color: #1f4f6b;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.client-sidebar-title span {
    display: block;
    padding-left: 28px;
    margin-top: 4px;
    color: #2d617e;
    font-size: 16px;
    font-weight: 600;
}

.client-sidebar h3 {
    margin: 0 0 10px;
    color: #1f4f6b;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.client-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.client-footer {
    margin-top: 16px;
    padding: 14px 18px;
    border: 1px solid #dbeaf5;
    border-radius: 14px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #64717c;
}

.client-footer a {
    color: #64717c;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    margin: 0 7px;
}

.client-footer a:hover {
    color: #043d6e;
}

.client-app-page {
    max-width: 1320px;
}

.client-app-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 10px;
}

.client-app-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 10px;
}

.client-app-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.client-app-header-link {
    color: #365b73;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
}

.client-app-header-link:hover,
.client-app-header-link.active {
    color: #1f95d6;
    background: #eef6fd;
}

.client-app-notify-badge {
    position: absolute;
    top: -0.45rem;
    right: -0.55rem;
    font-size: 0.62rem;
    line-height: 1;
    color: #d63347;
    font-weight: 700;
}

.client-app-navbar {
    background: transparent;
    border-top: 1px solid #e8f1f8;
    padding-top: 8px;
}

.client-app-navbar .navbar-toggler {
    border-color: #dbeaf5;
    box-shadow: none;
}

.client-app-navbar .navbar-nav .nav-link {
    color: #365b73;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
}

.client-app-navbar .navbar-nav .nav-link:hover,
.client-app-navbar .navbar-nav .nav-link.active,
.client-app-navbar .navbar-nav .show > .nav-link {
    color: #1f95d6;
    background: #eef6fd;
}

.client-app-navbar .dropdown-menu {
    border: 1px solid #dbeaf5;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(31, 79, 107, 0.12);
}

.client-app-main {
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .client-layout {
        grid-template-columns: 1fr;
    }

    .client-sidebar {
        position: static;
    }
}

@media (max-width: 1100px) {
    .client-header {
        padding: 14px 16px;
        gap: 12px;
    }

    .client-nav a,
    .client-nav-login {
        font-size: 13px;
        padding: 8px 8px;
    }
}

@media (max-width: 720px) {
    .client-app-header-row {
        flex-wrap: wrap;
    }

    .client-header {
        flex-direction: column;
        align-items: stretch;
    }

    .client-header-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .client-nav {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .client-nav-account {
        margin-left: 0;
        justify-content: flex-start;
        padding-top: 4px;
        border-top: 1px solid #e6eef5;
    }

    .client-features {
        grid-template-columns: 1fr;
    }

    .client-features-cards {
        grid-template-columns: 1fr;
    }

    .client-demo-grid {
        grid-template-columns: 1fr;
    }

    .client-download-cards {
        grid-template-columns: 1fr;
    }

    .client-pricing-cards,
    .client-pricing-packages,
    .client-req-cards {
        grid-template-columns: 1fr;
    }

    .client-home-ai-highlight-main {
        flex-direction: column;
    }
}

.finance-method-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 480px;
}

.finance-method-grid-single {
    grid-template-columns: minmax(0, 1fr);
    max-width: 230px;
}

.finance-method-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    min-height: 148px;
    padding: 22px 16px 18px;
    border: 1px solid #dbeaf5;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(31, 79, 107, 0.06);
    text-align: center;
    cursor: pointer;
    user-select: none;
    transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.finance-method-card:hover {
    transform: translateY(-2px);
    border-color: #b8d8ee;
    box-shadow: 0 12px 24px rgba(31, 149, 214, 0.12);
}

.finance-method-card.is-selected {
    border-color: #1f95d6;
    background: linear-gradient(180deg, #f3f9ff 0%, #eef6fd 100%);
    box-shadow: 0 12px 28px rgba(31, 149, 214, 0.16);
}

.finance-method-card--crypto.is-selected {
    border-color: #7b61c9;
    background: linear-gradient(180deg, #f7f4ff 0%, #f3eefe 100%);
    box-shadow: 0 12px 28px rgba(123, 97, 201, 0.16);
}

.finance-method-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.finance-method-check {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #c5d7e4;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    opacity: 0.45;
}

.finance-method-card.is-selected .finance-method-check {
    opacity: 1;
    background: #1f95d6;
}

.finance-method-card--crypto.is-selected .finance-method-check {
    background: #7b61c9;
}

.finance-method-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #eef6fd;
    color: #1f4f6b;
    font-size: 26px;
    line-height: 1;
}

.finance-method-card--paypal .finance-method-icon {
    background: #e3f2fb;
    color: #1f95d6;
}

.finance-method-card--crypto .finance-method-icon {
    background: #efeafb;
    color: #7b61c9;
}

.finance-method-card.is-selected .finance-method-icon {
    color: #fff;
    box-shadow: 0 10px 22px rgba(31, 149, 214, 0.24);
}

.finance-method-card--paypal.is-selected .finance-method-icon {
    background: linear-gradient(135deg, #1f95d6 0%, #167bb3 100%);
}

.finance-method-card--crypto.is-selected .finance-method-icon {
    background: linear-gradient(135deg, #7b61c9 0%, #5d47a8 100%);
    box-shadow: 0 10px 22px rgba(123, 97, 201, 0.24);
}

.finance-method-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #1f4f6b;
}

@media (max-width: 720px) {
    .finance-method-grid,
    .finance-method-grid-single {
        max-width: none;
        grid-template-columns: 1fr 1fr;
    }

    .finance-method-card {
        min-height: 132px;
        padding: 18px 10px 14px;
    }
}
