:root {
    --bg: #f3f8f8;
    --bg-soft: #fbfefe;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --line: rgba(15, 77, 89, 0.12);
    --line-strong: rgba(15, 77, 89, 0.2);
    --text: #173840;
    --muted: #627c84;
    --accent: #0f5c6d;
    --accent-strong: #093f4c;
    --accent-soft: #d9edf0;
    --gold: #739ea6;
    --shadow: 0 28px 70px rgba(17, 49, 53, 0.12);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --shell: min(1180px, calc(100vw - 32px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at top left, rgba(115, 158, 166, 0.16), transparent 32%),
        radial-gradient(circle at 90% 10%, rgba(15, 92, 109, 0.14), transparent 22%),
        linear-gradient(180deg, #f9fcfc 0%, #eef5f6 100%);
    color: var(--text);
    font-family: "Manrope", "Segoe UI", sans-serif;
    line-height: 1.55;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

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

.page-shell::before,
.page-shell::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    z-index: 0;
}

.page-shell::before {
    top: -120px;
    right: -140px;
    width: 360px;
    height: 360px;
    background: linear-gradient(180deg, rgba(15, 92, 109, 0.12), rgba(15, 92, 109, 0));
    filter: blur(8px);
}

.page-shell::after {
    left: -140px;
    top: 48%;
    width: 320px;
    height: 320px;
    background: linear-gradient(180deg, rgba(115, 158, 166, 0.18), rgba(115, 158, 166, 0));
}

.section-shell,
.site-header {
    position: relative;
    z-index: 1;
    width: var(--shell);
    margin: 0 auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 17px;
}

.brand-mark {
    position: relative;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 22px;
    color: var(--accent-strong);
    background:
        radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 36%),
        linear-gradient(165deg, rgba(248, 254, 255, 0.98), rgba(215, 232, 236, 0.92));
    border: 1px solid rgba(15, 92, 109, 0.14);
    box-shadow:
        0 20px 40px rgba(15, 63, 68, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.brand-mark::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 9px;
    border-radius: 16px;
    border: 1px solid rgba(15, 92, 109, 0.08);
    pointer-events: none;
}

.brand-mark svg {
    position: relative;
    z-index: 1;
    width: 39px;
    height: 39px;
    filter: drop-shadow(0 7px 14px rgba(10, 61, 71, 0.14));
}

.brand-lockup strong {
    display: block;
    font-size: 1.12rem;
    letter-spacing: 0.03em;
}

.brand-lockup span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
}

.top-nav a {
    transition: color 180ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
    color: var(--text);
}

.top-nav .nav-cta {
    padding: 13px 18px;
    border-radius: 999px;
    color: var(--surface-strong);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    box-shadow: 0 16px 35px rgba(15, 63, 68, 0.24);
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(340px, 420px);
    gap: 34px;
    padding: 24px 0 48px;
}

.hero-copy {
    padding: 54px 0 20px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow-soft {
    color: var(--gold);
}

.hero-copy h1,
.section-heading h2,
.trust-band__copy h2,
.split-copy h2,
.cta-panel h2 {
    margin: 0;
    font-family: "Lora", Georgia, serif;
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.02em;
}

.hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(3.25rem, 7vw, 6.15rem);
}

.hero-text {
    max-width: 640px;
    margin: 24px 0 0;
    font-size: 1.12rem;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 600;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button-primary {
    color: var(--surface-strong);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    box-shadow: 0 18px 36px rgba(15, 63, 68, 0.22);
}

.button-secondary {
    border-color: rgba(15, 63, 68, 0.14);
    background: rgba(255, 255, 255, 0.62);
    color: var(--text);
}

.button-full {
    width: 100%;
}

.hero-inline-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.mini-proof {
    padding: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 77, 89, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(15, 77, 89, 0.08);
    backdrop-filter: blur(10px);
}

.mini-proof strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.mini-proof span {
    color: var(--muted);
    font-size: 0.94rem;
}

.hero-note {
    margin-top: 20px;
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-sidebar {
    position: relative;
}

.form-card {
    position: sticky;
    top: 26px;
    padding: 26px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(10, 65, 77, 0.98), rgba(7, 41, 49, 0.97)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    color: #f8f5f0;
    box-shadow: 0 32px 68px rgba(7, 31, 35, 0.32);
    overflow: hidden;
}

.form-card::before {
    content: "";
    position: absolute;
    inset: auto -60px -90px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(115, 158, 166, 0.26), rgba(115, 158, 166, 0));
    pointer-events: none;
}

.form-card__header {
    position: relative;
    z-index: 1;
}

.form-card__header h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.02;
    font-family: "Lora", Georgia, serif;
    font-weight: 600;
}

.form-card__header p {
    margin: 14px 0 0;
    color: rgba(248, 245, 240, 0.76);
}

.lead-form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.field,
.consent-field {
    display: grid;
    gap: 8px;
}

.field span {
    font-size: 0.94rem;
    color: rgba(248, 245, 240, 0.82);
}

.field small {
    color: rgba(248, 245, 240, 0.6);
    font-size: 0.78rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: #fffdf9;
    padding: 15px 16px;
    outline: none;
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(248, 245, 240, 0.42);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(115, 158, 166, 0.58);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 4px rgba(115, 158, 166, 0.14);
}

.field select option {
    color: #163238;
}

.field textarea {
    min-height: 138px;
    resize: vertical;
}

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

.consent-field {
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 12px;
    color: rgba(248, 245, 240, 0.78);
    font-size: 0.93rem;
}

.consent-field input {
    margin: 4px 0 0;
}

.form-meta,
.form-response {
    margin: 0;
    font-size: 0.9rem;
}

.form-meta {
    color: rgba(248, 245, 240, 0.62);
}

.form-response {
    display: none;
    padding: 14px 15px;
    border-radius: 14px;
}

.form-response.is-visible {
    display: block;
}

.form-response.is-success {
    background: rgba(162, 226, 213, 0.14);
    color: #d7fff1;
    border: 1px solid rgba(162, 226, 213, 0.24);
}

.form-response.is-error {
    background: rgba(255, 142, 142, 0.12);
    color: #ffe4e4;
    border: 1px solid rgba(255, 142, 142, 0.22);
}

.trust-band,
.content-section,
.cta-section {
    padding: 46px 0;
}

.video-section {
    padding-top: 10px;
}

.video-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
    gap: 26px;
    align-items: center;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(240, 248, 249, 0.82));
    box-shadow: 0 20px 48px rgba(15, 77, 89, 0.08);
    backdrop-filter: blur(10px);
}

