/* =========================================================
   הטיול הגדול - design system
   Tokens mirror lamishtahrer.co.il (Elementor kit 9)
   ========================================================= */

@font-face {
    font-family: 'absoluti';
    src: url('../fonts/FbAbsolutiHeb-LIght.woff2') format('woff2'),
         url('../fonts/FbAbsolutiHeb-LIght.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'absoluti';
    src: url('../fonts/FbAbsolutiHeb-Black.woff2') format('woff2'),
         url('../fonts/FbAbsolutiHeb-Black.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Brand palette - lamishtahrer.co.il global colors */
    --ink: #000000;
    --brand: #FFC01F;
    --brand-light: #FFC935;
    --orange: #FF9100;
    --orange-deep: #F86018;
    --bg: #FFFFFF;
    --bg-soft: #FAFAFA;
    --white: #FFFFFF;

    /* Shape */
    --radius-pill: 30px;
    --radius-card: 20px;
    --radius-canvas: 43px;

    /* Type */
    --font-main: 'absoluti', 'Rubik', 'Arial Hebrew', system-ui, sans-serif;

    /* Layout */
    --container: 1200px;
    --header-h: 72px;
}

/* ---------- Base ---------- */

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

[hidden] { display: none !important; }

/* iOS Safari paints unstyled buttons with the system blue tint */
button {
    color: inherit;
    font-family: var(--font-main);
    -webkit-tap-highlight-color: transparent;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.5em;
}

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

.section-title {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    text-align: center;
    margin-bottom: 36px;
}

.section-title em {
    font-style: normal;
    color: var(--orange);
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    border: 2px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn--brand {
    background: var(--brand);
    color: var(--ink);
    border-color: var(--ink);
}

.btn--ink {
    background: var(--ink);
    color: var(--brand);
}

.btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn--light {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--light:hover { background: rgb(255 255 255 / 0.15); }

.btn--lg { padding: 16px 36px; font-size: 1.1rem; }

/* ---------- Header ---------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 2px 20px rgb(0 0 0 / 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: var(--header-h);
    max-width: none;
    padding-inline: 28px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.site-logo img { width: auto; height: 52px; }

.site-logo__sub {
    font-weight: 700;
    font-size: 0.85rem;
    background: var(--brand);
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    white-space: nowrap;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__list a {
    display: block;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.15s ease;
}

.site-nav__list a:hover { background: var(--brand-light); }

.site-nav__list > li { position: relative; }

.site-nav__parent {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: none;
    background: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.15s ease;
}

.site-nav__parent:hover { background: var(--brand-light); }

.site-nav__parent svg { transition: transform 0.2s ease; }

.site-nav__list li.is-open > .site-nav__parent svg { transform: rotate(180deg); }

.sub-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 8px;
}

.sub-menu a {
    display: block;
    padding: 9px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.15s ease;
}

.sub-menu a:hover { background: var(--brand-light); }

@media (min-width: 769px) {
    .sub-menu {
        position: absolute;
        top: calc(100% + 8px);
        inset-inline-start: 0;
        background: var(--white);
        border: 1.5px solid rgb(0 0 0 / 0.08);
        border-radius: 16px;
        box-shadow: 0 14px 34px rgb(0 0 0 / 0.14);
        min-width: 215px;
        z-index: 60;
    }

    /* invisible bridge over the visual gap so hover survives the crossing */
    .sub-menu::before {
        content: '';
        position: absolute;
        top: -12px;
        inset-inline: 0;
        height: 12px;
    }

    .site-nav__list li:hover > .sub-menu,
    .site-nav__list li:focus-within > .sub-menu,
    .site-nav__list li.is-open > .sub-menu { display: block; }
}

@media (max-width: 768px) {
    .site-nav__parent { width: 100%; justify-content: space-between; }

    .sub-menu { padding: 0 18px 8px; }

    .site-nav__list li.is-open > .sub-menu { display: block; }
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: none;
    background: none;
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.15s ease;
}

.search-toggle:hover, .search-toggle[aria-expanded="true"] { background: var(--brand-light); }

.header-search {
    border-top: 1.5px solid rgb(0 0 0 / 0.06);
    background: var(--white);
    padding: 14px 0;
    box-shadow: 0 14px 26px rgb(0 0 0 / 0.08);
}

.header-search__form {
    display: flex;
    gap: 10px;
}

.header-search__input { flex: 1; }

.search-results__title {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    margin: 32px 0 28px;
}

.menu-item-mobile { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: 2px solid var(--ink);
    border-radius: 12px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.28s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }

.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }

.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero: tropical sunset canvas + banner slider ---------- */

.hero { padding: 16px; }

.hero__canvas {
    position: relative;
    overflow: hidden;
    background: var(--ink);
    border-radius: var(--radius-canvas);
    height: min(80vh, 720px);
    display: flex;
    align-items: stretch;
}

/* Sky layers - crossfade per active slide */

.hero__skies {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__sky {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero__sky.is-active { opacity: 1; }

.hero__sky::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgb(0 0 0 / 0.62) 0%, rgb(0 0 0 / 0.32) 48%, rgb(0 0 0 / 0.06) 100%);
}

.hero__sky[data-sky="sunset"] {
    background: url('../images/hero-trip.jpg') center / cover no-repeat;
}

.hero__sky[data-sky="dusk"] {
    background: url('../images/hero-thailand.jpg') center / cover no-repeat;
}

.hero__sky[data-sky="amber"] {
    background: url('../images/hero-esim.jpg') center / cover no-repeat;
}

/* Slides */

.hero-slider {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s;
}

.hero-slide.is-active {
    position: relative;
    width: 100%;
    flex: 0 0 100%;
    opacity: 1;
    visibility: visible;
}

.hero__inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-block: 48px 120px;
}

.hero__text { max-width: 560px; }

.hero__badge {
    display: inline-block;
    background: var(--ink);
    color: var(--brand);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    padding: 6px 16px;
    margin-bottom: 16px;
}

.hero__title {
    font-size: clamp(2.2rem, 5.2vw, 4rem);
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero__title-line { display: block; color: var(--white); }

.hero__title { text-shadow: 0 2px 26px rgb(0 0 0 / 0.45); }

.hero__sub {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    max-width: 460px;
    margin: 0 0 32px;
    color: rgb(255 255 255 / 0.92);
    text-shadow: 0 1px 12px rgb(0 0 0 / 0.4);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* Slider controls */

.hero-slider__controls {
    position: absolute;
    bottom: 26px;
    inset-inline: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.hero-slider__arrow {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    padding: 0 0 4px;
    transition: transform 0.15s ease, opacity 0.15s ease;
    opacity: 0.75;
}

.hero-slider__arrow:hover { opacity: 1; transform: scale(1.2); }

.hero-slider__dots { display: flex; gap: 8px; }

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.15s ease, width 0.2s ease;
}

.hero-slider__dot.is-active {
    background: var(--brand);
    border-color: var(--brand);
    width: 26px;
    border-radius: var(--radius-pill);
}

/* ---------- Departure board marquee ---------- */

.departures {
    background: var(--ink);
    overflow: hidden;
    padding: 14px 0;
    margin-top: -2px;
}

.departures__track {
    display: flex;
    gap: 34px;
    width: max-content;
    animation: departures-roll 42s linear infinite;
}

.departures:hover .departures__track { animation-play-state: paused; }

.departures__item {
    color: var(--white);
    font-size: 0.95rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.04em;
}

.departures__item b {
    color: var(--brand);
    font-weight: 700;
    letter-spacing: 0.18em;
}

.departures__item i {
    font-style: normal;
    color: rgb(255 255 255 / 0.35);
    margin-inline-start: 12px;
}

@keyframes departures-roll {
    from { transform: translateX(0); }
    to   { transform: translateX(50%); }
}

/* ---------- Categories ---------- */

.categories { padding: 72px 0; }

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

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 30px 16px;
    background: var(--white);
    border: 1.5px solid var(--brand);
    border-radius: var(--radius-card);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgb(0 0 0 / 0.08);
}

.category-card__icon { color: var(--orange); }

.category-card__icon svg { display: block; }

.category-card__label {
    font-weight: 700;
    font-size: 1.05rem;
}

/* ---------- Footer ---------- */

.site-footer {
    background: var(--ink);
    color: var(--white);
    margin-top: 72px;
    padding: 56px 0 0;
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 2fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(255 255 255 / 0.15);
}

.site-footer__brand img { width: 190px; margin-bottom: 16px; }

.site-footer__brand p {
    font-size: 0.95rem;
    color: rgb(255 255 255 / 0.75);
    max-width: 320px;
}

.site-footer__social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.site-footer__social a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgb(255 255 255 / 0.3);
    color: var(--white);
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.site-footer__social a:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: var(--ink);
}

.site-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.site-footer__col h3 {
    color: var(--brand);
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.site-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.site-footer__col a {
    color: rgb(255 255 255 / 0.85);
    font-size: 0.95rem;
}

.site-footer__col a:hover { color: var(--brand); }

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgb(255 255 255 / 0.6);
}

.site-footer__legal { display: flex; gap: 10px; }

.site-footer__legal a:hover { color: var(--brand); }

.site-footer__credit { font-weight: 700; }

/* ---------- Shared section bits ---------- */

.section-sub {
    text-align: center;
    color: rgb(0 0 0 / 0.6);
    margin: -24px 0 32px;
}

.section-title--right, .section-sub--right { text-align: right; }

.section-title--right { margin-bottom: 10px; }

.section-sub--right { margin: 0 0 8px; }

.section-title--onink { color: var(--white); }

.section-sub--onink { color: rgb(255 255 255 / 0.7); }

.card {
    background: var(--white);
    border: 1.5px solid var(--brand);
    border-radius: var(--radius-card);
    padding: 28px;
}

.card--ink {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.field-label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    margin: 14px 0 6px;
}

.field-select, .field-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid rgb(0 0 0 / 0.2);
    border-radius: 14px;
    font-family: var(--font-main);
    font-size: 1rem;
    background: var(--white);
    color: var(--ink);
}

