html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

:root {
    --font-sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    --text: #14263d;
    --muted: #5a6f84;
    --surface: #ffffff;
    --surface-soft: #f2f7fb;
    --primary: #1d8a8a;
    --primary-hover: #156d74;
    --cta-orange: #ff7a5c;
    --cta-orange-hover: #f36b4d;
    --border: rgba(87, 126, 163, 0.18);
    --shadow: 0 18px 45px rgba(20, 38, 61, 0.10);
    --radius: 18px;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(89, 168, 196, 0.18), transparent 30%),
        radial-gradient(circle at top right, rgba(29, 138, 138, 0.10), transparent 24%),
        linear-gradient(180deg, #edf4f9 0%, #f7fbfd 24%, #ffffff 100%);
}

ul {
    margin: 0;
}

a {
    color: var(--primary-hover);
}

a:hover {
    color: #0f4fa8;
}

.container {
    width: min(100% - 40px, 1200px);
    margin: 0 auto;
}

.hero {
    background:
        linear-gradient(135deg, rgba(233, 249, 243, 0.98) 0%, rgba(214, 245, 234, 0.92) 100%);
    padding: 96px 0 80px;
    border-bottom: 1px solid var(--border);
}

.hero-telehealth {
    background:
        linear-gradient(135deg, rgba(234, 243, 251, 0.99) 0%, rgba(217, 233, 246, 0.96) 58%, rgba(239, 247, 252, 0.98) 100%);
}

.hero-cgm {
    background:
        linear-gradient(135deg, rgba(233, 251, 244, 0.98) 0%, rgba(209, 245, 230, 0.94) 100%);
}

.hero-a1c {
    background:
        linear-gradient(135deg, rgba(245, 252, 236, 0.98) 0%, rgba(228, 246, 208, 0.94) 100%);
}

.hero-meds {
    background:
        linear-gradient(135deg, rgba(244, 248, 255, 0.98) 0%, rgba(226, 236, 255, 0.94) 100%);
}

.hero-insurance {
    background:
        linear-gradient(135deg, rgba(248, 251, 238, 0.98) 0%, rgba(236, 246, 213, 0.94) 100%);
}

.hero-location {
    background:
        linear-gradient(135deg, rgba(240, 250, 247, 0.98) 0%, rgba(220, 243, 235, 0.94) 100%);
}

.hero-new-york {
    background:
        linear-gradient(135deg, rgba(239, 246, 255, 0.98) 0%, rgba(219, 234, 254, 0.94) 100%);
}

.hero-texas {
    background:
        linear-gradient(135deg, rgba(255, 247, 237, 0.98) 0%, rgba(254, 215, 170, 0.94) 100%);
}

.hero-california {
    background:
        linear-gradient(135deg, rgba(254, 249, 195, 0.98) 0%, rgba(220, 252, 231, 0.94) 100%);
}

.hero-florida {
    background:
        linear-gradient(135deg, rgba(236, 253, 245, 0.98) 0%, rgba(204, 251, 241, 0.94) 100%);
}

.hero-blog {
    background:
        linear-gradient(135deg, rgba(247, 247, 255, 0.98) 0%, rgba(233, 236, 252, 0.94) 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
    align-items: center;
    gap: 40px;
}

.hero-copy {
    min-width: 0;
}

.hero-media {
    position: relative;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 18px -10px -18px 18px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(47, 191, 155, 0.14) 0%, rgba(15, 118, 96, 0.10) 100%);
    z-index: 0;
}

.hero-telehealth .hero-media::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.16) 0%, rgba(14, 165, 233, 0.10) 100%);
}

.hero-cgm .hero-media::before {
    background: linear-gradient(135deg, rgba(47, 191, 155, 0.16) 0%, rgba(20, 184, 166, 0.10) 100%);
}

.hero-a1c .hero-media::before {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.16) 0%, rgba(34, 197, 94, 0.10) 100%);
}

.hero-meds .hero-media::before {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.16) 0%, rgba(59, 130, 246, 0.10) 100%);
}

.hero-insurance .hero-media::before {
    background: linear-gradient(135deg, rgba(163, 230, 53, 0.16) 0%, rgba(34, 197, 94, 0.10) 100%);
}

.hero-location .hero-media::before {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.16) 0%, rgba(45, 212, 191, 0.10) 100%);
}

.hero-new-york .hero-media::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.18) 0%, rgba(37, 99, 235, 0.10) 100%);
}

.hero-texas .hero-media::before {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.18) 0%, rgba(234, 88, 12, 0.10) 100%);
}

.hero-california .hero-media::before {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.18) 0%, rgba(34, 197, 94, 0.10) 100%);
}

.hero-florida .hero-media::before {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.18) 0%, rgba(14, 165, 233, 0.10) 100%);
}

.hero-blog .hero-media::before {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.16) 0%, rgba(59, 130, 246, 0.10) 100%);
}

.hero-image-card {
    position: relative;
    z-index: 1;
    padding: 18px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    box-shadow: 0 22px 48px rgba(19, 68, 56, 0.12);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 15px 18px;
    border-radius: 14px;
    border: 1px solid rgba(20, 38, 61, 0.12);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 30px rgba(20, 38, 61, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    color: var(--text);
    background: #ffffff;
    border-color: rgba(29, 138, 138, 0.28);
    box-shadow: 0 18px 34px rgba(20, 38, 61, 0.10);
    transform: translateY(-1px);
}

.hero-proof-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-proof-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(87, 126, 163, 0.18);
    color: #27465f;
    font-size: 0.92rem;
    font-weight: 700;
}

