@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #004A6B;
    --secondary-color: #006B8F;
    --accent-color: #FF0015;
    --accent-color-2: #E53935;
    --background-color: #F7F9FB;
    --text-color: #1F2937;
    --border-color: #D1D5DB;

    --primary-rgb: 0, 74, 107;
    --secondary-rgb: 0, 107, 143;
    --accent-rgb: 255, 0, 21;
    --accent2-rgb: 229, 57, 53;

    --primary-hover: var(--secondary-color);
    --brand-green: var(--primary-color);
    --text-main: var(--text-color);
    --text-muted: #4B5563;
    --bg-light: var(--background-color);
    --card-shadow: 0 6px 10px -6px rgba(31, 41, 55, 0.35), 0 2px 4px -2px rgba(31, 41, 55, 0.15);
    --hover-shadow: 0 14px 24px -16px rgba(31, 41, 55, 0.40), 0 8px 14px -10px rgba(31, 41, 55, 0.20);
    --brand-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --brand-gradient-strong: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --accent-gradient: linear-gradient(135deg, var(--accent-color), var(--accent-color-2));
    --icon-gradient: linear-gradient(135deg, rgba(var(--primary-rgb), .18), rgba(var(--accent-rgb), .14));
    --primary-dark: #00384F;
    --sidebar-bg: var(--primary-dark);
    --sidebar-text: rgba(255,255,255,.90);
    --sidebar-muted: rgba(255,255,255,.68);
    --sidebar-hover: rgba(255,255,255,.10);
    --sidebar-active: rgba(255,255,255,.14);

    --bs-primary: var(--primary-color);
    --bs-primary-rgb: var(--primary-rgb);
    --bs-secondary: var(--secondary-color);
    --bs-secondary-rgb: var(--secondary-rgb);
    --bs-success: var(--secondary-color);
    --bs-success-rgb: var(--secondary-rgb);
    --bs-danger: var(--accent-color);
    --bs-danger-rgb: var(--accent-rgb);
    --bs-link-color: var(--primary-color);
    --bs-link-hover-color: var(--secondary-color);
    --bs-border-color: var(--border-color);
    --bs-body-bg: var(--background-color);
    --bs-body-color: var(--text-color);
    --bs-emphasis-color: var(--text-color);

    --bs-body-font-family: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
    --bs-font-sans-serif: var(--bs-body-font-family);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.6;
}

body {
    font-family: var(--bs-body-font-family);
    color: var(--text-main);
    background-color: var(--background-color);
    line-height: var(--bs-body-line-height);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
}

html, body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Navbar */
.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
    border-bottom: none !important;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
    font-size: 1.25rem;
}
.navbar .nav-link.active {
    position: relative;
}
.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.25rem;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-color);
}

/* Buttons */
.btn {
    font-weight: 500;
    border-radius: 12px;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s;
}

.btn-primary {
    border: 0;
    background: var(--accent-color);
    box-shadow: 0 14px 24px rgba(var(--accent-rgb), .18);
}

.btn-primary:hover {
    background: var(--accent-color-2);
    transform: translateY(-1px);
    box-shadow: 0 18px 28px rgba(var(--accent2-rgb), .20);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--brand-gradient);
    border-color: transparent;
    color: #fff;
}

/* Custom tokens and utilities */
.btn-success { background-color: var(--secondary-color); border-color: var(--secondary-color); }
.btn-success:hover { background-color: var(--primary-color); border-color: var(--primary-color); }
.btn-danger {
    border: 0;
    background: var(--accent-gradient);
    box-shadow: 0 14px 24px rgba(var(--accent-rgb), .16);
}
.btn-danger:hover {
    filter: brightness(1.02);
    transform: translateY(-1px);
}
.btn-danger:active { transform: translateY(0); }
.text-white { color: #fff; }
.bg-white { background: #fff; }
.bg-light { background: var(--background-color); }
.bg-success { background-color: var(--secondary-color) !important; }
.outline-none { outline: none; }
.border-0 { border: 0; }

/* Cards */
.card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
    overflow: hidden;
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(var(--secondary-rgb), 0.28);
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    font-weight: 500;
    padding: 1rem 1.25rem;
}

/* Forms */
.form-control, .form-select {
    border-radius: 6px;
    border: 1px solid var(--border-color);
    padding: 0.6rem 0.75rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(var(--secondary-rgb), 0.22);
}

.progress {
    background: rgba(var(--primary-rgb), 0.08);
}

.progress-bar {
    background: var(--brand-gradient-strong);
}

.spinner-border,
.spinner-grow {
    color: var(--primary-color);
}

.spinner-border {
    border-color: rgba(var(--primary-rgb), 0.18);
    border-right-color: var(--accent-color);
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--brand-gradient-strong);
}