.field-select:focus, .field-input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgb(255 192 31 / 0.35);
}

.chip {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    border: 1.5px solid var(--ink);
    background: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.15s ease;
}

.chip:hover { background: var(--brand-soft, #FFF3D1); }

.chip.is-active { background: var(--brand); }

/* ---------- News ---------- */

.news { padding: 64px 0 8px; }

.news__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    min-height: 40px;
}

.news { position: relative; }

.news__arrows {
    position: absolute;
    left: 10px;
    bottom: 12px;
    display: flex;
    gap: 2px;
}

.news__arrow {
    border: none;
    background: none;
    color: var(--ink);
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
    padding: 2px 8px 6px;
    opacity: 0.7;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.news__arrow:hover { opacity: 1; transform: scale(1.15); }

.news__viewport {
    overflow: hidden;
    width: 100%;
}

.news__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(20px, calc((100% - 1160px) / 2));
    scrollbar-width: none;
    padding: 4px max(20px, calc((100% - 1160px) / 2)) 12px;
}

.news__track::-webkit-scrollbar { display: none; }

.news-card {
    flex: 0 0 calc((100% - 32px) / 3);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-height: 150px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border: 1.5px solid rgb(0 0 0 / 0.12);
    border-radius: var(--radius-card);
    background: var(--white);
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.news-card:hover { border-color: var(--orange); transform: translateY(-2px); }

.news-card__img {
    width: 38%;
    flex-shrink: 0;
    align-self: stretch;
}

.news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card__img-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgb(0 0 0 / 0.3);
    background: linear-gradient(135deg, var(--brand) 0%, var(--orange) 100%);
}

.news-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px 20px;
    min-width: 0;
}

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-card__tag {
    color: var(--orange-deep);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.news-card__time { font-size: 0.8rem; color: rgb(0 0 0 / 0.45); }

.news-card__time::before { content: 'לפני '; }

.news-card__title { font-size: 1.05rem; margin: 0; }

.news__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.news__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--ink);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: background 0.15s ease, width 0.2s ease;
}

.news__dot.is-active {
    background: var(--brand);
    border-color: var(--ink);
    width: 26px;
    border-radius: var(--radius-pill);
}

/* ---------- Checklist ---------- */

.checklist { padding: 64px 0 8px; }

.checklist__grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 20px;
    align-items: stretch;
}

.checklist__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.checklist__progress { text-align: left; }

.checklist__percent {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.checklist__percent-label { font-size: 0.8rem; color: rgb(0 0 0 / 0.5); }

.checklist__bar {
    height: 10px;
    border-radius: var(--radius-pill);
    background: rgb(0 0 0 / 0.08);
    overflow: hidden;
    margin: 14px 0 18px;
}

.checklist__bar-fill {
    height: 100%;
    width: 0;
    background: var(--brand);
    border-radius: inherit;
    transition: width 0.5s ease;
}

.checklist__upsell-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 220px; }

.checklist__upsell {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    background: #FFF3E0;
    border: 1.5px solid var(--orange);
    border-radius: var(--radius-card);
    padding: 14px 18px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.checklist__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checklist-item {
    border: 1.5px solid rgb(0 0 0 / 0.12);
    border-radius: 14px;
    transition: border-color 0.15s ease;
}

.checklist-item:hover { border-color: var(--brand); }

.checklist-item__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    gap: 10px;
}

.checklist-item__check {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    flex: 1;
}

.checklist-item__check input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.checklist-item__box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--ink);
    border-radius: 7px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.checklist-item__check input:checked + .checklist-item__box { background: var(--brand); }

.checklist-item__check input:checked + .checklist-item__box::after {
    content: '✓';
    font-weight: 700;
    font-size: 0.85rem;
}

.checklist-item.is-done .checklist-item__label {
    text-decoration: line-through;
    color: rgb(0 0 0 / 0.4);
}

.checklist-item__label { font-weight: 700; }

.checklist-item__toggle {
    background: none;
    border: none;
    color: var(--orange);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
}

.checklist-item__panel {
    padding: 4px 46px 14px 14px;
    font-size: 0.9rem;
}

.checklist-item__panel p { margin: 4px 0 10px; color: rgb(0 0 0 / 0.65); }

.checklist__bonus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    background:
        linear-gradient(rgb(9 13 22 / 0.8), rgb(9 13 22 / 0.8)),
        url('../images/bg-blog.jpg') center / cover no-repeat;
    border-color: transparent;
}

.checklist__bonus-badge {
    display: inline-block;
    background: var(--brand);
    color: var(--ink);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.checklist__bonus h3 { color: var(--white); font-size: 1.3rem; }

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

.checklist__tips a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgb(255 255 255 / 0.85);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.15s ease;
}

.checklist__tips a::before {
    content: '←';
    color: var(--brand);
    flex-shrink: 0;
}

.checklist__tips a:hover { color: var(--brand); }

/* ---------- Services ---------- */

.services { padding: 64px 0 8px; }

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

.service-card {
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgb(0 0 0 / 0.1);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgb(0 0 0 / 0.1); border-color: var(--brand); }

.service-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-card__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 24px 24px;
    flex: 1;
}

.service-card__icon {
    position: absolute;
    bottom: 14px;
    inset-inline-start: 16px;
    background: var(--brand);
    color: var(--ink);
    border-radius: 14px;
    padding: 9px;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 14px rgb(0 0 0 / 0.2);
}

.service-card__icon svg { width: 24px; height: 24px; }

.service-card__partner {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgb(0 0 0 / 0.45);
    letter-spacing: 0.06em;
}

.service-card__title { margin: 0; font-size: 1.25rem; }

.service-card__desc { margin: 0; color: rgb(0 0 0 / 0.65); font-size: 0.95rem; flex: 1; }

.service-card__more { color: var(--orange); font-weight: 700; font-size: 0.9rem; margin-top: 10px; }

/* ---------- Visa checker ---------- */

.visa { padding: 64px 16px 8px; }

.visa__canvas {
    background:
        linear-gradient(180deg, rgb(9 62 150 / 0.6) 0%, rgb(12 90 200 / 0.42) 55%, rgb(8 56 140 / 0.58) 100%),
        url('../images/visa-sky.jpg') center / cover no-repeat;
    border-radius: var(--radius-canvas);
    padding: 56px 0 48px;
    color: var(--white);
}

.visa__head { text-align: center; max-width: 640px; margin-inline: auto; }

.visa__kicker {
    display: inline-block;
    border: 1.5px solid var(--brand);
    color: var(--brand);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 5px 16px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}

.visa__grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    margin-top: 36px;
    align-items: start;
}

.visa__form, .visa__result { min-width: 0; }

.visa__label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand);
    margin: 16px 0 6px;
}

.visa__select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1.5px solid rgb(255 255 255 / 0.25);
    background: rgb(255 255 255 / 0.06);
    color: var(--white);
    font-family: var(--font-main);
    font-size: 1rem;
}

.visa__select option { color: var(--ink); }

.visa__select:focus { outline: none; border-color: var(--brand); }

.visa__disclaimer {
    font-size: 0.8rem;
    color: rgb(255 255 255 / 0.75);
    margin-top: 20px;
    line-height: 1.5;
}

/* Animated branded passport (idle state) */

