:root {
    --bg: #04a7b5;
    --bg-deep: #022e47;
    --turq: #05a2ab;
    --turq-light: #6FE3D0;
    --orange: #ec7d21;
    --blue: #2C6E91;
    --white: #FFFFFF;
    --paper-dim: #F3F8F7;
    --text-on-paper: #04a7b5;
    --text-muted: #3A5654;
    --line: rgba(255, 255, 255, 0.14);
    --line-light: #E1EEEC;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text-on-paper);
    font-family: 'Work Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.mono {
    font-family: 'Space Mono', monospace;
}

a {
    color: inherit;
}

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

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.btn-primary,
.btn-secondary,
.btn-secondary-dark {
    text-align: center;
    justify-content: center;
}

.eyebrow {
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    color: var(--turq);
}

.caption {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    color: var(--turq);
    font-size: 15px;
}

.sec-dark {
    background: var(--bg);
    color: var(--white);
}

.sec-dark .eyebrow {
    color: var(--turq-light);
}

.sec-dark .caption {
    color: var(--turq-light);
}

.sec-dark .section-head h2 {
    color: var(--white);
}

.sec-dark .section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.sec-deep {
    background: linear-gradient(165deg, #03476e 0%, #022e47 100%);
    color: var(--white);
}

.sec-deep .eyebrow {
    color: var(--turq-light);
}

.sec-deep .caption {
    color: var(--turq-light);
}

.sec-deep .section-head h2 {
    color: var(--white);
}

.sec-deep .section-head p {
    color: rgba(255, 255, 255, 0.72);
}

.section-head {
    max-width: 640px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head h2 {
    font-size: clamp(28px, 3.6vw, 42px);
    margin: 14px 0 16px;
    color: var(--text-on-paper);
}

.section-head p {
    font-size: 16.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.center {
    text-align: center;
}

.mini-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 44px;
    gap: 14px;
    flex-wrap: wrap;
}

nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

nav .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-cta {
    background: var(--orange);
    color: var(--white);
    padding: 9px 18px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--orange);
    transition: all .2s ease;
}

.nav-cta:hover {
    background: transparent;
    color: var(--orange);
}

.hero {
    position: relative;
    padding: 64px 0 90px;
    background:
        linear-gradient(180deg, rgba(2, 46, 71, 0.55) 0%, rgba(2, 46, 71, 0.92) 78%, var(--bg) 100%),
        url('/images/landing/hero-de-fondo.jpg') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.hero .wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.hero-eyebrow {
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(38px, 5.4vw, 62px);
    line-height: 1.04;
    color: var(--white);
    margin-bottom: 18px;
}

.hero h1 em {
    font-style: italic;
    color: var(--turq-light);
    font-weight: 500;
}

.hero p.sub {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    max-width: 480px;
    margin-bottom: 30px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(236, 125, 33, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 28px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all .2s ease;
}

.btn-secondary:hover {
    border-color: var(--white);
}

.btn-secondary-dark {
    background: transparent;
    color: var(--bg);
    padding: 16px 28px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--bg);
    transition: all .2s ease;
}

.btn-secondary-dark:hover {
    background: var(--bg);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-stats div {
    border-left: 2px solid var(--turq);
    padding-left: 12px;
}

.hero-stats .num {
    font-family: 'Space Mono', monospace;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.hero-stats .lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.pass {
    background: var(--white);
    color: var(--text-on-paper);
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1fr 128px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.03);
    position: relative;
    transform: rotate(1.5deg);
}

.pass-main {
    padding: 26px 24px;
    position: relative;
}

.pass-stub {
    background: var(--bg);
    color: var(--white);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-left: 2px dashed rgba(255, 255, 255, 0.35);
}

.pass-stub::before,
.pass-stub::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--bg-deep);
    border-radius: 50%;
    left: -13px;
}

.pass-stub::before {
    top: -12px;
}

.pass-stub::after {
    bottom: -12px;
}

.pass-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.pass-brand {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--turq);
    font-weight: 700;
}

.pass-stamp {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: .08em;
    color: var(--orange);
    border: 1.5px solid var(--orange);
    padding: 3px 8px;
    border-radius: 20px;
    transform: rotate(-6deg);
}