.form-label {
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Badges */
.badge {
    border-radius: 4px;
    padding: 0.4em 0.6em;
    font-weight: 500;
}

/* Nav Tabs Custom */
.custom-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.custom-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    position: relative;
    background: transparent;
}

.custom-tabs .nav-link:hover {
    color: var(--text-main);
    border: none;
}

.custom-tabs .nav-link.active {
    color: var(--primary-color);
    border: none;
    background: transparent;
}

.custom-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Utility spacing and layout classes to emulate Tailwind tokens */
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.gap-3 { gap: 0.75rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.rounded-lg { border-radius: 0.75rem; }
.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.25rem; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,0.08); }
.shadow-lg { box-shadow: 0 20px 25px rgba(0,0,0,0.10); }
.overflow-hidden { overflow: hidden; }
.flex { display: flex; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.md-grid-cols-2 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .md-grid-cols-2 { grid-template-columns: 1fr 1fr; } }
.md-grid-cols-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .md-grid-cols-3 { grid-template-columns: 1fr 1fr 1fr; } }
.object-cover { object-fit: cover; }
.w-100, .w-full { width: 100%; }
.h-100, .h-full { height: 100%; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.top-0 { top: 0; }
.start-0 { left: 0; }
.opacity-10 { opacity: 0.10; }
.landing-nav .landing-brand {
    color: #202124 !important;
}

.landing-nav .landing-link {
    color: #202124;
    font-weight: 500;
}

.landing-nav .landing-link:hover {
    color: #202124;
}

.landing-nav .landing-cta {
    border-radius: 8px;
    padding: 0.45rem 0.9rem;
}

.ds-nav {
    box-shadow: none !important;
    border-bottom: 1px solid rgba(32, 33, 36, 0.10);
}

.ds-brand {
    color: #111 !important;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.ds-platform-logo-img {
    display: block;
    height: 34px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.ds-platform-logo-img-sm {
    height: 30px;
    max-width: 180px;
}

.ds-platform-logo-img-sidebar {
    height: 38px;
    max-width: 180px;
}

.ds-platform-logo-img-footer {
    height: 40px;
    max-width: 280px;
}

.ds-platform-logo-img-preview {
    height: 110px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.ds-platform-logo-on-dark {
    background: rgba(255,255,255,.96);
    padding: 4px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.18);
}

.ds-platform-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .65rem;
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(17,24,39,.10);
}

.ds-platform-logo-badge-nav {
    padding: .35rem .55rem;
    border-color: rgba(17,24,39,.10);
    background: rgba(255,255,255,.92);
}

.ds-platform-logo-badge-footer {
    padding: .6rem .9rem;
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.96);
}

.ds-nav-links {
    gap: 0.25rem;
}

.ds-nav-link {
    color: #202124;
    font-weight: 500;
    padding: 0.55rem 0.85rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
}

.ds-nav-link:hover {
    color: #202124;
    background: rgba(var(--primary-rgb), 0.06);
}

.ds-nav-cta {
    border-radius: 10px;
    padding: 0.55rem 1rem;
    font-weight: 600;
}

.ds-btn-fluid {
    width: 100%;
}

@media (min-width: 576px) {
    .ds-btn-fluid {
        width: auto;
    }
}

.ds-nav-cta:hover {
    box-shadow: 0 12px 22px rgba(var(--primary-rgb), 0.18);
}

.lp-hero {
    padding: 3.25rem 0 2rem;
}

.lp-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.02;
    margin-bottom: 1rem;
}

.lp-title-green {
    color: var(--brand-green);
}

.lp-title-blue {
    color: var(--primary-color);
}

.lp-subtitle {
    color: var(--text-muted);
    max-width: 34rem;
    margin-bottom: 1.25rem;
}

.lp-search {
    max-width: 36rem;
}

