:root {
    --color-black: #000000;
    --color-black-soft: #0a0a0a;
    --color-panel: #0d0d0d;
    --color-panel-strong: #141414;
    --color-gold: #d4af37;
    --color-gold-dark: #c9a227;
    --color-gold-fade: rgba(212, 175, 55, 0.12);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-strong: rgba(255, 255, 255, 0.12);
    --color-copy: rgba(255, 255, 255, 0.9);
    --color-copy-soft: rgba(255, 255, 255, 0.7);
    --color-copy-muted: rgba(255, 255, 255, 0.5);
    --color-success: #1ec95b;
    --font-display: "Montserrat", sans-serif;
    --font-body: "Montserrat", sans-serif;
    --shadow-soft: 0 30px 90px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 24px 60px rgba(212, 175, 55, 0.22);
    --radius-xl: 24px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --transition: 0.35s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(212, 175, 55, 0.06), transparent 28%),
        linear-gradient(180deg, #020202 0%, #000000 100%);
    background-color: #000000;
}

.hidden {
    display: none !important;
}

body.home-modal-open {
    overflow: hidden;
}

a,
button,
input,
select,
textarea,
details,
summary {
    transition:
        transform var(--transition),
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition),
        opacity var(--transition),
        box-shadow var(--transition);
}

section {
    scroll-margin-top: 108px;
}

img {
    max-width: 100%;
    display: block;
}

::-webkit-scrollbar {
    width: 11px;
}

::-webkit-scrollbar-track {
    background: #080808;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-gold), var(--color-gold-dark));
    border-radius: 999px;
}

.home-page {
    position: relative;
    overflow: clip;
}

.home-page::after, .home-page::before {
    display: none !important;
}

.home-topbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(7, 7, 7, 0.88);
    backdrop-filter: blur(18px);
}

.home-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 64px;
}

.home-brand {
    display: inline-flex;
    align-items: center;
}

.home-brand-logo {
    width: auto;
    height: 48px;
    object-fit: contain;
}

.home-brand-text,
.footer-brand-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-gold);
    font-weight: 700;
}

.home-menu {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
}

.home-menu a,
.home-mobile-panel a {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.home-menu a::after,
.home-mobile-panel a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -0.35rem;
    left: 0;
    height: 1px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: center;
}

.home-menu a:hover,
.home-mobile-panel a:hover {
    color: var(--color-gold);
}

.home-menu a:hover::after,
.home-mobile-panel a:hover::after {
    transform: scaleX(1);
}

.home-topbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.home-topbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.6);
    border-radius: 999px;
    color: var(--color-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    background: rgba(212, 175, 55, 0.04);
}

.home-topbar-cta:hover {
    transform: translateY(-1px);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: var(--shadow-gold);
}

.home-mobile-toggle {
    display: none;
    width: 50px;
    height: 50px;
    border: 1px solid var(--color-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.home-mobile-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.home-mobile-toggle:hover {
    border-color: var(--color-border-strong);
}

.home-mobile-panel {
    display: none;
    padding: 0.75rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 10, 10, 0.98);
}

.home-mobile-panel:not(.hidden) {
    display: grid;
    gap: 1rem;
}

.home-hero {
    position: relative;
    min-height: 100vh;
    padding-top: 8rem;
    background:
        linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.9) 45%, rgba(0, 0, 0, 0.75) 100%),
        radial-gradient(circle at 84% 18%, rgba(212, 175, 55, 0.15), transparent 27%),
        var(--hero-image) center center / cover no-repeat;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
        linear-gradient(180deg, transparent 65%, #000000 100%);
    pointer-events: none;
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - 7.5rem);
    padding-top: 2rem;
    padding-bottom: 1.5rem;
}

.home-hero-copy {
    width: min(100%, 768px);
}

.home-kicker,
.home-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 44px;
    padding: 0 1rem;
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.05);
    color: var(--color-gold);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-kicker-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--color-gold);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
}

.home-hero-title {
    display: flex;
    flex-direction: column;
    margin-top: 1.25rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.home-hero-title-gold {
    color: var(--color-gold);
}

.home-hero-title-light {
    color: #f5f1ea;
}

.home-hero-description {
    margin-top: 1rem;
    width: min(100%, 600px);
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.6;
}

.home-hero-description strong {
    color: var(--color-gold);
    font-weight: 800;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.home-primary-button,
.home-secondary-button,
.home-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 48px;
    padding: 0 1.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all var(--transition);
}

.home-primary-button,
.home-form-submit {
    color: #100d02;
    background: linear-gradient(180deg, #e2bf45 0%, var(--color-gold) 100%);
    border: 1px solid rgba(212, 175, 55, 0.65);
    box-shadow: var(--shadow-gold);
}

.home-primary-button:hover,
.home-form-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.04);
}