.pass-route {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.pass-city {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 26px;
}

.pass-city small {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 400;
    color: #5A7D7A;
    letter-spacing: .05em;
}

.pass-plane {
    color: var(--orange);
    font-size: 18px;
}

.pass-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}

.pass-fields .f-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #7A9C99;
    margin-bottom: 3px;
}

.pass-fields .f-val {
    font-family: 'Space Mono', monospace;
    font-size: 13px;
    font-weight: 700;
}

.pass-barcode {
    margin-top: 20px;
    height: 34px;
    background: repeating-linear-gradient(90deg, var(--text-on-paper) 0 2px, transparent 2px 5px, var(--text-on-paper) 5px 6px, transparent 6px 9px);
    opacity: 0.85;
}

.pass-stub .f-label {
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 3px;
}

.pass-stub .f-val {
    font-family: 'Space Mono', monospace;
    font-size: 14px;
    font-weight: 700;
}

.pass-gate {
    font-family: 'Fraunces', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--turq-light);
    line-height: 1;
}

#live-toast {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 70;
    background: var(--white);
    color: var(--text-on-paper);
    padding: 14px 18px;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform .45s cubic-bezier(.2, .8, .2, 1), opacity .45s ease;
}

#live-toast.show {
    transform: translateY(0);
    opacity: 1;
}

#live-toast .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
    animation: pulse 1.4s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

#live-toast .txt {
    font-size: 13px;
    line-height: 1.4;
}

#live-toast .txt b {
    font-weight: 700;
}

#live-toast .txt .meta {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 10.5px;
    color: #6B8C89;
    margin-top: 2px;
}

section {
    padding: 96px 0;
}

.gallery {
    padding: 70px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    height: 460px;
}

.g-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.g-item.g1 {
    grid-row: 1 / 3;
    grid-column: 1;
}

.g-item .g-label {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 20px 18px 14px;
    background: linear-gradient(0deg, rgba(2, 46, 71, 0.85), transparent 75%);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.inc-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    padding: 22px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.inc-item .ico {
    font-size: 26px;
    flex-shrink: 0;
}

.inc-item .lbl {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.3;
}

.paths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.path-card {
    background: var(--white);
    color: var(--text-on-paper);
    border-radius: 8px;
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line-light);
}

.path-card.membership {
    background: linear-gradient(165deg, #046a9e, #03476e);
    color: var(--white);
    border: 1.5px solid var(--turq);
}

.path-tag {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
    font-weight: 700;
}

.path-card:not(.membership) .path-tag {
    background: var(--bg);
    color: var(--white);
}

.path-card.membership .path-tag {
    background: var(--turq);
    color: var(--white);
}

.path-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.path-card .price-line {
    font-family: 'Space Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.path-card.membership .price-line {
    color: var(--turq-light);
}

.path-list {
    list-style: none;
    margin-bottom: 24px;
}

.path-list li {
    display: flex;
    gap: 10px;
    padding: 9px 0;
    font-size: 14.5px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.path-card.membership .path-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.path-list li:last-child {
    border-bottom: none;
}

.path-list .ico {
    flex-shrink: 0;
    width: 16px;
}

.path-note {
    font-size: 12.5px;
    opacity: 0.65;
    font-style: italic;
}

.path-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 2px;
    font-weight: 700;
    font-size: 14.5px;
    text-decoration: none;
    margin-top: 8px;
}

.path-card:not(.membership) .path-btn {
    background: var(--bg);
    color: var(--white);
}

.path-card.membership .path-btn {
    background: var(--orange);
    color: var(--white);
}

.combo-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 44px;
}