.video-copy h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    font-family: "Lora", Georgia, serif;
    font-weight: 600;
    line-height: 0.98;
}

.video-copy p {
    margin: 16px 0 0;
    color: var(--muted);
}

.video-frame {
    overflow: hidden;
    min-height: 420px;
    border-radius: 26px;
    background: #0a2628;
    box-shadow: 0 28px 60px rgba(8, 31, 34, 0.24);
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trust-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 32px;
    align-items: center;
}

.trust-band__copy h2,
.section-heading h2,
.split-copy h2,
.cta-panel h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.trust-band__copy p:last-child,
.section-heading p:last-child,
.split-copy > p {
    margin: 16px 0 0;
    max-width: 780px;
    color: var(--muted);
    font-size: 1.04rem;
}

.trust-band__visual img,
.editorial-card img,
.result-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-band__visual {
    border-radius: 28px;
    overflow: hidden;
    min-height: 300px;
    box-shadow: var(--shadow);
}

.section-heading {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

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

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.approach-card,
.treatment-card,
.journey-card,
.result-card,
.cta-panel,
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 40px rgba(15, 63, 68, 0.07);
    backdrop-filter: blur(8px);
}

.approach-card,
.treatment-card,
.journey-card {
    padding: 24px;
}

.approach-card h3,
.treatment-card h3,
.journey-card h3,
.result-card h3 {
    margin: 0;
    font-size: 1.24rem;
    line-height: 1.15;
}

.approach-card p,
.journey-card p,
.result-card p {
    margin: 12px 0 0;
    color: var(--muted);
}

.treatment-card {
    display: grid;
    align-content: start;
    gap: 14px;
}

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

.treatment-list li {
    position: relative;
    min-height: 22px;
    padding-left: 18px;
    color: var(--text);
}

.treatment-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 0 0 5px rgba(15, 92, 109, 0.1);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
    gap: 32px;
    align-items: center;
}

.point-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.point-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text);
}