.lp-search-row {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    border: 1px solid rgba(32,33,36,0.18);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.lp-search-icon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-search-input {
    border: 0;
    padding: 0.8rem 0.5rem;
    outline: none;
    width: 100%;
}

.lp-search-btn {
    border-radius: 8px;
    padding: 0.55rem 1.15rem;
    margin: 0.35rem;
}

.lp-hero-card {
    background: #d6efeb;
    border-radius: 16px;
    padding: 1.25rem;
    overflow: hidden;
}

.lp-hero-img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.lp-features {
    padding: 2rem 0 2.25rem;
}

.lp-feature {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.lp-feature-icon {
    font-size: 1.05rem;
    color: #202124;
}

.lp-feature-title {
    font-weight: 800;
}

.lp-feature-text {
    color: var(--text-muted);
}

.lp-block {
    margin-top: 0.25rem;
}

.lp-block-kicker {
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.lp-block-title {
    font-weight: 800;
    margin-top: 0.35rem;
}

.lp-block-text {
    color: var(--text-muted);
}

.lp-stats {
    padding: 2.25rem 0 1.75rem;
}

.lp-stat-value {
    font-weight: 800;
    font-size: 1.6rem;
}

.lp-stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.lp-footer {
    padding-top: 0.5rem;
    border-top: 1px solid rgba(32,33,36,0.10);
}

.lp-footer-brand {
    font-weight: 800;
}

.lp-footer-text {
    color: var(--text-muted);
    max-width: 28rem;
    margin-top: 0.35rem;
}

.lp-footer-heading {
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.lp-footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.lp-footer-links a {
    color: var(--primary-color);
    text-decoration: underline;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .lp-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .ds-nav-links {
        padding-top: 0.75rem;
        gap: 0.25rem;
    }
    .ds-nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.25rem;
    }
}

.ds-hero {
    padding: 2.75rem 0 2.25rem;
    background:
        radial-gradient(1100px 520px at 12% 0%, rgba(var(--primary-rgb), .10), transparent 60%),
        radial-gradient(900px 560px at 92% 18%, rgba(var(--accent-rgb), .10), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, rgba(var(--primary-rgb), .04) 100%);
    border-bottom: 1px solid rgba(17,24,39,.08);
}

.ds-hero-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 2rem;
    align-items: center;
}

.ds-hero-title {
    font-size: 3.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 1rem;
}

.ds-hero-title-green { color: var(--primary-color); }
.ds-hero-title-accent { color: var(--primary-color); }

.ds-hero-title-blue {
    color: var(--primary-color);
}

.ds-hero-subtitle {
    color: var(--text-muted);
    max-width: 36rem;
    margin-bottom: 1.25rem;
}

.ds-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: 999px;
    padding: .55rem .9rem;
    border: 1px solid rgba(var(--primary-rgb), .18);
    background: rgba(255,255,255,.78);
    color: var(--primary-color);
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(17,24,39,.06);
}

.ds-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 999px;
    padding: .55rem .9rem;
    border: 1px solid rgba(var(--primary-rgb), .18);
    background: rgba(255,255,255,.78);
    color: var(--primary-color);
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(17,24,39,.06);
}

.ds-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: .5rem;
}

.ds-hero-cta {
    border-radius: 16px;
    padding: .75rem 1.05rem;
    font-weight: 800;
}

.ds-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 520px;
    padding-top: 1rem;
    border-top: 1px solid rgba(17,24,39,.08);
}

.ds-hero-stat {
    padding: .75rem .75rem 0;
}

.ds-hero-stat + .ds-hero-stat {
    border-left: 1px solid rgba(17,24,39,.08);
}

.ds-hero-stat-value {
    font-weight: 900;
    font-size: 2rem;
    line-height: 1;
    color: var(--primary-color);
}

.ds-hero-stat-label {
    margin-top: .35rem;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.ds-hero-visual-clean {
    position: relative;
    min-height: 460px;
}

.ds-hero-bg-circle {
    position: absolute;
    right: -40px;
    top: 38px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .12);
    z-index: 0;
}

.ds-hero-bg-circle-2 {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(var(--accent-rgb), .10);
    z-index: 1;
}

.ds-hero-doctor-cutout {
    position: absolute;
    right: 26px;
    top: 46px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 22%;
    filter: drop-shadow(0 26px 54px rgba(17,24,39,.16));
    z-index: 2;
}

.ds-hero-float-card {
    position: absolute;
    left: 0;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: .75rem;
    border-radius: 18px;
    padding: .85rem 1rem;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(17,24,39,.10);
    box-shadow: 0 18px 42px rgba(17,24,39,.12);
    z-index: 3;
}

.ds-hero-float-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), .12), rgba(var(--primary-rgb), .12));
    color: var(--accent-color);
    font-size: 1.2rem;
}

.ds-search {
    max-width: 38rem;
}

.ds-search-row {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    border: 1px solid rgba(17,24,39,.12);
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 40px rgba(17,24,39,.10);
}

.ds-search-icon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-search-input {
    border: 0;
    padding: 0.9rem 0.6rem;
    outline: none;
    width: 100%;
    background: transparent;
}

.ds-search-btn {
    border-radius: 14px;
    padding: 0.6rem 1.25rem;
    margin: 0.35rem;
}

.ds-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.ds-cta-primary {
    border-radius: 10px;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
}

.ds-cta-secondary {
    border-radius: 10px;
    padding: 0.55rem 1.1rem;
    font-weight: 600;
}