.combo {
    background: var(--white);
    color: var(--text-on-paper);
    border-radius: 6px;
    padding: 22px 18px;
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.combo.best {
    border-color: var(--orange);
}

.combo.best::before {
    content: 'MÁS ELEGIDO';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    font-family: 'Space Mono', monospace;
    font-size: 9px;
    letter-spacing: .08em;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.combo .qty {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 30px;
}

.combo .qty-lbl {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #7A9C99;
    margin-bottom: 14px;
}

.combo .price {
    font-family: 'Space Mono', monospace;
    font-weight: 700;
    font-size: 19px;
    margin-bottom: 2px;
}

.combo .per {
    font-size: 11px;
    color: #7A9C99;
    margin-bottom: 14px;
}

.combo-btn {
    margin-top: auto;
    display: block;
    text-align: center;
    padding: 10px;
    border-radius: 2px;
    background: var(--bg);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 12.5px;
}

.combo.best .combo-btn {
    background: var(--orange);
}

.classes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.class-card {
    background: var(--white);
    color: var(--text-on-paper);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease;
    border: 3px solid var(--turq);
}

.class-card:hover {
    transform: translateY(-6px);
}

.class-card.featured {
    border: 4px solid var(--orange);
}

.class-head {
    padding: 26px 24px 20px;
    border-bottom: 1px dashed #D7E6E4;
    position: relative;
}

.class-head .badge {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--turq);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.class-head h3 {
    font-size: 23px;
    margin-bottom: 4px;
}

.class-head .price {
    font-family: 'Space Mono', monospace;
    font-size: 26px;
    font-weight: 700;
    color: var(--bg);
}

.class-head .price small {
    font-size: 12px;
    font-weight: 400;
    color: #7A9C99;
}

.class-body {
    padding: 20px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.class-passcount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 16px;
    font-family: 'Space Mono', monospace;
}

.class-passcount .n {
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
}

.class-passcount .t {
    font-size: 12px;
    color: #5A7D7A;
}

.class-body ul {
    list-style: none;
    flex: 1;
    margin-bottom: 20px;
}

.class-body li {
    display: flex;
    gap: 9px;
    padding: 6px 0;
    font-size: 14px;
    line-height: 1.45;
}

.class-body li .ico {
    color: var(--turq);
    flex-shrink: 0;
}

.class-body li.highlight {
    font-weight: 600;
}

.class-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 2px;
    background: var(--bg);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.class-card.featured .class-btn {
    background: var(--orange);
}

.price-per-pass {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    color: #7A9C99;
    margin-top: 8px;
    text-align: center;
}

.relax .wrap {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.relax-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(3, 71, 110, 0.18);
    background: #fff;
    max-width: 420px;
    width: 100%;
    justify-self: center;
}

.relax-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.relax-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    font-weight: 700;
}

.relax h2 {
    font-size: clamp(28px, 3.6vw, 40px);
    color: var(--bg);
    margin-bottom: 16px;
}

.relax p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.relax-list {
    list-style: none;
    margin: 26px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.relax-list li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 14.5px;
    line-height: 1.4;
    background: var(--white);
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid var(--line-light);
}

.relax-list li .ico-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--paper-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}

.trust .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.trust-img {
    border-radius: 10px;
    overflow: hidden;
    min-height: 360px;
    height: 420px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    align-self: stretch;
}

.trust-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.trust-badges {
    display: flex;
    gap: 24px;
    margin-top: 26px;
    flex-wrap: wrap;
}

.tb {
    display: flex;
    flex-direction: column;
}

.tb .n {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 30px;
    color: var(--orange);
}

.tb .l {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: rgba(255, 255, 255, 0.6);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.sup-item {
    background: var(--white);
    border: 1.5px solid var(--line-light);
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
}

.sup-item .ico {
    font-size: 30px;
    margin-bottom: 14px;
}

.sup-item h4 {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--text-on-paper);
}

.sup-item p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

.faq {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
    padding: 22px 0;
}

.faq-item summary {
    cursor: pointer;
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

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

.faq-item summary::after {
    content: '+';
    font-family: 'Space Mono', monospace;
    font-size: 20px;
    color: var(--turq-light);
    transition: transform .2s;
}

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

.faq-item p {
    margin-top: 14px;
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
}

.final-cta {
    background: linear-gradient(160deg, var(--orange), #E8461F);
    text-align: left;
    padding: 90px 0;
    color: var(--white);
}

.final-cta-grid {
    display: grid;
    grid-template-columns: minmax(220px, 380px) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.final-cta-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 24px 50px rgba(3, 71, 110, 0.22);
    background: #fff;
    max-width: 380px;
    width: 100%;
    justify-self: center;
}

.final-cta-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.final-cta-content {
    min-width: 0;
}

.final-cta h2 {
    font-size: clamp(30px, 4.4vw, 50px);
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 34px;
    max-width: 520px;
}

.final-cta .btn-primary {
    background: var(--bg);
    border-color: var(--bg);
}

.final-cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: none;
}

.final-cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 65;
    background: var(--bg-deep);
    border-top: 1px solid var(--line);
    padding: 12px 16px;
}

