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

.iscp-section,
.iscp-section * {
    box-sizing: border-box;
}

.iscp-section {
    --iscp-primary: #b9fd74;
    --iscp-primary-deep: #97d955;
    --iscp-accent: #f1f8e9;
    --iscp-dark: #f7f7f7;
    --iscp-ink: #0a0d12;
    --iscp-muted: rgba(34, 40, 52, 0.68);
    --iscp-line: rgba(17, 24, 39, 0.09);
    --iscp-soft-line: rgba(17, 24, 39, 0.055);
    --iscp-card-radius: 28px;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: clamp(60px, 6vw, 96px) 0 clamp(56px, 5.2vw, 86px);
    overflow: hidden;
    color: var(--iscp-ink);
    background:
        radial-gradient(circle at 50% 10%, rgba(255,255,255,0.98) 0 14%, rgba(255,255,255,0) 34%),
        linear-gradient(180deg, #f3f5f8 0%, #f7f9fb 48%, #ffffff 100%);
    font-family: "Hanken Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    isolation: isolate;
}

.iscp-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 45%, rgba(0,0,0,.55), transparent 64%);
    pointer-events: none;
    z-index: -2;
}

.iscp-section::after {
    content: "";
    position: absolute;
    left: 50%;
    top: clamp(110px, 12vw, 180px);
    width: min(78vw, 920px);
    height: 360px;
    border-radius: 48px;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.64);
    box-shadow:
        -86px 52px 0 -16px rgba(255,255,255,0.54),
        86px 52px 0 -16px rgba(255,255,255,0.54),
        0 34px 120px rgba(17, 24, 39, 0.075);
    filter: blur(.2px);
    pointer-events: none;
    z-index: -1;
}

.iscp-shell {
    width: min(100% - 40px, 1480px);
    margin: 0 auto;
}

.iscp-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: clamp(26px, 3vw, 38px);
}

.iscp-heading-copy {
    max-width: 880px;
}

.iscp-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    padding: 9px 14px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 40px rgba(17, 24, 39, 0.06);
    color: #2a3b17;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1.2;
    text-transform: uppercase;
}

.iscp-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--iscp-primary);
    box-shadow: 0 0 0 6px rgba(185, 253, 116, 0.32);
}

.iscp-title {
    margin: 0;
    max-width: 900px;
    color: var(--iscp-ink);
    font-size: clamp(34px, 4.6vw, 72px);
    line-height: 0.96;
    letter-spacing: -0.06em;
    font-weight: 800;
    text-wrap: balance;
}

.iscp-subtitle {
    max-width: 760px;
    margin: 16px 0 0;
    color: var(--iscp-muted);
    font-size: clamp(15px, 1.18vw, 18px);
    line-height: 1.62;
    font-weight: 500;
}

.iscp-controls {
    display: none !important;
}

.iscp-carousel-shell {
    position: relative;
}

.iscp-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(16px, 1.55vw, 22px);
    width: 100%;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
    cursor: default;
}

.iscp-card {
    position: relative;
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 642px;
    flex: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(17, 24, 39, 0.095);
    border-radius: var(--iscp-card-radius);
    background: #ffffff;
    box-shadow:
        0 22px 60px rgba(17, 24, 39, 0.08),
        0 1px 0 rgba(255,255,255,.85) inset;
    transform: translateZ(0);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.iscp-card:hover {
    transform: translateY(-6px) translateZ(0);
    border-color: rgba(185, 253, 116, 0.8);
    box-shadow:
        0 34px 78px rgba(17, 24, 39, 0.12),
        0 0 0 7px rgba(185, 253, 116, 0.14);
}

.iscp-card-hero {
    position: relative;
    width: 100%;
    height: clamp(184px, 16vw, 236px);
    flex: 0 0 clamp(184px, 16vw, 236px);
    overflow: hidden;
    background: #101417;
}

.iscp-hero-img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.012);
    transition: transform .75s ease, filter .35s ease;
}

.iscp-card:hover .iscp-hero-img {
    transform: scale(1.055);
    filter: saturate(1.04) contrast(1.03);
}

.iscp-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.34) 46%, rgba(0,0,0,0.68) 100%),
        radial-gradient(circle at 10% 4%, rgba(255,255,255,0.16), transparent 36%);
    pointer-events: none;
}

.iscp-badge-row {
    position: absolute;
    top: 14px;
    left: 14px;
    right: 86px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.iscp-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: 100%;
    min-height: 32px;
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    background: rgba(45, 49, 53, 0.42);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    font-size: 11px;
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.iscp-badge svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: currentColor;
}