.visa-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.visa-stage__hint {
    color: rgb(255 255 255 / 0.55);
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.pp-scene {
    position: relative;
    width: 400px;
    height: 380px;
    perspective: 1400px;
    display: flex;
    justify-content: center;
}

.pp-wrapper {
    position: absolute;
    width: 230px;
    height: 330px;
    top: 18px;
    transform-style: preserve-3d;
    animation: pp-hover 6s ease-in-out infinite;
}

@keyframes pp-hover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.pp {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    animation: pp-open 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pp-open {
    0%, 10% { transform: translateX(0) rotateX(4deg) rotateY(-8deg); }
    25%, 70% { transform: translateX(-105px) rotateX(16deg) rotateY(-5deg) rotateZ(-2deg); }
    85%, 100% { transform: translateX(0) rotateX(4deg) rotateY(-8deg); }
}

.pp__page--bottom, .pp-face {
    background-color: #FBF7EC;
    background-image:
        radial-gradient(circle at 50% 45%, rgb(255 192 31 / 0.12) 0, transparent 45%),
        repeating-linear-gradient(45deg, transparent 0, transparent 2px, rgb(0 0 0 / 0.015) 2px, rgb(0 0 0 / 0.015) 3px);
}

.pp__page--bottom {
    position: absolute;
    inset: 0;
    border-radius: 10px 4px 4px 10px;
    box-shadow: inset -10px 0 20px rgb(0 0 0 / 0.06);
    overflow: hidden;
}

.pp__page--bottom::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 14px;
    background: linear-gradient(to left, rgb(0 0 0 / 0.08) 0, transparent 100%);
}

.pp-page-head {
    position: absolute;
    top: 14px;
    left: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgb(0 0 0 / 0.3);
}

.pp-page-head span { letter-spacing: 0; margin-inline-start: 4px; }

.pp-page-num {
    position: absolute;
    bottom: 10px;
    left: 16px;
    font-size: 10px;
    font-weight: 700;
    color: rgb(0 0 0 / 0.3);
}

.pp__flip {
    position: absolute;
    inset: 0;
    transform-origin: 100% 50%;
    transform-style: preserve-3d;
}

.pp__flip--1 { animation: pp-flip1 8s cubic-bezier(0.4, 0, 0.2, 1) infinite; }
.pp__flip--2 { animation: pp-flip2 8s cubic-bezier(0.4, 0, 0.2, 1) infinite; }

@keyframes pp-flip1 {
    0%, 15% { transform: translateZ(var(--z)) rotateY(0); }
    28%, 65% { transform: translateZ(var(--z)) rotateY(175deg) translateZ(8px); }
    78%, 100% { transform: translateZ(var(--z)) rotateY(0); }
}

@keyframes pp-flip2 {
    0%, 18% { transform: translateZ(var(--z)) rotateY(0); }
    31%, 62% { transform: translateZ(var(--z)) rotateY(172deg) translateZ(3px); }
    75%, 100% { transform: translateZ(var(--z)) rotateY(0); }
}

.pp-face {
    position: absolute;
    inset: 0;
    border-radius: 10px 4px 4px 10px;
    backface-visibility: hidden;
    box-shadow: inset -6px 0 14px rgb(0 0 0 / 0.05);
}

.pp-face--back { transform: rotateY(180deg); border-radius: 4px 10px 10px 4px; }

.pp__cover {
    position: absolute;
    inset: 0;
    transform-origin: 100% 50%;
    transform-style: preserve-3d;
    animation: pp-cover 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes pp-cover {
    0%, 10% { transform: translateZ(var(--z)) rotateY(0); }
    25%, 70% { transform: translateZ(var(--z)) rotateY(178deg) translateZ(12px); }
    85%, 100% { transform: translateZ(var(--z)) rotateY(0); }
}

.pp__cover-inside {
    position: absolute;
    inset: 0;
    border-radius: 10px 4px 4px 10px;
    background: linear-gradient(135deg, #EDE7D8 0, #F6F1E4 100%);
    transform: rotateY(180deg) translateZ(1px);
    backface-visibility: hidden;
    box-shadow: inset 10px 0 24px rgb(0 0 0 / 0.12);
}

.pp__cover-front {
    position: absolute;
    inset: 0;
    border-radius: 10px 4px 4px 10px;
    background: linear-gradient(160deg, #2b2b30 0, #1c1c20 55%, #131316 100%);
    box-shadow:
        10px 14px 40px rgb(0 0 0 / 0.45),
        inset 0 1px 0 rgb(255 255 255 / 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 26px 18px 22px;
    backface-visibility: hidden;
    transform: translateZ(1px);
}

.pp__cover-he {
    font-size: 17px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.12em;
}

.pp__cover-en {
    font-size: 9px;
    font-weight: 700;
    color: rgb(255 192 31 / 0.65);
    letter-spacing: 0.35em;
    margin-bottom: 26px;
}

.pp__emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 90px;
    margin-bottom: 26px;
    border: 1.5px solid rgb(255 192 31 / 0.35);
    border-radius: 12px;
    padding: 10px;
}

.pp__emblem img { width: 100%; height: auto; }

.pp__cover-label {
    font-size: 24px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.25em;
}

.pp__cover-label-en {
    font-size: 11px;
    font-weight: 700;
    color: rgb(255 192 31 / 0.65);
    letter-spacing: 0.45em;
}

.pp-stamp {
    position: absolute;
    mix-blend-mode: multiply;
    z-index: 2;
}

.pp-stamp--approved {
    top: 36px;
    left: 22px;
    animation: pp-stamp-slam 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.pp-stamp__circle {
    width: 104px;
    height: 104px;
    border: 3px double #D85A14;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: #D85A14;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    transform: rotate(12deg);
    opacity: 0.85;
}

@keyframes pp-stamp-slam {
    0%, 35% { opacity: 0; transform: scale(2.6) rotate(-18deg); }
    38% { opacity: 1; transform: scale(0.92) rotate(3deg); }
    40% { transform: scale(1.04) rotate(0deg); }
    42%, 66% { opacity: 1; transform: scale(1) rotate(0deg); }
    68%, 100% { opacity: 0; transform: scale(1) rotate(0deg); }
}

.pp-stamp--rect {
    bottom: 46px;
    right: 26px;
    animation: pp-stamp-fade 8s ease infinite;
}

.pp-stamp__rectbox {
    border: 2.5px solid rgb(28 60 120 / 0.75);
    border-radius: 6px;
    padding: 8px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    color: rgb(28 60 120 / 0.8);
    font-weight: 700;
    font-size: 12px;
    transform: rotate(-8deg);
}

@keyframes pp-stamp-fade {
    0%, 45% { opacity: 0; }
    52%, 64% { opacity: 0.9; }
    70%, 100% { opacity: 0; }
}

.pp-stamp__sm { font-size: 8px; letter-spacing: 0.18em; }

@media (prefers-reduced-motion: reduce) {
    .pp, .pp__cover, .pp__flip--1, .pp__flip--2, .pp-wrapper, .pp-stamp { animation: none !important; }

    .pp-stamp { opacity: 0.85; }
}

.visa-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    color: var(--ink);
    border-radius: var(--radius-card);
}

.visa-card__layout {
    display: grid;
    grid-template-columns: 1fr 30%;
    min-height: 340px;
}

.visa-card__content { padding: 26px; min-width: 0; }

.visa-card__media { position: relative; }

.visa-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visa-card__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 0.62) 0%, rgb(0 0 0 / 0.1) 55%);
}

.visa-card__media-overlay {
    position: absolute;
    bottom: 16px;
    inset-inline: 16px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.visa-card__media-overlay .visa-card__flag { font-size: 1.8rem; }

.visa-card__media-overlay h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.3rem;
}

.visa-card__stamp {
    position: absolute;
    top: 16px;
    left: 20px;
    z-index: 3;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0;
}

.visa-card__stamp-inner {
    width: 118px;
    height: 118px;
    border: 3px double #157A3C;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #157A3C;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-align: center;
}

.visa-card__stamp-sm {
    font-size: 8px;
    letter-spacing: 0.05em;
    max-width: 90px;
}

.visa-card__stamp.is-stamped {
    animation: result-stamp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes result-stamp {
    0% { opacity: 0; transform: scale(2.4) rotate(6deg); }
    60% { opacity: 1; transform: scale(0.94) rotate(-13deg); }
    78% { transform: scale(1.04) rotate(-15deg); }
    100% { opacity: 0.88; transform: scale(1) rotate(-14deg); }
}

@media (prefers-reduced-motion: reduce) {
    .visa-card__stamp.is-stamped { animation: none; opacity: 0.88; transform: rotate(-14deg); }
}

.visa-card__status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 12px;
    border: 1.5px solid transparent;
    margin-bottom: 18px;
}

.visa-card__status::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: currentColor;
}

.visa-card__status.is-visa_free { background: #E8F8EE; color: #137A3F; border-color: #A5E3BE; }
.visa-card__status.is-eta, .visa-card__status.is-evisa, .visa-card__status.is-voa { background: #FFF6DE; color: #8A6100; border-color: #F2D98A; }
.visa-card__status.is-embassy { background: #FDECE3; color: #B4400F; border-color: #F5C3A8; }

.visa-card__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 0 0 14px;
}

.visa-card__facts dt { font-size: 0.8rem; color: rgb(0 0 0 / 0.5); }

.visa-card__facts dd { margin: 2px 0 0; font-weight: 700; }

.visa-card__notes h4, .visa-card__pricing h4 {
    font-size: 0.9rem;
    color: var(--orange);
    margin: 12px 0 6px;
}

.visa-card__notes ul { margin: 0; padding-inline-start: 18px; font-size: 0.9rem; }

.visa-card__pricing table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }

.visa-card__pricing td { padding: 7px 0; border-top: 1px solid rgb(0 0 0 / 0.08); }

.visa-card__pricing td:last-child { text-align: left; font-weight: 700; }

/* ---------- Benefits ---------- */

.benefits { padding: 64px 0 8px; }

.benefits__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}

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

.benefit-card {
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgb(0 0 0 / 0.12);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.benefit-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.benefit-card__logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 12px;
    padding: 6px;
    display: grid;
    place-items: center;
    box-shadow: 0 3px 12px rgb(0 0 0 / 0.22);
}

.benefit-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-card__media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-card__media > img { transform: scale(1.05); }

.benefit-card__media-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgb(0 0 0 / 0.35);
    background: linear-gradient(135deg, var(--brand) 0%, var(--orange) 100%);
}

