:root {
    --jhc-red: #9f1c20;
    --jhc-bright-red: #ed1c24;
    --jhc-bright-soft-red: #e89d9f;
    --jhc-red-dark: #741519;
    --jhc-red-soft: #fff3f3;
    --whatsapp: #128047;
    --whatsapp-dark: #0f6f3d;
    --ink: #171717;
    --muted: #665f60;
    --line: #e8e2e2;
    --surface: #ffffff;
    --soft: #faf6f6;
    --surface-subtle: var(--soft);
    --shadow-sm: 0 0.5rem 1.5rem rgb(73 34 35 / 8%);
    --shadow-lg: 0 1.5rem 3.75rem rgb(73 34 35 / 15%);
    --radius-sm: 0.75rem;
    --radius: 1.25rem;
    --radius-lg: 1.75rem;
    --container: 74rem;
    --header-height: 4rem;
    --font-heading: "Poppins", "Avenir Next", "Segoe UI", sans-serif;
    --font-body: "Ubuntu", "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
    margin: 0;
    min-width: 20rem;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-body);
}

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

img {
    height: auto;
}

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.16;
    letter-spacing: -0.025em;
    overflow-wrap: anywhere;
}

h1 {
    font-size: clamp(2rem, 9vw, 2rem);
}

h2 {
    font-size: clamp(1.75rem, 7vw, 1.75rem);
}

h3 {
    font-size: clamp(1.1rem, 4vw, 1rem);
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-top: 0;
}

[id] {
    scroll-margin-top: calc(var(--header-height) + 1rem);
}

:focus-visible {
    outline: 0.2rem solid #1f6feb;
    outline-offset: 0.2rem;
}

.gtm-noscript {
    position: absolute;
    width: 0;
    height: 0;
    border: 0;
    visibility: hidden;
}

.thank-you-dialog:not([open]) {
    display: none;
}

.thank-you-page {
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    background:
        radial-gradient(circle at 85% 12%, rgb(237 28 36 / 9%), transparent 22rem),
        linear-gradient(180deg, var(--surface), var(--soft));
}

.thank-you-page .site-header {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
}

.thank-you {
    display: grid;
    flex: 1;
    width: 100%;
    padding: clamp(2rem, 10vw, 6rem) 1rem;
    place-items: center;
}

.thank-you__card {
    width: min(100%, 40rem);
    min-width: 0;
    padding: clamp(1.5rem, 6vw, 3rem);
    border: 1px solid rgb(159 28 32 / 12%);
    border-radius: var(--radius-lg);
    background: rgb(255 255 255 / 94%);
    box-shadow: var(--shadow-lg);
}

.thank-you__card > p:not(.eyebrow),
.thank-you-dialog__surface > p:not(.eyebrow) {
    color: var(--muted);
}

.thank-you__card .hero__actions,
.thank-you-dialog .hero__actions {
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

.thank-you-dialog {
    width: min(calc(100% - 2rem), 36rem);
    max-width: 36rem;
    max-height: calc(100dvh - 2rem);
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-radius: var(--radius-lg);
    color: var(--ink);
    background: var(--surface);
    box-shadow: 0 1.75rem 5rem rgb(43 18 19 / 28%);
}

.thank-you-dialog::backdrop {
    background: rgb(31 18 19 / 62%);
    backdrop-filter: blur(0.2rem);
}

.thank-you-dialog__surface {
    position: relative;
    min-width: 0;
    padding: clamp(1.5rem, 6vw, 2.75rem);
    padding-top: clamp(4.5rem, 15vw, 5rem);
    background:
        radial-gradient(circle at 92% 5%, rgb(237 28 36 / 10%), transparent 13rem),
        var(--surface);
}

.thank-you-dialog__surface h2 {
    font-size: clamp(1.55rem, 7vw, 2.25rem);
}

.thank-you-dialog__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-grid;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--jhc-red-dark);
    background: var(--surface);
    font-size: 1.6rem;
    line-height: 1;
    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease;
}