.home-secondary-button {
    color: var(--color-gold);
    border: 1px solid rgba(212, 175, 55, 0.6);
    background: rgba(10, 10, 10, 0.28);
}

.home-secondary-button:hover {
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.08);
}

.home-button-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-button-icon svg {
    width: 100%;
    height: 100%;
}

.home-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: min(100%, 672px);
    margin-top: 3.25rem;
}

.home-stat-card {
    min-height: 104px;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-stat-card strong {
    display: block;
    margin-bottom: 0.35rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 2.5vw, 2.75rem);
    line-height: 1;
    color: var(--color-gold);
}

.home-stat-card span {
    color: var(--color-copy-soft);
    font-size: 1rem;
    font-weight: 500;
}

.home-scroll-cue {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    width: fit-content;
    margin-top: 2rem;
    margin-left: auto;
    color: var(--color-copy-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.84rem;
    font-weight: 700;
}

.home-scroll-cue svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.home-section {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}
.home-section::after {
    display: none !important;
}

.home-section::before {
    display: none;
}

.home-section-heading {
    margin-bottom: 3rem;
}

.home-section-heading-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-section-heading-left {
    text-align: left;
}

.home-section-heading h2 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    line-height: 1.15;
    color: var(--color-gold);
    font-weight: 700;
}
.home-section-heading p {
    width: min(100%, 600px);
    color: var(--color-copy-soft);
    font-size: 1rem;
    line-height: 1.6;
}

.home-diseases-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 3rem;
    align-items: start;
}

.home-disease-note-alt {
    margin-top: 1.5rem;
    max-width: 400px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    font-size: 0.88rem;
    color: var(--color-copy-soft);
    background: rgba(255,255,255,0.02);
    line-height: 1.6;
}

.home-disease-note-alt strong {
    color: var(--color-gold);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-disease-grid-wrapper {
    width: 100%;
}

.home-disease-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.home-disease-card {
    min-height: 80px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.1)),
        var(--color-panel);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-disease-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.34);
}

.home-disease-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-bottom: 0.65rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.06);
}

.home-disease-card h3 {
    margin: 0;
    color: var(--color-copy);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

.home-disease-note {
    margin-top: 1.7rem;
    text-align: center;
    color: var(--color-gold);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-section-services {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 18%),
        linear-gradient(180deg, rgba(212, 175, 55, 0.04), transparent 50%);
}

.home-services-layout,
.home-story-layout,
.home-final-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 3rem;
    align-items: start;
}

.home-services-copy,
.home-final-copy {
    display: flex;
    flex-direction: column;
}

.home-service-list {
    display: grid;
    gap: 1.2rem;
}

.home-services-form {
    position: sticky;
    top: 118px;
}

.home-final-form {
    align-self: start;
}

.home-service-item,
.home-story-card,
.home-form-card,
.home-video-panel,
.home-final-image-card,
.home-faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30%),
        var(--color-panel);
    box-shadow: var(--shadow-soft);
}

.home-service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem 1.25rem;
}

.home-service-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 12px;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
}

.home-service-icon svg {
    width: 20px;
    height: 20px;
}

.home-service-item h3 {
    margin: 0 0 0.4rem;
    color: #f5f3ee;
    font-size: 1.1rem;
    font-weight: 700;
}

.home-service-item p,
.home-story-intro,
.home-story-points p,
.home-form-header p,
.home-final-copy p,
.home-video-dialog-copy p {
    margin: 0;
    color: var(--color-copy-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}

.home-service-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.home-service-meta div {
    padding: 1.2rem 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.01);
}

.home-service-meta strong {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--color-gold);
    font-size: 0.98rem;
    font-weight: 700;
}

.home-service-meta span {
    color: var(--color-copy-soft);
    line-height: 1.65;
    font-size: 0.95rem;
}

.home-form-card {
    padding: 1.5rem;
}

.home-form-card::after {
    display: none;
}

.home-form-card-compact {
    padding: 1.5rem;
}

.home-form-header h3 {
    margin: 1.2rem 0 0.8rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.1;
    font-weight: 700;
    color: #f8f3e8;
}

.home-alert {
    margin-top: 1.25rem;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    font-size: 0.96rem;
    line-height: 1.6;
}

.home-alert-error {
    border: 1px solid rgba(255, 120, 120, 0.35);
    color: #ffc4c4;
    background: rgba(120, 20, 20, 0.32);
}