.benefit-card__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 18px 18px;
    flex: 1;
}

.benefit-card:hover { border-color: var(--brand); transform: translateY(-2px); }

.benefit-card.is-hidden { display: none; }

.benefit-card__top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.benefit-card__provider { font-weight: 700; font-size: 0.95rem; }

.benefit-card__cat {
    font-size: 0.75rem;
    background: rgb(0 0 0 / 0.07);
    padding: 2px 10px;
    border-radius: var(--radius-pill);
}

.benefit-card__title { margin: 0; font-size: 1.05rem; flex: 1; }

.benefit-card__bottom { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.benefit-card__deal {
    font-weight: 700;
    color: var(--orange-deep);
    font-size: 0.95rem;
}

.benefit-card__code {
    font-family: monospace, var(--font-main);
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--brand-light);
    border: 1.5px dashed var(--ink);
    border-radius: 8px;
    padding: 3px 10px;
}

.benefit-card__copy {
    border: none;
    background: none;
    padding: 4px;
    cursor: pointer;
    color: var(--ink);
    opacity: 0.55;
    display: inline-grid;
    place-items: center;
    transition: opacity 0.15s ease;
}

.benefit-card__copy:hover { opacity: 1; }

.benefit-card__copy.is-copied { opacity: 1; color: #137A3F; }

.benefit-card__copy.is-copied svg { display: none; }

.benefit-card__copy.is-copied::after { content: '✓'; font-weight: 700; }

.benefit-card__cta { align-self: stretch; }

/* ---------- Budget ---------- */

.budget { padding: 64px 0 8px; }

.budget__grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
}

.budget__range { margin-top: 4px; }

.budget__range input[type="range"] {
    width: 100%;
    accent-color: var(--orange);
    margin-top: 2px;
}

.budget__range output { color: var(--orange-deep); }

.budget__toggle {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
}

.budget__toggle input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--brand);
    cursor: pointer;
}

.budget__toggle small {
    display: block;
    font-weight: 400;
    color: rgb(0 0 0 / 0.55);
}

.budget__reserve { font-size: 0.85rem; color: rgb(0 0 0 / 0.5); margin-top: 2px; }

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

.budget__total-wrap { margin-top: 20px; padding-top: 16px; border-top: 1.5px solid rgb(0 0 0 / 0.1); }

.budget__total { font-size: 2.6rem; font-weight: 700; line-height: 1.1; }

.budget__monthly { font-size: 0.85rem; color: rgb(0 0 0 / 0.5); }

.budget__viz { display: grid; grid-template-columns: 200px 1fr; gap: 24px; align-items: center; }

.budget__donut { width: 200px; height: 200px; }

.budget__legend {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    font-size: 0.95rem;
}

.budget__legend li { display: flex; align-items: center; gap: 8px; }

.budget__legend .dot { width: 12px; height: 12px; border-radius: 4px; flex-shrink: 0; }

.budget__legend b { margin-inline-start: auto; }

.budget__tips {
    grid-column: 1 / -1;
    background: var(--bg-soft);
    border-radius: var(--radius-card);
    padding: 18px 22px;
}

.budget__tips h4 { margin: 0 0 8px; color: var(--orange); }

.budget__tips ul { margin: 0; padding-inline-start: 18px; font-size: 0.9rem; display: grid; gap: 4px; }

/* ---------- Budget banner (homepage teaser) ---------- */

.budget-banner { padding: 64px 0 8px; }

.budget-banner__canvas {
    display: flex;
    align-items: center;
    gap: 48px;
    background:
        linear-gradient(to left, rgb(9 13 22 / 0.7) 0%, rgb(9 13 22 / 0.42) 60%, rgb(9 13 22 / 0.25) 100%),
        url('../images/bg-beach.jpg') center / cover no-repeat;
    color: var(--white);
    border-radius: var(--radius-canvas);
    padding: 48px 56px;
}

.budget-banner__viz {
    position: relative;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}

.budget-banner__donut {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: conic-gradient(var(--brand) 0 34%, var(--orange) 34% 63%, var(--orange-deep) 63% 78%, #4a4a52 78% 100%);
    -webkit-mask: radial-gradient(circle, transparent 52px, #000 53px);
    mask: radial-gradient(circle, transparent 52px, #000 53px);
    animation: budget-spin 24s linear infinite;
}

@keyframes budget-spin {
    to { transform: rotate(360deg); }
}

.budget-banner__amount {
    position: absolute;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
}

.budget-banner__text h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 10px;
}

.budget-banner__text p {
    color: rgb(255 255 255 / 0.75);
    max-width: 480px;
    margin: 0 0 24px;
}

.budget-page__extra { padding: 24px 20px 56px; }

.budget-page__extra h2 { font-size: 1.4rem; }

.budget-page__extra a { color: var(--orange-deep); font-weight: 700; text-decoration: underline; }

/* ---------- Currency ---------- */

.currency { padding: 64px 0 8px; }

.currency__headline {
    text-align: center;
    font-weight: 700;
    color: rgb(0 0 0 / 0.55);
    margin-bottom: 18px;
}

.currency__card {
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 300px;
}

.currency__main { padding: 32px 36px; min-width: 0; }

.currency__form {
    display: grid;
    grid-template-columns: 150px 1fr auto 1fr;
    gap: 14px;
    align-items: end;
}

.currency__board {
    background: linear-gradient(165deg, var(--brand-light) 0%, var(--brand) 100%);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
}

.currency__board-title {
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.currency__board-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    flex: 1;
}

.currency__board-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgb(255 255 255 / 0.65);
    border-radius: 12px;
    padding: 8px 14px;
    font-size: 0.92rem;
}

.currency__board-flag { font-size: 1.15rem; }

.currency__board-name { flex: 1; font-weight: 700; }

.currency__board-rate { font-size: 1rem; }

.currency__board-note {
    margin: 14px 0 0;
    font-size: 0.78rem;
    color: rgb(0 0 0 / 0.55);
}

.currency__swap {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    background: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.15s ease, transform 0.2s ease;
}

.currency__swap:hover { background: var(--brand); transform: rotate(180deg); }

.currency__result {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    margin: 26px 0 20px;
    padding: 18px 0;
    border-block: 1.5px dashed rgb(0 0 0 / 0.12);
}

.currency__result small { font-size: 1rem; color: rgb(0 0 0 / 0.5); font-weight: 400; display: block; }

.currency__ctas { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ---------- Guides ---------- */

.guides { padding: 64px 0; }

.guides__continents {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.guides__continent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 18px 10px;
    border: 1.5px solid rgb(0 0 0 / 0.12);
    border-radius: var(--radius-card);
    background: var(--white);
    font-family: var(--font-main);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.guides__continent:hover { border-color: var(--brand); }

.guides__continent.is-active { background: var(--brand); border-color: var(--brand); }

.guides__emoji { color: var(--orange); }

.guides__emoji svg { width: 32px; height: 32px; display: block; }

.guides__continent.is-active .guides__emoji { color: var(--ink); }

.guides__name { font-weight: 700; }

.guides__count { font-size: 0.8rem; color: rgb(0 0 0 / 0.5); }

.guides__list { display: none; }

.guides__list.is-active {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.guide-card-mini {
    display: flex;
    flex-direction: column;
    border: 1.5px solid rgb(0 0 0 / 0.12);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.guide-card-mini:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: 0 10px 24px rgb(0 0 0 / 0.08);
}

.guide-card-mini__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    display: block;
}

.guide-card-mini__media img { width: 100%; height: 100%; object-fit: cover; }

.guide-card-mini__fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgb(0 0 0 / 0.3);
    background: linear-gradient(135deg, var(--brand) 0%, var(--orange) 100%);
}

.guide-card-mini__title {
    padding: 14px 16px 16px;
    font-weight: 700;
    font-size: 0.98rem;
    flex: 1;
}

.guide-card-mini--more {
    display: grid;
    place-items: center;
    background: var(--bg-soft);
    color: var(--orange);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    padding: 16px;
}

.guide-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px solid rgb(0 0 0 / 0.12);
    border-radius: 14px;
    padding: 14px 18px;
    font-weight: 700;
}

.guide-item__kind {
    font-size: 0.75rem;
    background: var(--orange);
    color: var(--white);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    flex-shrink: 0;
}

/* ---------- Partner landing ---------- */

.partner-hero { padding: 16px; }

.partner-hero__canvas {
    background:
        linear-gradient(to left, rgb(9 13 22 / 0.72) 0%, rgb(9 13 22 / 0.42) 55%, rgb(9 13 22 / 0.18) 100%),
        url('../images/bg-insurance.jpg') center / cover no-repeat;
    border-radius: var(--radius-canvas);
    padding: 56px 0 64px;
    color: var(--white);
}

.partner-hero__canvas--esim {
    background-image:
        linear-gradient(to left, rgb(9 13 22 / 0.72) 0%, rgb(9 13 22 / 0.42) 55%, rgb(9 13 22 / 0.18) 100%),
        url('../images/hero-esim.jpg');
}

.partner-hero__canvas--rescue {
    background-image:
        linear-gradient(to left, rgb(9 13 22 / 0.72) 0%, rgb(9 13 22 / 0.42) 55%, rgb(9 13 22 / 0.18) 100%),
        url('../images/bg-rescue.jpg');
}

.partner-hero__title { color: var(--white); text-shadow: 0 2px 22px rgb(0 0 0 / 0.45); }

.partner-hero__sub { color: rgb(255 255 255 / 0.92); text-shadow: 0 1px 10px rgb(0 0 0 / 0.4); }

.partner-hero__back {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    opacity: 0.8;
}

.partner-hero__partner {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.partner-hero__title {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    max-width: 640px;
    margin-bottom: 14px;
}

.partner-hero__sub { max-width: 560px; margin: 0 0 26px; font-size: 1.05rem; }

.partner-section { padding: 56px 0 8px; }

.partner-section--soft { background: var(--bg-soft); padding-bottom: 48px; margin-top: 48px; }

.container--narrow { max-width: 760px; }

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

.package {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    text-align: right;
    padding: 24px;
    border: 2px solid rgb(0 0 0 / 0.12);
    border-radius: var(--radius-card);
    background: var(--white);
    font-family: var(--font-main);
    cursor: pointer;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.package:hover { transform: translateY(-3px); }

.package.is-active { border-color: var(--brand); box-shadow: 0 0 0 3px rgb(255 192 31 / 0.35); }

.package__label { font-weight: 700; font-size: 1.3rem; }

.package__price { font-size: 2rem; font-weight: 700; }

.package__price small { font-size: 0.85rem; color: rgb(0 0 0 / 0.5); font-weight: 400; }

.package__desc { font-size: 0.9rem; color: rgb(0 0 0 / 0.6); }

.packages__cta { text-align: center; margin-top: 24px; }

.insurance-calc { max-width: 560px; margin-inline: auto; }

.insurance-calc__range {
    width: 100%;
    accent-color: var(--orange);
    margin: 8px 0 20px;
}

.insurance-calc__prices {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.insurance-calc__price span { display: block; font-size: 0.85rem; color: rgb(0 0 0 / 0.5); }

.insurance-calc__price strong { font-size: 2.2rem; }

.insurance-calc__price--full s { font-size: 1.4rem; color: rgb(0 0 0 / 0.4); }

.insurance-calc__save {
    background: #DCF5E3;
    color: #157A3C;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    padding: 8px 16px;
}

.partner-note { font-size: 0.8rem; color: rgb(0 0 0 / 0.45); margin-top: 18px; }

.features-grid, .why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-card h3 { margin-bottom: 6px; }

.feature-card p { margin: 0; color: rgb(0 0 0 / 0.65); font-size: 0.95rem; }

.why-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-card);
    padding: 18px 20px;
}

.why-item__check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand);
    display: grid;
    place-items: center;
    font-weight: 700;
    flex-shrink: 0;
}