.hero-proof-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(29, 138, 138, 0.12);
}

.hero-floating-card {
    position: absolute;
    z-index: 2;
    max-width: 200px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(12, 33, 56, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 38px rgba(8, 20, 36, 0.26);
    color: #ffffff;
}

.hero-floating-card strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.35;
}

.hero-floating-label {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-floating-card-top {
    top: -14px;
    right: -20px;
}

.hero-floating-card-bottom {
    left: -20px;
    bottom: 22px;
}

.hero-image-card img {
    width: 100%;
    display: block;
    border-radius: 20px;
    background: linear-gradient(135deg, #def7ee 0%, #f7fffc 100%);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(22, 50, 43, 0.08);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary-hover);
    box-shadow: 0 0 0 6px rgba(47, 191, 155, 0.10);
}

.hero-new-york .hero-eyebrow::before {
    background: #2563eb;
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.10);
}

.hero-texas .hero-eyebrow::before {
    background: #ea580c;
    box-shadow: 0 0 0 6px rgba(234, 88, 12, 0.10);
}

.hero-california .hero-eyebrow::before {
    background: #65a30d;
    box-shadow: 0 0 0 6px rgba(101, 163, 13, 0.10);
}

.hero-florida .hero-eyebrow::before {
    background: #0f766e;
    box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.10);
}

.hero-submeta {
    margin: -4px 0 18px;
    color: var(--muted);
    font-size: 0.96rem;
    font-weight: 600;
}

.hero-city-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.hero-city-chips li {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(22, 50, 43, 0.08);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
}

.hero-new-york .hero-city-chips li {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(37, 99, 235, 0.14);
}

.hero-texas .hero-city-chips li {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(234, 88, 12, 0.14);
}

.hero-california .hero-city-chips li {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(101, 163, 13, 0.14);
}

.hero-florida .hero-city-chips li {
    background: rgba(255, 255, 255, 0.82);
    border-color: rgba(15, 118, 110, 0.14);
}

.site-header {
    position: relative;
}

.topbar {
    padding: 18px 0;
    border-bottom: 1px solid rgba(87, 126, 163, 0.14);
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text);
    cursor: pointer;
}

.nav-mobile-toggle-line {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    position: relative;
}

.nav-mobile-toggle-line::before,
.nav-mobile-toggle-line::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
}

.nav-mobile-toggle-line::before {
    top: -6px;
}

.nav-mobile-toggle-line::after {
    top: 6px;
}

