@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --lp-bg: #eef6f4;
    --lp-surface: #ffffff;
    --lp-surface-soft: #f5f9fd;
    --lp-ink: #11293f;
    --lp-ink-soft: #5a7288;
    --lp-line: #dbe7f0;
    --lp-brand: #0ea674;
    --lp-brand-strong: #0a7f67;
    --lp-gold: #f6c14b;
    --lp-shadow-soft: 0 14px 30px rgba(17, 41, 63, 0.09);
    --lp-shadow-hero: 0 26px 58px rgba(8, 23, 36, 0.2);
    --lp-radius-hero: 26px;
    --lp-radius-lg: 18px;
    --lp-radius-md: 14px;
    --lp-max: 1280px;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body.landing-page {
    margin: 0;
    color: var(--lp-ink);
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    background:
        radial-gradient(900px 380px at -15% -5%, #d5efe8 0%, transparent 58%),
        radial-gradient(720px 280px at 110% -8%, #deebfb 0%, transparent 56%),
        linear-gradient(180deg, #edf4f1 0%, #f5f8fb 55%, #f7fafd 100%);
    line-height: 1.5;
}

.page-shell {
    overflow-x: hidden;
}

.container {
    width: min(var(--lp-max), calc(100% - 38px));
    margin: 0 auto;
}

.hero-recommended {
    width: min(var(--lp-max), calc(100% - 30px));
    margin: 8px auto 6px;
    max-width: 372px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: linear-gradient(140deg, #20b383, #168f78);
    color: #f2fffa;
    font-family: "Outfit", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 8px 18px;
}

.hero {
    position: relative;
    width: min(var(--lp-max), calc(100% - 30px));
    margin: 0 auto;
    border-radius: var(--lp-radius-hero);
    overflow: hidden;
    color: #f4faff;
    border: 1px solid rgba(255, 255, 255, 0.36);
    background: var(--hero-image) center/cover no-repeat;
    box-shadow: var(--lp-shadow-hero);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 14, 23, 0.36), rgba(4, 14, 23, 0.22));
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: none;
}

.hero-glow {
    position: absolute;
    width: 540px;
    height: 540px;
    right: -150px;
    top: -190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 174, 138, 0.45) 0%, transparent 70%);
    filter: none;
    z-index: 0;
}

.hero-nav,
.hero-grid {
    position: relative;
}

.hero-nav {
    z-index: 4;
}

.hero-grid {
    z-index: 1;
}
.hero-login-inline {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 12;
}

.hero-login-trigger {
    border: 1px solid rgba(155, 241, 214, 0.35);
    background: linear-gradient(145deg, rgba(11, 63, 63, 0.95), rgba(8, 40, 44, 0.95));
    color: #f1fffb;
    border-radius: 999px;
    min-height: 44px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(6, 25, 31, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-login-trigger:hover,
.hero-login-trigger:focus-visible,
.hero-login-inline.is-open .hero-login-trigger {
    transform: translateY(-1px);
    border-color: rgba(141, 241, 204, 0.7);
    box-shadow: 0 12px 24px rgba(4, 22, 27, 0.42);
}

.hero-login-trigger i {
    font-size: 1rem;
    line-height: 1;
}

.hero-login-popover {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    width: min(410px, 92vw);
    border-radius: 18px;
    border: 1px solid #dbe8f4;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 36px rgba(9, 28, 43, 0.22);
    padding: 14px;
    z-index: 40;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    visibility: hidden;
}

.hero-login-popover::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 26px;
    width: 14px;
    height: 14px;
    border-left: 1px solid #dbe8f4;
    border-top: 1px solid #dbe8f4;
    background: rgba(255, 255, 255, 0.97);
    transform: rotate(45deg);
    pointer-events: none;
}

.hero-login-inline.is-open .hero-login-popover {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.hero-login-popover-title {
    margin: 0;
    text-align: center;
    color: #4f657d;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero-login-last-used {
    margin: 8px 2px 10px;
    color: #44647e;
    font-size: 0.78rem;
    font-weight: 600;
}

.hero-login-last-used strong {
    color: #0b8f72;
}

.hero-access-option {
    margin-top: 10px;
    border: 1px solid #dce8f2;
    border-radius: 14px;
    background: #fff;
    display: grid;
    grid-template-columns: 42px 1fr 18px;
    align-items: center;
    gap: 11px;
    padding: 11px;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-access-option:hover,
.hero-access-option:focus-visible,
.hero-access-option.is-selected {
    border-color: #a9d8cb;
    box-shadow: 0 10px 18px rgba(6, 31, 34, 0.1);
    transform: translateY(-1px);
}

.hero-access-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e0faf2, #d9f5ff);
    color: #0d9877;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.hero-access-copy strong {
    display: block;
    color: #263f58;
    font-size: 1rem;
    line-height: 1.2;
}

.hero-access-copy small {
    display: block;
    margin-top: 3px;
    color: #5d7690;
    font-size: 0.88rem;
    line-height: 1.35;
}

.hero-access-arrow {
    color: #19a07f;
    font-size: 1.4rem;
    line-height: 1;
}

.hero-nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 18px 0 6px;
}

.hero-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Outfit", sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    text-shadow: 0 3px 10px rgba(2, 7, 16, 0.45);
}