.why-item p { margin: 2px 0 0; font-size: 0.9rem; color: rgb(0 0 0 / 0.6); }

.faq { display: grid; gap: 10px; }

.faq__item {
    border-radius: var(--radius-card);
    background: var(--orange);
    color: var(--white);
    overflow: hidden;
}

.faq__item summary {
    padding: 16px 22px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq__item summary::after {
    content: '+';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
}

.faq__item[open] summary::after { content: '−'; }

.faq__item p {
    margin: 0;
    padding: 0 22px 18px;
    background: var(--white);
    color: var(--ink);
    padding-top: 14px;
    font-size: 0.95rem;
}

.partner-closing { padding: 56px 16px 0; }

.partner-closing__card {
    background:
        linear-gradient(rgb(9 13 22 / 0.78), rgb(9 13 22 / 0.78)),
        url('../images/bg-insurance.jpg') center / cover no-repeat;
    color: var(--white);
    border-radius: var(--radius-canvas);
    text-align: center;
    padding: 56px 24px;
}

.partner-closing__card--esim {
    background-image: linear-gradient(rgb(9 13 22 / 0.78), rgb(9 13 22 / 0.78)), url('../images/hero-esim.jpg');
}

.partner-closing__card--rescue {
    background-image: linear-gradient(rgb(9 13 22 / 0.78), rgb(9 13 22 / 0.78)), url('../images/bg-rescue.jpg');
}

.partner-closing__badge {
    display: inline-block;
    background: var(--brand);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-pill);
    padding: 5px 16px;
    margin-bottom: 14px;
}

.partner-closing__card h2 { color: var(--white); margin-bottom: 22px; }

.partner-sticky {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: var(--ink);
    color: var(--white);
    padding: 12px 18px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ---------- Blog ---------- */

.blog-hero { padding: 16px; }

.blog-hero__canvas {
    background:
        linear-gradient(to left, rgb(9 13 22 / 0.72) 0%, rgb(9 13 22 / 0.4) 55%, rgb(9 13 22 / 0.16) 100%),
        url('../images/bg-blog.jpg') center / cover no-repeat;
    border-radius: var(--radius-canvas);
    padding: 64px 0;
}

.blog-hero__canvas--destinations {
    background-image:
        linear-gradient(to left, rgb(9 13 22 / 0.72) 0%, rgb(9 13 22 / 0.4) 55%, rgb(9 13 22 / 0.16) 100%),
        url('../images/bg-destinations.jpg');
}

.blog-hero__canvas--benefits {
    background-image:
        linear-gradient(to left, rgb(9 13 22 / 0.72) 0%, rgb(9 13 22 / 0.4) 55%, rgb(9 13 22 / 0.16) 100%),
        url('../images/bg-benefits.jpg');
}

.blog-hero__canvas--budget {
    background-image:
        linear-gradient(to left, rgb(9 13 22 / 0.72) 0%, rgb(9 13 22 / 0.4) 55%, rgb(9 13 22 / 0.16) 100%),
        url('../images/bg-budget.jpg');
}

.blog-hero__canvas--contact {
    background-image:
        linear-gradient(to left, rgb(9 13 22 / 0.72) 0%, rgb(9 13 22 / 0.4) 55%, rgb(9 13 22 / 0.16) 100%),
        url('../images/bg-contact.jpg');
}

.blog-hero__kicker {
    display: inline-block;
    background: var(--ink);
    color: var(--brand);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-pill);
    padding: 5px 16px;
    margin-bottom: 14px;
}

.blog-hero__title {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 0 2px 22px rgb(0 0 0 / 0.45);
}

.blog-hero__sub {
    max-width: 520px;
    margin: 0;
    font-size: 1.05rem;
    color: rgb(255 255 255 / 0.92);
    text-shadow: 0 1px 10px rgb(0 0 0 / 0.4);
}

.blog-list { padding: 48px 20px 24px; }

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

.post-card {
    border: 1.5px solid rgb(0 0 0 / 0.12);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 12px 28px rgb(0 0 0 / 0.08);
}

.post-card__link { display: flex; flex-direction: column; height: 100%; }

.post-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.post-card__img { width: 100%; height: 100%; object-fit: cover; }

.post-card__fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgb(0 0 0 / 0.35);
    background:
        radial-gradient(circle at 78% 22%, rgb(255 255 255 / 0.35) 0 14%, transparent 15%),
        linear-gradient(135deg, var(--brand) 0%, var(--orange) 100%);
}

.post-card__cat {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    background: var(--ink);
    color: var(--brand);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
}

.post-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px 20px 20px;
    flex: 1;
}

.post-card__title { font-size: 1.15rem; margin: 0; }

.post-card__excerpt {
    margin: 0;
    font-size: 0.92rem;
    color: rgb(0 0 0 / 0.6);
    flex: 1;
}

.post-card__meta {
    display: flex;
    gap: 6px;
    font-size: 0.8rem;
    color: rgb(0 0 0 / 0.45);
}

.blog-pagination { margin: 36px 0 24px; }

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.9rem;
}

.blog-pagination .page-numbers.current { background: var(--brand); }

.blog-pagination .page-numbers:hover { background: var(--brand-light); }

.blog-empty { text-align: center; padding: 48px 0; color: rgb(0 0 0 / 0.55); }

/* ---------- Single article ---------- */

.article__head { padding: 40px 0 8px; }

.article__breadcrumb { margin-bottom: 18px; }

.article__breadcrumb a { font-weight: 700; font-size: 0.9rem; color: var(--orange); }

.article__cat {
    display: inline-block;
    background: var(--brand);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 14px;
}

.article__title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }

.article__meta { display: flex; gap: 8px; font-size: 0.9rem; color: rgb(0 0 0 / 0.5); }

.article__hero-img { margin-top: 24px; }

.article__img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius-card);
}

.entry-content {
    padding: 32px 0 8px;
    font-size: 1.08rem;
    line-height: 1.85;
}

.entry-content h2 {
    font-size: 1.6rem;
    margin: 1.6em 0 0.5em;
    padding-inline-start: 14px;
    border-inline-start: 5px solid var(--brand);
}

.entry-content h3 { font-size: 1.25rem; margin: 1.4em 0 0.4em; }