.ds-trust-strip {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.ds-trust-item {
    font-size: 0.95rem;
}

.ds-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(32,33,36,0.25);
    display: inline-block;
}

.ds-hero-image {
    background:
        radial-gradient(520px 280px at 18% 12%, rgba(var(--primary-rgb), .14), transparent 60%),
        radial-gradient(520px 280px at 82% 18%, rgba(var(--accent-rgb), .12), transparent 62%),
        rgba(255,255,255,.70);
    border-radius: 22px;
    padding: 1.25rem;
    border: 1px solid rgba(17,24,39,.10);
    box-shadow: 0 20px 44px rgba(17,24,39,.12);
}

.ds-hero-image-inner {
    border-radius: 16px;
    overflow: hidden;
    background: rgba(var(--primary-rgb), 0.06);
}

.ds-hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.ds-hero-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    border: 1px solid rgba(32, 33, 36, 0.1);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.ds-hero-card-header {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border-bottom: 1px solid rgba(32, 33, 36, 0.1);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.06) 0%, rgba(var(--accent-rgb), 0.06) 100%);
}

.ds-hero-avatar {
    margin-right: 1rem;
}

.ds-hero-info {
    flex: 1;
}

.ds-hero-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.ds-hero-specialty {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.ds-hero-rating {
    font-size: 0.85rem;
}

.ds-hero-card-body {
    padding: 1.25rem;
}

.ds-hero-time, .ds-hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.ds-quick-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.ds-quick-filters .btn-outline-secondary:hover {
    background: rgba(var(--primary-rgb), .08);
    border-color: rgba(var(--primary-rgb), .18);
    color: var(--primary-color);
}

.ds-nav {
    box-shadow: none !important;
    border-bottom: 0;
    background: transparent !important;
    backdrop-filter: none;
}

.ds-nav-shell {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(17,24,39,.10);
    border-radius: 999px;
    padding: .65rem .85rem;
    box-shadow: 0 18px 44px rgba(17,24,39,.10);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .75rem;
}

@media (min-width: 992px) {
    .ds-nav-shell { flex-wrap: nowrap; }
}

.ds-nav-shell .navbar-brand { margin-right: .25rem; }
.ds-nav-shell .navbar-collapse { flex-grow: 1; }
.ds-nav-shell .ds-nav-links { gap: .35rem; }

.ds-nav-toggle {
    border: 0;
    border-radius: 14px;
    padding: .55rem .7rem;
    background: rgba(var(--primary-rgb), .06);
}

.ds-landing-offcanvas {
    width: min(340px, 92vw);
    border-left: 1px solid rgba(17,24,39,.10);
}

.ds-landing-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(17,24,39,.08);
}

.ds-landing-offcanvas-nav {
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.ds-landing-offcanvas-link {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem .85rem;
    border-radius: 14px;
    border: 1px solid rgba(17,24,39,.10);
    background: rgba(17,24,39,.02);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
}

.ds-landing-offcanvas-link i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), .10);
    color: var(--primary-color);
    flex: 0 0 auto;
}

.ds-landing-offcanvas-link:hover {
    background: rgba(var(--primary-rgb), .06);
    border-color: rgba(var(--primary-rgb), .18);
    color: var(--text-color);
}

.ds-landing-offcanvas-link span {
    flex: 1;
    min-width: 0;
}

.ds-landing-offcanvas-divider {
    margin: .85rem .1rem .25rem;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--text-muted);
}

.ds-nav-actions .btn {
    border-radius: 16px;
    padding: .65rem 1.05rem;
    font-weight: 700;
}

.ds-nav-btn-outline {
    border-color: rgba(17,24,39,.14);
    background: #fff;
    color: var(--text-color);
}

.ds-nav-btn-outline:hover {
    border-color: rgba(17,24,39,.18);
    background: rgba(var(--primary-rgb), .06);
    color: var(--text-color);
}

.ds-nav-btn-solid {
    border: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-color-2));
    box-shadow: 0 16px 30px rgba(var(--accent-rgb), .18);
}

.ds-nav-btn-solid:hover {
    filter: brightness(1.02);
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(var(--accent2-rgb), .20);
}

.ds-brand {
    color: var(--brand-green) !important;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: all 0.2s;
    font-size: 1.25rem;
}

.ds-brand:hover {
    color: var(--primary-color) !important;
    transform: translateY(-1px);
}

.ds-nav-link {
    color: var(--text-main) !important;
    font-weight: 700;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s;
}

.ds-nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(var(--primary-rgb), 0.06);
    transform: translateY(-1px);
}

.ds-nav-cta {
    border-radius: 10px;
    padding: 0.55rem 1rem;
    font-weight: 600;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.ds-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17,24,39,.10);
}