.hero-brand img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(4, 12, 22, 0.45));
}

.hero-nav-links {
    position: relative;
    z-index: 6;
    display: flex;
    justify-content: center;
    gap: 26px;
    flex-wrap: wrap;
}

.hero-nav-actions {
    position: relative;
    z-index: 2;
}

.hero-nav-links a {
    color: rgba(243, 250, 255, 0.95);
    text-decoration: none;
    font-size: 0.94rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    text-shadow: 0 2px 8px rgba(2, 8, 18, 0.35);
}

.hero-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #8df1cc;
    transition: width 0.2s ease;
}

.hero-nav-links a:hover::after,
.hero-nav-links a:focus-visible::after {
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.56fr) 298px;
    gap: 20px;
    align-items: end;
    min-height: 640px;
    padding: 34px 0 40px;
}

.hero-content {
    max-width: 720px;
    opacity: 0;
    transform: translateY(14px);
    animation: rise-in 0.75s ease forwards;
}

.hero-top-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: linear-gradient(145deg, rgba(8, 147, 110, 0.98), rgba(8, 123, 108, 0.95));
    padding: 9px 16px;
    font-size: 0.9rem;
    font-weight: 800;
}

.hero h1 {
    margin: 14px 0 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(3.05rem, 5.7vw, 5.28rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
}

.hero p {
    margin: 14px 0 0;
    max-width: 600px;
    font-size: 1.16rem;
    font-weight: 500;
    color: rgba(233, 246, 255, 0.94);
}

.hero-highlights {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.97rem;
    font-weight: 600;
}

.hero-highlight-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(8, 94, 76, 0.36);
}

.hero-highlight-icon i {
    font-size: 11px;
    line-height: 1;
}

.hero-highlight-icon.icon-confirm {
    background: #15b67c;
}

.hero-highlight-icon.icon-cancel {
    background: #17a2bf;
}

.hero-highlight-icon.icon-guide {
    background: #2f8aef;
}

.hero-highlight-icon.icon-price {
    background: #13a86c;
}