.entry-content a { color: var(--orange-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.entry-content ul, .entry-content ol { padding-inline-start: 24px; }

.entry-content li { margin-bottom: 6px; }

.entry-content blockquote {
    margin: 1.5em 0;
    padding: 18px 22px;
    background: var(--bg-soft);
    border-inline-start: 5px solid var(--orange);
    border-radius: 0 14px 14px 0;
    font-weight: 700;
}

.entry-content img { border-radius: var(--radius-card); }

.entry-content table { width: 100%; border-collapse: collapse; }

.entry-content th, .entry-content td { padding: 10px 14px; border: 1px solid rgb(0 0 0 / 0.12); text-align: right; }

.entry-content th { background: var(--brand-light); }

.article__cta {
    background:
        linear-gradient(rgb(9 13 22 / 0.76), rgb(9 13 22 / 0.76)),
        url('../images/hero-thailand.jpg') center / cover no-repeat;
    color: var(--white);
    border-radius: var(--radius-card);
    padding: 28px;
    margin: 40px 0;
}

.article__cta h3 { color: var(--white); margin: 0 0 6px; }

.article__cta p { color: rgb(255 255 255 / 0.75); margin: 0 0 18px; }

.article__related { padding-bottom: 48px; }

.guide-item__title { font-weight: 700; }

.guide-item--more { border-style: dashed; }

.guide-item--more a { color: var(--orange); font-weight: 700; font-size: 0.9rem; }

/* ---------- Destinations map + benefits page ---------- */

.dest-filters-wrap { padding: 8px 20px 56px; }

.dest-nav { margin: 40px 0 28px; }

.dest-nav__continents {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.dest-nav__continent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1.5px solid rgb(0 0 0 / 0.15);
    border-radius: var(--radius-pill);
    background: var(--white);
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.dest-nav__continent:hover { border-color: var(--brand); transform: translateY(-1px); }

.dest-nav__continent.is-active { background: var(--brand); border-color: var(--brand); }

.dest-nav__icon { color: var(--orange); display: inline-flex; }

.dest-nav__icon svg { width: 20px; height: 20px; }

.dest-nav__continent.is-active .dest-nav__icon { color: var(--ink); }

.dest-nav__sub {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 16px;
    background: var(--bg-soft);
    border-radius: var(--radius-card);
    margin-bottom: 14px;
    animation: dest-sub-open 0.25s ease;
}

@keyframes dest-sub-open {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.chip--place { font-weight: 400; font-size: 0.85rem; }

.dest-filters__count {
    margin-inline-start: auto;
    font-weight: 700;
    color: rgb(0 0 0 / 0.5);
    font-size: 0.95rem;
}

.post-card.is-hidden { display: none; }

.guides__all, .benefits__all { text-align: center; margin-top: 30px; }

.benefits--page { padding-top: 40px; }

.benefits-page__note {
    max-width: 760px;
    margin: 56px auto 48px;
    background: var(--bg-soft);
    border-radius: var(--radius-card);
    padding: 28px 32px;
}

.benefits-page__note h2 { font-size: 1.35rem; margin-bottom: 12px; }

.benefits-page__note ol { padding-inline-start: 22px; display: grid; gap: 6px; }

.benefits-page__note a { color: var(--orange-deep); font-weight: 700; text-decoration: underline; }

.article__dests { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }

.article__dests .article__cat { margin-bottom: 0; }

/* ---------- Contact form ---------- */

.contact__wrap { padding: 40px 20px 64px; }

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__field { min-width: 0; }

.contact-form__textarea { resize: vertical; min-height: 140px; }

.contact-form__hp { position: absolute; left: -9999px; opacity: 0; height: 0; }

.contact-form__consent { font-size: 0.85rem; color: rgb(0 0 0 / 0.55); margin: 14px 0 18px; }

.contact-form__consent a { color: var(--orange-deep); font-weight: 700; text-decoration: underline; }

.contact-form__status {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #E8F8EE;
    color: #137A3F;
    font-weight: 700;
}

.contact-form__status.is-error { background: #FDECE3; color: #B4400F; }

/* ---------- Insurance page ---------- */

.ins-hero { padding: 16px 16px 8px; }

.ins-hero__panel {
    position: relative;
    border-radius: var(--radius-canvas);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: clamp(56px, 8vw, 110px) 0;
}

.ins-hero__panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgb(0 0 0 / 0.74) 0%, rgb(0 0 0 / 0.44) 55%, rgb(0 0 0 / 0.1) 100%);
}

.ins-hero__content {
    position: relative;
    max-width: 640px;
    color: #fff;
}

.ins-hero__title {
    color: #fff;
    font-size: clamp(2rem, 4.6vw, 3.2rem);
    margin: 0 0 18px;
}

.ins-hero__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgb(255 255 255 / 0.92);
}

.ins-hero__content .btn { margin-top: 14px; }

@media (max-width: 700px) {
    .ins-hero { padding: 10px 10px 8px; }
    .ins-hero__panel { padding: 42px 0; }
    .ins-hero__panel::before { background: rgb(0 0 0 / 0.62); }
}

.ins-iframe {
    aspect-ratio: 16 / 10;
    max-height: 720px;
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1.5px solid rgb(0 0 0 / 0.1);
}

.ins-iframe iframe { width: 100%; height: 100%; border: 0; }

.testimonials__viewport { overflow: hidden; }

.testimonials {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 2px 10px;
}

.testimonials::-webkit-scrollbar { display: none; }

.testimonial {
    flex: 0 0 calc((100% - 28px) / 3);
    scroll-snap-align: start;
}

.testimonials__footer { position: relative; min-height: 34px; }

.testimonials__arrows { position: absolute; left: 0; top: 0; }

.testimonial {
    margin: 0;
    background: var(--white);
    border: 1.5px solid rgb(0 0 0 / 0.1);
    border-radius: var(--radius-card);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.testimonial__stars { color: var(--brand); letter-spacing: 2px; }

.testimonial blockquote {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    flex: 1;
}

.testimonial figcaption {
    font-weight: 700;
    font-size: 0.85rem;
    color: rgb(0 0 0 / 0.6);
}

.partner-intro { padding-bottom: 0; }

.partner-intro__p { font-size: 1.05rem; line-height: 1.8; }

/* ---------- Provider comparison table ---------- */

.compare-wrap { overflow-x: auto; }

.compare {
    width: 100%;
    min-width: 760px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1.5px solid rgb(0 0 0 / 0.1);
    border-radius: var(--radius-card);
    overflow: hidden;
}

.compare th {
    background: var(--brand);
    text-align: right;
    font-size: 0.9rem;
    padding: 14px 18px;
}

.compare td {
    padding: 16px 18px;
    border-top: 1.5px solid rgb(0 0 0 / 0.08);
    font-size: 0.95rem;
    vertical-align: middle;
}

.compare__provider { font-weight: 700; }

.compare__price { font-weight: 700; font-size: 1.05rem; }

.compare__none { color: rgb(0 0 0 / 0.3); }

.compare__badge {
    display: inline-block;
    background: var(--ink);
    color: var(--brand);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    padding: 3px 10px;
    margin-inline-start: 8px;
}

.compare__featured td { background: var(--brand-soft, #FFF6DC); }

.compare__cta { padding: 9px 20px; font-size: 0.88rem; }

/* ---------- Action cards (prominent CTAs) ---------- */

.action-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.action-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: var(--radius-canvas);
    padding: 40px 44px;
}

.action-card--brand { background: var(--brand); color: var(--ink); }

.action-card--ink { background: var(--ink); color: var(--white); }

.action-card--ink .action-card__title { color: var(--white); }

.action-card--cash,
.action-card--card {
    color: #fff;
    background-size: cover;
    background-position: center;
}

.action-card--cash {
    background-image: linear-gradient(rgb(0 0 0 / 0.58), rgb(0 0 0 / 0.68)), url('../images/bg-action-cash.jpg');
}

.action-card--card {
    background-image: linear-gradient(rgb(0 0 0 / 0.58), rgb(0 0 0 / 0.68)), url('../images/bg-action-card.jpg');
}

.action-card--cash .action-card__title,
.action-card--card .action-card__title { color: #fff; }

.action-card--cash .action-card__desc,
.action-card--card .action-card__desc { opacity: 0.92; }

.action-card__logo {
    height: 46px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.action-card__logo img {
    max-height: 42px;
    max-width: 150px;
    object-fit: contain;
}

.action-card__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgb(255 255 255 / 0.25);
    margin-bottom: 4px;
}

.action-card--ink .action-card__icon { background: rgb(255 255 255 / 0.12); color: var(--brand); }

.action-card__title { font-size: 1.5rem; margin: 0; }

.action-card__desc { margin: 0 0 14px; font-size: 1rem; opacity: 0.85; }

.guide-card-mini__media { position: relative; }

.guide-card-mini__ext,
.post-card__cat--ext {
    position: absolute;
    top: 10px;
    inset-inline-start: 10px;
    z-index: 1;
    background: var(--ink);
    color: var(--brand);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-pill);
}

.post-card__cat--ext { font-size: 0.75rem; top: 12px; inset-inline-start: 12px; }

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .categories__grid { grid-template-columns: repeat(2, 1fr); }

    .guides__list.is-active { grid-template-columns: 1fr 1fr; }

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

    .news-card { flex-basis: calc((100% - 16px) / 2); }

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

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

    .testimonial { flex-basis: calc((100% - 14px) / 2); }

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

    .checklist__bonus { position: static; }

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

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

@media (max-width: 768px) {
    .site-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        background: var(--white);
        padding: 16px 20px 24px;
        box-shadow: 0 16px 32px rgb(0 0 0 / 0.12);
        display: block;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px);
        pointer-events: none;
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .site-nav__list { flex-direction: column; align-items: stretch; }

    .nav-toggle { display: flex; }

    .site-header__actions .btn { display: none; }

    .menu-item-mobile { display: block; }

    .hero { padding: 10px; }

    .hero__canvas { border-radius: 28px; height: auto; min-height: 620px; }

    .hero__inner { padding-block: 56px 150px; }

    .hero__sun { bottom: 24%; left: 6%; }

    .hero__route { display: none; }

    .hero-slider__arrow { display: none; }

    .site-footer__top { grid-template-columns: 1fr; gap: 32px; }

    .site-footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .services__grid, .benefits__grid, .blog-grid { grid-template-columns: 1fr; }

    .news-card { flex-basis: 86%; }

    .news__track { padding-inline: 10px; scroll-padding-inline: 10px; }

    /* homepage benefits teaser: 4 cards on mobile (full page unaffected) */
    .benefits:not(.benefits--page) .benefit-card:nth-child(n+5) { display: none; }

    .news__arrows { display: none; }

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

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

    .guides__list.is-active { grid-template-columns: 1fr; }

    .budget__viz { grid-template-columns: 1fr; justify-items: center; }

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

    .currency__main { padding: 24px 20px; }

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

    .currency__swap { justify-self: center; }

    .packages, .features-grid, .why-grid, .action-cards { grid-template-columns: 1fr; }

    .ins-hero__grid { grid-template-columns: 1fr; }

    .testimonial { flex-basis: 88%; }

    .contact-form__row { grid-template-columns: 1fr; }

    .visa { padding-inline: 10px; }

    .visa-card__layout { grid-template-columns: 1fr; min-height: 0; }

    .visa-card__media { order: -1; height: 150px; }


    .visa__canvas { border-radius: 28px; overflow: hidden; }

    .pp-scene {
        width: 100%;
        max-width: 400px;
        transform: scale(0.7);
        transform-origin: top center;
        height: 290px;
        margin-top: -10px;
    }

    .partner-sticky { display: flex; }

    .budget-banner__canvas { flex-direction: column; text-align: center; gap: 28px; padding: 36px 24px; }

    .budget-banner__text p { margin-inline: auto; }

    .partner-closing { padding-bottom: 70px; }
}

@media (max-width: 480px) {
    .categories__grid { grid-template-columns: 1fr 1fr; gap: 12px; }

    .category-card { padding: 22px 10px; }
}

/* ===== Australia hub page ===== */

.hero__sky[data-sky="au-opera"] { background: url('../images/hero-au-opera.jpg') center / cover no-repeat; }
.hero__sky[data-sky="au-uluru"] { background: url('../images/hero-au-uluru.jpg') center / cover no-repeat; }
.hero__sky[data-sky="au-surf"]  { background: url('../images/hero-au-surf.jpg') center / cover no-repeat; }

/* Route stations */
.au-route { padding: 72px 0 56px; }

.au-route__track {
    display: flex;
    flex-direction: column;
    margin-top: 44px;
    max-width: 860px;
    margin-inline: auto;
    position: relative;
}

.au-route__curve {
    width: 100%;
    height: 120px;
    color: rgb(0 0 0 / 0.22);
    margin: -6px 0;
    pointer-events: none;
}

.au-route__curve--flip { transform: scaleX(-1); }

.au-station {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    align-self: flex-start;
    background: #fff;
    border: 2px solid rgb(0 0 0 / 0.08);
    border-radius: 20px;
    padding: 24px 26px 20px;
    text-align: start;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.au-station--alt { align-self: flex-end; }

.au-station__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.au-station:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 14px 34px rgb(0 0 0 / 0.1);
}

.au-station__num {
    position: absolute;
    top: -16px;
    inset-inline-start: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--brand);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
}

.au-station__icon {
    width: 64px;
    height: 64px;
    flex: none;
    border-radius: 50%;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
}

.au-station__icon svg { width: 30px; height: 30px; }

.au-station__title { font-weight: 700; font-size: 1.25rem; }

.au-station__sub { color: rgb(0 0 0 / 0.6); font-size: 0.95rem; line-height: 1.5; }

.au-station__open {
    margin-top: 2px;
    color: var(--orange-deep);
    font-weight: 700;
    font-size: 0.92rem;
}

/* Route scroll-reveal: stations slide in from their side, curves draw downward */
@media (prefers-reduced-motion: no-preference) {
    .au-anim .au-station { opacity: 0; }

    .au-anim .au-station.is-visible { opacity: 1; }

    .au-anim .au-station.is-visible:not(.au-anim-done) {
        animation: au-rise 0.6s cubic-bezier(0.22, 0.9, 0.35, 1) both;
    }

    .au-anim .au-station--alt.is-visible:not(.au-anim-done) {
        animation-name: au-rise-alt;
    }

    /* clip the inner path, not the observed svg - Chrome factors the target's
       own clip-path into IntersectionObserver, so a fully-clipped svg never fires */
    .au-anim .au-route__curve path { clip-path: inset(-5% -5% 105% -5%); }

    .au-anim .au-route__curve.is-visible path {
        animation: au-draw 0.9s ease 0.1s both;
    }
}

@keyframes au-rise {
    from { opacity: 0; transform: translate(52px, 26px); }
}

@keyframes au-rise-alt {
    from { opacity: 0; transform: translate(-52px, 26px); }
}

@keyframes au-draw {
    to { clip-path: inset(-5% -5% -5% -5%); }
}

/* Station 1: article mini-cards */
.au-art-list { display: flex; flex-direction: column; gap: 10px; }

.au-art-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-soft, #FAFAFA);
    border-radius: 14px;
    padding: 10px;
}

.au-art-card__media {
    width: 86px;
    height: 66px;
    flex: none;
    border-radius: 10px;
    overflow: hidden;
    background: rgb(0 0 0 / 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}

.au-art-card__media img { width: 100%; height: 100%; object-fit: cover; }

.au-art-card__ph { color: rgb(0 0 0 / 0.3); display: flex; }

.au-art-card__ph svg { width: 26px; height: 26px; }

.au-art-card__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
}

.au-art-card__title { font-weight: 700; line-height: 1.35; }

.au-art-card__btn {
    background: var(--brand);
    border-radius: var(--radius-pill);
    padding: 5px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ink);
    transition: background 0.15s ease;
}