.iscp-country-code {
    position: absolute;
    top: 13px;
    right: 14px;
    z-index: 1;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(46px, 5vw, 64px);
    line-height: .9;
    letter-spacing: -0.085em;
    font-weight: 800;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.iscp-hero-copy {
    position: absolute;
    z-index: 2;
    left: 16px;
    right: 16px;
    bottom: 16px;
}

.iscp-hero-title {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: clamp(24px, 2.15vw, 34px);
    line-height: 1.06;
    letter-spacing: -0.038em;
    font-weight: 800;
    text-shadow: 0 12px 30px rgba(0, 0, 0, .26);
}

.iscp-hero-copy p {
    margin: 0;
    color: rgba(255,255,255,0.90);
    font-size: 12px;
    line-height: 1.35;
    font-weight: 600;
}

.iscp-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 16px;
    padding: clamp(18px, 1.55vw, 24px);
    background: #ffffff;
}

.iscp-content-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    margin-bottom: -1px;
}

.iscp-content-head h4 {
    margin: 0;
    color: #0a0d12;
    font-size: clamp(18px, 1.6vw, 24px);
    line-height: 1.14;
    letter-spacing: -0.025em;
    font-weight: 800;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.iscp-flag {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 13px;
    background: #fafafa;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.055);
    font-size: 22px;
    line-height: 1;
}

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

.iscp-prop-list li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #293241;
    font-size: clamp(13px, .96vw, 15px);
    line-height: 1.32;
    font-weight: 500;
}

.iscp-prop-icon {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    color: #4f8f1c;
    transform: translateY(-1px);
}

.iscp-prop-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

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

.iscp-stat-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 46px;
    padding: 10px 8px;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    background: #f7f7f7;
    color: #222a35;
    text-align: center;
    font-size: clamp(11px, .84vw, 13px);
    line-height: 1.22;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.iscp-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

.iscp-btn {
    width: 100%;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 16px;
    padding: 15px 18px;
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.iscp-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex: 0 0 20px;
}

.iscp-btn-primary {
    border: 1px solid #a7ee5b;
    background: #b9fd74;
    color: #0b1208 !important;
    box-shadow: inset 0 -1px 0 rgba(11,18,8,0.06), 0 10px 22px rgba(185,253,116,0.18);
}

.iscp-btn-light {
    border: 1px solid #e5e5e5;
    background: #ffffff;
    color: #0a0d12 !important;
    box-shadow: 0 8px 18px rgba(17, 24, 39, 0.045);
}

.iscp-btn:hover,
.iscp-btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.iscp-btn-primary:hover,
.iscp-btn-primary:focus-visible {
    background: #c5ff83;
    box-shadow: inset 0 -1px 0 rgba(11,18,8,0.04), 0 12px 26px rgba(185,253,116,0.24);
}

.iscp-btn-light:hover,
.iscp-btn-light:focus-visible {
    background: #f8f8f8;
    border-color: rgba(17, 24, 39, 0.14);
}

.iscp-chip-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.iscp-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 64px;
    padding: 10px 14px 10px 12px;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    color: #0a0d12 !important;
    text-decoration: none !important;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.055);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.iscp-chip:hover,
.iscp-chip:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(185, 253, 116, 0.9);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
    outline: none;
}

.iscp-chip-flag {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #f7f7f7;
    border: 1px solid #eeeeee;
    font-size: 20px;
    flex: 0 0 38px;
}

.iscp-chip-text {
    display: grid;
    gap: 2px;
    min-width: 0;
    width: 100%;
}

.iscp-chip-text strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1;
    font-weight: 750;
}

.iscp-chip-text em {
    color: rgba(34, 40, 52, 0.58);
    font-size: 12px;
    line-height: 1;
    font-style: normal;
    font-weight: 650;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 1200px) {
    .iscp-track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .iscp-card {
        min-height: 630px;
    }
}