.nav-actions {
    margin-top: 26px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.button-primary,
.button-secondary,
.button-success,
.submit-button {
    border: 0;
    border-radius: 14px;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    font-weight: 700;
    transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.button-primary,
.button-secondary,
.button-success {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-size: 1rem;
}

.button-primary {
    color: #f7fffd;
    background: linear-gradient(145deg, var(--lp-brand), var(--lp-brand-strong));
    box-shadow: 0 14px 24px rgba(4, 122, 101, 0.34);
}

.button-secondary {
    color: #f1f8ff;
    background: rgba(3, 15, 26, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.42);
}

.button-success {
    color: #f7fffd;
    background: linear-gradient(145deg, #13a86c, #087f64);
    box-shadow: 0 14px 24px rgba(4, 122, 101, 0.28);
}

.button-primary.is-small {
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 0.95rem;
}

.button-primary:hover,
.button-secondary:hover,
.button-success:hover,
.submit-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.hero-sidecard {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(9, 14, 20, 0.66);
    padding: 18px;
    opacity: 0;
    transform: translateY(20px);
    animation: rise-in 0.9s ease forwards;
    animation-delay: 0.15s;
}

.rating-score {
    font-family: "Outfit", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.rating-score span {
    margin-left: 8px;
    font-size: 1.85rem;
    color: var(--lp-gold);
    letter-spacing: 0.03em;
}

.rating-note {
    margin: 8px 0 0;
    color: rgba(230, 245, 255, 0.84);
    font-size: 1.02rem;
}

.sidecard-divider {
    margin: 15px 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.sidecard-stat strong {
    display: block;
    font-size: 3.15rem;
    font-family: "Outfit", sans-serif;
    line-height: 1;
}

.sidecard-stat span {
    font-size: 1.15rem;
    color: rgba(231, 246, 255, 0.85);
}

.avatar-strip {
    margin-top: 12px;
    display: flex;
}

.avatar-strip span {
    width: 34px;
    height: 34px;
    margin-left: -8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.88rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.avatar-strip span:first-child {
    margin-left: 0;
}

.sidecard-badge {
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 11px;
    line-height: 1.2;
    font-size: 1.02rem;
}

.badge-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.92rem;
    line-height: 1;
}

.section {
    padding: 66px 0;
}

.section-soft {
    background: linear-gradient(180deg, #f0f6fc, #f8fbff);
}

.section-heading h2 {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.8rem, 3.6vw, 2.65rem);
    letter-spacing: -0.02em;
}

.section-heading.center {
    text-align: center;
}

.section-heading.compact h2 {
    font-size: clamp(1.55rem, 3.2vw, 2.15rem);
}

.section-heading.compact-gap {
    margin-bottom: 22px;
}

.section-copy {
    margin: 8px 0 0;
    color: var(--lp-ink-soft);
    font-size: 0.98rem;
}

.section-heading.center h2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.section-heading.center h2 i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #0b8f72;
    background: linear-gradient(145deg, #ddf9f1, #eef7ff);
    border: 1px solid #cfe8e0;
}

.package-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.package-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #fcfeff 80%);
    border: 1px solid #d9e6f2;
    box-shadow: 0 18px 42px rgba(16, 35, 52, 0.14);
    overflow: hidden;
    min-height: 640px;
    max-height: 640px;
    transform-origin: center;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease, max-height 300ms ease;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 34px 56px rgba(9, 28, 44, 0.22);
    max-height: 760px;
}

.package-image-wrap {
    position: relative;
    overflow: hidden;
}

.package-image-shell {
    position: relative;
    background: #d8e8f8;
    aspect-ratio: 16 / 10;
}

.package-image-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #d9e7f5, #eff5fb, #d9e7f5);
    background-size: 220% 100%;
    animation: skeleton-shift 1.6s ease infinite;
}

.package-image-shell.is-loaded::before {
    display: none;
}

.package-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: transform 300ms ease, opacity 260ms ease;
}

.package-card img.is-loaded {
    opacity: 1;
}

.package-card:hover img {
    transform: scale(1.06);
}

.package-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 38%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(4, 14, 23, 0), rgba(4, 14, 23, 0.36));
    pointer-events: none;
}

.package-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
    background: linear-gradient(145deg, #1fc58a, #0e9877);
    color: #fff;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(7, 136, 103, 0.35);
    animation: pulse-badge 2.4s ease-in-out infinite;
}

.package-ribbon {
    position: absolute;
    top: 14px;
    right: 54px;
    z-index: 3;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #f6fff8;
    background: linear-gradient(145deg, #0cae73, #0a8a66);
    box-shadow: 0 8px 16px rgba(6, 121, 92, 0.3);
}

.package-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(4, 14, 24, 0.34);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease;
}

.package-wishlist:hover {
    transform: scale(1.05);
    background: rgba(6, 20, 32, 0.62);
}

.package-wishlist:focus-visible,
.package-cta:focus-visible {
    outline: 2px solid #4cc9a5;
    outline-offset: 2px;
}

.package-card.is-popular {
    transform: none;
    border-color: #31b88d;
    box-shadow: 0 28px 58px rgba(12, 132, 102, 0.24);
}