.thank-you-dialog__close:hover {
    border-color: rgb(159 28 32 / 28%);
    background: var(--jhc-red-soft);
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 0.5rem;
    left: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: 0.5rem;
    color: var(--surface);
    background: var(--ink);
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.section {
    padding-block: clamp(3.5rem, 10vw, 7rem);
}

.eyebrow {
    margin-bottom: 0.65rem;
    color: var(--jhc-red);
    font-family: var(--font-heading);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 1.4;
}

.section-heading {
    max-width: 43rem;
    margin: 0 auto clamp(1.75rem, 5vw, 3rem);
    text-align: center;
}

.section-heading > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    min-height: var(--header-height);
    padding: 0.55rem max(1rem, calc((100vw - var(--container)) / 2));
    border-bottom: 1px solid rgb(159 28 32 / 10%);
    background: rgb(255 255 255 / 96%);
    box-shadow: 0 0.35rem 1.25rem rgb(68 25 27 / 7%);
    backdrop-filter: blur(0.75rem);
}

.site-brand {
    display: block;
    width: clamp(8rem, 39vw, 10rem);
    min-width: 0;
}

.site-brand img {
    width: 100%;
}

.site-nav {
    display: none;
}

.site-header > .button {
    min-height: 2.75rem;
    padding: 0.55rem 0.8rem;
    font-size: clamp(0.72rem, 3.6vw, 0.86rem);
    white-space: nowrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.75rem 1.15rem;
    border: 0.125rem solid transparent;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    transition:
        color 160ms ease,
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.button:hover {
    transform: translateY(-0.1rem);
}

.button:active {
    transform: translateY(0);
}

.button--primary,
.button--package {
    color: var(--surface);
    background: var(--jhc-red);
    box-shadow: 0 0.6rem 1.25rem rgb(159 28 32 / 22%);
}

.button--primary:hover,
.button--package:hover {
    background: var(--jhc-red-dark);
}

.button--secondary,
.button--outline {
    color: var(--jhc-red);
    border-color: rgb(159 28 32 / 35%);
    background: var(--surface);
}

.button--secondary:hover,
.button--outline:hover {
    border-color: var(--jhc-red);
    background: var(--jhc-red-soft);
}

.button--whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--surface);
    background: var(--whatsapp);
    box-shadow: 0 0.5rem 1rem rgb(22 143 80 / 20%);
}

.button--whatsapp:hover {
    background: var(--whatsapp-dark);
}

.button__icon {
    flex: 0 0 auto;
    width: 1.1em;
    height: 1.1em;
    fill: currentColor;
}

.button__icon--whatsapp {
    width: 1.05em;
    height: 1.05em;
}

