.weight-program {
    --weight-blue: #1d70b8;
    --weight-blue-dark: #0f4c81;
    --weight-cyan: #0284c7;
    --weight-red: #e11d48;
    --weight-red-hover: #be123c;
    --weight-green: #0d9488;
    --weight-ink: #0f172a;
    --weight-muted: #475569;
    --weight-line: #e2e8f0;
    --weight-soft: #f8fafc;
    --weight-card: #ffffff;
    color: var(--weight-muted);
    background: #ffffff;
    font-family: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.weight-program * {
    box-sizing: border-box;
}

.weight-program a {
    color: inherit;
    text-decoration: none;
}

.weight-shell {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

/* ==========================================================================
   Typography & Elements (Strict Medical Harmony)
   ========================================================================== */
.weight-hero h1,
.weight-section h2 {
    margin: 0;
    color: var(--weight-ink);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.weight-hero h1 {
    max-width: 760px;
    font-size: 46px;
}

.weight-section h2 {
    max-width: 780px;
    font-size: 32px;
}

.weight-lead {
    max-width: 760px;
    margin: 20px 0 0;
    color: #334155;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}

.weight-text {
    margin: 16px 0 0;
    color: var(--weight-muted);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.weight-eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 14px;
    padding: 4px 12px;
    border-radius: 6px;
    background: rgba(15, 76, 129, 0.06);
    border: 1px solid rgba(15, 76, 129, 0.14);
    color: var(--weight-blue-dark);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

strong, b {
    font-weight: 600;
    color: var(--weight-ink);
}

/* Buttons */
.weight-actions,
.weight-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.weight-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    transition: all .2s ease;
}

.weight-btn:hover {
    transform: translateY(-1px);
}

.weight-btn--primary,
.weight-btn--primary:visited,
.weight-btn--primary:hover,
.weight-btn--primary:focus,
.weight-btn--primary:active {
    background: var(--weight-red);
    color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(225, 29, 72, .2);
}

.weight-btn--primary:hover {
    background: var(--weight-red-hover);
    box-shadow: 0 10px 22px rgba(225, 29, 72, .28);
}

.weight-btn--outline {
    background: #fff;
    border-color: #cbd5e1;
    color: var(--weight-blue-dark);
}

.weight-btn--outline:hover {
    border-color: var(--weight-blue);
    background: #f8fafc;
    color: var(--weight-blue);
}

.weight-btn--light {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.weight-btn--light:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

.weight-btn--whatsapp,
.weight-btn--whatsapp:visited {
    gap: 8px;
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(37, 211, 102, .2);
}

.weight-btn--whatsapp:hover,
.weight-btn--whatsapp:focus {
    background: #1ebe5d;
    border-color: #1ebe5d;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(37, 211, 102, .28);
}

.weight-btn--whatsapp img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.weight-hero {
    padding: 56px 0 48px;
    background: #f8fafc;
    border-bottom: 1px solid var(--weight-line);
    overflow: hidden;
}

.weight-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
    gap: 48px;
    align-items: center;
}

.weight-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--weight-muted);
    font-size: 13px;
    font-weight: 500;
}

.weight-breadcrumb a {
    color: var(--weight-blue-dark);
}

.weight-breadcrumb span::before {
    content: "/";
    margin-right: 8px;
    color: #94a3b8;
}

.weight-hero__highlights {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.weight-hero__highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--weight-ink);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.weight-hero__highlights li i {
    color: var(--weight-green);
    font-size: 15px;
    flex-shrink: 0;
}

.weight-hero__pdf {
    margin-top: 18px;
}

.weight-hero__pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--weight-blue-dark);
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color .2s ease;
}

.weight-hero__pdf-link:hover {
    color: var(--weight-red);
}

.weight-hero__visual {
    display: grid;
    gap: 14px;
}

.weight-hero-card {
    position: relative;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--weight-line);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
    padding: 20px;
}

.weight-hero-card__image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.weight-hero-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.weight-hero-card__badge {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 8px;
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
}