/* Fix container max-width */
.max-w-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar responsive fixes */
@media (max-width: 991px) {
    .ds-nav .navbar-nav {
        padding-top: 1rem;
    }
    
    .ds-nav .ds-nav-shell {
        gap: .5rem;
        padding: .55rem .65rem;
        border-radius: 22px;
    }

    .ds-nav .ds-nav-shell .navbar-brand {
        min-width: 0;
        flex: 1 1 auto;
    }

    .ds-nav .ds-nav-shell .navbar-toggler {
        margin-left: auto;
    }

    .ds-nav .ds-nav-link {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .ds-nav .ds-nav-actions {
        margin-top: 1rem;
        width: 100%;
    }
    
    .ds-nav .ds-nav-cta {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .ds-hero-copy {
        text-align: center;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .ds-hero-title {
        font-size: 1.95rem;
        line-height: 1.08;
    }

    .ds-hero {
        padding: 1.9rem 0 1.35rem;
    }

    .ds-hero-subtitle {
        font-size: 0.98rem;
        margin-bottom: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .ds-hero-pill {
        justify-content: center;
        flex-wrap: wrap;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .ds-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .ds-hero-actions .btn {
        width: 100%;
        max-width: 420px;
    }

    .ds-hero-cta {
        padding: .65rem .95rem;
        border-radius: 14px;
    }

    .ds-search {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .ds-search-row {
        grid-template-columns: 44px 1fr;
    }

    .ds-search-input {
        padding: 0.82rem 0.6rem;
    }

    .ds-search-btn {
        grid-column: 1 / -1;
        width: calc(100% - 0.7rem);
        margin: 0.35rem;
        padding: 0.65rem 1rem;
        border-radius: 14px;
    }

    .ds-hero-stats {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        padding-top: .75rem;
        margin-top: 1.1rem;
    }

    .ds-hero-stat {
        padding: .65rem .45rem 0;
    }

    .ds-hero-stat-value {
        font-size: 1.65rem;
    }

    .ds-hero-visual-clean {
        min-height: 290px;
    }

    .ds-hero-bg-circle,
    .ds-hero-bg-circle-2 {
        display: none;
    }

    .ds-hero-doctor-cutout {
        top: 18px;
        width: 210px;
        height: 210px;
        filter: drop-shadow(0 18px 36px rgba(17,24,39,.14));
    }

    .ds-hero-float-card {
        max-width: 320px;
        padding: .75rem .85rem;
        border-radius: 16px;
    }
}

@media (max-width: 992px) {
    .ds-hero-grid {
        grid-template-columns: 1fr;
    }
    .ds-hero-title {
        font-size: 2.5rem;
    }
    .ds-hero-visual-clean {
        min-height: 360px;
    }
    .ds-hero-bg-circle {
        right: -30px;
        top: 28px;
        width: 340px;
        height: 340px;
    }
    .ds-hero-bg-circle-2 {
        right: 30px;
        top: 18px;
        width: 240px;
        height: 240px;
    }
    .ds-hero-doctor-cutout {
        top: 34px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 260px;
        height: 260px;
    }
    .ds-hero-float-card {
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: 360px;
    }
    .ds-stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,0.14);
    }
    .ds-stat:last-child {
        border-bottom: 0;
    }
}
.ds-features {
    padding: 3.25rem 0 3rem;
    background:
        radial-gradient(980px 360px at 14% 0%, rgba(var(--primary-rgb), .10), transparent 60%),
        radial-gradient(820px 380px at 92% 18%, rgba(var(--secondary-rgb), .08), transparent 62%),
        linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(var(--primary-rgb), .02) 100%),
        #fff;
    border-top: 1px solid rgba(17,24,39,.06);
}

.ds-features-title {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
}

.ds-features-subtitle {
    max-width: 44rem;
    margin-left: auto;
    margin-right: auto;
}

.ds-feature-card {
    --ds-feature-tone-rgb: var(--primary-rgb);
    --ds-feature-tone-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(17,24,39,.10);
    border-radius: 20px;
    padding: 1.5rem 1.45rem;
    height: 100%;
    box-shadow: 0 18px 40px rgba(17,24,39,.08);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}
    .ds-feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 26px 60px rgba(17,24,39,.12);
        border-color: rgba(var(--ds-feature-tone-rgb), .26);
        background: rgba(255,255,255,.92);
    }

.ds-tone-primary { --ds-feature-tone-rgb: var(--primary-rgb); --ds-feature-tone-color: var(--primary-color); }
.ds-tone-secondary { --ds-feature-tone-rgb: var(--secondary-rgb); --ds-feature-tone-color: var(--secondary-color); }
.ds-tone-accent { --ds-feature-tone-rgb: var(--accent-rgb); --ds-feature-tone-color: var(--accent-color); }

.ds-feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(var(--ds-feature-tone-rgb), .95), rgba(var(--ds-feature-tone-rgb), .30));
    opacity: .95;
}