@media (max-width: 960px) {
    .iscp-shell {
        width: min(100% - 28px, 900px);
    }

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

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

    .iscp-heading-row {
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .iscp-section {
        padding: 44px 0 54px;
    }

    .iscp-shell {
        width: calc(100% - 24px);
    }

    .iscp-heading-row {
        display: grid;
        align-items: start;
        gap: 18px;
        margin-bottom: 22px;
    }

    .iscp-title {
        font-size: clamp(34px, 9.5vw, 46px);
        letter-spacing: -0.058em;
    }

    .iscp-subtitle {
        margin-top: 12px;
        font-size: 15px;
    }

    .iscp-track {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .iscp-card {
        min-height: 0;
        border-radius: 24px;
    }

    .iscp-card-hero {
        height: 238px;
        flex-basis: 238px;
    }

    .iscp-card-content {
        gap: 16px;
        padding: 22px;
    }

    .iscp-content-head h4 {
        font-size: 22px;
    }

    .iscp-hero-title {
        font-size: 30px;
    }

    .iscp-country-code {
        top: 16px;
        right: 16px;
        font-size: 56px;
    }

    .iscp-prop-list li {
        font-size: 15px;
    }

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

    .iscp-stat-grid span {
        min-height: 46px;
        font-size: 12px;
    }

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

    .iscp-chip {
        border-radius: 18px;
        gap: 9px;
        padding: 10px 12px 10px 10px;
    }

    .iscp-chip-flag {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        font-size: 19px;
    }
}

@media (max-width: 390px) {
    .iscp-card-hero {
        height: 224px;
        flex-basis: 224px;
    }

    .iscp-card-content {
        gap: 15px;
        padding: 20px;
    }

    .iscp-content-head h4 {
        font-size: 20px;
    }

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

    .iscp-btn {
        min-height: 56px;
    }
}


/* v1.4 polish: soft modal-style actions and lighter typography */
.iscp-card {
    border-radius: 26px;
    box-shadow: 0 18px 48px rgba(17, 24, 39, 0.075), 0 1px 0 rgba(255,255,255,.9) inset;
}

.iscp-hero-title,
.iscp-content-head h4,
.iscp-title {
    font-weight: 800;
}

.iscp-prop-list li {
    font-weight: 500;
    color: #2b3442;
}

.iscp-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.iscp-stat-grid span {
    min-height: 56px;
    border-radius: 16px;
    border-color: #ececec;
    background: #f8f8f8;
    color: #26303d;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
}

.iscp-actions {
    gap: 12px;
    padding-top: 4px;
}

.iscp-btn {
    min-height: 58px;
    border-radius: 16px;
    padding: 15px 18px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    transform: translateZ(0);
}

.iscp-btn-primary {
    border: 1px solid #a7ee5b;
    background: #b9fd74;
    color: #0b1208 !important;
    box-shadow: inset 0 -1px 0 rgba(11,18,8,0.06), 0 10px 22px rgba(185,253,116,0.18);
}

.iscp-btn-primary:hover,
.iscp-btn-primary:focus-visible {
    background: #c5ff83;
    box-shadow: inset 0 -1px 0 rgba(11,18,8,0.04), 0 12px 26px rgba(185,253,116,0.24);
}

.iscp-btn-light {
    border: 1px solid #e6e6e6;
    background: #ffffff;
    color: #0a0d12 !important;
    box-shadow: 0 8px 18px rgba(17,24,39,0.045);
}

.iscp-btn:hover,
.iscp-btn:focus-visible {
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .iscp-btn {
        min-height: 58px;
        border-radius: 16px;
    }
}

/* final type balance */
.iscp-hero-title {
    font-weight: 700;
    letter-spacing: -0.028em;
}

.iscp-content-head h4 {
    font-weight: 750;
    letter-spacing: -0.018em;
}

.iscp-badge,
.iscp-stat-grid span {
    font-weight: 700;
}

/* v1.5 app-style country guide bottom sheet */
.iscp-btn {
    border: 0;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.iscp-btn-primary {
    min-height: 56px;
    border-radius: 15px;
    border: 1px solid #a8ef5b;
    background: linear-gradient(180deg, #c6ff83 0%, #b6fb68 100%);
    box-shadow: inset 0 -1px 0 rgba(11, 18, 8, 0.08), 0 10px 22px rgba(185, 253, 116, 0.20);
}

.iscp-btn-primary:active,
.iscp-btn-light:active {
    transform: scale(0.985);
}

.iscp-guide-template {
    display: none !important;
}

.iscp-sheet-lock,
.iscp-sheet-lock body {
    overflow: hidden;
}

.iscp-sheet {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: grid;
    align-items: end;
    pointer-events: none;
    opacity: 0;
    transition: opacity .24s ease;
}

.iscp-sheet.is-open {
    pointer-events: auto;
    opacity: 1;
}

.iscp-sheet-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 18, 26, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.iscp-sheet-panel {
    position: relative;
    z-index: 2;
    width: min(100% - 24px, 720px);
    max-height: min(88vh, 820px);
    margin: 0 auto 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.78);
    border-radius: 30px 30px 26px 26px;
    background: #ffffff;
    box-shadow: 0 -28px 76px rgba(16, 24, 40, 0.22), 0 2px 0 rgba(255,255,255,0.82) inset;
    transform: translateY(105%);
    transition: transform .34s cubic-bezier(.22, 1, .36, 1);
    outline: none;
}

.iscp-sheet.is-open .iscp-sheet-panel {
    transform: translateY(0);
}

.iscp-sheet-topbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.iscp-sheet-handle {
    width: 54px;
    height: 5px;
    border-radius: 99px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 1px 8px rgba(16,24,40,0.16);
}

.iscp-sheet-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,0.56);
    border-radius: 50%;
    background: rgba(255,255,255,0.80);
    color: #111827;
    box-shadow: 0 10px 24px rgba(16,24,40,0.10);
    cursor: pointer;
    pointer-events: auto;
}

.iscp-sheet-close svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.iscp-sheet-body {
    max-height: min(88vh, 820px);
    overflow: auto;
    padding-bottom: 22px;
    background:
        linear-gradient(180deg, rgba(246,248,250,0) 0, #ffffff 330px),
        #ffffff;
    -webkit-overflow-scrolling: touch;
}

.iscp-sheet-media {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: #e9ecef;
}

.iscp-sheet-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.iscp-sheet-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.68) 100%);
}

