.act-page,
.act-home-launch,
.act-search {
    --act-navy: #061f45;
    --act-navy-2: #07376f;
    --act-blue: #0875ed;
    --act-blue-2: #22a6f2;
    --act-cyan: #47d8e7;
    --act-orange: #ff6b0c;
    --act-orange-2: #ff963e;
    --act-green: #07895d;
    --act-red: #bd281f;
    --act-amber: #86560d;
    --act-ink: #0a2448;
    --act-muted: #687991;
    --act-line: #d9e4ef;
    --act-soft: #f2f7fd;
    --act-white: #fff;
    --act-radius-xl: 32px;
    --act-radius-lg: 24px;
    --act-radius-md: 18px;
    --act-shadow: 0 22px 58px rgba(9, 46, 91, .12);
    --act-shadow-soft: 0 12px 30px rgba(9, 46, 91, .08);
}

.act-page {
    background:
        radial-gradient(circle at 5% 9%, rgba(8, 117, 237, .09), transparent 28rem),
        radial-gradient(circle at 96% 62%, rgba(71, 216, 231, .08), transparent 30rem),
        #f3f7fc;
    color: var(--act-ink);
    min-height: 100vh;
}

.act-page *,
.act-page *::before,
.act-page *::after,
.act-home-launch *,
.act-home-launch *::before,
.act-home-launch *::after {
    box-sizing: border-box;
}

.act-page button,
.act-page input,
.act-page select,
.act-page textarea {
    font: inherit;
}