.ds-feature-card::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -140px;
    top: -160px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(var(--ds-feature-tone-rgb), .16), transparent 62%);
    pointer-events: none;
}

.ds-feature-card > * {
    position: relative;
    z-index: 1;
}

.ds-feature-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.ds-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--ds-feature-tone-rgb), .12);
    border: 1px solid rgba(var(--ds-feature-tone-rgb), .18);
    color: var(--ds-feature-tone-color);
    font-weight: 800;
    box-shadow: 0 16px 28px rgba(var(--ds-feature-tone-rgb), .14);
}

.ds-feature-title {
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.ds-feature-text {
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 0;
}

.ds-feature-metric {
    --ds-feature-metric-rgb: var(--ds-feature-tone-rgb);
    --ds-feature-metric-color: var(--ds-feature-tone-color);
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 999px;
    padding: .3rem .55rem;
    border: 1px solid rgba(var(--ds-feature-metric-rgb), .20);
    background: rgba(var(--ds-feature-metric-rgb), .08);
    color: var(--ds-feature-metric-color);
    font-weight: 800;
    font-size: .80rem;
}

.ds-metric-primary { --ds-feature-metric-rgb: var(--primary-rgb); --ds-feature-metric-color: var(--primary-color); }
.ds-metric-secondary { --ds-feature-metric-rgb: var(--secondary-rgb); --ds-feature-metric-color: var(--secondary-color); }
.ds-metric-accent { --ds-feature-metric-rgb: var(--accent-rgb); --ds-feature-metric-color: var(--accent-color); }

.ds-panel {
    background: rgba(var(--primary-rgb), 0.03);
    border: 1px solid rgba(32,33,36,0.10);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
}

.ds-panel-muted {
    background: rgba(var(--secondary-rgb), 0.03);
}

.ds-panel-kicker {
    color: var(--text-muted);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
}

.ds-panel-title {
    margin-top: 0.35rem;
    font-weight: 800;
    font-size: 1.25rem;
}

.ds-panel-text {
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.ds-how-it-works {
    position: relative;
    padding: 4.8rem 0 4.35rem;
    background: #f6f7fb;
    scroll-margin-top: 108px;
}

.ds-how-header {
    max-width: 50rem;
    margin: 0 auto 4.1rem;
    padding-inline: 1rem;
}

.ds-how-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.25rem;
    border-radius: 999px;
    background: #e9eef7;
    border: 1px solid rgba(var(--primary-rgb), .06);
    color: #2f5d9f;
    font-size: .75rem;
    font-weight: 900;
    letter-spacing: .14em;
    margin-bottom: 1.35rem;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(15, 23, 42, .04);
}

.ds-how-title {
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #152b4d;
    letter-spacing: -0.035em;
    line-height: 1.06;
    text-wrap: balance;
}

.ds-how-subtitle {
    color: #6f7f98;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 52rem;
    text-wrap: balance;
}

.ds-how-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem;
    align-items: start;
}

.ds-how-timeline::before {
    content: "";
    position: absolute;
    left: calc(10% + 6px);
    right: calc(10% + 6px);
    top: 3rem;
    height: 1px;
    background: #cfd7e6;
    z-index: 0;
}

.ds-how-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.ds-how-step-top {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ds-how-node {
    --ds-how-node-color: #2f5d9f;
    position: relative;
    width: 102px;
    height: 102px;
    border-radius: 50%;
    background: #f8f8f7;
    border: 1px solid #d8deea;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(15, 23, 42, .04);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.ds-how-step:hover .ds-how-node {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, .08);
    border-color: rgba(47, 93, 159, .22);
}

.ds-how-node-blue { --ds-how-node-color: #2f5d9f; }
.ds-how-node-cyan { --ds-how-node-color: #247cf3; }
.ds-how-node-green { --ds-how-node-color: #1bc48c; }
.ds-how-node-amber { --ds-how-node-color: #f39b07; }
.ds-how-node-red { --ds-how-node-color: #f24848; }

.ds-how-step-body {
    max-width: 18rem;
    margin: 0 auto;
}

.ds-how-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ds-how-node-color);
    font-size: 1.65rem;
    transition: transform .24s ease;
}

.ds-how-step:hover .ds-how-icon {
    transform: scale(1.06);
}

.ds-how-number {
    position: absolute;
    top: -8px;
    right: -4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--ds-how-node-color);
    color: #fff;
    font-size: .95rem;
    font-weight: 900;
    letter-spacing: -.02em;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .10);
}

.ds-how-step-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: .65rem;
    color: #162c4d;
    letter-spacing: -0.025em;
}

.ds-how-step-text {
    color: #71829a;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: .88rem;
}

.ds-how-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.ds-how-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* New Footer Styles */
.ds-footer-new {
    background:
        radial-gradient(700px 340px at 12% 0%, rgba(255,255,255,.10), transparent 60%),
        radial-gradient(700px 340px at 92% 18%, rgba(var(--accent-rgb), .18), transparent 62%),
        var(--sidebar-bg);
    color: #e2e8f0;
    margin-top: 4rem;
    border-top: 3px solid var(--accent-color);
}

.ds-footer-brand-new {
    color: #ffffff;
}

.ds-footer-brand-new .ds-brand-badge {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gradient-strong);
    color: #fff;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.28);
}