.iscp-sheet-code {
    position: absolute;
    top: 42px;
    right: 30px;
    color: rgba(255,255,255,0.52);
    font-size: clamp(64px, 13vw, 108px);
    line-height: .8;
    font-weight: 850;
    letter-spacing: -.08em;
}

.iscp-sheet-title-wrap {
    position: absolute;
    left: 28px;
    right: 84px;
    bottom: 24px;
    color: #fff;
}

.iscp-sheet-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    font-size: 12px;
    line-height: 1;
    font-weight: 720;
}

.iscp-sheet-title-wrap h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1.02;
    letter-spacing: -.04em;
    font-weight: 800;
}

.iscp-sheet-title-wrap p {
    margin: 8px 0 0;
    max-width: 520px;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 550;
}

.iscp-guide-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 18px 24px 2px;
}

.iscp-guide-mini-grid div {
    min-height: 74px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 12px;
    border: 1px solid #eeeeee;
    border-radius: 18px;
    background: #f8f8f8;
}

.iscp-guide-mini-grid span {
    color: rgba(38,48,61,.56);
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.iscp-guide-mini-grid strong {
    color: #111827;
    font-size: 13px;
    line-height: 1.22;
    font-weight: 760;
}

.iscp-guide-block {
    margin: 16px 24px 0;
    padding: 18px;
    border: 1px solid #eeeeee;
    border-radius: 22px;
    background: #f7f7f7;
}

.iscp-guide-block h4 {
    margin: 0 0 10px;
    color: #090d12;
    font-size: 17px;
    line-height: 1.22;
    letter-spacing: -.02em;
    font-weight: 780;
}

.iscp-guide-block p,
.iscp-guide-block li {
    color: #303a48;
    font-size: 15px;
    line-height: 1.58;
    font-weight: 500;
}

.iscp-guide-block p {
    margin: 0;
}

.iscp-guide-block ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.iscp-guide-block li {
    position: relative;
    padding-left: 22px;
}

.iscp-guide-block li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: .72em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #8ad640;
    box-shadow: 0 0 0 4px rgba(185,253,116,.18);
}

@media (max-width: 767px) {
    .iscp-sheet-panel {
        width: 100%;
        max-height: 91vh;
        margin-bottom: 0;
        border-radius: 28px 28px 0 0;
        border-left: 0;
        border-right: 0;
        border-bottom: 0;
    }

    .iscp-sheet-body {
        max-height: 91vh;
    }

    .iscp-sheet-media {
        height: 246px;
    }

    .iscp-sheet-title-wrap {
        left: 22px;
        right: 72px;
        bottom: 20px;
    }

    .iscp-guide-mini-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 16px 18px 0;
    }

    .iscp-guide-block {
        margin: 14px 18px 0;
        padding: 16px;
        border-radius: 20px;
    }
}


/* v1.6 slimmer seamless buttons + explore bottom-sheet trigger */
.iscp-actions {
    gap: 8px !important;
    padding-top: 2px !important;
}