.home-alert-success {
    border: 1px solid rgba(40, 204, 100, 0.35);
    color: #b9ffcf;
    background: rgba(10, 90, 30, 0.34);
}

.home-lead-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.home-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem;
}

.home-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.home-field span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

.home-field input,
.home-field select,
.home-field textarea {
    min-height: 52px;
    padding: 0 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.035);
    font-family: inherit;
    font-size: 0.97rem;
    outline: none;
}

.home-field input::placeholder,
.home-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.home-field input:focus,
.home-field select:focus,
.home-field textarea:focus {
    border-color: rgba(212, 175, 55, 0.44);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.home-form-note {
    color: var(--color-copy-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.home-form-submit {
    width: 100%;
    margin-top: 0.2rem;
}

.home-section-story {
    background:
        radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(212, 175, 55, 0.025), transparent 38%);
}

.home-story-metrics {
    display: grid;
    gap: 1.8rem;
    align-content: start;
}

.home-story-metric span {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 3.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1;
    color: var(--color-gold);
}

.home-story-metric p {
    margin: 0.85rem 0 0;
    max-width: 280px;
    color: var(--color-copy-soft);
    line-height: 1.75;
    font-size: 0.98rem;
}

.home-story-card {
    padding: 2.5rem;
}

.home-story-card h2 {
    margin: 1.1rem 0 0.8rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-gold);
}

.home-story-points {
    display: grid;
    gap: 1rem;
    margin-top: 1.45rem;
}

.home-story-points div {
    display: grid;
    grid-template-columns: 12px 1fr;
    gap: 0.85rem;
    align-items: start;
}

.home-story-points span {
    width: 12px;
    height: 12px;
    margin-top: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #e1be47 0%, var(--color-gold-dark) 100%);
    box-shadow: 0 0 14px rgba(212, 175, 55, 0.28);
}

.home-story-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.home-story-pillars span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 1rem;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 16px;
    color: var(--color-copy);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.home-section-media {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 16%);
}

.home-video-panel {
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
}

.home-video-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.home-video-trigger img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    opacity: 0.72;
}

.home-video-trigger::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.44));
}

.home-video-trigger:hover img {
    transform: scale(1.02);
    opacity: 0.82;
}

.home-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 999px;
    color: #0d0b02;
    background: linear-gradient(180deg, #e7c54f 0%, var(--color-gold) 100%);
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-gold);
}

.home-video-play svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
}

.home-video-caption {
    position: absolute;
    right: 1.5rem;
    bottom: 1.4rem;
    left: 1.5rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
    text-align: left;
}

.home-video-caption strong {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.home-video-caption span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
}

.home-faq-list {
    display: grid;
    gap: 1rem;
}

.home-faq-item {
    overflow: hidden;
}

.home-faq-item summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.4rem 1.5rem;
    cursor: pointer;
    list-style: none;
}

.home-faq-item summary::-webkit-details-marker {
    display: none;
}

.home-faq-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    background: rgba(212, 175, 55, 0.06);
    color: var(--color-gold);
    font-size: 0.88rem;
    font-weight: 700;
}

.home-faq-question {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.55;
    font-family: var(--font-display);
}

.home-faq-icon {
    color: var(--color-gold);
    font-size: 1.5rem;
    font-weight: 400;
}

.home-faq-item[open] .home-faq-icon {
    transform: rotate(45deg);
}

.home-faq-answer {
    padding: 0 1.5rem 1.5rem 5.5rem;
}

.home-faq-answer p {
    margin: 0;
    color: var(--color-copy-soft);
    line-height: 1.8;
    font-size: 1.05rem;
}

.home-faq-cta {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding: 0 1rem;
}

.home-faq-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #2ad168 0%, #14b958 100%);
    color: #ffffff !important;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 18px 48px rgba(25, 198, 88, 0.22);
    line-height: 1.3;
    transition: all var(--transition);
}

.home-faq-cta a:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

@media (max-width: 640px) {
    .home-faq-cta a {
        width: 100%;
        border-radius: 20px;
        font-size: 0.95rem;
        padding: 1.2rem 1.5rem;
    }
}

.home-section-final {
    background:
        linear-gradient(180deg, rgba(212, 175, 55, 0.04), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 16%);
}

.home-final-copy h2 {
    margin: 1.2rem 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 3.5vw, 2.75rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--color-gold);
}

.home-final-image-card {
    overflow: hidden;
    margin-top: 2rem;
}

.home-final-image-card img {
    width: 100%;
    object-fit: cover;
    height: 192px;
}

.home-final-image-caption {
    padding: 1.25rem 1.3rem 1.4rem;
}