.ds-footer-text-new {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.ds-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    transition: all 0.2s ease;
}

.ds-footer-social a:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.ds-footer-social {
    flex-wrap: wrap;
}

.ds-footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.ds-footer-legal a:hover {
    color: #ffffff;
}

@media (max-width: 575.98px) {
    .ds-how-it-works {
        padding: 3rem 0 2.8rem;
        scroll-margin-top: 88px;
    }

    .ds-how-header {
        margin-bottom: 2.1rem;
        padding-inline: .35rem;
    }

    .ds-how-badge {
        padding: .55rem 1rem;
        font-size: .7rem;
        letter-spacing: .12em;
        margin-bottom: 1rem;
    }

    .ds-how-title {
        font-size: clamp(1.85rem, 9vw, 2.5rem);
        margin-bottom: .85rem;
        line-height: 1.08;
    }

    .ds-how-subtitle {
        font-size: .95rem;
        line-height: 1.65;
        max-width: 21rem;
    }

    .ds-how-step-top {
        width: 78px;
    }

    .ds-how-node {
        width: 78px;
        height: 78px;
    }

    .ds-how-icon {
        width: 44px;
        height: 44px;
        font-size: 1.35rem;
    }

    .ds-how-number {
        width: 32px;
        height: 32px;
        font-size: .85rem;
    }

    .ds-how-step-body {
        padding-left: 6.1rem;
    }

    .ds-how-step-title {
        font-size: .98rem;
        margin-bottom: .55rem;
    }

    .ds-how-step-text {
        font-size: .87rem;
        line-height: 1.58;
    }

    .ds-footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.35rem 0.9rem;
    }

    .ds-footer-legal .mx-2 {
        display: none;
    }
}
.ds-footer-heading-new {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.ds-footer-links-new li {
    margin-bottom: 0.75rem;
}

.ds-footer-links-new a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.ds-footer-links-new a:hover {
    color: #ffffff;
}

.ds-footer-links-new i {
    font-size: 0.85rem;
    color: var(--accent-color);
}

.ds-footer-links-new a:hover i {
    color: #ffffff;
}

.ds-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.ds-footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-color);
    flex: 0 0 auto;
    font-size: 1rem;
}

.ds-footer-contact-text {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.ds-footer-contact-text a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.ds-footer-contact-text a:hover {
    color: #ffffff;
}

.ds-admin-btn {
    border-color: rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    border-radius: 8px;
}

.ds-admin-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.ds-footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
}

.ds-footer-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
}

.ds-footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.ds-footer-legal a:hover {
    color: #ffffff;
}

@media (max-width: 992px) {
    .ds-hero-title {
        font-size: 2.5rem;
    }
    .ds-how-it-works {
        padding: 3.65rem 0 3.35rem;
        scroll-margin-top: 96px;
    }

    .ds-how-header {
        margin-bottom: 3rem;
    }

    .ds-how-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .ds-how-subtitle {
        max-width: 38rem;
        font-size: .98rem;
        line-height: 1.72;
    }

    .ds-how-timeline {
        grid-template-columns: 1fr;
        gap: 1.35rem;
        max-width: 42rem;
        margin: 0 auto;
    }

    .ds-how-timeline::before {
        left: 45px;
        right: auto;
        top: .25rem;
        bottom: 1rem;
        width: 1px;
        height: auto;
        background: #cfd7e6;
    }

    .ds-how-step {
        text-align: left;
        padding-left: .15rem;
    }

    .ds-how-step-top {
        position: absolute;
        left: 0;
        top: 0;
        width: 90px;
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .ds-how-node {
        width: 90px;
        height: 90px;
    }

    .ds-how-step-body {
        max-width: none;
        margin: 0;
        padding-left: 7.25rem;
        min-height: 90px;
    }
}

.ds-provider-onboard-body {
    background:
        radial-gradient(900px 420px at 10% 0%, rgba(var(--primary-rgb), .12), transparent 60%),
        radial-gradient(720px 460px at 92% 18%, rgba(var(--secondary-rgb), .10), transparent 55%),
        var(--background-color);
}

.ds-provider-topbar {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(17,24,39,.10);
}

.ds-provider-brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    text-decoration: none;
    color: #111827;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.ds-provider-brand-badge {
    width: 36px;
    height: 36px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    box-shadow: 0 14px 24px rgba(var(--primary-rgb), .18);
}