.au-art-card__btn:hover { background: var(--orange); }

.au-art-card--soon { opacity: 0.65; }

.au-art-card__soon {
    background: rgb(0 0 0 / 0.08);
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgb(0 0 0 / 0.55);
}

/* Station 2: rectangle buttons */
.au-rect-list { display: flex; flex-direction: column; gap: 10px; }

.au-rect {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px solid var(--ink);
    border-radius: 14px;
    padding: 14px 18px;
    font-weight: 700;
    color: var(--ink);
    transition: background 0.15s ease, transform 0.15s ease;
}

.au-rect:hover { background: var(--brand); transform: translateY(-2px); }

.au-rect__icon { display: flex; flex: none; }

.au-rect__icon svg { width: 24px; height: 24px; }

.au-rect__label { flex: 1; }

.au-rect__arrow { font-weight: 700; }

.au-rect--static {
    border-color: rgb(0 0 0 / 0.15);
    color: rgb(0 0 0 / 0.6);
    cursor: default;
}

/* Modal */
.aumodal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.aumodal__backdrop {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 0.55);
}

.aumodal__dialog {
    position: relative;
    background: #fff;
    border-radius: 20px;
    max-width: 580px;
    width: 100%;
    max-height: 86vh;
    overflow-y: auto;
    padding: 34px 30px 28px;
    animation: aumodal-in 0.22s ease;
}

.aumodal__dialog--narrow { max-width: 420px; }

@keyframes aumodal-in {
    from { opacity: 0; transform: translateY(14px) scale(0.98); }
    to   { opacity: 1; transform: none; }
}

.aumodal__close {
    position: absolute;
    top: 12px;
    inset-inline-end: 16px;
    background: none;
    border: none;
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
    color: rgb(0 0 0 / 0.5);
}

.aumodal__close:hover { color: var(--ink); }

.aumodal__step {
    display: inline-block;
    background: var(--brand);
    border-radius: var(--radius-pill);
    padding: 4px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.aumodal__title { font-size: 1.5rem; margin: 0 0 8px; }

.aumodal__intro { color: rgb(0 0 0 / 0.65); margin: 0 0 18px; line-height: 1.55; }

.aumodal__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }

.aumodal__list li {
    padding: 11px 14px;
    border-radius: 12px;
    background: var(--bg-soft, #FAFAFA);
    display: flex;
    align-items: center;
    gap: 10px;
}

.aumodal__list a { font-weight: 700; color: var(--ink); }

.aumodal__list a:hover { color: var(--orange-deep); }

.aumodal__soon { color: rgb(0 0 0 / 0.5); }

.aumodal__soon em {
    font-style: normal;
    background: rgb(0 0 0 / 0.07);
    border-radius: var(--radius-pill);
    padding: 2px 10px;
    font-size: 0.78rem;
    margin-inline-start: 6px;
}

.aumodal__licon { display: flex; color: var(--orange); flex: none; }

.aumodal__licon svg { width: 22px; height: 22px; }

/* Checklist inside popup */
.aumodal__progress { font-weight: 700; color: var(--orange-deep); margin: 0 0 10px; }

.aumodal__checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }

.aumodal__checklist li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--bg-soft, #FAFAFA);
}

.au-check { display: flex; align-items: center; gap: 10px; cursor: pointer; position: relative; }

.au-check input { position: absolute; opacity: 0; }

.au-check__box {
    width: 22px;
    height: 22px;
    border-radius: 7px;
    border: 2px solid rgb(0 0 0 / 0.25);
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.au-check input:checked + .au-check__box {
    background: var(--brand);
    border-color: var(--brand);
}

.au-check input:checked + .au-check__box::after {
    content: '✓';
    font-weight: 700;
    font-size: 0.85rem;
}

.au-check input:checked ~ .au-check__label { text-decoration: line-through; color: rgb(0 0 0 / 0.45); }

.au-check__more { flex: none; color: var(--orange-deep); font-weight: 700; font-size: 0.88rem; }

.au-check__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.aumodal__checklist li { flex-direction: column; align-items: stretch; }

.au-check__tip {
    display: none;
    margin: 8px 0 0;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgb(255 192 31 / 0.16);
    border-inline-start: 4px solid var(--brand);
    font-size: 0.9rem;
    line-height: 1.55;
}

.aumodal__checklist li.is-checked .au-check__tip {
    display: block;
    animation: aumodal-in 0.2s ease;
}

/* Treasure box */
.au-treasure { padding: 30px 0 60px; }

.au-treasure__panel {
    background:
        linear-gradient(rgb(0 0 0 / 0.62), rgb(0 0 0 / 0.72)),
        url('../images/bg-au-treasure.jpg') center / cover no-repeat var(--ink);
    border-radius: 43px;
    padding: 56px 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.au-treasure__panel::before {
    content: '';
    position: absolute;
    inset: -40% 55% 30% -20%;
    background: radial-gradient(closest-side, rgb(255 192 31 / 0.22), transparent 70%);
    pointer-events: none;
}

.au-treasure__head { text-align: center; position: relative; }

.au-treasure__chest {
    display: inline-flex;
    color: var(--brand);
    margin-bottom: 10px;
}

.au-treasure__sub { color: rgb(255 255 255 / 0.75); max-width: 560px; margin: 8px auto 0; }

.au-treasure__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 34px 0 30px;
    position: relative;
}

.au-tip {
    border: 1.5px solid rgb(255 192 31 / 0.45);
    border-radius: 18px;
    padding: 22px 22px 18px;
    background: rgb(255 255 255 / 0.04);
}

.au-tip h3 { margin: 0 0 8px; color: var(--brand); font-size: 1.1rem; }

.au-tip p { margin: 0; color: rgb(255 255 255 / 0.82); line-height: 1.6; font-size: 0.97rem; }

.au-treasure__cta { text-align: center; position: relative; }

/* Newsletter form */
.nl-hp { position: absolute; inset-inline-start: -9999px; }

#au-newsletter-form p,
.htg-form p { margin: 0 0 14px; }

#au-newsletter-form label,
.htg-form label { display: block; font-weight: 700; margin-bottom: 5px; font-size: 0.92rem; }

#au-newsletter-form input:not(.nl-hp),
.htg-form input:not(.nl-hp),
.htg-form textarea {
    width: 100%;
    border: 2px solid rgb(0 0 0 / 0.14);
    border-radius: 12px;
    padding: 11px 14px;
    font-family: var(--font-main);
    font-size: 1rem;
}

#au-newsletter-form input:focus,
.htg-form input:focus,
.htg-form textarea:focus { outline: none; border-color: var(--brand); }

#au-newsletter-form button,
.htg-form button[type="submit"] { width: 100%; }

.htg-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 520px) {
    .htg-form__row { grid-template-columns: 1fr; }
}

#au-newsletter-success,
#visa-lead-success { font-weight: 700; text-align: center; font-size: 1.05rem; margin: 10px 0 0; }

/* Services */
.au-services { padding: 30px 0 60px; }

.au-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 36px;
}

.au-svc {
    background: #fff;
    border: 2px solid rgb(0 0 0 / 0.08);
    border-radius: 20px;
    padding: 26px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--ink);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.au-svc:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 14px 34px rgb(0 0 0 / 0.1);
}

.au-svc__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
}

.au-svc__icon svg { width: 26px; height: 26px; }

.au-svc__title { margin: 0; font-size: 1.15rem; }

.au-svc__text { margin: 0; color: rgb(0 0 0 / 0.6); font-size: 0.94rem; line-height: 1.55; flex: 1; }

.au-svc__go { color: var(--orange-deep); font-weight: 700; font-size: 0.92rem; }

.au-articles { padding: 10px 0 60px; }

@media (max-width: 900px) {
    .au-route__curve { height: 74px; }
    .au-station { width: min(420px, 94%); }
    .au-treasure__panel { padding: 40px 24px; border-radius: 30px; }
    .au-treasure__grid { grid-template-columns: 1fr; }
    .au-services__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .au-services__grid { grid-template-columns: 1fr; }
}

/* ===== eSIM provider cards ===== */
.esim-providers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.esim-provider {
    background: #fff;
    border: 2px solid rgb(0 0 0 / 0.08);
    border-radius: 20px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.esim-provider:hover {
    transform: translateY(-4px);
    border-color: var(--brand);
    box-shadow: 0 14px 34px rgb(0 0 0 / 0.1);
}

.esim-provider__logo {
    height: 58px;
    display: flex;
    align-items: center;
}

.esim-provider__logo img {
    max-height: 58px;
    max-width: 150px;
    object-fit: contain;
    border-radius: 12px;
}

.esim-provider__name { margin: 0; font-size: 1.3rem; }

.esim-provider__about {
    margin: 0;
    color: rgb(0 0 0 / 0.62);
    line-height: 1.6;
    font-size: 0.96rem;
    flex: 1;
}

.esim-coupon {
    display: flex;
    align-items: stretch;
    width: 100%;
    background: var(--ink);
    color: var(--brand);
    border-radius: 14px;
}

.esim-coupon__deal {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.35;
}

.esim-coupon__deal svg { flex: none; }

.esim-coupon__code {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 16px;
    background: none;
    border: none;
    border-inline-start: 2px dashed rgb(255 192 31 / 0.55);
    color: var(--brand);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    cursor: pointer;
}

/* perforation notches on the tear line */
.esim-coupon__code::before,
.esim-coupon__code::after {
    content: '';
    position: absolute;
    inset-inline-start: -8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
}

.esim-coupon__code::before { top: -9px; }

.esim-coupon__code::after { bottom: -9px; }

.esim-coupon__code:hover .esim-coupon__ic { color: #fff; }

.esim-coupon__check { display: none; font-weight: 700; color: #7BE3A2; }

.esim-coupon__code.is-copied .esim-coupon__ic { display: none; }

.esim-coupon__code.is-copied .esim-coupon__check { display: inline; }

.esim-provider > .btn { width: 100%; text-align: center; }

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

/* ===== Live search dropdown ===== */
.search-live {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 44px rgb(0 0 0 / 0.16);
    border: 1px solid rgb(0 0 0 / 0.07);
    margin-top: 8px;
    margin-bottom: 14px;
    max-height: 340px;
    overflow-y: auto;
    padding: 8px;
}

.search-live__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--ink);
    transition: background 0.12s ease;
}

.search-live__item:hover { background: rgb(255 192 31 / 0.18); }

.search-live__img {
    width: 48px;
    height: 48px;
    flex: none;
    border-radius: 10px;
    object-fit: cover;
    background: rgb(0 0 0 / 0.06);
}

.search-live__img--ph {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(0 0 0 / 0.3);
}

.search-live__title { font-weight: 700; line-height: 1.35; }

.search-live__empty {
    margin: 0;
    padding: 12px 14px;
    color: rgb(0 0 0 / 0.55);
}

/* CTA strip under the visa checker */
.visa-cta { text-align: center; padding: 34px 0 14px; }

.visa-cta__line { font-weight: 700; font-size: 1.15rem; margin: 0 0 14px; }

/* FAQ load-more */
.faq__item--hidden { display: none !important; }

.faq__more { display: block; margin: 18px auto 0; }

/* 404 */
.error-404 { text-align: center; padding: 80px 20px 90px; max-width: 640px; }

.error-404__code {
    font-size: clamp(5rem, 14vw, 9rem);
    font-weight: 700;
    color: var(--brand);
    line-height: 1;
    display: block;
    text-shadow: 4px 4px 0 var(--ink);
}

.error-404__title { font-size: clamp(1.6rem, 4vw, 2.3rem); margin: 10px 0 8px; }

.error-404__sub { color: rgb(0 0 0 / 0.6); margin: 0 0 26px; }

.error-404__search { display: flex; gap: 10px; margin-bottom: 22px; }

.error-404__search .field-input { flex: 1; }

.error-404__links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

.site-logo img { object-fit: contain; }

/* AU logo artwork has no inner padding - 36px matches the regular logo's visual height */
.site-logo img.site-logo--au { height: 36px; }