.weight-hero-card__badge span {
    display: block;
    color: var(--weight-blue-dark);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weight-hero-card__badge strong {
    display: block;
    margin-top: 4px;
    color: var(--weight-ink);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
}

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

.weight-hero__panel div {
    padding: 16px 14px;
    border: 1px solid var(--weight-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .03);
}

.weight-hero__panel span,
.weight-hero__panel strong {
    display: block;
}

.weight-hero__panel span {
    color: var(--weight-muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.weight-hero__panel strong {
    margin-top: 6px;
    color: var(--weight-blue-dark);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
}

/* ==========================================================================
   Section Base Layout & Distinct Contrast
   ========================================================================== */
.weight-section {
    padding: 72px 0;
}

.weight-section__head {
    max-width: 780px;
    margin-bottom: 36px;
}

/* Section Contrast Themes */
.weight-section--route {
    background: #ffffff;
    border-bottom: 1px solid #cbd5e1;
}

.weight-section--goals {
    background: #edf5fc;
    border-bottom: 1px solid #cbd5e1;
}

.weight-section--doctor {
    background: linear-gradient(135deg, #0b2545 0%, #134074 100%);
    border-top: 1px solid #0f3566;
    border-bottom: 1px solid #0f3566;
    color: #ffffff;
}

.weight-section--doctor h2,
.weight-section--doctor .weight-eyebrow {
    color: #ffffff;
}

.weight-section--doctor .weight-eyebrow {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #7dd3fc;
}

.weight-section--doctor .weight-doctor {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.weight-section--doctor .weight-doctor__photo {
    background: rgba(255, 255, 255, 0.05);
}

.weight-section--doctor .weight-doctor__content h2 {
    color: #ffffff;
}

.weight-section--doctor .weight-text {
    color: #cbd5e1;
}

.weight-section--doctor .weight-doctor__tags li {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #e0f2fe;
}

.weight-section--doctor .weight-btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.weight-section--doctor .weight-btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}

.weight-section--packages {
    background: #ffffff;
    border-bottom: 1px solid #cbd5e1;
}

.weight-section--exomind {
    background: #f0f7fc;
    border-bottom: 1px solid #cbd5e1;
}

.weight-section--research {
    background: #ffffff;
    border-bottom: 1px solid #cbd5e1;
}

.weight-section--safety {
    background: #f1f5f9;
}

/* ==========================================================================
   Section Content & Cards
   ========================================================================== */

/* Route Cards */
.weight-route {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.weight-route__item {
    position: relative;
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--weight-line);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .03);
    transition: all .2s ease;
}

.weight-route__item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.weight-route__item::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    background: var(--weight-cyan);
}

.weight-route__item:nth-child(2)::after {
    background: var(--weight-green);
}

.weight-route__item:nth-child(3)::after {
    background: var(--weight-blue);
}

.weight-route__item:nth-child(4)::after {
    background: var(--weight-red);
}

.weight-route__item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #e0f2fe;
    color: var(--weight-blue-dark);
    font-weight: 700;
    font-size: 15px;
}

.weight-route__item h3 {
    margin: 18px 0 0;
    color: var(--weight-ink);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.weight-route__item p {
    margin: 10px 0 0;
    color: var(--weight-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

/* Goals & Steps */
.weight-split {
    display: grid;
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.weight-steps {
    display: grid;
    gap: 14px;
}

.weight-step {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 24px;
    border: 1px solid var(--weight-line);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .02);
}

.weight-step span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    color: var(--weight-blue-dark);
    font-weight: 700;
    font-size: 16px;
}

.weight-step h3 {
    margin: 0;
    color: var(--weight-ink);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.weight-step p {
    margin: 8px 0 0;
    color: var(--weight-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

/* Doctors Section (Strict Clean Medical Theme) */
.weight-doctors-list {
    display: grid;
    gap: 24px;
}

.weight-doctor {
    display: grid;
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    padding: 32px;
    border: 1px solid var(--weight-line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}

.weight-doctor__photo {
    position: relative;
    min-height: 400px;
    border-radius: 10px;
    background: #f1f5f9;
    overflow: hidden;
}

.weight-doctor__photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
}

.weight-doctor__photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, #0f4c81 0%, #1d70b8 100%);
    color: #ffffff;
    font-size: 64px;
    font-weight: 700;
}

.weight-doctor__content {
    max-width: 670px;
}

.weight-doctor__content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--weight-ink);
}

.weight-doctor__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.weight-doctor__tags li {
    padding: 6px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background: #f8fafc;
    color: var(--weight-blue-dark);
    font-size: 13px;
    font-weight: 500;
}

/* Packages Cards */
.weight-packages {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.weight-package {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--weight-line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(15, 23, 42, .03);
}

.weight-package:nth-child(1) {
    border-top: 3px solid var(--weight-red);
}

.weight-package:nth-child(2) {
    border-top: 3px solid var(--weight-green);
}

.weight-package:nth-child(3) {
    border-top: 3px solid var(--weight-blue);
}

.weight-package > span {
    color: var(--weight-blue-dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.weight-package h3 {
    margin-top: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--weight-ink);
}

.weight-package ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.weight-package li {
    position: relative;
    margin-top: 12px;
    padding-left: 20px;
    color: var(--weight-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.weight-package li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--weight-cyan);
}

/* Exomind & Device */
.weight-media-grid {
    display: grid;
    grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.weight-media-grid--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
}

.weight-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.weight-feature {
    padding: 20px;
    border: 1px solid var(--weight-line);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .02);
}

.weight-feature h3 {
    margin: 0;
    color: var(--weight-ink);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.weight-feature h3::before {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    margin-bottom: 12px;
    border-radius: 2px;
    background: var(--weight-green);
}

.weight-feature:nth-child(2n) h3::before {
    background: var(--weight-blue);
}

.weight-feature p {
    margin: 8px 0 0;
    color: var(--weight-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.weight-device--photo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    min-height: 0;
    padding: 20px;
    border: 1px solid var(--weight-line);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}

.weight-device--photo img {
    width: 100%;
    height: auto;
    max-height: 340px;
    display: block;
    object-fit: contain;
}

.weight-device--photo .weight-device__caption {
    position: relative;
    margin-top: 16px;
    padding: 16px 18px;
    border: 1px solid var(--weight-line);
    border-radius: 8px;
    background: var(--weight-soft);
}

.weight-device__caption strong {
    color: var(--weight-blue-dark);
    font-size: 19px;
    font-weight: 700;
}

.weight-device__caption span {
    margin-top: 6px;
    color: var(--weight-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

/* Research Stats & Grid */
.weight-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.weight-stat {
    padding: 20px;
    border: 1px solid var(--weight-line);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .03);
}

.weight-stat strong {
    display: block;
    color: var(--weight-blue-dark);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.weight-stat p {
    margin: 10px 0 0;
    color: var(--weight-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.weight-research-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.weight-research-card {
    padding: 24px;
    border: 1px solid var(--weight-line);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .03);
}

.weight-research-card h3 {
    margin: 0 0 10px;
    color: var(--weight-blue-dark);
    font-size: 18px;
    font-weight: 600;
}

.weight-research-card p {
    margin: 0;
    color: var(--weight-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.weight-research-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.weight-research-card li {
    position: relative;
    margin-top: 8px;
    padding-left: 20px;
    color: var(--weight-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.weight-research-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--weight-green);
    font-weight: 700;
}

.weight-research-action {
    margin-top: 28px;
    display: flex;
    justify-content: flex-start;
}

.weight-pdf-btn,
.weight-pdf-btn:visited,
.weight-pdf-btn:hover,
.weight-pdf-btn:focus,
.weight-pdf-btn:active {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 8px;
    background: var(--weight-red);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(225, 29, 72, .2);
    transition: all .2s ease;
}

.weight-pdf-btn:hover {
    background: var(--weight-red-hover);
    box-shadow: 0 10px 22px rgba(225, 29, 72, .28);
    color: #ffffff !important;
}

/* Safety & Accordions */
.weight-rules {
    display: grid;
    grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
    gap: 48px;
}

.weight-accordion {
    display: grid;
    gap: 12px;
}

.weight-accordion details {
    border: 1px solid var(--weight-line);
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color .2s ease;
}

.weight-accordion details[open] {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .03);
}

.weight-accordion summary {
    padding: 18px 22px;
    cursor: pointer;
    color: var(--weight-ink);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
}

.weight-accordion summary:hover {
    color: var(--weight-blue-dark);
}

.weight-accordion ul {
    margin: 0;
    padding: 0 22px 18px;
    list-style: none;
}

.weight-accordion li {
    position: relative;
    margin-top: 10px;
    padding-left: 20px;
    color: var(--weight-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.weight-accordion li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--weight-cyan);
}

/* WP Content */
.weight-section--content {
    padding-top: 0;
}

.weight-admin-content {
    max-width: 860px;
    color: var(--weight-muted);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.weight-admin-content h2,
.weight-admin-content h3 {
    color: var(--weight-ink);
    font-weight: 700;
}

/* CTA Section */
.weight-section--cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f4c81 0%, #1d70b8 100%);
    color: #ffffff;
}

.weight-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    gap: 28px;
    align-items: center;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.weight-cta h2,
.weight-cta .weight-text,
.weight-cta .weight-eyebrow,
.weight-schedule {
    color: #fff;
}

.weight-cta .weight-eyebrow {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.weight-schedule {
    margin: 10px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.weight-cta__actions {
    justify-content: flex-end;
    margin-top: 0;
}

.weight-phone {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
    .weight-hero__grid,
    .weight-split,
    .weight-media-grid,
    .weight-rules,
    .weight-cta,
    .weight-doctor,
    .weight-media-grid--reverse {
        grid-template-columns: 1fr;
    }

    .weight-hero h1 {
        font-size: 40px;
    }

    .weight-stats,
    .weight-packages,
    .weight-route {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .weight-cta__actions,
    .weight-phone {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .weight-shell {
        width: min(100% - 24px, 1160px);
    }

    .weight-hero {
        padding: 36px 0 28px;
    }

    .weight-hero__grid,
    .weight-split,
    .weight-media-grid,
    .weight-rules {
        gap: 24px;
    }

    .weight-hero h1 {
        font-size: 32px;
    }

    .weight-lead {
        font-size: 16px;
    }

    .weight-doctor__photo,
    .weight-doctor__photo-placeholder {
        min-height: 340px;
    }

    .weight-hero-card__image img {
        max-height: 260px;
    }

    .weight-hero__panel,
    .weight-packages,
    .weight-feature-grid,
    .weight-stats,
    .weight-research-grid,
    .weight-route {
        grid-template-columns: 1fr;
    }

    .weight-section {
        padding: 48px 0;
    }

    .weight-section h2 {
        font-size: 24px;
    }

    .weight-step,
    .weight-package,
    .weight-feature,
    .weight-stat,
    .weight-cta,
    .weight-route__item,
    .weight-doctor {
        padding: 20px 16px;
    }

    .weight-step {
        grid-template-columns: 1fr;
    }

    .weight-actions,
    .weight-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .weight-phone {
        justify-content: center;
        font-size: 18px;
    }

    .weight-section--cta {
        padding: 44px 0;
    }

    .weight-cta {
        margin-bottom: 0;
        padding: 0;
    }
}

/* ==========================================================================
   Compact Sleek Header Overrides for Weight Program Page
   ========================================================================== */
body:has(.weight-program) .top_line,
body[class*="weight-program"] .top_line {
    padding: 4px 0 !important;
}

body:has(.weight-program) .site-header .header_content,
body[class*="weight-program"] .site-header .header_content {
    padding: 8px 0 !important;
    border-bottom: 1px solid var(--weight-line) !important;
}

body:has(.weight-program) .site-header .site-logo img,
body[class*="weight-program"] .site-header .site-logo img {
    max-height: 38px !important;
    width: auto !important;
}

body:has(.weight-program) .site-header .item_icons_header,
body[class*="weight-program"] .site-header .item_icons_header {
    padding-left: 20px !important;
    background-size: 14px !important;
    background-position: left center !important;
}

body:has(.weight-program) .site-header .working_hours_item,
body:has(.weight-program) .site-header .address_header_item,
body:has(.weight-program) .site-header .call_center_header_item,
body[class*="weight-program"] .site-header .working_hours_item,
body[class*="weight-program"] .site-header .address_header_item,
body[class*="weight-program"] .site-header .call_center_header_item {
    font-size: 11px !important;
    line-height: 1.3 !important;
}

body:has(.weight-program) .site-header .buttons_header .button,
body[class*="weight-program"] .site-header .buttons_header .button {
    padding: 8px 16px !important;
    font-size: 12px !important;
    min-height: 36px !important;
    border-radius: 6px !important;
}

body:has(.weight-program) .header_menu,
body[class*="weight-program"] .header_menu {
    padding: 8px 0 !important;
    border-bottom: 1px solid var(--weight-line) !important;
}

body:has(.weight-program) .header_menu ul.navbar-nav li a,
body[class*="weight-program"] .header_menu ul.navbar-nav li a {
    font-size: 13px !important;
    padding: 2px 0 !important;
}

body:has(.weight-program) #breadcrumbs,
body[class*="weight-program"] #breadcrumbs {
    display: none !important;
}