.ds-provider-brand-text {
    font-size: 1.05rem;
}

.ds-provider-user {
    text-align: right;
}

.ds-provider-user-name {
    font-weight: 700;
    line-height: 1.1;
}

.ds-provider-user-meta {
    margin-top: .2rem;
}

.ds-provider-logout {
    border-radius: 14px;
}

.ds-provider-onboard-container {
    max-width: 1100px;
}

.ds-onboard-card {
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(17,24,39,.10);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(10px);
}

.ds-onboard-side {
    border-radius: 24px;
    border: 1px solid rgba(17,24,39,.08);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), .12), rgba(var(--secondary-rgb), .06));
}

.ds-onboard-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid rgba(var(--primary-rgb), .22);
    background: rgba(var(--primary-rgb), .10);
    color: var(--primary-color);
    border-radius: 999px;
    padding: .35rem .6rem;
    font-weight: 800;
    font-size: .82rem;
}

.ds-onboard-muted {
    color: var(--text-muted);
}

.ds-onboard-step {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .9rem;
    border-radius: 18px;
    border: 1px solid rgba(17,24,39,.08);
    background: rgba(255,255,255,.55);
}

.ds-onboard-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), .12);
    color: var(--primary-color);
    flex: 0 0 auto;
}

.ds-timeline-active {
    border-color: rgba(var(--primary-rgb), .25);
}

.ds-timeline-done {
    background: rgba(var(--primary-rgb), .12);
    color: var(--primary-color);
}

.ds-timeline-todo {
    background: rgba(17, 24, 39, .06);
    color: #111827;
}

.ds-onboard-status-badge {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .01em;
}

.ds-onboard-form .form-control,
.ds-onboard-form .input-group-text {
    border-radius: 14px;
    border-color: rgba(17,24,39,.14);
}

.ds-onboard-form .input-group .input-group-text:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.ds-onboard-form .input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.ds-onboard-primary {
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 14px 24px rgba(var(--primary-rgb), .22);
}

.ds-onboard-primary:hover {
    filter: brightness(1.02);
    transform: translateY(-1px);
}

.ds-public-hero {
    background:
        radial-gradient(1100px 460px at 12% 0%, rgba(var(--primary-rgb), .12), transparent 60%),
        radial-gradient(900px 520px at 92% 16%, rgba(var(--secondary-rgb), .10), transparent 55%),
        linear-gradient(135deg, rgba(255,255,255,.90), rgba(255,255,255,.70));
    border-bottom: 1px solid rgba(17,24,39,.08);
}

.ds-public-hero-inner {
    padding: 1.25rem 0;
}

@media (min-width: 768px) {
    .ds-public-hero-inner { padding: 1.75rem 0; }
}

.ds-public-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--primary-rgb), .14);
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: .02em;
    flex: 0 0 auto;
}

.ds-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border-radius: 999px;
    padding: .38rem .65rem;
    font-weight: 700;
    font-size: .82rem;
    border: 1px solid rgba(17,24,39,.10);
    background: rgba(255,255,255,.78);
    color: #111827;
}

.ds-chip-primary {
    border-color: rgba(var(--primary-rgb), .22);
    background: rgba(var(--primary-rgb), .12);
    color: var(--primary-color);
}

.ds-chip-accent {
    border-color: rgba(var(--accent-rgb), .22);
    background: rgba(var(--accent-rgb), .10);
    color: var(--accent-color);
}

.ds-public-card {
    border-radius: 16px;
    border-color: rgba(17,24,39,.10);
    box-shadow: 0 12px 26px rgba(17,24,39,.08);
}

.ds-public-card .card-header {
    background: transparent;
    border-bottom: 1px solid rgba(17,24,39,.08);
    font-weight: 800;
}

.ds-public-list-item {
    border: 1px solid rgba(17,24,39,.10);
    border-radius: 14px;
    padding: .9rem;
    background: rgba(255,255,255,.85);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.ds-public-list-item:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--primary-rgb), .24);
    box-shadow: 0 14px 24px rgba(17,24,39,.08);
}

.ds-stars {
    display: inline-flex;
    align-items: center;
    gap: .15rem;
    color: #f59e0b;
    line-height: 1;
}

.ds-stars .bi {
    font-size: .95rem;
}