.sticky-cta a {
    display: block;
    text-align: center;
    background: var(--orange);
    color: var(--white);
    padding: 14px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14.5px;
}

footer {
    background: var(--bg-deep);
    color: var(--white);
    padding: 44px 0 90px;
}

footer .wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.foot-legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    max-width: 560px;
    line-height: 1.6;
}

.foot-links {
    display: flex;
    gap: 20px;
    font-size: 13px;
}

.foot-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
}

.foot-links a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .combo-row {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .gallery-grid {
        height: 420px;
    }

    .hero .wrap {
        gap: 36px;
    }
}

@media (max-width: 860px) {
    .wrap {
        padding: 0 16px;
    }

    section {
        padding: 64px 0;
    }

    .gallery {
        padding: 48px 0;
    }

    .section-head {
        margin-bottom: 28px;
    }

    .section-head h2 {
        font-size: clamp(26px, 7vw, 36px);
    }

    .section-head p {
        font-size: 15.5px;
    }

    nav .wrap {
        height: 58px;
        gap: 12px;
    }

    .logo {
        flex-shrink: 0;
    }

    .logo img {
        height: 34px;
    }

    .nav-cta {
        padding: 8px 12px;
        font-size: 11.5px;
        white-space: nowrap;
    }

    .hero {
        padding: 36px 0 56px;
    }

    .hero .wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-eyebrow {
        font-size: 11px;
        line-height: 1.5;
    }

    .hero h1 {
        font-size: clamp(30px, 8.2vw, 42px);
        margin-bottom: 14px;
    }

    .hero p.sub {
        font-size: 16px;
        max-width: none;
        margin-bottom: 22px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary {
        width: 100%;
        padding: 14px 18px;
        font-size: 14.5px;
    }

    .hero-stats {
        gap: 16px;
    }

    .hero-stats .num {
        font-size: 18px;
    }

    .pass {
        grid-template-columns: 1fr;
        transform: none;
        margin-top: 4px;
        max-width: 100%;
    }

    .pass-main {
        padding: 22px 18px;
    }

    .pass-route {
        gap: 8px;
        flex-wrap: wrap;
    }

    .pass-city {
        font-size: 22px;
    }

    .pass-fields {
        gap: 12px 14px;
    }

    .pass-stub {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 16px 18px;
        border-left: none;
        border-top: 2px dashed rgba(255, 255, 255, 0.35);
    }

    .pass-stub::before,
    .pass-stub::after {
        display: none;
    }

    .pass-gate {
        font-size: 24px;
    }

    .paths {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .path-card {
        padding: 28px 22px;
    }

    .combo-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .classes {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .class-card:hover {
        transform: none;
    }

    .trust .wrap,
    .relax .wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .relax-img {
        max-width: 360px;
        height: auto;
        order: -1;
    }

    .trust-img {
        height: 240px;
        order: -1;
    }

    .relax-list {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .relax-list li {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        padding: 16px 14px;
        min-height: 110px;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.3;
    }

    .relax-list li .ico-circle {
        width: 44px;
        height: 44px;
        font-size: 24px;
    }

    .includes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .inc-item {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 16px 14px;
        gap: 10px;
        min-height: 110px;
    }

    .inc-item .ico {
        font-size: 30px;
        line-height: 1;
    }

    .inc-item .lbl {
        font-size: 15px;
        line-height: 1.3;
        font-weight: 700;
    }

    .support-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .sup-item {
        padding: 20px 14px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 10px;
    }

    .g-item {
        min-height: 140px;
    }

    .g-item.g1 {
        grid-row: auto;
        grid-column: 1 / -1;
        min-height: 220px;
        height: 220px;
    }

    .g-item .g-label {
        font-size: 10px;
        padding: 16px 12px 12px;
    }

    .faq-item summary {
        font-size: 15.5px;
        gap: 12px;
        text-align: left;
    }

    .faq-item p {
        font-size: 14px;
    }

    .final-cta {
        padding: 56px 0 72px;
    }

    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .final-cta-img {
        max-width: 360px;
        order: -1;
    }

    .final-cta h2 {
        font-size: clamp(26px, 7vw, 36px);
    }

    .final-cta p {
        font-size: 15.5px;
        margin-bottom: 24px;
    }

    .mini-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .mini-cta-row .btn-primary,
    .mini-cta-row .btn-secondary,
    .mini-cta-row .btn-secondary-dark {
        width: 100%;
    }

    .sticky-cta {
        display: block;
        padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    }

    .sticky-cta a {
        padding: 13px 12px;
        font-size: 13.5px;
    }

    footer {
        padding: 36px 0 calc(110px + env(safe-area-inset-bottom, 0px));
    }

    footer .wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .foot-links {
        flex-wrap: wrap;
        gap: 14px 18px;
    }

    #live-toast {
        left: 12px;
        right: 12px;
        bottom: calc(78px + env(safe-area-inset-bottom, 0px));
        max-width: none;
    }

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

    .lead-form .btn-primary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .wrap {
        padding: 0 14px;
    }

    nav .wrap {
        height: 54px;
    }

    .logo img {
        height: 30px;
    }

    .nav-cta {
        padding: 7px 10px;
        font-size: 10.5px;
        letter-spacing: -0.01em;
    }

    .hero {
        padding: 28px 0 44px;
    }

    .hero h1 {
        font-size: clamp(28px, 8.8vw, 34px);
        line-height: 1.08;
    }

    .hero p.sub {
        font-size: 15px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .hero-stats>div:last-child {
        grid-column: 1 / -1;
    }

    .pass-top {
        flex-wrap: wrap;
        gap: 10px;
    }

    .pass-city {
        font-size: 20px;
    }

    .pass-fields {
        grid-template-columns: 1fr;
    }

    .pass-stub {
        flex-wrap: wrap;
    }

    .combo-row {
        grid-template-columns: 1fr;
    }

    .relax-list {
        gap: 10px;
    }

    .relax-list li {
        padding: 14px 12px;
        min-height: 104px;
        font-size: 14px;
    }

    .relax-list li .ico-circle {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .includes-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .inc-item {
        padding: 14px 12px;
        min-height: 104px;
    }

    .inc-item .ico {
        font-size: 28px;
    }

    .inc-item .lbl {
        font-size: 14px;
    }

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

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

    .g-item {
        min-height: 180px;
    }

    .g-item.g1 {
        grid-column: 1;
        height: 240px;
        min-height: 240px;
    }

    .path-card {
        padding: 24px 18px;
    }

    .class-head,
    .class-body {
        padding-left: 18px;
        padding-right: 18px;
    }

    .sticky-cta a {
        font-size: 12.5px;
        line-height: 1.3;
    }

    .final-cta {
        padding: 48px 0 64px;
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
        font-size: 16px;
        /* evita zoom iOS */
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Lead form */
.lead-form {
    max-width: none;
    margin: 0;
    text-align: left;
}

.lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 22px;
}

.lead-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lead-form label.full {
    grid-column: 1 / -1;
}

.lead-form label span {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 10px;
    padding: 12px 14px;
    font: 500 15px/1.3 'Work Sans', sans-serif;
    outline: none;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.lead-form select option {
    color: #03476e;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.18);
}

.lead-form .btn-primary {
    display: inline-flex;
    width: auto;
}

.lead-form .turnstile-wrap {
    margin: 0 0 18px;
}

.lead-form .cf-turnstile {
    display: inline-block;
}

.form-alert {
    max-width: none;
    margin: 0 0 20px;
    padding: 14px 16px;
    border-radius: 10px;
    text-align: left;
    font-size: 15px;
}

.form-alert-success {
    background: rgba(3, 71, 110, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.form-alert-error {
    background: rgba(80, 20, 20, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.form-alert ul {
    margin: 0;
    padding-left: 18px;
}