.package-card.is-popular:hover {
    transform: translateY(-10px) scale(1.02);
}

.package-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.package-body h3 {
    margin: 0;
    font-size: 1.45rem;
    font-family: "Outfit", sans-serif;
    line-height: 1.2;
    min-height: 2.4em;
    color: #163351;
}

.package-rating {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.package-stars {
    color: #f1ac18;
    display: inline-flex;
    gap: 2px;
    font-size: 1.08rem;
    line-height: 1;
}

.package-rating > span:last-child {
    color: #5f778e;
    font-size: 1rem;
}

.package-points {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
    color: #5c7388;
    font-size: 0.92rem;
}

.package-points li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.package-points li i {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ebf5ff;
    color: #3171b8;
    font-size: 0.82rem;
}

.package-chips {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
    transition: max-height 260ms ease, opacity 220ms ease, transform 260ms ease, margin-top 260ms ease;
}

.package-chips .chip {
    border-radius: 999px;
    background: #e6f8f1;
    border: 1px solid #c8eddc;
    color: #236f59;
    padding: 7px 10px;
    font-size: 0.82rem;
    font-weight: 700;
}

.package-foot {
    margin-top: auto;
    padding-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border-top: 1px solid #eaf0f7;
}

.package-price {
    color: #4f6578;
    font-size: 0.88rem;
}

.package-price .from {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
    color: #5d7690;
}

.package-price strong {
    display: block;
    margin-right: 0;
    font-size: 2.55rem;
    line-height: 1;
    color: var(--lp-ink);
    font-family: "Outfit", sans-serif;
    opacity: 0;
    transform: translateY(2px);
    animation: price-fade 520ms ease forwards;
}

.package-price .per {
    margin-top: 3px;
    display: block;
    font-size: 1rem;
    color: #60798f;
}

.package-cta-wrap {
    display: grid;
    gap: 0;
}

.package-foot .package-cta.button-primary.is-small {
    width: 100%;
    min-height: 56px;
    border-radius: 16px;
    font-size: 1.08rem;
    font-weight: 800;
    box-shadow: 0 14px 24px rgba(6, 125, 95, 0.3);
    position: relative;
    overflow: hidden;
}

.package-cta i {
    font-size: 1.05rem;
    transition: transform 200ms ease;
}

.package-cta:hover i {
    transform: translateX(4px);
}

.package-cta::after {
    content: "";
    position: absolute;
    inset: auto auto -120% -20%;
    width: 160%;
    height: 220%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 55%);
    opacity: 0;
    transition: opacity 220ms ease;
}

.package-cta:hover::after {
    opacity: 1;
}

.package-card:hover .package-chips,
.package-card:focus-within .package-chips {
    margin-top: 16px;
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-badge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px);
    }
}

@keyframes price-fade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes skeleton-shift {
    100% {
        background-position: -120% 0;
    }
}

.trust-band {
    padding: 14px 0;
}

.trust-grid {
    border: 1px solid var(--lp-line);
    background: var(--lp-surface);
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(17, 41, 63, 0.08);
    padding: 14px 10px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.trust-grid article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: left;
    padding: 8px 12px;
    min-height: 76px;
    position: relative;
}

.trust-grid article:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: #d8e3ee;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1eaa80;
    background: #ebf9f3;
    border: 1px solid #cceedd;
    font-size: 1.55rem;
    flex: 0 0 48px;
}

.trust-icon-gold {
    color: #db9b10;
    background: #fff5dd;
    border-color: #ffe2a3;
}

.trust-grid article > div {
    display: grid;
    gap: 2px;
}

.trust-grid strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 1.85rem;
    line-height: 1;
    color: #1a3550;
}

.trust-grid span {
    color: #5f788f;
    font-size: 1.02rem;
    font-weight: 600;
}

.split-section {
    padding-top: 32px;
}

.split-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 16px;
}

.split-card {
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-soft);
    padding: 20px;
}

.section-heading.compact {
    margin-bottom: 14px;
}

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

.gallery-grid img {
    width: 100%;
    height: 130px;
    border-radius: 12px;
    object-fit: cover;
}

.gallery-cta {
    margin-top: 14px;
}

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