.point-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #e6c188);
    box-shadow: 0 0 0 6px rgba(197, 154, 82, 0.14);
}

.split-media {
    position: relative;
    min-height: 530px;
}

.editorial-card {
    position: absolute;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow);
}

.editorial-card-large {
    inset: 0 72px 84px 0;
}

.editorial-card-small {
    width: min(270px, 54%);
    right: 0;
    bottom: 0;
    aspect-ratio: 0.9;
}

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

.result-card {
    overflow: hidden;
}

.result-card__image {
    aspect-ratio: 1.04;
    overflow: hidden;
}

.result-card__body {
    padding: 22px;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 32px;
}

.cta-panel h2 {
    max-width: 15ch;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: left;
    cursor: pointer;
}

.faq-question span:first-child {
    font-size: 1.06rem;
    font-weight: 600;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    width: 16px;
    height: 2px;
    background: var(--accent-strong);
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transition: transform 180ms ease, opacity 180ms ease;
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 220ms ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--muted);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 0 92px;
    color: var(--muted);
    border-top: 1px solid rgba(15, 63, 68, 0.08);
}

.site-footer strong {
    display: block;
    color: var(--text);
}

.footer-note {
    max-width: 420px;
    text-align: right;
}

.support-widget {
    position: fixed;
    right: 20px;
    bottom: 16px;
    z-index: 20;
    display: grid;
    justify-items: end;
    gap: 12px;
}

.support-card {
    width: min(320px, calc(100vw - 32px));
    padding: 18px;
    border: 1px solid rgba(15, 77, 89, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 48px rgba(15, 63, 68, 0.16);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    pointer-events: none;
}

.support-widget.is-open .support-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.support-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.support-status__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2cb582;
    box-shadow: 0 0 0 6px rgba(44, 181, 130, 0.14);
}

.support-card strong {
    display: block;
    font-size: 1.18rem;
    line-height: 1.1;
}

.support-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.support-card__link {
    width: 100%;
    margin-top: 16px;
}

.support-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 12px 16px 12px 12px;
    border: 0;
    border-radius: 999px;
    color: var(--surface-strong);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    box-shadow: 0 18px 36px rgba(15, 63, 68, 0.28);
    cursor: pointer;
}

.support-toggle__icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    flex: 0 0 auto;
}

.support-toggle__icon svg {
    width: 22px;
    height: 22px;
}

.support-toggle__text {
    display: grid;
    text-align: left;
}

.support-toggle__text strong {
    font-size: 0.98rem;
    line-height: 1.05;
}

.support-toggle__text small {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.76rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 540ms ease, transform 540ms ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero-section,
    .trust-band,
    .video-panel,
    .split-section {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        padding-top: 24px;
    }

    .form-card {
        position: relative;
        top: auto;
    }

    .split-media {
        min-height: 420px;
    }

    .video-frame {
        min-height: 360px;
    }
}

@media (max-width: 960px) {
    .top-nav {
        display: none;
    }

    .hero-inline-proof,
    .treatment-grid,
    .approach-grid,
    .results-grid,
    .journey-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel,
    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-note {
        text-align: left;
    }
}

@media (max-width: 720px) {
    :root {
        --shell: min(100vw - 24px, 1180px);
        --radius-xl: 28px;
        --radius-lg: 22px;
    }

    .site-header {
        padding-top: 16px;
    }

    .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2.6rem, 13vw, 4.2rem);
    }

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

    .video-panel {
        padding: 18px;
        border-radius: 24px;
    }

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

    .split-media {
        min-height: 360px;
    }

    .editorial-card-large {
        inset: 0 42px 72px 0;
    }

    .editorial-card-small {
        width: min(210px, 56%);
    }

    .cta-panel {
        padding: 24px;
    }

    .support-widget {
        right: 14px;
        bottom: 14px;
    }

    .support-card {
        width: min(320px, calc(100vw - 28px));
    }

    .support-toggle {
        min-height: 58px;
        padding: 10px 14px 10px 10px;
    }

    .support-toggle__icon {
        width: 38px;
        height: 38px;
    }

    .video-frame {
        min-height: 260px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    [data-reveal],
    .button,
    .support-card,
    .faq-answer,
    .faq-icon::before,
    .faq-icon::after {
        transition: none;
    }
}