.home-final-image-caption strong {
    display: block;
    margin-bottom: 0.45rem;
    color: #f4efe4;
    font-size: 1.02rem;
    font-weight: 700;
}

.home-final-image-caption span {
    color: var(--color-copy-soft);
    line-height: 1.7;
}

.home-video-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.home-video-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(6px);
}

.home-video-dialog {
    position: relative;
    z-index: 1;
    width: min(1040px, calc(100% - 2rem));
    margin: 4rem auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    overflow: hidden;
    border: 1px solid var(--color-border-strong);
    border-radius: 28px;
    background: #0f0f10;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.home-video-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.home-video-close svg {
    width: 24px;
    height: 24px;
}

.home-video-dialog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-video-dialog-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.3rem 2rem;
}

.home-video-dialog-copy h3 {
    margin: 1rem 0 0.9rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.1;
    font-weight: 700;
    color: #f6f1e6;
}

.home-video-dialog-copy ul {
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
    list-style: none;
}

.home-video-dialog-copy li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--color-copy);
    line-height: 1.65;
}

.home-video-dialog-copy li::before {
    content: "";
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--color-gold);
}

.home-video-dialog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: #050505;
}

.footer-copy {
    max-width: 430px;
    color: var(--color-copy-soft);
    line-height: 1.8;
}

.footer-legal-line {
    display: inline-flex;
    gap: 0.75rem;
    align-items: center;
    color: var(--color-copy);
    font-size: 0.95rem;
}

.footer-legal-line span:last-child {
    color: rgba(255, 255, 255, 0.8);
}

.footer-social-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.03);
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    background: rgba(212, 175, 55, 0.1);
}

.footer-title {
    margin: 0 0 1.25rem;
    color: var(--color-gold);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links {
    display: grid;
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-contact-block a,
.footer-contact-block span,
.site-footer-dev-link {
    color: var(--color-copy-soft);
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact-block a:hover,
.site-footer-dev-link:hover {
    color: var(--color-gold);
}

.footer-contact-block {
    display: grid;
    gap: 0.3rem;
    margin-top: 1.8rem;
}

.footer-contact-label {
    color: var(--color-gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 3.25rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    color: var(--color-copy-muted);
    font-size: 0.95rem;
}

.site-footer-bottom p {
    margin: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 999px;
    background: linear-gradient(180deg, #2ee36f 0%, #19c65a 100%);
    color: #fff;
    box-shadow: 0 24px 52px rgba(25, 198, 90, 0.28);
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
}

@media (max-width: 1200px) {
    .home-disease-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .home-menu,
    .home-topbar-cta {
        display: none;
    }

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

    .home-services-layout,
    .home-story-layout,
    .home-final-layout,
    .home-diseases-layout,
    .home-video-dialog {
        grid-template-columns: 1fr;
    }

    .home-services-form {
        position: static;
    }

    .home-hero {
        min-height: auto;
    }

    .home-hero-inner {
        min-height: auto;
        padding-bottom: 4rem;
    }

    .home-scroll-cue {
        margin-left: 0;
    }

    .home-story-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .home-hero {
        padding-top: 7rem;
    }

    .home-hero-title {
        font-size: clamp(2.6rem, 12vw, 3.6rem);
    }

    .home-hero-description {
        font-size: 1.05rem;
    }

    .home-hero-stats,
    .home-form-grid,
    .home-story-pillars,
    .home-service-meta,
    .home-story-metrics {
        grid-template-columns: 1fr;
    }

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

    .home-section {
        padding: 5rem 0;
    }

    .home-form-card,
    .home-story-card {
        padding: 1.5rem;
    }

    .home-video-play {
        width: 72px;
        height: 72px;
    }

    .home-video-dialog {
        width: calc(100% - 1rem);
        margin: 1.75rem auto;
    }

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

@media (max-width: 640px) {
    .home-topbar-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .home-brand-logo {
        height: 44px;
    }

    .home-hero {
        background-position: 66% center;
    }

    .home-kicker,
    .home-section-badge {
        min-height: 40px;
        font-size: 0.78rem;
        letter-spacing: 0.03em;
    }

    .home-primary-button,
    .home-secondary-button,
    .home-form-submit {
        width: 100%;
        min-height: 54px;
        font-size: 0.96rem;
    }

    .home-service-item,
    .home-faq-item summary {
        padding: 1.2rem;
    }

    .home-faq-answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .home-video-caption {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }

    .floating-whatsapp {
        width: 60px;
        height: 60px;
        right: 18px;
        bottom: 18px;
    }
}

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