.why-list li {
    background: var(--lp-surface-soft);
    border: 1px solid #d9e7f3;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #355066;
}

.about-inline-image {
    margin-top: 14px;
}

.about-inline-image img {
    width: 100%;
    height: 210px;
    border-radius: 14px;
    object-fit: cover;
}

.booking-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.booking-info-card,
.booking-card {
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    background: #fff;
    box-shadow: var(--lp-shadow-soft);
}

.booking-info-card {
    padding: 20px;
}

.booking-info-card h2 {
    margin: 0;
    font-size: 1.6rem;
    font-family: "Outfit", sans-serif;
}

.booking-info-card p {
    margin: 12px 0 0;
    color: #516b82;
}

.booking-info-card ul {
    margin: 12px 0 16px;
    padding-left: 18px;
    color: #4e667b;
    font-size: 0.9rem;
}

.booking-card {
    padding: 22px;
}

.booking-card h2 {
    margin: 0 0 14px;
    font-size: 1.7rem;
    font-family: "Outfit", sans-serif;
}

.booking-form {
    display: grid;
    gap: 11px;
}

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

.booking-form label {
    display: grid;
    gap: 7px;
    font-size: 0.78rem;
    color: #4f657b;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
}

.booking-form input,
.booking-form select {
    width: 100%;
    border: 1px solid #d1dfeb;
    border-radius: 10px;
    padding: 11px 12px;
    font: inherit;
    color: #152d44;
    background: #fff;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: 2px solid rgba(14, 167, 115, 0.22);
    border-color: #86dcbf;
}