.button--full {
    width: 100%;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: clip;
    padding-block: clamp(2.25rem, 7vw, 5rem) 2.25rem;
    background:
        radial-gradient(circle at 90% 5%, rgb(237 28 36 / 9%), transparent 24rem),
        linear-gradient(180deg, var(--surface), #fdfafa);
}

.hero::before {
    position: absolute;
    z-index: -1;
    right: -5rem;
    bottom: 7rem;
    width: 12rem;
    height: 12rem;
    border: 2.5rem solid rgb(159 28 32 / 4%);
    border-radius: 50%;
    content: "";
}

.hero__grid {
    display: grid;
    gap: 1.5rem;
}

.hero__copy,
.hero__visual {
    min-width: 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    margin-bottom: 1.25rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgb(237 28 36 / 16%);
    border-radius: 999px;
    color: var(--jhc-red-dark);
    background: var(--jhc-red-soft);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
}

.hero h1 {
    max-width: 17ch;
}

.hero__headline-highlight {
    color: var(--jhc-red);
}

.hero__form-highlight {
    color: var(--jhc-bright-soft-red);
}

.hero__description {
    max-width: 38rem;
    color: var(--muted);
    font-size: clamp(1rem, 3.8vw, 1.15rem);
}

.hero__actions {
    display: grid;
    gap: 0.75rem;
    margin-block: 1.5rem;
}

.hero__actions .button {
    width: 100%;
}

.hero__proof {
    display: grid;
    gap: 0.65rem;
    margin-bottom: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgb(255 255 255 / 78%);
    box-shadow: var(--shadow-sm);
    list-style: none;
}

.hero__proof li {
    position: relative;
    padding-left: 1.55rem;
    color: #4f4849;
    font-size: 0.88rem;
    line-height: 1.45;
}

.hero__proof li::before {
    position: absolute;
    top: 0.25em;
    left: 0;
    display: grid;
    width: 1.05rem;
    height: 1.05rem;
    place-items: center;
    border-radius: 50%;
    color: var(--surface);
    background: var(--jhc-red);
    content: "✓";
    font-size: 0.65rem;
    font-weight: 700;
}

.hero__visual {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.hero__visual picture {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--surface-subtle);
    box-shadow: var(--shadow-lg);
}

.hero__visual picture img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.hero__accreditation {
    display: grid;
    grid-template-columns: minmax(5rem, 6.5rem) minmax(0, 1fr);
    align-items: center;
    gap: 0.85rem;
    width: min(100%, 22rem);
    margin-bottom: 1rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.hero__accreditation img {
    width: 100%;
}

.hero__accreditation span {
    color: var(--muted);
    font-size: clamp(0.75rem, 3.2vw, 0.86rem);
    line-height: 1.4;
}

.packages {
    background: var(--surface-subtle);
}

.countdown {
    display: grid;
    gap: 0.2rem;
    width: fit-content;
    max-width: 100%;
    margin: 1.25rem auto 0;
    padding: 0.85rem 1.1rem;
    border: 1px solid rgb(159 28 32 / 14%);
    border-radius: var(--radius-sm);
    color: var(--jhc-red-dark);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.countdown span {
    font-size: 0.82rem;
    line-height: 1.4;
}

.countdown strong {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 4vw, 1.25rem);
    line-height: 1.3;
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 72rem;
    margin-inline: auto;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: clamp(0.95rem, 3.6vw, 1.35rem);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.package-card--featured {
    border: 2px solid var(--jhc-red);
    background:
        linear-gradient(180deg, var(--jhc-red-soft), var(--surface) 36%);
    box-shadow: 0 1.15rem 2.75rem rgb(159 28 32 / 15%);
}

.package-card__tag {
    align-self: flex-start;
    margin: -0.1rem 0 0.65rem;
    padding: 0.3rem 0.58rem;
    border-radius: 999px;
    color: var(--surface);
    background: var(--jhc-red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.package-card h3 {
    font-size: clamp(1rem, 2.2vw, 1.18rem);
}

.package-card > p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.48;
}

.package-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.24rem;
    margin: 0.85rem 0 1rem;
    padding-top: 0.7rem;
    border-top: 1px solid rgb(159 28 32 / 10%);
}

.package-card__promo-label,
.package-card__normal-price {
    color: var(--muted);
    font-size: 0.74rem;
}

.package-card__normal-price {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem;
}

.package-card__normal-price del {
    color: rgb(75 85 99 / 78%);
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 0.11em;
    text-decoration-color: var(--jhc-red);
}

.package-card__price strong {
    color: var(--jhc-red);
    font-family: var(--font-heading);
    font-size: clamp(1.36rem, 2.45vw, 1.92rem);
    line-height: 1;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.package-card__discount {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    color: var(--jhc-red);
    background: rgb(159 28 32 / 9%);
    font-size: 0.7rem;
    font-weight: 800;
}

.package-card .button {
    width: 100%;
    margin-top: auto;
}

.package-card--featured .button--package {
    background: var(--jhc-bright-red);
}

.package-card--featured .button--package:hover {
    background: var(--jhc-red-dark);
}

.promo-catalog {
    margin-top: clamp(1.5rem, 5vw, 2.5rem);
    padding: clamp(1rem, 4vw, 1.5rem);
    border: 1px solid rgb(159 28 32 / 12%);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgb(159 28 32 / 6%), rgb(255 255 255 / 92%)),
        var(--surface);
    box-shadow: var(--shadow-sm);
}

.promo-catalog__heading {
    max-width: 46rem;
    margin-bottom: 1rem;
}

.promo-catalog__heading h3 {
    font-size: clamp(1.25rem, 5vw, 1.8rem);
}

.promo-catalog__heading p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.promo-catalog__groups {
    display: grid;
    gap: 0.75rem;
}

.promo-group {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
}

.promo-group[open] {
    border-color: rgb(159 28 32 / 28%);
    box-shadow: 0 1rem 2.25rem rgb(159 28 32 / 10%);
}

.promo-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    cursor: pointer;
    list-style: none;
}

.promo-group summary::-webkit-details-marker {
    display: none;
}

.promo-group summary span {
    display: grid;
    gap: 0.28rem;
}

.promo-group summary strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.promo-group summary small {
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.promo-group summary em {
    flex: 0 0 auto;
    padding: 0.28rem 0.58rem;
    border-radius: 999px;
    color: var(--jhc-red);
    background: var(--jhc-red-soft);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 800;
}

.promo-group__items {
    display: grid;
    gap: 0.65rem;
    padding: 0 1rem 1rem;
}

.promo-item {
    display: grid;
    gap: 0.85rem;
    padding: 0.9rem;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius-sm) - 0.25rem);
    background: rgb(255 255 255 / 86%);
}

.promo-item__copy h4 {
    margin-bottom: 0.32rem;
    font-size: 0.98rem;
}

.promo-item__copy p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.promo-item__price {
    display: grid;
    gap: 0.18rem;
}

.promo-item__price > span,
.promo-item__normal-price {
    color: var(--muted);
    font-size: 0.76rem;
}

.promo-item__normal-price del {
    margin-left: 0.25rem;
    color: rgb(75 85 99 / 78%);
    font-weight: 700;
    text-decoration: line-through;
    text-decoration-thickness: 0.11em;
    text-decoration-color: var(--jhc-red);
}

.promo-item__price strong {
    color: var(--jhc-red);
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 5vw, 1.55rem);
    letter-spacing: -0.035em;
}