.act-test-ribbon {
    align-items: center;
    background: linear-gradient(90deg, #fff1b9, #fff9e0);
    border-block: 1px solid #f0d36c;
    color: #744b08;
    display: flex;
    font-size: .78rem;
    font-weight: 900;
    gap: .55rem;
    justify-content: center;
    letter-spacing: .075em;
    min-height: 46px;
    padding: .72rem 1rem;
    text-align: center;
}

.act-main {
    overflow: clip;
    padding: clamp(1.15rem, 3vw, 2.7rem) 1rem clamp(4rem, 8vw, 7rem);
}

.act-shell {
    margin-inline: auto;
    max-width: 1160px;
}

.act-progress {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 0 auto clamp(1.4rem, 3vw, 2.3rem);
    max-width: 760px;
    position: relative;
}

.act-progress::before {
    background: #d8e4f0;
    content: "";
    height: 4px;
    inset-inline: 11%;
    position: absolute;
    top: 25px;
}

.act-progress__step {
    align-items: center;
    color: #8a98aa;
    display: flex;
    flex-direction: column;
    font-size: .78rem;
    font-weight: 850;
    gap: .48rem;
    min-width: 0;
    position: relative;
    text-align: center;
    z-index: 1;
}

.act-progress__step > span {
    align-items: center;
    background: #fff;
    border: 2px solid #d8e4f0;
    border-radius: 50%;
    display: flex;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.act-progress__step.is-done,
.act-progress__step.is-current {
    color: var(--act-blue);
}

.act-progress__step.is-done > span {
    background: var(--act-blue);
    border-color: var(--act-blue);
    color: #fff;
}

.act-progress__step.is-current > span {
    background: linear-gradient(135deg, var(--act-orange), var(--act-orange-2));
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(255, 107, 12, .28);
    color: #fff;
}

.act-card {
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(209, 221, 234, .95);
    border-radius: var(--act-radius-lg);
    box-shadow: var(--act-shadow-soft);
}

.act-alert {
    align-items: flex-start;
    background: #fff0ef;
    border: 1px solid #f0beba;
    border-radius: var(--act-radius-md);
    color: var(--act-red);
    display: flex;
    font-weight: 800;
    gap: .8rem;
    line-height: 1.45;
    margin: 0 auto 1.4rem;
    max-width: 920px;
    padding: 1rem 1.15rem;
}

.act-alert--success {
    background: #eafbf4;
    border-color: #aee4cf;
    color: var(--act-green);
}

.act-alert--warning {
    background: #fff8df;
    border-color: #ead48e;
    color: var(--act-amber);
}

.act-kicker {
    align-items: center;
    color: var(--act-blue);
    display: inline-flex;
    font-size: .77rem;
    font-weight: 950;
    gap: .48rem;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.act-hero {
    background:
        radial-gradient(circle at 88% 12%, rgba(71, 216, 231, .27), transparent 20rem),
        radial-gradient(circle at 55% 120%, rgba(8, 117, 237, .35), transparent 26rem),
        linear-gradient(135deg, var(--act-navy), var(--act-navy-2) 66%, #0864bd);
    border-radius: var(--act-radius-xl);
    box-shadow: 0 28px 70px rgba(5, 42, 84, .22);
    color: #fff;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
    margin-bottom: 1.5rem;
    min-height: 390px;
    overflow: hidden;
    position: relative;
}

.act-hero::before,
.act-hero::after {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    position: absolute;
}

.act-hero::before {
    height: 330px;
    inset-inline-end: -120px;
    top: -150px;
    width: 330px;
}

.act-hero::after {
    bottom: -240px;
    height: 430px;
    inset-inline-start: 30%;
    width: 430px;
}

.act-hero__copy {
    align-self: center;
    padding: clamp(2rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
}

.act-hero .act-kicker {
    color: #83ecf4;
}

.act-hero h1,
.act-page-head h1,
.act-results-head h1,
.act-manage-hero h1,
.act-status h1 {
    letter-spacing: -.04em;
    line-height: 1.05;
}

.act-hero h1 {
    font-size: clamp(2.25rem, 5vw, 4.7rem);
    margin: .85rem 0 1rem;
    max-width: 760px;
}

.act-hero p {
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1rem, 1.8vw, 1.16rem);
    line-height: 1.7;
    margin: 0;
    max-width: 660px;
}

.act-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 1.5rem;
}

.act-hero__chips span {
    align-items: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    display: inline-flex;
    font-size: .85rem;
    font-weight: 800;
    gap: .5rem;
    padding: .65rem .85rem;
}

.act-hero__visual {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 300px;
    position: relative;
    z-index: 1;
}

.act-hero__visual::before {
    border: 2px dashed rgba(255, 255, 255, .22);
    border-radius: 50%;
    content: "";
    height: 245px;
    pointer-events: none;
    position: absolute;
    width: 245px;
}

.act-hero__visual span {
    align-items: center;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .16);
    color: var(--act-blue);
    display: flex;
    font-size: 1.75rem;
    height: 82px;
    justify-content: center;
    margin: 0 -.15rem;
    position: relative;
    transform: translateY(48px);
    width: 82px;
}

.act-hero__visual span:nth-child(2) {
    background: linear-gradient(135deg, var(--act-orange), var(--act-orange-2));
    color: #fff;
    height: 105px;
    transform: translateY(-30px);
    width: 105px;
    z-index: 1;
}

.act-search {
    margin: 0 auto 1.5rem;
    max-width: 920px;
    padding: clamp(1.1rem, 3vw, 2rem);
}

.act-search--home {
    box-shadow: none;
    margin: 0;
    max-width: none;
}

.act-search__head,
.act-form-section__head,
.act-summary__top,
.act-booking-card__route,
.act-cancel__head {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
}

.act-search__head {
    margin-bottom: 1.35rem;
}

.act-search__head-icon,
.act-form-section__head > span,
.act-summary__icon,
.act-summary__top > span,
.act-booking-card__route > span,
.act-cancel__head > span,
.act-manage-hero__icon {
    align-items: center;
    background: #edf6ff;
    border-radius: 18px;
    color: var(--act-blue);
    display: flex;
    flex: 0 0 auto;
    font-size: 1.25rem;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.act-search__head h2,
.act-form-section__head h2,
.act-summary h2,
.act-booking-card h2,
.act-cancel h2 {
    color: var(--act-ink);
    font-size: clamp(1.18rem, 2vw, 1.5rem);
    margin: .18rem 0 .25rem;
}

.act-search__head p,
.act-form-section__head p,
.act-cancel p,
.act-summary p,
.act-booking-card p {
    color: var(--act-muted);
    line-height: 1.55;
    margin: 0;
}

.act-grid {
    display: grid;
    gap: 1rem;
}

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

.act-field {
    min-width: 0;
}

.act-field label {
    align-items: center;
    color: var(--act-ink);
    display: flex;
    font-size: .92rem;
    font-weight: 850;
    gap: .5rem;
    margin: 0 0 .48rem;
}

.act-field label i {
    color: var(--act-blue);
}

.act-field input,
.act-field select,
.act-field textarea {
    appearance: none;
    background: #fff;
    border: 1.5px solid #cbd9e8;
    border-radius: var(--act-radius-md);
    color: var(--act-ink);
    min-height: 56px;
    outline: none;
    padding: .85rem 1rem;
    transition: border-color .18s ease, box-shadow .18s ease;
    width: 100%;
}

.act-field select {
    background-image: linear-gradient(45deg, transparent 50%, #6e7f94 50%), linear-gradient(135deg, #6e7f94 50%, transparent 50%);
    background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
    background-repeat: no-repeat;
    background-size: 6px 6px, 6px 6px;
    padding-inline-end: 2.8rem;
}

[dir="rtl"] .act-field select {
    background-position: 20px 50%, 14px 50%;
    padding-inline: 2.8rem 1rem;
}

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

.act-field input:focus,
.act-field select:focus,
.act-field textarea:focus {
    border-color: var(--act-blue);
    box-shadow: 0 0 0 4px rgba(8, 117, 237, .12);
}

.act-field--destination {
    margin-bottom: 1rem;
}

.act-participant-picker {
    background: #f7faff;
    border: 1px solid var(--act-line);
    border-radius: var(--act-radius-lg);
    margin-top: 1rem;
    padding: 1rem;
}

.act-participant-picker__title {
    align-items: center;
    display: flex;
    gap: .8rem;
    margin-bottom: .45rem;
}

.act-participant-picker__title > i {
    color: var(--act-blue);
    font-size: 1.15rem;
}

.act-participant-picker__title strong,
.act-participant-picker__title small,
.act-counter-row strong,
.act-counter-row small {
    display: block;
}

.act-participant-picker__title small,
.act-counter-row small {
    color: var(--act-muted);
    font-size: .78rem;
    margin-top: .12rem;
}

.act-counter-row {
    align-items: center;
    border-top: 1px solid #e0e9f2;
    display: flex;
    justify-content: space-between;
    margin-top: .65rem;
    padding-top: .8rem;
}

.act-counter {
    align-items: center;
    background: #fff;
    border: 1px solid #d7e3ee;
    border-radius: 999px;
    display: flex;
    flex: 0 0 auto;
    gap: .3rem;
    padding: .3rem;
}

.act-counter button {
    align-items: center;
    background: #edf6ff;
    border: 0;
    border-radius: 50%;
    color: var(--act-blue);
    cursor: pointer;
    display: flex;
    font-size: 1.2rem;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.act-counter button:active {
    transform: scale(.94);
}

.act-counter input {
    appearance: textfield;
    background: transparent;
    border: 0;
    color: var(--act-ink);
    font-weight: 900;
    min-height: 38px;
    padding: 0;
    text-align: center;
    width: 38px;
}

.act-child-ages {
    display: grid;
    gap: .75rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
}

.act-child-ages[hidden] {
    display: none;
}

.act-child-ages label {
    color: var(--act-ink);
    display: grid;
    font-size: .82rem;
    font-weight: 800;
    gap: .35rem;
}

.act-child-ages select {
    background: #fff;
    border: 1px solid #cbd9e8;
    border-radius: 12px;
    color: var(--act-ink);
    min-height: 46px;
    padding: .65rem;
}

.act-primary,
.act-secondary,
.act-danger {
    align-items: center;
    border: 0;
    border-radius: 16px;
    cursor: pointer;
    display: inline-flex;
    font-weight: 850;
    gap: .7rem;
    justify-content: center;
    min-height: 56px;
    padding: .9rem 1.25rem;
    text-align: center;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.act-primary {
    background: linear-gradient(135deg, #0865d2, #1688f5);
    box-shadow: 0 12px 26px rgba(8, 117, 237, .22);
    color: #fff;
}

.act-primary--orange {
    background: linear-gradient(135deg, var(--act-orange), var(--act-orange-2));
    box-shadow: 0 12px 28px rgba(255, 107, 12, .24);
}

.act-secondary {
    background: #fff;
    border: 1px solid var(--act-line);
    color: var(--act-ink);
}

.act-danger {
    background: linear-gradient(135deg, #b91f19, #df342b);
    color: #fff;
}

.act-primary:hover,
.act-secondary:hover,
.act-danger:hover {
    transform: translateY(-1px);
}

.act-primary[aria-busy="true"],
.act-primary:disabled {
    cursor: wait;
    opacity: .72;
}

.act-search__submit {
    justify-content: space-between;
    margin-top: 1rem;
    width: 100%;
}

.act-search__footer {
    align-items: center;
    color: var(--act-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: .82rem;
    gap: .7rem 1.25rem;
    justify-content: space-between;
    margin-top: 1rem;
}

.act-search__footer span,
.act-search__footer a {
    align-items: center;
    display: inline-flex;
    gap: .45rem;
}

.act-search__footer i {
    color: var(--act-green);
}

.act-search__footer a {
    color: var(--act-blue);
    font-weight: 800;
    text-decoration: none;
}

.act-trust-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1.5rem;
}

.act-trust-grid article {
    padding: 1.35rem;
}

.act-trust-grid article > i {
    color: var(--act-blue);
    font-size: 1.35rem;
}

.act-trust-grid h2 {
    font-size: 1.05rem;
    margin: .8rem 0 .35rem;
}

.act-trust-grid p {
    color: var(--act-muted);
    line-height: 1.55;
    margin: 0;
}

.act-results-head,
.act-page-head,
.act-manage-hero {
    margin: 0 auto 1.5rem;
    max-width: 1040px;
}

.act-results-head > a,
.act-back-link {
    align-items: center;
    color: var(--act-blue);
    display: inline-flex;
    font-weight: 850;
    gap: .5rem;
    margin-bottom: 1rem;
    text-decoration: none;
}

.act-results-head h1,
.act-page-head h1,
.act-manage-hero h1 {
    color: var(--act-ink);
    font-size: clamp(2rem, 5vw, 4rem);
    margin: .6rem 0 .7rem;
}

.act-results-head__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.act-results-head__meta span,
.act-booking-meta span {
    align-items: center;
    background: #fff;
    border: 1px solid var(--act-line);
    border-radius: 999px;
    color: var(--act-muted);
    display: inline-flex;
    font-size: .85rem;
    font-weight: 750;
    gap: .45rem;
    padding: .65rem .85rem;
}

.act-results-head__meta i,
.act-booking-meta i {
    color: var(--act-blue);
}

.act-empty {
    margin: 2rem auto;
    max-width: 720px;
    padding: 2.5rem;
    text-align: center;
}

.act-empty > i {
    color: var(--act-blue);
    font-size: 2rem;
}

.act-empty p {
    color: var(--act-muted);
}

.act-results-form,
.act-offers-section {
    margin-inline: auto;
    max-width: 1040px;
}

.act-section-title {
    align-items: center;
    display: flex;
    gap: .9rem;
    margin: 1.7rem 0 1rem;
}

.act-section-title > span {
    align-items: center;
    background: linear-gradient(135deg, var(--act-blue), var(--act-cyan));
    border-radius: 17px;
    color: #fff;
    display: flex;
    font-weight: 900;
    height: 58px;
    justify-content: center;
    width: 58px;
}

.act-section-title h2,
.act-section-title p {
    margin: 0;
}

.act-section-title p {
    color: var(--act-muted);
    margin-top: .2rem;
}

.act-offers {
    display: grid;
    gap: 1rem;
}

.act-offer {
    align-items: stretch;
    background: #fff;
    border: 1.5px solid var(--act-line);
    border-radius: var(--act-radius-lg);
    box-shadow: var(--act-shadow-soft);
    cursor: pointer;
    display: grid;
    gap: 1.15rem;
    grid-template-columns: 190px minmax(0, 1fr) auto;
    min-width: 0;
    overflow: hidden;
    padding: 1rem;
    position: relative;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.act-offer:hover,
.act-offer.is-selected {
    border-color: var(--act-blue);
    box-shadow: 0 18px 42px rgba(8, 117, 237, .13);
    transform: translateY(-1px);
}

.act-offer > input {
    height: 1px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 1px;
}

.act-offer__check {
    align-items: center;
    background: var(--act-blue);
    border-radius: 50%;
    color: #fff;
    display: none;
    height: 36px;
    inset-inline-end: .65rem;
    justify-content: center;
    position: absolute;
    top: .65rem;
    width: 36px;
    z-index: 2;
}

.act-offer.is-selected .act-offer__check {
    display: flex;
}

.act-offer__media {
    align-items: center;
    background: linear-gradient(145deg, #edf7ff 0%, #e4f1ff 100%);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    min-height: 155px;
    overflow: hidden;
    position: relative;
}

.act-offer__media img {
    height: 100%;
    object-fit: cover;
    position: relative;
    width: 100%;
    z-index: 1;
}

.act-offer__media-fallback {
    align-items: center;
    color: var(--act-blue);
    display: flex;
    font-size: 2.1rem;
    inset: 0;
    justify-content: center;
    position: absolute;
}

.act-offer__media--placeholder {
    color: var(--act-blue);
    font-size: 2.1rem;
    justify-content: center;
}

.act-offer__media--placeholder img {
    display: none;
}

.act-offer__body {
    align-content: center;
    display: grid;
    min-width: 0;
}

.act-offer__body > strong {
    color: var(--act-ink);
    font-size: 1.25rem;
    line-height: 1.25;
    margin: .45rem 0;
}

.act-offer__body > small {
    color: var(--act-muted);
    display: -webkit-box;
    line-height: 1.5;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.act-offer__tags,
.act-offer__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.act-offer__tags em {
    background: #edf6ff;
    border-radius: 999px;
    color: var(--act-blue);
    font-size: .72rem;
    font-style: normal;
    font-weight: 900;
    padding: .38rem .58rem;
    text-transform: uppercase;
}

.act-offer__meta {
    color: var(--act-muted);
    font-size: .78rem;
    line-height: 1.45;
    margin-top: .7rem;
}

.act-offer__meta span {
    align-items: flex-start;
    display: inline-flex;
    gap: .4rem;
}

.act-offer__meta i {
    color: var(--act-green);
    margin-top: .13rem;
}

.act-offer__price {
    align-content: center;
    border-inline-start: 1px solid #e1e8f1;
    display: grid;
    min-width: 150px;
    padding-inline-start: 1rem;
}

.act-offer__price small {
    color: var(--act-muted);
}

.act-offer__price strong {
    color: var(--act-ink);
    font-size: 1.35rem;
    margin-top: .25rem;
    white-space: nowrap;
}

.act-selection-bar {
    align-items: center;
    background: linear-gradient(135deg, var(--act-navy), var(--act-navy-2));
    border-radius: var(--act-radius-lg);
    color: #fff;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin: 1.5rem auto 0;
    max-width: 1040px;
    padding: 1.2rem;
}

.act-selection-bar strong,
.act-selection-bar small {
    display: block;
}

.act-selection-bar small {
    color: rgba(255, 255, 255, .72);
    margin-top: .2rem;
}

.act-page-head p {
    color: var(--act-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.act-summary,
.act-booking-form,
.act-booking-card,
.act-total-card,
.act-status,
.act-cancel,
.act-confirm-actions,
.act-manage-form,
.act-back-link {
    margin-inline: auto;
    max-width: 920px;
}

.act-summary,
.act-booking-card,
.act-total-card,
.act-form-section,
.act-conditions,
.act-cancel {
    padding: clamp(1.1rem, 3vw, 1.75rem);
}

.act-summary {
    margin-bottom: 1.2rem;
}

.act-summary__grid,
.act-reference-grid {
    display: grid;
    gap: .8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 1.2rem;
}

.act-summary__grid > div,
.act-reference-grid > div {
    background: #f5f8fc;
    border: 1px solid #e0e8f0;
    border-radius: 15px;
    min-width: 0;
    padding: .9rem;
}

.act-summary__grid small,
.act-reference-grid small {
    color: var(--act-muted);
    display: block;
    margin-bottom: .3rem;
}

.act-summary__grid strong,
.act-reference-grid strong {
    overflow-wrap: anywhere;
}

.act-summary__price {
    background: #fff5ec !important;
    border-color: #ffd5b5 !important;
}

.act-summary__price strong {
    color: var(--act-orange);
    font-size: 1.25rem;
}

.act-booking-form {
    display: grid;
    gap: 1.2rem;
}

.act-form-section__head {
    margin-bottom: 1.2rem;
}

.act-participant-forms {
    display: grid;
    gap: 1rem;
}

.act-participant-card {
    border: 1px solid var(--act-line);
    border-radius: 18px;
    margin: 0;
    padding: 1rem;
}

.act-participant-card legend {
    color: var(--act-ink);
    font-weight: 900;
    padding: 0 .4rem;
}

.act-participant-card legend small {
    color: var(--act-muted);
    font-weight: 650;
    margin-inline-start: .35rem;
}

.act-conditions > div {
    align-items: flex-start;
    display: flex;
    gap: .8rem;
}

.act-conditions > div > i {
    color: var(--act-blue);
    font-size: 1.35rem;
}

.act-conditions strong,
.act-conditions small {
    display: block;
}

.act-conditions small {
    color: var(--act-muted);
    line-height: 1.5;
    margin-top: .2rem;
}

.act-conditions label,
.act-cancel form label {
    align-items: flex-start;
    border-top: 1px solid #e0e8f0;
    color: var(--act-ink);
    display: flex;
    font-weight: 800;
    gap: .75rem;
    line-height: 1.45;
    margin-top: 1rem;
    padding-top: 1rem;
}

.act-conditions input,
.act-cancel form input {
    accent-color: var(--act-blue);
    flex: 0 0 auto;
    height: 22px;
    width: 22px;
}

.act-booking-form > .act-primary {
    width: 100%;
}

.act-form-note {
    color: var(--act-muted);
    font-size: .82rem;
    margin: -.25rem 0 0;
    text-align: center;
}

.act-manage-hero {
    text-align: center;
}

.act-manage-hero__icon {
    margin: 0 auto .9rem;
}

.act-manage-hero p {
    color: var(--act-muted);
    line-height: 1.6;
}

.act-manage-form {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: clamp(1.1rem, 3vw, 1.75rem);
}

.act-back-link {
    display: flex;
    justify-content: center;
}

.act-status {
    align-items: center;
    background: #fff;
    border: 1px solid #d4e3ef;
    border-radius: var(--act-radius-lg);
    box-shadow: var(--act-shadow-soft);
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    padding: clamp(1.2rem, 3vw, 1.8rem);
}

.act-status__icon {
    align-items: center;
    background: #fff7dd;
    border-radius: 22px;
    color: var(--act-amber);
    display: flex;
    flex: 0 0 auto;
    font-size: 1.7rem;
    height: 76px;
    justify-content: center;
    width: 76px;
}

.act-status--success {
    background: #f1fcf7;
    border-color: #aee3cd;
}

.act-status--success .act-status__icon {
    background: #dff7ec;
    color: var(--act-green);
}

.act-status--cancelled,
.act-status--error {
    background: #fff7f6;
    border-color: #efc2be;
}

.act-status--cancelled .act-status__icon,
.act-status--error .act-status__icon {
    background: #ffe9e7;
    color: var(--act-red);
}

.act-status h1 {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    margin: .25rem 0 .35rem;
}

.act-status p {
    color: var(--act-muted);
    line-height: 1.5;
    margin: 0;
}

.act-booking-card,
.act-total-card,
.act-cancel {
    margin-bottom: 1.2rem;
}

.act-booking-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1rem;
}

.act-total-card h2 {
    border-bottom: 1px solid #e0e8f0;
    margin: 0 0 1rem;
    padding-bottom: 1rem;
}

.act-total-card > div {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.act-total-card > div span {
    color: var(--act-muted);
}

.act-total-card > div strong {
    font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.act-badge {
    background: #fff6dd;
    border-radius: 999px;
    color: var(--act-amber);
    display: inline-flex;
    font-size: .78rem;
    font-style: normal;
    font-weight: 900;
    margin-top: 1rem;
    padding: .48rem .7rem;
    text-transform: uppercase;
}

.act-badge--success {
    background: #e5f9ef;
    color: var(--act-green);
}

.act-badge--cancelled,
.act-badge--error {
    background: #ffe9e7;
    color: var(--act-red);
}

.act-cancel--confirm {
    border-color: #efc0bc;
}

.act-cancel__head strong {
    color: var(--act-red);
    display: block;
    font-size: 1.65rem;
    margin-top: .25rem;
}

.act-cancel form {
    margin-top: 1rem;
}

.act-cancel .act-danger {
    margin-top: 1rem;
    width: 100%;
}

.act-confirm-actions {
    display: grid;
    gap: .8rem;
}

.act-confirm-actions a {
    width: 100%;
}

.act-home-launch {
    background:
        radial-gradient(circle at 90% 10%, rgba(71, 216, 231, .27), transparent 18rem),
        linear-gradient(135deg, var(--act-navy), #0753a3);
    border-radius: 28px;
    color: #fff;
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, 1fr) 230px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    padding: clamp(1.3rem, 4vw, 2.25rem);
    position: relative;
}

.act-home-launch::after {
    border: 2px dashed rgba(255, 255, 255, .16);
    border-radius: 50%;
    content: "";
    height: 260px;
    inset-inline-end: -75px;
    pointer-events: none;
    position: absolute;
    top: -80px;
    width: 260px;
}

.act-home-launch__copy,
.act-home-launch__visual {
    position: relative;
    z-index: 1;
}

.act-home-launch .act-kicker {
    color: #7ee9f1;
}

.act-home-launch h2 {
    font-size: clamp(1.65rem, 4vw, 2.8rem);
    letter-spacing: -.035em;
    line-height: 1.08;
    margin: .65rem 0 .75rem;
}

.act-home-launch p {
    color: rgba(255, 255, 255, .76);
    line-height: 1.55;
    margin: 0;
}

.act-home-launch__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.1rem;
}

.act-home-launch__actions a {
    min-height: 50px;
}

.act-home-launch__manage {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 15px;
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    gap: .55rem;
    padding: .75rem 1rem;
    text-decoration: none;
}

.act-home-launch__visual {
    align-items: center;
    display: flex;
    font-size: 3rem;
    justify-content: center;
}

.act-home-launch__visual span {
    align-items: center;
    background: linear-gradient(135deg, var(--act-orange), var(--act-orange-2));
    border-radius: 26px;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .2);
    display: flex;
    height: 125px;
    justify-content: center;
    width: 125px;
}

@media (max-width: 860px) {
    .act-hero {
        grid-template-columns: 1fr;
    }

    .act-hero__visual {
        display: none;
    }

    .act-offer {
        grid-template-columns: 145px minmax(0, 1fr);
    }

    .act-offer__price {
        border-inline-start: 0;
        border-top: 1px solid #e1e8f1;
        grid-column: 1 / -1;
        padding: .9rem 0 0;
    }

    .act-home-launch {
        grid-template-columns: 1fr;
    }

    .act-home-launch__visual {
        display: none;
    }
}

@media (max-width: 640px) {
    .act-test-ribbon {
        font-size: .68rem;
        min-height: 42px;
    }

    .act-main {
        padding-inline: .72rem;
    }

    .act-progress::before {
        top: 21px;
    }

    .act-progress__step {
        font-size: .66rem;
    }

    .act-progress__step > span {
        height: 44px;
        width: 44px;
    }

    .act-hero {
        border-radius: 25px;
        min-height: auto;
    }

    .act-hero__copy {
        padding: 1.6rem 1.25rem 1.75rem;
    }

    .act-hero h1 {
        font-size: clamp(2.2rem, 11vw, 3.25rem);
    }

    .act-search,
    .act-summary,
    .act-booking-card,
    .act-total-card,
    .act-form-section,
    .act-conditions,
    .act-cancel {
        border-radius: 21px;
        padding: 1rem;
    }

    .act-grid--two,
    .act-summary__grid,
    .act-reference-grid,
    .act-trust-grid {
        grid-template-columns: 1fr;
    }

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

    .act-search__head-icon,
    .act-form-section__head > span,
    .act-summary__icon,
    .act-summary__top > span,
    .act-booking-card__route > span,
    .act-cancel__head > span {
        height: 50px;
        width: 50px;
    }

    .act-results-head h1,
    .act-page-head h1,
    .act-manage-hero h1 {
        font-size: clamp(2.05rem, 10vw, 3rem);
    }

    .act-offer {
        display: block;
        padding: .85rem;
    }

    .act-offer__media {
        margin-bottom: .9rem;
        min-height: 190px;
        width: 100%;
    }

    .act-offer__price {
        margin-top: .9rem;
    }

    .act-selection-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .act-selection-bar .act-primary {
        width: 100%;
    }

    .act-status {
        align-items: flex-start;
    }

    .act-status__icon {
        height: 60px;
        width: 60px;
    }

    .act-total-card > div {
        align-items: flex-start;
        flex-direction: column;
        gap: .4rem;
    }

    .act-home-launch {
        border-radius: 24px;
    }
}

@media (max-width: 390px) {
    .act-progress__step strong {
        font-size: .6rem;
    }

    .act-counter-row {
        gap: .7rem;
    }

    .act-search__head,
    .act-form-section__head,
    .act-summary__top,
    .act-booking-card__route,
    .act-cancel__head {
        gap: .7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .act-page *,
    .act-home-launch * {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/* Intégration de l'onglet Activités dans le sélecteur premium de l'accueil. */
body.home-premium-v2 .act-home-panel {
    background: transparent;
    display: block;
    padding: 0;
    width: 100%;
}

body.home-premium-v2 .act-home-panel[hidden] {
    display: none !important;
}

body.home-premium-v2 .act-home-panel .act-search {
    margin: 0;
    max-width: none;
}

@media (max-width: 768px) {
    body.home-premium-v2 .booking-tabs {
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    }

    body.home-premium-v2 .booking-tab {
        font-size: clamp(6.8px, 1.65vw, 9px) !important;
        padding-inline: 2px !important;
    }

    body.home-premium-v2 .booking-tab--visas .booking-tab-new {
        font-size: .48rem;
        inset-inline-end: -1px;
    }

    body.home-premium-v2 .act-home-launch {
        margin-bottom: .9rem;
    }
}