.iscp-btn {
    min-height: 46px !important;
    height: 46px;
    border-radius: 12px !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    font-weight: 680 !important;
    letter-spacing: -0.006em !important;
    line-height: 1 !important;
}

.iscp-btn svg {
    width: 18px !important;
    height: 18px !important;
    flex-basis: 18px !important;
}

.iscp-btn-primary {
    min-height: 46px !important;
    border-radius: 12px !important;
    background: linear-gradient(180deg, #c7ff86 0%, #b6fb67 100%) !important;
    box-shadow: inset 0 -1px 0 rgba(11,18,8,0.075), 0 8px 18px rgba(185,253,116,0.18) !important;
}

.iscp-btn-light {
    min-height: 46px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    box-shadow: 0 6px 16px rgba(17,24,39,0.038) !important;
}

.iscp-btn:hover,
.iscp-btn:focus-visible {
    transform: translateY(-1px) !important;
}

.iscp-btn:active {
    transform: scale(0.988) !important;
}

@media (max-width: 767px) {
    .iscp-btn {
        min-height: 46px !important;
        height: 46px;
        border-radius: 12px !important;
        font-size: 14px !important;
    }
}

/* v1.6.1 compact premium card structure */
.iscp-track {
    gap: clamp(14px, 1.35vw, 20px) !important;
}

.iscp-card {
    min-height: 590px !important;
    border-radius: 24px !important;
}

.iscp-card-hero {
    height: clamp(164px, 13.8vw, 202px) !important;
    flex-basis: clamp(164px, 13.8vw, 202px) !important;
}

.iscp-card-content {
    gap: 12px !important;
    padding: clamp(16px, 1.32vw, 20px) !important;
}

.iscp-content-head {
    gap: 10px !important;
    margin-bottom: 0 !important;
}

.iscp-content-head h4 {
    font-size: clamp(17px, 1.38vw, 21px) !important;
    line-height: 1.12 !important;
    font-weight: 760 !important;
    letter-spacing: -0.018em !important;
}

.iscp-flag {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
    border-radius: 12px !important;
    font-size: 20px !important;
}

.iscp-prop-list {
    gap: 8px !important;
}

.iscp-prop-list li {
    grid-template-columns: 20px minmax(0, 1fr) !important;
    gap: 9px !important;
    font-size: clamp(12.5px, .88vw, 14px) !important;
    line-height: 1.28 !important;
}

.iscp-prop-icon {
    width: 20px !important;
    height: 20px !important;
}

.iscp-prop-icon svg {
    width: 18px !important;
    height: 18px !important;
}

.iscp-stat-grid {
    gap: 8px !important;
    padding-top: 0 !important;
}

.iscp-stat-grid span {
    min-height: 40px !important;
    padding: 8px 7px !important;
    border-radius: 13px !important;
    font-size: clamp(10.5px, .76vw, 12px) !important;
    font-weight: 680 !important;
}

.iscp-actions {
    gap: 8px !important;
    margin-top: auto !important;
    padding-top: 1px !important;
}

.iscp-btn {
    min-height: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    padding: 9px 15px !important;
    font-size: 13.5px !important;
    font-weight: 680 !important;
}

.iscp-hero-title {
    font-size: clamp(22px, 1.85vw, 30px) !important;
    font-weight: 780 !important;
}

.iscp-hero-copy {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
}

.iscp-hero-copy p {
    font-size: 11.5px !important;
    font-weight: 560 !important;
}

.iscp-badge-row {
    top: 12px !important;
    left: 12px !important;
    right: 76px !important;
}

.iscp-badge {
    min-height: 30px !important;
    padding: 6px 10px !important;
    font-size: 10.5px !important;
    font-weight: 660 !important;
}

.iscp-country-code {
    top: 11px !important;
    right: 13px !important;
    font-size: clamp(40px, 4.2vw, 56px) !important;
    font-weight: 760 !important;
}

@media (max-width: 1200px) {
    .iscp-card {
        min-height: 582px !important;
    }
}

@media (max-width: 767px) {
    .iscp-card {
        min-height: 0 !important;
        border-radius: 22px !important;
    }

    .iscp-card-hero {
        height: 220px !important;
        flex-basis: 220px !important;
    }

    .iscp-card-content {
        gap: 12px !important;
        padding: 18px !important;
    }

    .iscp-content-head h4 {
        font-size: 20px !important;
    }

    .iscp-stat-grid span {
        min-height: 42px !important;
        font-size: 11.5px !important;
    }

    .iscp-btn {
        min-height: 44px !important;
        height: 44px !important;
    }
}

@media (max-width: 390px) {
    .iscp-card-hero {
        height: 206px !important;
        flex-basis: 206px !important;
    }
}

/* v1.6.5 destination chips open matching bottom sheet + 15 item layout */
.iscp-chip-wrap {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-items: stretch !important;
    margin-top: 18px !important;
}

.iscp-chip-item {
    min-width: 0 !important;
}

.iscp-chip {
    width: 100% !important;
    min-height: 72px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 12px 14px !important;
    border: 1px solid rgba(14, 18, 24, 0.10) !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    color: #111827 !important;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035) !important;
    cursor: pointer !important;
    text-align: left !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    font-family: inherit !important;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease !important;
}

.iscp-chip:hover,
.iscp-chip:focus-visible {
    transform: translateY(-2px) !important;
    border-color: rgba(147, 214, 78, 0.45) !important;
    box-shadow: 0 15px 34px rgba(15, 23, 42, 0.075) !important;
    outline: none !important;
}

.iscp-chip:active {
    transform: scale(0.992) !important;
}

.iscp-chip-flag {
    width: 42px !important;
    height: 42px !important;
    flex: 0 0 42px !important;
    display: inline-grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    background: #f7f8fa !important;
    border: 1px solid rgba(14, 18, 24, 0.06) !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.iscp-chip-text {
    min-width: 0 !important;
    display: grid !important;
    gap: 2px !important;
}

.iscp-chip-text strong {
    display: block !important;
    max-width: 100% !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-overflow: ellipsis !important;
    color: #111827 !important;
    font-size: 15px !important;
    line-height: 1.05 !important;
    font-weight: 760 !important;
    letter-spacing: -0.015em !important;
}

.iscp-chip-text em {
    display: block !important;
    color: #7b828c !important;
    font-size: 13px !important;
    line-height: 1.05 !important;
    font-weight: 640 !important;
    font-style: normal !important;
    white-space: nowrap !important;
}

@media (max-width: 1180px) {
    .iscp-chip-wrap {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .iscp-chip-wrap {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 640px) {
    .iscp-chip-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .iscp-chip {
        min-height: 78px !important;
        padding: 12px 13px !important;
        border-radius: 19px !important;
        gap: 10px !important;
    }

    .iscp-chip-flag {
        width: 42px !important;
        height: 42px !important;
        flex-basis: 42px !important;
    }

    .iscp-chip-text strong {
        font-size: 15px !important;
    }

    .iscp-chip-text em {
        font-size: 13px !important;
    }
}

@media (max-width: 370px) {
    .iscp-chip {
        min-height: 74px !important;
        padding: 11px !important;
    }

    .iscp-chip-flag {
        width: 38px !important;
        height: 38px !important;
        flex-basis: 38px !important;
        font-size: 18px !important;
    }

    .iscp-chip-text strong {
        font-size: 14px !important;
    }

    .iscp-chip-text em {
        font-size: 12.5px !important;
    }
}


/* v1.6.6 tighter destination boxes + fixed full-height app bottom sheet */
.iscp-chip-wrap {
    gap: 9px !important;
    margin-top: 14px !important;
}

.iscp-chip {
    min-height: 62px !important;
    padding: 9px 12px !important;
    border-radius: 17px !important;
    gap: 10px !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.028) !important;
}

.iscp-chip-flag {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px !important;
    font-size: 18px !important;
}

.iscp-chip-text {
    gap: 1px !important;
}

.iscp-chip-text strong {
    font-size: 14px !important;
    line-height: 1.02 !important;
    font-weight: 760 !important;
}

.iscp-chip-text em {
    font-size: 12.5px !important;
    line-height: 1.05 !important;
    font-weight: 650 !important;
}

.iscp-sheet-panel {
    height: min(92dvh, 820px) !important;
    max-height: min(92dvh, 820px) !important;
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
}

.iscp-sheet-body {
    height: 100% !important;
    max-height: none !important;
    flex: 1 1 auto !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #ffffff !important;
    padding-bottom: max(24px, env(safe-area-inset-bottom)) !important;
}

.iscp-sheet-media {
    height: 222px !important;
    min-height: 222px !important;
    background: #111827 !important;
    border-bottom: 1px solid rgba(255,255,255,0.88) !important;
}

.iscp-sheet-media img {
    object-position: center 34% !important;
    transform: scale(1.055) !important;
    filter: blur(1.8px) saturate(0.86) contrast(0.92) !important;
}

.iscp-sheet-media-overlay {
    background:
        linear-gradient(180deg, rgba(16, 24, 31, 0.24) 0%, rgba(16, 24, 31, 0.56) 44%, rgba(16, 24, 31, 0.94) 100%),
        linear-gradient(90deg, rgba(16, 24, 31, 0.48) 0%, rgba(16, 24, 31, 0.10) 54%, rgba(16, 24, 31, 0.28) 100%) !important;
    z-index: 1 !important;
}

.iscp-sheet-code {
    z-index: 2 !important;
    top: 48px !important;
    right: 22px !important;
    color: rgba(255, 255, 255, 0.34) !important;
    font-size: clamp(54px, 15vw, 94px) !important;
    line-height: .82 !important;
    font-weight: 820 !important;
    pointer-events: none !important;
}

.iscp-sheet-title-wrap {
    z-index: 3 !important;
    left: 24px !important;
    right: 74px !important;
    bottom: 19px !important;
}

.iscp-sheet-badge {
    min-height: 30px !important;
    margin-bottom: 8px !important;
    padding: 7px 11px !important;
    background: rgba(17, 24, 39, 0.66) !important;
    border-color: rgba(255,255,255,0.18) !important;
    font-size: 11.5px !important;
    font-weight: 740 !important;
}

.iscp-sheet-title-wrap h3 {
    max-width: 100% !important;
    margin: 0 !important;
    font-size: clamp(24px, 6vw, 34px) !important;
    line-height: 1.03 !important;
    letter-spacing: -0.035em !important;
    font-weight: 820 !important;
    text-shadow: 0 2px 14px rgba(0,0,0,0.38) !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

.iscp-sheet-title-wrap p {
    margin-top: 6px !important;
    max-width: 460px !important;
    font-size: 13.5px !important;
    line-height: 1.35 !important;
    font-weight: 620 !important;
    color: rgba(255,255,255,0.90) !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.30) !important;
}

.iscp-sheet-topbar {
    min-height: 46px !important;
}

.iscp-sheet-close {
    top: 12px !important;
    right: 12px !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255,255,255,0.88) !important;
    border-color: rgba(255,255,255,0.72) !important;
    z-index: 8 !important;
}

.iscp-sheet-handle {
    width: 58px !important;
    height: 5px !important;
    background: rgba(255,255,255,0.84) !important;
    z-index: 8 !important;
}

@media (max-width: 767px) {
    .iscp-chip-wrap {
        gap: 9px !important;
    }

    .iscp-chip {
        min-height: 64px !important;
        padding: 9px 11px !important;
        border-radius: 17px !important;
        gap: 9px !important;
    }

    .iscp-chip-flag {
        width: 36px !important;
        height: 36px !important;
        flex-basis: 36px !important;
        font-size: 18px !important;
    }

    .iscp-chip-text strong {
        font-size: 14px !important;
    }

    .iscp-chip-text em {
        font-size: 12.5px !important;
    }

    .iscp-sheet-panel {
        height: 94dvh !important;
        max-height: 94dvh !important;
        border-radius: 25px 25px 0 0 !important;
    }

    .iscp-sheet-body {
        height: 94dvh !important;
        max-height: none !important;
    }

    .iscp-sheet-media {
        height: 214px !important;
        min-height: 214px !important;
    }

    .iscp-sheet-title-wrap {
        left: 20px !important;
        right: 70px !important;
        bottom: 17px !important;
    }

    .iscp-sheet-title-wrap h3 {
        font-size: clamp(23px, 7vw, 30px) !important;
        line-height: 1.04 !important;
    }

    .iscp-sheet-title-wrap p {
        font-size: 13px !important;
        line-height: 1.34 !important;
    }

    .iscp-guide-mini-grid {
        padding-top: 14px !important;
    }
}

@media (max-width: 370px) {
    .iscp-chip {
        min-height: 60px !important;
        padding: 8px 9px !important;
    }

    .iscp-chip-flag {
        width: 34px !important;
        height: 34px !important;
        flex-basis: 34px !important;
        font-size: 17px !important;
    }

    .iscp-chip-text strong {
        font-size: 13.5px !important;
    }

    .iscp-chip-text em {
        font-size: 12px !important;
    }
}


/* v1.6.7 premium balanced section heading */
.iscp-heading-row {
    margin-bottom: clamp(28px, 3.2vw, 44px) !important;
}

.iscp-heading-copy {
    max-width: 980px !important;
}

.iscp-kicker {
    min-height: 42px !important;
    gap: 12px !important;
    margin: 0 0 clamp(18px, 2vw, 24px) !important;
    padding: 9px 18px 9px 13px !important;
    border: 1px solid rgba(16, 24, 40, 0.085) !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,.95) inset,
        0 12px 34px rgba(16, 24, 40, 0.045) !important;
    color: #263919 !important;
    font-size: clamp(11px, .85vw, 13px) !important;
    line-height: 1 !important;
    font-weight: 760 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
}

.iscp-kicker::before {
    width: 11px !important;
    height: 11px !important;
    background: #7fd33a !important;
    box-shadow:
        0 0 0 7px rgba(185, 253, 116, 0.36),
        0 8px 22px rgba(127, 211, 58, 0.26) !important;
}

.iscp-title {
    max-width: 1160px !important;
    color: #0a111c !important;
    font-size: clamp(38px, 5.25vw, 76px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.044em !important;
    font-weight: 780 !important;
    text-transform: uppercase !important;
    text-wrap: balance !important;
    margin: 0 !important;
}

.iscp-subtitle {
    max-width: 850px !important;
    margin-top: clamp(14px, 1.45vw, 20px) !important;
    color: #68707d !important;
    font-size: clamp(16px, 1.33vw, 20px) !important;
    line-height: 1.62 !important;
    font-weight: 500 !important;
    letter-spacing: -0.008em !important;
}

@media (max-width: 767px) {
    .iscp-heading-row {
        gap: 0 !important;
        margin-bottom: 24px !important;
    }

    .iscp-kicker {
        min-height: 36px !important;
        margin-bottom: 16px !important;
        padding: 8px 14px 8px 11px !important;
        gap: 10px !important;
        font-size: 10.5px !important;
        letter-spacing: .12em !important;
    }

    .iscp-kicker::before {
        width: 9px !important;
        height: 9px !important;
        box-shadow: 0 0 0 6px rgba(185, 253, 116, 0.34), 0 6px 18px rgba(127,211,58,.22) !important;
    }

    .iscp-title {
        font-size: clamp(30px, 8.7vw, 42px) !important;
        line-height: 1.04 !important;
        letter-spacing: -0.04em !important;
        font-weight: 780 !important;
    }

    .iscp-subtitle {
        margin-top: 12px !important;
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.58 !important;
        color: #69717f !important;
    }
}

@media (max-width: 390px) {
    .iscp-title {
        font-size: clamp(28px, 8.2vw, 36px) !important;
        letter-spacing: -0.038em !important;
    }

    .iscp-subtitle {
        font-size: 15px !important;
        line-height: 1.56 !important;
    }
}


/* v1.6.8 body-mounted guide sheet overlay fix */
body > .iscp-sheet {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    z-index: 2147483000 !important;
    display: grid !important;
    align-items: end !important;
    justify-items: center !important;
    overflow: hidden !important;
    pointer-events: none;
    opacity: 0;
}

body > .iscp-sheet.is-open {
    pointer-events: auto !important;
    opacity: 1 !important;
}

body > .iscp-sheet .iscp-sheet-backdrop {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100dvh !important;
    background: rgba(9, 13, 18, 0.52) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
}

body > .iscp-sheet .iscp-sheet-panel {
    position: relative !important;
    z-index: 2 !important;
    width: min(100vw - 18px, 720px) !important;
    height: min(92dvh, 820px) !important;
    max-height: min(92dvh, 820px) !important;
    margin: 0 auto max(8px, env(safe-area-inset-bottom)) !important;
    overflow: hidden !important;
    background: #ffffff !important;
    isolation: isolate !important;
}

body > .iscp-sheet .iscp-sheet-body {
    position: relative !important;
    z-index: 1 !important;
    height: 100% !important;
    max-height: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #ffffff !important;
}

@media (max-width: 767px) {
    body > .iscp-sheet {
        align-items: end !important;
    }

    body > .iscp-sheet .iscp-sheet-panel {
        width: 100vw !important;
        height: 100dvh !important;
        max-height: 100dvh !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border: 0 !important;
        box-shadow: none !important;
    }

    body > .iscp-sheet .iscp-sheet-body {
        height: 100dvh !important;
        max-height: 100dvh !important;
        padding-bottom: max(28px, env(safe-area-inset-bottom)) !important;
    }

    body > .iscp-sheet .iscp-sheet-media {
        height: 220px !important;
        min-height: 220px !important;
    }
}