.promo-item__price small {
    width: fit-content;
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
    color: var(--jhc-red);
    background: rgb(159 28 32 / 9%);
    font-size: 0.7rem;
    font-weight: 800;
}

.promo-item__button {
    align-self: center;
    width: 100%;
}

.package-disclaimer {
    max-width: 48rem;
    margin: 1.5rem auto 0;
    color: var(--muted);
    font-size: 0.8rem;
    text-align: center;
}

.why-jhc {
    background: var(--surface);
}

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

.trust-card {
    min-width: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.trust-card > span {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: var(--jhc-red);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.trust-card h3 {
    font-size: clamp(0.96rem, 4vw, 1.15rem);
}

.trust-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(0.76rem, 3.3vw, 0.9rem);
    line-height: 1.5;
}

.partner-marquee {
    --partner-marquee-duration: 96s;
    position: relative;
    max-width: 100%;
    margin-top: 0.65rem;
    padding-block: 1.25rem;
    overflow: hidden;
    border-block: 1px solid var(--line);
    background: var(--surface);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

.partner-marquee__label {
    margin: clamp(1.1rem, 3.5vw, 1.8rem) 0 0;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.partner-marquee__track {
    display: flex;
    width: max-content;
    animation: partner-scroll var(--partner-marquee-duration) linear infinite;
    will-change: transform;
}

.partner-marquee__track.is-paused {
    animation-play-state: paused;
}

.partner-marquee__group {
    display: flex;
    flex: none;
    align-items: center;
    gap: clamp(1.75rem, 6vw, 4rem);
    padding-right: clamp(1.75rem, 6vw, 4rem);
}

.partner-marquee img {
    width: auto;
    max-width: clamp(5.5rem, 23vw, 9rem);
    height: clamp(2rem, 9vw, 3.25rem);
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.68;
    transition: filter 320ms ease, opacity 320ms ease;
}

.partner-marquee:hover img,
.partner-marquee:focus img,
.partner-marquee:focus-within img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes partner-scroll {
    to {
        transform: translateX(-50%);
    }
}

.lead-section {
    color: var(--surface);
    background:
        radial-gradient(circle at 10% 10%, rgb(255 255 255 / 10%), transparent 19rem),
        linear-gradient(135deg, var(--jhc-red-dark), var(--jhc-red));
}

.lead-section__grid {
    display: grid;
    gap: 1.5rem;
}

.lead-section__copy {
    min-width: 0;
}

.lead-section .eyebrow {
    color: #ffd9da;
}

.lead-section h2 {
    color: var(--surface);
}

.lead-section__copy > p:not(.eyebrow),
.lead-section__copy li {
    color: rgb(255 255 255 / 86%);
}

.lead-section__copy ul {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 0;
    padding-left: 1.25rem;
}

.lead-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    min-width: 0;
    padding: clamp(1.25rem, 5vw, 2rem);
    border-radius: var(--radius);
    color: var(--ink);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
}

.form-field {
    display: grid;
    gap: 0.4rem;
    min-width: 0;
}

.form-field label {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
}

.form-field label span {
    color: var(--jhc-bright-red);
}

.form-field input,
.form-field select {
    width: 100%;
    min-width: 0;
    min-height: 3rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid #cfc6c7;
    border-radius: 0.65rem;
    color: var(--ink);
    background: var(--surface);
    line-height: 1.25;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input::placeholder {
    color: #837b7c;
}

.form-field input:hover,
.form-field select:hover {
    border-color: #a99d9e;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--jhc-red);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgb(159 28 32 / 14%);
}

.form-field input[aria-invalid="true"],
.form-field select[aria-invalid="true"] {
    border-color: var(--jhc-bright-red);
}

.form-status {
    margin: 0;
    padding: 0.75rem 0.9rem;
    border: 1px solid #efb1b3;
    border-radius: 0.65rem;
    color: #781318;
    background: #fff0f0;
    font-size: 0.88rem;
    line-height: 1.45;
}

.form-status[hidden] {
    display: none;
}

.form-consent {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.76rem;
    line-height: 1.5;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    padding-block: 1.5rem;
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.site-footer__inner {
    display: grid;
    justify-items: center;
    gap: 0.8rem;
    text-align: center;
}

.site-footer img {
    width: min(10rem, 55vw);
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--jhc-red);
    font-size: 0.9rem;
    font-weight: 700;
    text-underline-offset: 0.2em;
}

@media (min-width: 36rem) {
    .container {
        width: min(100% - 3rem, var(--container));
    }

    .hero__actions {
        grid-template-columns: repeat(2, minmax(0, max-content));
    }

    .hero__actions .button {
        width: auto;
    }

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

    .thank-you__card .hero__actions .button {
        width: 100%;
    }

    .thank-you-dialog .hero__actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .thank-you-dialog .hero__actions .button {
        width: 100%;
    }

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

    .site-footer__inner {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        justify-items: start;
        text-align: left;
    }

    .site-footer a {
        justify-self: end;
    }
}

@media (min-width: 48rem) {
    :root {
        --header-height: 4.5rem;
    }

    .site-header {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 2rem;
    }

    .site-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: clamp(1rem, 3vw, 2rem);
        min-width: 0;
    }

    .site-nav a {
        color: #51494a;
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
    }

    .site-nav a:hover {
        color: var(--jhc-red);
    }

    .site-header > .button {
        padding-inline: 1.1rem;
    }

    .why-grid {
        gap: 1rem;
    }

    .trust-card {
        padding: 1.35rem;
    }
}

@media (min-width: 60rem) {
    h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    h2 {
        font-size: clamp(1.75rem, 7vw, 2.75rem);
    }

    h3 {
        font-size: clamp(1.1rem, 4vw, 1.35rem);
    }

    .hero {
        min-height: calc(100svh - var(--header-height));
        display: grid;
        align-items: center;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(24rem, 0.92fr);
        align-items: center;
        gap: clamp(3rem, 6vw, 5.5rem);
    }

    .hero__visual {
        gap: 0;
    }

    .hero__visual picture img {
        aspect-ratio: 4 / 3;
    }

    .hero__accreditation {
        width: min(100%, 23rem);
        margin-bottom: 1.25rem;
        padding: 0.75rem 0.9rem;
    }

    .package-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        align-items: stretch;
        gap: 0.85rem;
    }

    .package-card--featured {
        transform: none;
    }

    .promo-item {
        grid-template-columns: minmax(0, 1fr) minmax(9rem, 0.32fr) auto;
        align-items: center;
    }

    .promo-item__button {
        width: auto;
        min-width: 9rem;
    }

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

    .lead-section__grid {
        grid-template-columns: minmax(0, 0.75fr) minmax(30rem, 1.25fr);
        align-items: center;
        gap: clamp(3rem, 7vw, 6rem);
    }

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

    .lead-form > .button,
    .form-consent,
    .form-status {
        grid-column: 1 / -1;
    }

    .site-footer {
        padding-block: 2rem;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .partner-marquee__track {
        width: 100%;
        transform: none;
        animation: none;
    }

    .partner-marquee__group {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .partner-marquee__group[aria-hidden="true"] {
        display: none;
    }
}