.brand {
    color: var(--text);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand span {
    color: var(--primary-hover);
}

.brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(87, 126, 163, 0.14);
    box-shadow: 0 12px 32px rgba(20, 38, 61, 0.07);
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brand-chip:hover,
.brand-chip:focus-visible {
    color: var(--text);
    transform: translateY(-1px);
    border-color: rgba(29, 138, 138, 0.18);
    box-shadow: 0 16px 34px rgba(20, 38, 61, 0.10);
}

.brand-chip-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-chip-title {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-chip-subtitle {
    font-size: 0.78rem;
    color: #6b7e91;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #16a17d;
    background-image: url("logo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 10px 32px rgba(22, 161, 125, 0.28);
    border: 2px solid #ffffff;
    flex: 0 0 auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.nav-menu a,
.nav-toggle {
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
    text-decoration: none;
}

.nav-menu a:hover,
.nav-toggle:hover {
    color: var(--primary-hover);
}

.nav-item {
    position: relative;
}

.nav-item > a,
.nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 12px;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.nav-item > a:hover,
.nav-toggle:hover,
.nav-item > a:focus-visible,
.nav-toggle:focus-visible {
    background: rgba(29, 138, 138, 0.08);
    transform: translateY(-1px);
}

.nav-item:first-child > a {
    color: #102842;
    font-weight: 800;
    background: linear-gradient(180deg, rgba(29, 138, 138, 0.10) 0%, rgba(29, 138, 138, 0.06) 100%);
}

.nav-toggle {
    background: none;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff8062 0%, #ff7455 100%);
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: -0.01em;
    border: 0;
    box-shadow: 0 10px 24px rgba(255, 122, 92, 0.28);
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.nav-item > a[href="https://diabetescare.doko.md/"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ff8062 0%, #ff7455 100%);
    color: #ffffff !important;
    font-weight: 800;
    letter-spacing: -0.01em;
    border: 0;
    box-shadow: 0 10px 24px rgba(255, 122, 92, 0.28);
}

.nav-cta:hover,
.nav-cta:focus-visible,
.nav-item > a[href="https://diabetescare.doko.md/"]:hover,
.nav-item > a[href="https://diabetescare.doko.md/"]:focus-visible {
    background: linear-gradient(180deg, #ff7657 0%, #f36b4d 100%);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(243, 107, 77, 0.34);
    filter: saturate(1.04);
}

.nav-caret {
    font-size: 0.62rem;
    line-height: 1;
    opacity: 0.72;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 240px;
    padding: 12px;
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(87, 126, 163, 0.14);
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(20, 38, 61, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    z-index: 20;
}

.dropdown-menu li + li {
    margin-top: 6px;
}

.dropdown-menu a {
    display: block;
    padding: 11px 13px;
    border-radius: 12px;
    color: var(--text);
}

.dropdown-menu a:hover {
    background: rgba(29, 138, 138, 0.08);
    color: var(--primary-hover);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-compact {
    padding: 80px 0 60px;
}

.hero-content {
    max-width: 760px;
}

.hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.15rem, 5vw, 4.15rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
}

.hero p {
    margin: 0 0 28px;
    font-size: 1.08rem;
    color: var(--muted);
    max-width: 62ch;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    min-width: 190px;
    background: linear-gradient(180deg, #ff8062 0%, var(--cta-orange) 100%);
    color: #ffffff;
    border-radius: 999px;
    border: 0;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(255, 122, 92, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: linear-gradient(180deg, #ff7657 0%, var(--cta-orange-hover) 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(243, 107, 77, 0.34);
}

.section-heading {
    margin-bottom: 30px;
}

.section-heading-split,
.blog-section-head,
.state-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(29, 138, 138, 0.10);
    border: 1px solid rgba(29, 138, 138, 0.14);
    color: var(--primary-hover);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.site-main {
    padding: 48px 0 80px;
}

.home-page .site-main > section {
    position: relative;
    padding-bottom: 42px;
}

.home-page .site-main > section::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(87, 126, 163, 0) 0%, rgba(87, 126, 163, 0.28) 14%, rgba(87, 126, 163, 0.28) 86%, rgba(87, 126, 163, 0) 100%);
}

.home-page .site-main > section:last-child::after {
    display: none;
}

.section {
    padding: 32px 0;
}

.section h2 {
    margin: 0 0 16px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.2;
}

.section p,
.content-card p,
.content-card li {
    color: var(--muted);
}

.section-intro {
    max-width: 800px;
    margin: 0 0 28px;
}

.momentum-section {
    padding-top: 8px;
}

.momentum-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: 34px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 32px 70px rgba(19, 68, 56, 0.18);
    color: #ffffff;
    /* background:
        linear-gradient(100deg, rgba(8, 29, 35, 0.76) 0%, rgba(15, 63, 69, 0.48) 44%, rgba(119, 189, 177, 0.12) 100%),
        url("images/momentum-bg.jpg"); */
        background: linear-gradient(100deg, rgb(8 29 35 / 30%) 0%, rgb(15 63 69 / 32%) 44%, rgba(119, 189, 177, 0.12) 100%), url(images/momentum-bg.jpg);
    background-size: cover;
    background-position: center;
}

.momentum-card::before,
.momentum-card::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.momentum-card::before {
    width: 320px;
    height: 320px;
    top: -110px;
    right: -70px;
    background: radial-gradient(circle, rgba(147, 246, 228, 0.24) 0%, rgba(147, 246, 228, 0) 70%);
}

.momentum-card::after {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: 42%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 72%);
}

.momentum-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 22, 30, 0.18) 0%, rgba(8, 22, 30, 0.08) 40%, rgba(255, 255, 255, 0) 70%),
        radial-gradient(circle at right center, rgba(166, 227, 208, 0.24), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.momentum-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.82fr);
    gap: 28px;
    align-items: stretch;
}

.momentum-copy {
    display: grid;
    align-content: start;
    gap: 0;
    max-width: 760px;
    padding: 8px 8px 6px 0;
}

.momentum-eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 18px;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.momentum-title {
    margin: 0 0 18px;
    /* max-width: 11.5ch; */
       max-width: 100%;
    font-size: clamp(2.25rem, 4.4vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.momentum-lead {
    max-width: 56ch;
    margin: 0 0 28px;
    color: rgba(240, 248, 248, 0.86) !important;
    font-size: 1.04rem;
    line-height: 1.8;
}

.momentum-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.stat-chip {
    position: relative;
    min-height: 144px;
    padding: 20px 18px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 18px 32px rgba(6, 21, 31, 0.12);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
}

.stat-chip::before {
    content: "";
    width: 38px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(106, 242, 219, 0.94) 0%, rgba(255, 255, 255, 0.5) 100%);
}

.stat-chip strong {
    display: block;
    font-size: clamp(2.2rem, 3.1vw, 2.95rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.stat-chip span {
    display: block;
    max-width: 15ch;
    color: rgba(245, 249, 250, 0.92);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.28;
}

.momentum-quote {
    width: fit-content;
    max-width: 100%;
    padding: 18px 22px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(9, 33, 41, 0.52) 0%, rgba(9, 33, 41, 0.32) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.momentum-text {
    max-width: 52ch;
    margin: 0 0 8px;
    color: #ffffff !important;
    font-size: clamp(1.02rem, 1.5vw, 1.22rem);
    font-weight: 700;
    line-height: 1.55;
    text-wrap: balance;
}

.momentum-attribution {
    margin: 0;
    color: rgba(192, 235, 230, 0.96) !important;
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.momentum-side {
    display: grid;
    gap: 18px;
    align-content: start;
}

.momentum-review,
.momentum-ranking {
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 24px 44px rgba(13, 36, 56, 0.12);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.momentum-review {
    position: relative;
    overflow: hidden;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 22px;
    padding: 28px 30px 30px;
    background:
        radial-gradient(circle at top right, rgba(124, 228, 217, 0.24) 0%, rgba(124, 228, 217, 0) 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.985) 0%, rgba(247, 251, 252, 0.96) 100%);
    border-radius: 30px;
}

.momentum-review::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 8px;
    background: linear-gradient(180deg, #8cebe0 0%, #45c8c1 55%, #25b5bc 100%);
    opacity: 1;
}

.momentum-review::after {
    content: "\201C";
    position: absolute;
    top: 16px;
    right: 24px;
    color: rgba(65, 136, 162, 0.1);
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1;
}

.momentum-review .review-avatar {
    position: relative;
    z-index: 1;
    width: 94px;
    height: 94px;
    border-radius: 28px;
    background: linear-gradient(135deg, #84e8dd 0%, #37beb9 52%, #1ca7b2 100%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    color: #123f68;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.36),
        0 22px 34px rgba(48, 186, 183, 0.24);
}

.momentum-review .review-meta {
    position: relative;
    z-index: 1;
    display: grid;
    align-content: start;
}

.momentum-review .review-name {
    margin-bottom: 10px;
    color: #143454;
    font-size: 1.16rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.momentum-review .review-role,
.momentum-review .review-meta p {
    color: rgba(46, 83, 109, 0.88);
}

.momentum-review .review-role {
    display: inline-flex;
    align-items: center;
    width: min(100%, 330px);
    min-height: 56px;
    margin: 0 0 18px;
    padding: 12px 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(229, 239, 244, 0.9) 0%, rgba(223, 234, 239, 0.96) 100%);
    color: #486783;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.45;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.momentum-review .review-meta > p:not(.review-note) {
    max-width: 29ch;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.72;
}

.momentum-ranking h3 {
    color: #ffffff;
    margin-bottom: 14px;
    font-size: clamp(1.45rem, 2vw, 1.9rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.momentum-review .review-note {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(67, 122, 149, 0.12);
    font-weight: 800;
    color: #1d5670;
    font-size: 0.99rem;
    line-height: 1.6;
}

.momentum-ranking {
    padding: 28px 28px 26px;
    background:
        linear-gradient(180deg, rgba(17, 103, 109, 0.95) 0%, rgba(17, 87, 94, 0.94) 100%);
    border-color: rgba(133, 237, 222, 0.16);
    border-radius: 30px;
}

.momentum-ranking-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0;
}

.momentum-ranking-list li {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 18px 0;
    border-top: 1px solid rgba(161, 245, 232, 0.16);
}

.momentum-ranking-list li:first-child {
    padding-top: 0;
    border-top: 0;
}

.momentum-rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(106, 214, 204, 0.26) 0%, rgba(83, 178, 171, 0.22) 100%);
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.06em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.momentum-rank-copy {
    color: rgba(231, 248, 245, 0.92);
    line-height: 1.6;
    font-size: 1.02rem;
}

.momentum-rank-copy strong {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: 1.02rem;
}

.how-it-works-section {
    padding: 44px 0 40px;
}

.how-it-works-head {
    text-align: center;
    margin: 0 auto 42px;
    max-width: 680px;
}

.how-it-works-head h2 {
    margin-bottom: 10px;
    font-size: clamp(2.2rem, 4.8vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: #02060c;
}

.how-it-works-head p {
    margin: 0;
    color: #6f7f92;
    font-size: 1.15rem;
}

.how-it-works-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}

.how-it-works-steps::before {
    content: "";
    position: absolute;
    top: 46px;
    left: 7%;
    right: 7%;
    border-top: 2px dashed #38c7c6;
    opacity: 0.9;
}

.how-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 2px;
}

.how-step-number {
    width: 58px;
    height: 58px;
    margin: 0 auto -10px;
    border-radius: 999px;
    background: linear-gradient(180deg, #35d2cf 0%, #29bbb8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(41, 187, 184, 0.24);
}

.how-step-media {
    width: 152px;
    height: 152px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-step-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.how-step h3 {
    margin: 0 auto;
    max-width: 14ch;
    color: #66788d;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 500;
}

.content-card,
.service-card,
.faq-list p {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.content-card {
    padding: 32px;
}

.services-grid,
.card-grid {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.services .section-intro {
    max-width: 760px;
    margin-bottom: 30px;
}

.service-card {
    padding: 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f6fafd 100%);
    border: 1px solid rgba(87, 126, 163, 0.16);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(20, 38, 61, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(29, 138, 138, 0.24);
    box-shadow: 0 22px 40px rgba(20, 38, 61, 0.10);
}

.service-card-media {
    min-height: 180px;
    padding: 18px;
    background:
        radial-gradient(circle at top left, rgba(29, 138, 138, 0.12), transparent 48%),
        linear-gradient(135deg, #eef5fb 0%, #f8fbfd 100%);
    border-bottom: 1px solid rgba(87, 126, 163, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-media img {
    width: 100%;
    max-width: 190px;
    height: 144px;
    object-fit: contain;
    display: block;
}

.service-card-body {
    padding: 18px 18px 20px;
}

.service-card-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(29, 138, 138, 0.10);
    color: var(--primary-hover);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.16rem;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.service-card a {
    color: var(--text);
    font-weight: 800;
    text-decoration: none;
}

.service-card a:hover {
    color: var(--primary-hover);
}

.service-card p {
    margin: 0;
    color: #617385;
    font-size: 0.98rem;
    line-height: 1.65;
}

.state-section-head {
    margin-bottom: 28px;
}

.state-section-head .section-intro {
    max-width: 720px;
    margin: 0;
}

.state-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.state-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(111, 190, 165, 0.22);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 34%),
        linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
    box-shadow: 0 18px 36px rgba(19, 68, 56, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.state-card::after {
    content: "";
    position: absolute;
    right: -20px;
    bottom: -32px;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
}

.state-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.state-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #20443d;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.state-card-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: #0f766e;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.10);
}

.state-card-icon::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: #ffffff;
}

.state-card-code {
    position: relative;
    z-index: 1;
    margin-left: auto;
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: rgba(21, 53, 46, 0.82);
}

.state-card-rank {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(20, 38, 61, 0.08);
    color: #27465f;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.state-card h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 15ch;
    font-size: 1.4rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.state-card h3 a {
    color: #14352e;
    text-decoration: none;
}

.state-card h3 a:hover {
    color: #0f766e;
}

.state-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 34ch;
    color: #5f7082;
    font-size: 0.98rem;
    line-height: 1.65;
}

.state-card-link {
    position: relative;
    z-index: 1;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f766e;
    font-weight: 800;
    font-size: 0.95rem;
}

.state-card-link::after {
    content: "\2192";
    font-size: 1rem;
    line-height: 1;
}

.state-card-ny {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #edf5ff 0%, #e1eefc 100%);
}

.state-card-ny .state-card-icon {
    background: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
}

.state-card-tx {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #fff3e9 0%, #ffe4ce 100%);
}

.state-card-tx .state-card-icon {
    background: #ea580c;
    box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.10);
}

.state-card-ca {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #f7f9de 0%, #e7f6d9 100%);
}

.state-card-ca .state-card-icon {
    background: #65a30d;
    box-shadow: 0 0 0 4px rgba(101, 163, 13, 0.10);
}

.state-card-fl {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #e8fbf5 0%, #d9f5f1 100%);
}

.state-card-fl .state-card-icon {
    background: #0f766e;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.10);
}

.blog-section-head {
    margin-bottom: 28px;
}

.blog-section-head .section-intro {
    max-width: 720px;
    margin: 0;
}

.blog-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border: 1px solid rgba(87, 126, 163, 0.16);
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(20, 38, 61, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(29, 138, 138, 0.24);
    box-shadow: 0 22px 40px rgba(20, 38, 61, 0.10);
}

.blog-card-media {
    min-height: 190px;
    padding: 20px;
    background:
        radial-gradient(circle at top left, rgba(29, 138, 138, 0.12), transparent 48%),
        linear-gradient(135deg, #eef5fb 0%, #f8fbfd 100%);
    border-bottom: 1px solid rgba(87, 126, 163, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-media img {
    width: 100%;
    max-width: 220px;
    height: 150px;
    object-fit: contain;
    display: block;
}

.blog-card-body {
    padding: 20px;
}

.blog-card-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(29, 138, 138, 0.10);
    color: var(--primary-hover);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.blog-card h3 a {
    color: var(--text);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--primary-hover);
}

.blog-card p {
    margin: 0;
    color: #617385;
    font-size: 0.98rem;
    line-height: 1.65;
}

.blog-card-link {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0f766e;
    font-size: 0.95rem;
    font-weight: 800;
}

.blog-card-link::after {
    content: "\2192";
    font-size: 1rem;
    line-height: 1;
}

.trust-section {
    padding: 40px 0;
}

.trust-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: start;
}

.trust-copy {
    padding: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #f6fafd 100%);
    border: 1px solid rgba(87, 126, 163, 0.16);
    border-radius: 24px;
    box-shadow: 0 18px 36px rgba(20, 38, 61, 0.08);
}

.trust-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(29, 138, 138, 0.10);
    color: var(--primary-hover);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: #0f2438;
}

.trust-copy p {
    margin: 0;
    color: #617385;
    font-size: 1rem;
    line-height: 1.75;
}

.trust-copy p + p {
    margin-top: 14px;
}

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

.trust-card {
    padding: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    border: 1px solid rgba(87, 126, 163, 0.16);
    border-radius: 22px;
    box-shadow: 0 16px 30px rgba(20, 38, 61, 0.07);
}

.trust-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    border-radius: 14px;
    display: inline-flex;
    background: linear-gradient(135deg, rgba(29, 138, 138, 0.16) 0%, rgba(15, 79, 168, 0.08) 100%);
    border: 1px solid rgba(29, 138, 138, 0.18);
    position: relative;
}

.trust-card-icon::before {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: 10px;
    border: 2px solid var(--primary-hover);
}

.trust-card h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
    color: var(--text);
}

.trust-card p {
    margin: 0;
    color: #617385;
    font-size: 0.96rem;
    line-height: 1.65;
}

.insurance-showcase-head {
    max-width: 980px;
    margin-bottom: 34px;
}

.insurance-showcase-head h2 {
    margin: 0;
    font-size: clamp(2.5rem, 5.9vw, 4.3rem);
    line-height: 1;
    letter-spacing: -0.06em;
    color: #0f2438;
}

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

.insurance-panel {
    padding: 28px 30px 30px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(22, 50, 43, 0.05);
    border-radius: 20px;
    box-shadow: 0 16px 42px rgba(29, 57, 84, 0.08);
}

.insurance-panel h3 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    letter-spacing: -0.05em;
    color: #02060c;
}

.insurance-panel-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.insurance-panel-title p,
.insurance-panel-network > p,
.insurance-note {
    margin: 12px 0 0;
    color: #68768c;
    font-size: 0.98rem;
}

.insurance-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #def3f1;
    color: #0695a6;
    flex: 0 0 auto;
    position: relative;
}

.insurance-icon::before {
    content: "";
    width: 22px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 4px;
    position: absolute;
    inset: 0;
    margin: auto;
}

.insurance-icon::after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: currentColor;
    position: absolute;
    right: 14px;
    top: 23px;
    box-shadow: -10px 0 0 currentColor;
}

.insurance-checklist,
.insurance-tags {
    list-style: none;
    padding: 0;
}

.insurance-checklist {
    margin: 0;
    display: grid;
    gap: 18px;
}

.insurance-checklist li {
    position: relative;
    padding-left: 52px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #55677d;
}

.insurance-checklist li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 2px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e4f5f2;
    border: 1px solid rgba(6, 149, 166, 0.08);
    color: #08a1a8;
    font-size: 1.35rem;
    line-height: 1;
}

.insurance-highlight {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 16px;
    background: #dcf7f6;
    border: 1px solid rgba(6, 149, 166, 0.18);
    color: #096d76;
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.6;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.insurance-highlight strong {
    font-weight: 800;
}

.insurance-highlight-icon {
    color: #0a9fa4;
    font-size: 1.05rem;
    line-height: 1.2;
}

.insurance-tags {
    margin: 24px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.insurance-tags li {
    padding: 10px 15px;
    border-radius: 999px;
    background: #f9fcfc;
    border: 1px solid rgba(22, 50, 43, 0.08);
    color: #08a1a8;
    font-weight: 700;
    font-size: 0.94rem;
    line-height: 1;
}

.insurance-panel-network h3 {
    margin-bottom: 18px;
    font-size: 0.98rem;
    letter-spacing: -0.02em;
    color: #68768c;
    font-weight: 500;
}

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

.network-pill {
    min-height: 92px;
    padding: 12px 10px;
    border-radius: 18px;
    border: 1px solid rgba(22, 50, 43, 0.07);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #5f738a;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.network-pill span {
    display: inline-block;
    line-height: 1.12;
}

.network-pill-bcbs {
    color: #1e74c9;
}

.network-pill-bcbs span {
    font-size: 0.84rem;
    font-weight: 800;
}

.network-pill-aetna {
    color: #8d3caf;
}

.network-pill-aetna span {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.network-pill-cigna {
    color: #1f77c8;
}

.network-pill-cigna span {
    font-size: 0.88rem;
    font-weight: 800;
}

.network-pill-uhc {
    color: #2963bb;
}

.network-pill-uhc span {
    font-size: 0.83rem;
    font-weight: 800;
}

.network-pill-muted {
    color: #6c7b90;
}

.network-pill-emblem {
    color: #4d5461;
}

.insurance-note {
    margin-top: 18px;
    max-width: 30ch;
    font-size: 0.98rem;
    line-height: 1.6;
}

.inline-links {
    margin-top: 24px;
    padding: 16px 18px;
    background: rgba(244, 251, 248, 0.9);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.media-gallery {
    margin-top: 24px;
    padding: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 251, 248, 0.96) 100%);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 2px);
    box-shadow: var(--shadow);
}

.media-gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.media-gallery-copy h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.media-gallery-copy p {
    margin: 0;
    color: var(--muted);
}

.media-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.media-control {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.media-control:hover,
.media-control:focus-visible {
    background: rgba(47, 191, 155, 0.12);
    border-color: rgba(47, 191, 155, 0.45);
    transform: translateY(-1px);
}

.media-control:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
}

.media-viewport {
    overflow: hidden;
}

.media-grid,
.media-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.media-track {
    display: flex;
    gap: 24px;
    margin-top: 0;
    transition: transform 0.35s ease;
}

.media-card {
    min-width: 0;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 32px rgba(19, 68, 56, 0.08);
    overflow: hidden;
}

.media-track .media-card {
    flex: 0 0 calc((100% - 48px) / 3);
}

.media-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, #def7ee 0%, #f7fffc 100%);
}

.media-card-body {
    padding: 16px;
}

.media-card-body h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.media-card-body p {
    margin: 0;
    color: var(--muted);
}

.inline-links h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.trust-panel,
.review-panel,
.citations-panel,
.local-panel {
    margin-top: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 14px 32px rgba(19, 68, 56, 0.08);
}

.trust-panel h3,
.review-panel h3,
.citations-panel h3,
.local-panel h3 {
    margin: 0 0 10px;
    font-size: 1rem;
}

.trust-points,
.citation-list,
.local-list {
    margin: 0;
    padding-left: 18px;
}

.trust-points li + li,
.citation-list li + li,
.local-list li + li {
    margin-top: 8px;
}

.review-panel {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.review-avatar {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(47, 191, 155, 0.16) 0%, rgba(15, 118, 96, 0.12) 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.3rem;
    font-weight: 800;
}

.review-meta p,
.trust-panel p,
.citations-panel p,
.local-panel p {
    margin: 0;
    color: var(--muted);
}

.review-name {
    margin: 0 0 4px;
    font-size: 1rem;
}

.review-role {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 0.94rem;
    font-weight: 600;
}

.review-note {
    margin-top: 10px;
}

.card-grid li {
    padding: 16px;
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-card:hover,
.blog-card:hover,
.card-grid li:hover,
.content-card:hover,
.faq-list p:hover {
    transform: translateY(-2px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 22px 40px rgba(19, 68, 56, 0.12);
}

.number-list {
    margin: 24px 0 0;
    padding-left: 22px;
}

.number-list li + li {
    margin-top: 14px;
}

.feature-list,
.faq-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.feature-list li + li,
.faq-list p + p {
    margin-top: 16px;
}

.faq-list p {
    padding: 16px;
    margin: 0;
}

.faq-section {
    padding: 40px 0 44px;
}

.faq-shell {
    max-width: 1120px;
}

.faq-head {
    max-width: 760px;
    margin: 0 auto 26px;
    text-align: center;
}

.faq-kicker {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(47, 191, 155, 0.10);
    color: #127b66;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-head h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
    color: #08241f;
}

.faq-head p {
    margin: 0;
    color: #617385;
    font-size: 1rem;
    line-height: 1.75;
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfb 100%);
    border: 1px solid rgba(111, 190, 165, 0.20);
    border-radius: 28px;
    box-shadow: 0 18px 36px rgba(19, 68, 56, 0.08);
    padding: 20px;
}

.faq-stack {
    display: grid;
    gap: 16px;
    margin-top: 0;
}

.faq-item {
    background: linear-gradient(180deg, #ffffff 0%, #fbfefd 100%);
    border: 1px solid rgba(111, 190, 165, 0.18);
    border-radius: 20px;
    box-shadow: 0 12px 26px rgba(19, 68, 56, 0.06);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px;
    border: 0;
    background: transparent;
    color: #14352e;
    text-align: left;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    font-size: 1.08rem;
    line-height: 1.4;
}

.faq-question:hover {
    color: #0f766e;
}

.faq-question-title {
    display: block;
    max-width: 42ch;
}

.faq-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(111, 190, 165, 0.24);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0f766e;
    background: rgba(244, 251, 248, 0.98);
    font-size: 1.18rem;
    line-height: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.24s ease;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 24px;
    color: #617385;
    font-size: 1rem;
    line-height: 1.75;
}

.faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-icon {
    transform: rotate(45deg);
    background: rgba(47, 191, 155, 0.14);
    border-color: rgba(47, 191, 155, 0.32);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(19, 68, 56, 0.09);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 32px 0;
    margin-top: 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 22px;
}

.footer-brand {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px;
}

.footer-title {
    margin: 0 0 12px;
    font-size: 1rem;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li + li {
    margin-top: 10px;
}

.footer-links a,
.footer-meta a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-links a:hover,
.footer-meta a:hover {
    color: #ffffff;
}

.site-footer p {
    margin: 0;
    color: #e2e8f0;
}

.footer-note,
.footer-copy {
    color: #cbd5e1;
}

.footer-meta {
    padding-top: 18px;
    border-top: 1px solid rgba(226, 232, 240, 0.14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .topbar-inner {
        justify-content: space-between;
        align-items: center;
    }

    .nav-shell {
        width: auto;
        justify-content: flex-end;
    }

    .nav-mobile-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 22px 40px rgba(19, 68, 56, 0.14);
        display: none;
        z-index: 30;
    }

    .primary-nav.is-open {
        display: block;
    }

    .nav-menu {
        width: 100%;
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: nowrap;
    }

    .nav-item {
        width: 100%;
    }

    .nav-item > a,
    .nav-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 12px 14px;
        border: 1px solid var(--border);
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.86);
    }

    .nav-cta {
        border-radius: 14px;
        min-height: 48px;
        box-shadow: 0 14px 28px rgba(245, 139, 31, 0.22);
    }

    .nav-item > a[href="https://diabetescare.doko.md/"] {
        width: 100%;
        justify-content: center;
        padding: 12px 26px;
        border: 0;
        border-radius: 999px;
        background: linear-gradient(180deg, #ff8062 0%, #ff7455 100%);
        box-shadow: 0 10px 24px rgba(255, 122, 92, 0.28);
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 8px;
        padding: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: rgba(244, 251, 248, 0.95);
        transition: none;
    }

    .nav-item:hover .dropdown-menu,
    .nav-item:focus-within .dropdown-menu,
    .nav-item.is-open .dropdown-menu {
        display: block;
    }

    .hero {
        padding: 72px 0 60px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-media {
        max-width: 560px;
        width: 100%;
    }

    .hero-proof-list {
        gap: 8px;
    }

    .hero-proof-list li {
        font-size: 0.88rem;
    }

    .hero-floating-card {
        max-width: 180px;
        padding: 12px 14px;
    }

    .content-card {
        padding: 24px;
    }

    .faq-section {
        padding: 30px 0 32px;
    }

    .faq-list {
        padding: 18px;
    }

    .services-grid,
    .card-grid,
    .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .trust-layout {
        grid-template-columns: 1fr;
    }

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

    .media-track .media-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .media-gallery {
        padding: 18px;
    }

    .media-gallery-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .review-panel {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .momentum-review {
        grid-template-columns: 80px minmax(0, 1fr);
        gap: 18px;
        padding: 22px;
    }

    .insurance-layout {
        grid-template-columns: 1fr;
    }

    .momentum-card {
        min-height: 340px;
        padding: 24px;
    }

    .momentum-content {
        grid-template-columns: 1fr;
        gap: 22px;
    }

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

    .how-it-works-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 24px;
    }

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

    .blog-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading-split,
    .state-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .trust-copy {
        padding: 24px;
    }

    .state-section-head {
        gap: 16px;
    }

    .how-it-works-steps::before {
        display: none;
    }

    .insurance-note {
        max-width: none;
    }

    .review-avatar {
        width: 72px;
        height: 72px;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(100% - 20px, 1200px);
    }

    .hero {
        padding: 52px 0 40px;
    }

    .topbar {
        padding: 14px 0;
    }

    .topbar-inner {
        align-items: center;
    }

    .primary-nav {
        left: 20px;
        right: 20px;
        padding: 12px;
    }

    .hero p {
        font-size: 1rem;
    }

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

    .hero-proof-list {
        display: grid;
    }

    .hero-proof-list li {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-media {
        max-width: none;
    }

    .hero-image-card {
        padding: 12px;
        border-radius: 22px;
    }

    .hero-image-card img {
        border-radius: 16px;
    }

    .hero-floating-card {
        display: none;
    }

    .site-main {
        padding: 24px 0 56px;
    }

    .momentum-section {
        padding-top: 6px;
    }

    .momentum-card {
        min-height: auto;
        padding: 20px 16px;
        border-radius: 24px;
        background-position: 62% center;
    }

    .momentum-title {
        margin-bottom: 18px;
        max-width: none;
        font-size: clamp(1.75rem, 8vw, 2.4rem);
    }

    .momentum-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 18px;
    }

    .stat-chip {
        min-height: 104px;
        padding: 14px;
        border-radius: 18px;
        gap: 10px;
    }

    .stat-chip span {
        font-size: 0.92rem;
        max-width: none;
    }

    .momentum-quote {
        width: 100%;
        padding: 16px 16px 14px;
        border-radius: 18px;
    }

    .momentum-text {
        max-width: none;
        font-size: 0.98rem;
    }

    .momentum-attribution {
        font-size: 0.88rem;
    }

    .momentum-review,
    .momentum-ranking {
        border-radius: 22px;
    }

    .momentum-ranking {
        padding: 22px 18px 20px;
    }

    .momentum-ranking-list li {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
        padding: 16px 0;
    }

    .momentum-rank-number {
        min-height: 40px;
        border-radius: 12px;
    }

    .how-it-works-section {
        padding: 26px 0 24px;
    }

    .how-it-works-head {
        margin-bottom: 26px;
    }

    .how-it-works-head p {
        font-size: 1rem;
    }

    .how-it-works-steps {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .how-step-number {
        width: 52px;
        height: 52px;
        margin-bottom: -6px;
        font-size: 1.45rem;
    }

    .how-step-media {
        width: 132px;
        height: 132px;
        margin-bottom: 16px;
    }

    .how-step h3 {
        max-width: 18ch;
        font-size: 0.98rem;
    }

    .state-card {
        min-height: auto;
        padding: 18px;
        border-radius: 22px;
    }

    .state-card-code {
        font-size: 1.85rem;
    }

    .state-card-rank {
        min-height: 30px;
        padding: 5px 10px;
        font-size: 0.76rem;
    }

    .state-card h3 {
        max-width: none;
        font-size: 1.2rem;
    }

    .state-card p {
        max-width: none;
        font-size: 0.96rem;
    }

    .blog-card {
        border-radius: 22px;
    }

    .blog-card-media {
        min-height: 170px;
        padding: 16px;
    }

    .blog-card-body {
        padding: 18px;
    }

    .trust-section {
        padding: 26px 0 24px;
    }

    .trust-copy {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-card {
        padding: 18px;
        border-radius: 20px;
    }

    .section {
        padding: 18px 0;
    }

    .services-grid,
    .card-grid,
    .media-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .media-gallery {
        padding: 16px;
    }

    .media-gallery-head {
        margin-bottom: 14px;
    }

    .media-controls {
        display: none;
    }

    .media-track .media-card {
        flex-basis: 100%;
    }

    .media-card img {
        height: 220px;
    }

    .review-panel {
        grid-template-columns: 1fr;
    }

    .momentum-review {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .momentum-review .review-avatar {
        width: 72px;
        height: 72px;
        border-radius: 22px;
        font-size: 1.7rem;
    }

    .momentum-review .review-role {
        width: 100%;
        min-height: 0;
        margin-bottom: 14px;
        padding: 10px 14px;
        font-size: 0.88rem;
    }

    .momentum-review .review-meta > p:not(.review-note) {
        max-width: none;
        font-size: 1rem;
    }

    .btn-primary {
        width: 100%;
        max-width: none;
    }

    .btn-secondary {
        width: 100%;
        min-width: 0;
    }

    .content-card {
        padding: 18px;
    }

    .insurance-panel {
        padding: 20px;
    }

    .insurance-showcase-head h2 {
        font-size: clamp(2.3rem, 10vw, 3.35rem);
    }

    .insurance-panel-title {
        align-items: center;
    }

    .insurance-checklist li {
        padding-left: 46px;
    }

    .insurance-checklist li::before {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

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

    .insurance-highlight {
        grid-template-columns: 18px minmax(0, 1fr);
        gap: 10px;
    }

    .faq-head {
        margin-bottom: 20px;
    }

    .faq-head p {
        font-size: 0.98rem;
    }

    .faq-list {
        padding: 14px;
        border-radius: 22px;
    }

    .hero h1 {
        font-size: clamp(1.95rem, 9vw, 2.8rem);
    }

    .section h2 {
        font-size: 1.45rem;
    }

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

    .footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-item {
        padding: 0;
    }

    .faq-question {
        padding: 18px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 18px 18px;
    }
}