.price-box {
    border: 1px solid #d4e1ec;
    border-radius: 12px;
    background: linear-gradient(180deg, #f8fcff, #f2f8fd);
    padding: 12px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #5a7287;
    font-size: 0.88rem;
    padding: 4px 0;
}

.price-row.total {
    margin-top: 7px;
    border-top: 1px dashed #c2d6e6;
    padding-top: 8px;
    color: #1d3650;
    font-weight: 700;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 16px;
    color: #f9fffd;
    background: linear-gradient(145deg, var(--lp-brand), var(--lp-brand-strong));
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(3, 121, 92, 0.28);
}

.booking-note {
    margin: 0;
    color: #5f778d;
    font-size: 0.82rem;
}

.alert {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 0.87rem;
}

.alert.success {
    background: #dff8e6;
    border-color: #b8e8c9;
    color: #1a6b3a;
}

.alert.error {
    background: #ffe3e3;
    border-color: #f3bfbe;
    color: #9d2f2f;
}

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

.faq-card {
    border: 1px solid var(--lp-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--lp-shadow-soft);
    padding: 16px;
}

.faq-card h3 {
    margin: 0;
    font-size: 1.02rem;
}

.faq-card p {
    margin: 8px 0 0;
    color: #5c7388;
    font-size: 0.91rem;
}

.site-footer {
    background:
        radial-gradient(540px 180px at 10% 0, rgba(19, 145, 117, 0.22), transparent 72%),
        linear-gradient(140deg, #0d3c3f, #0d2e3d 52%, #0c2639 100%);
    color: #e9f7f6;
    padding: 34px 0 16px;
}

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

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.footer-brand img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.site-footer p {
    margin: 10px 0 0;
    color: rgba(233, 247, 246, 0.8);
    max-width: 320px;
    font-size: 0.9rem;
}

.site-footer h3 {
    margin: 0;
    font-size: 1rem;
}

.site-footer ul {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.site-footer a {
    color: rgba(231, 250, 245, 0.88);
    text-decoration: none;
    font-size: 0.9rem;
}

.site-footer a:hover {
    color: #ffffff;
}

.contact-list li {
    color: rgba(231, 250, 245, 0.8);
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid rgba(226, 248, 246, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(230, 247, 245, 0.72);
}

@keyframes rise-in {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1180px) {
    .hero-grid,
    .booking-layout,
    .split-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: 540px;
    }

    .hero-sidecard {
        max-width: 360px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 5.4vw, 4.2rem);
    }

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

    .rating-score {
        font-size: 2.2rem;
    }

    .rating-score span {
        font-size: 1.2rem;
    }

    .sidecard-stat strong {
        font-size: 2.4rem;
    }

    .sidecard-stat span,
    .rating-note,
    .sidecard-badge {
        font-size: 0.92rem;
    }

    .package-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-grid article:nth-child(2n)::after {
        display: none;
    }

    .package-card.is-popular,
    .package-card.is-popular:hover {
        transform: none;
    }

    .package-card {
        min-height: auto;
        max-height: none;
    }

    .package-body {
        padding: 20px;
    }

    .package-body h3 {
        min-height: 0;
        font-size: 1.24rem;
    }

    .package-price strong {
        font-size: 2.4rem;
    }

    .package-chips {
        max-height: none;
        opacity: 1;
        overflow: visible;
        transform: none;
    }

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

@media (max-width: 760px) {
    .hero-recommended,
    .hero {
        width: min(var(--lp-max), calc(100% - 16px));
    }

    .hero-recommended {
        font-size: 0.68rem;
        padding: 7px 14px;
    }

    .hero {
        border-radius: 18px;
    }

    .hero-nav {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 8px;
    }

    .hero-brand {
        font-size: 1.3rem;
    }

    .hero-nav-links {
        justify-content: flex-start;
        gap: 12px;
    }

    .hero-nav-links a {
        font-size: 0.84rem;
    }

    .hero-login-trigger {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .hero-login-popover {
        right: auto;
        left: 0;
        width: min(360px, calc(100vw - 34px));
    }

    .hero-login-popover::before {
        right: auto;
        left: 26px;
    }

    .hero-access-option {
        grid-template-columns: 40px 1fr 16px;
        padding: 10px;
    }

    .hero-access-copy strong {
        font-size: 0.95rem;
    }

    .hero-access-copy small {
        font-size: 0.82rem;
    }

    .hero-grid {
        min-height: 0;
        padding: 22px 0 26px;
    }

    .hero h1 {
        font-size: clamp(2rem, 9vw, 2.85rem);
        line-height: 1;
    }

    .hero p {
        font-size: 0.93rem;
    }

    .hero-highlights {
        gap: 10px;
    }

    .hero-highlights li {
        font-size: 0.76rem;
    }

    .hero-highlight-icon {
        width: 15px;
        height: 15px;
        flex-basis: 15px;
        font-size: 0.6rem;
    }

    .button-primary,
    .button-secondary {
        padding: 11px 16px;
        font-size: 0.88rem;
    }

    .section {
        padding: 50px 0;
    }

    .package-grid,
    .gallery-grid,
    .faq-grid,
    .field-grid,
    .trust-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        gap: 4px;
        padding: 12px;
    }

    .trust-grid article {
        justify-content: flex-start;
        min-height: 66px;
        padding: 8px 6px;
    }

    .trust-grid article::after {
        display: none;
    }

    .trust-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 1.3rem;
    }

    .trust-grid strong {
        font-size: 1.45rem;
    }

    .trust-grid span {
        font-size: 0.92rem;
    }

    .package-grid {
        display: flex;
        overflow-x: auto;
        gap: 14px;
        padding: 4px 2px 10px;
        margin-right: -2px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .package-grid::-webkit-scrollbar {
        display: none;
    }

    .package-card {
        min-width: 85%;
        max-width: 85%;
        scroll-snap-align: start;
        min-height: auto;
        max-height: none;
    }

    .package-image-shell {
        aspect-ratio: 16 / 10;
    }

    .package-card img {
        height: 100%;
    }

    .package-foot {
        border-top: 1px solid #eaf0f7;
        padding-top: 14px;
    }

    .package-cta-wrap {
        position: static;
        background: transparent;
        padding-top: 0;
    }

    .package-foot .package-cta.button-primary.is-small {
        min-height: 56px;
        font-size: 1rem;
    }

    .package-chips {
        max-height: none;
        opacity: 1;
        transform: none;
        overflow: visible;
    }

    .gallery-grid img,
    .about-inline-image img {
        height: 180px;
    }

    .booking-card,
    .booking-info-card,
    .split-card {
        padding: 16px;
    }

    .footer-bottom {
        justify-content: flex-start;
    }
}
