html.starlink-page-document,
html.starlink-page-document body {
    background: #000;
    scroll-behavior: smooth;
}

.starlink-page,
.starlink-page * {
    box-sizing: border-box;
}

.starlink-page {
    --starlink-content-gutter: 48px;
    --starlink-content-width: 1180px;
    min-height: 100vh;
    overflow: hidden;
    background: #000;
    color: #fff;
    font-family: "SF Pro Text", "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.starlink-selector {
    width: min(calc(100% - var(--starlink-content-gutter)), var(--starlink-content-width));
    min-height: 600px;
    margin: 0 auto;
    padding: clamp(150px, 15vh, 190px) 0 90px;
}

.starlink-selector-header {
    width: min(100%, 650px);
    margin: 0 auto;
    text-align: center;
}

.starlink-selector-title {
    margin: 0;
    line-height: 1;
}

.starlink-selector-title img {
    display: block;
    width: clamp(230px, 25vw, 312px);
    height: auto;
    margin: 0 auto;
}

.starlink-selector-header p {
    max-width: 480px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.starlink-product-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(12px, 2vw, 25px);
    margin-top: 42px;
}

.starlink-product-list-shell {
    position: relative;
}

.starlink-product-list-controls,
.starlink-product-list-control {
    display: none;
}

.starlink-product-card {
    appearance: none;
    display: flex;
    min-width: 0;
    min-height: 230px;
    padding: 18px 8px 20px;
    border: 1px solid transparent;
    border-radius: 22px;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    color: #fff;
    font: inherit;
    cursor: pointer;
    transition: border-color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.starlink-product-image-wrap {
    display: flex;
    width: 100%;
    height: 155px;
    align-items: center;
    justify-content: center;
}

.starlink-product-image {
    display: block;
    width: 100%;
    max-width: 220px;
    max-height: 150px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.starlink-product-title {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    text-align: center;
    transition: color 0.24s ease;
}

.starlink-product-card.is-active {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.015);
}

.starlink-product-card.is-active .starlink-product-title {
    color: #2997ff;
}

.starlink-product-card:focus-visible {
    outline: 2px solid #2997ff;
    outline-offset: 4px;
}

.starlink-product-card.is-active:focus-visible {
    outline: none;
}

.starlink-product-detail {
    display: grid;
    width: min(calc(100% - var(--starlink-content-gutter)), var(--starlink-content-width));
    margin: 0 auto;
    padding: 50px 0 140px;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: clamp(54px, 8vw, 82px);
}

.starlink-product-gallery {
    min-width: 0;
}

.starlink-product-gallery-main {
    position: relative;
    display: block;
    width: min(100%, 430px);
    aspect-ratio: 4 / 5;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: #0b0b0b;
    cursor: zoom-in;
}

.starlink-product-gallery-main img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.starlink-product-gallery-expand {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    place-items: center;
    background: rgba(0, 0, 0, 0.62);
    backdrop-filter: blur(8px);
}

.starlink-product-gallery-expand svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: #fff;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.starlink-product-gallery-main:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.starlink-product-gallery-thumbnails {
    display: grid;
    width: min(100%, 430px);
    margin: 18px auto 0;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.starlink-product-gallery-thumbnail {
    aspect-ratio: 1 / 1;
    padding: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: #0b0b0b;
    cursor: pointer;
    transition: border-color 180ms ease, transform 180ms ease;
}

.starlink-product-gallery-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 7px;
    object-fit: cover;
}

.starlink-product-gallery-thumbnail:hover {
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-2px);
}

.starlink-product-gallery-thumbnail.is-active {
    border-color: #1488ff;
    box-shadow: 0 0 0 1px #1488ff;
}

.starlink-product-gallery-thumbnail:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

body.starlink-gallery-lightbox-open {
    overflow: hidden;
}

.starlink-gallery-lightbox {
    position: fixed;
    z-index: 10000;
    inset: 0;
    display: grid;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    padding: 28px clamp(20px, 5vw, 72px) 22px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(14px);
}

.starlink-gallery-lightbox[hidden] {
    display: none;
}

.starlink-gallery-lightbox-stage {
    position: relative;
    display: grid;
    min-width: 0;
    height: 100%;
    min-height: 0;
    grid-column: 1 / -1;
    grid-row: 1;
    place-items: center;
}

.starlink-gallery-lightbox-stage img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 16px;
    object-fit: contain;
}

.starlink-gallery-lightbox-close,
.starlink-gallery-lightbox-navigation {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    background: rgba(20, 20, 20, 0.78);
    cursor: pointer;
}

.starlink-gallery-lightbox-close {
    position: absolute;
    z-index: 2;
    top: 22px;
    right: 24px;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 50%;
    place-items: center;
}

.starlink-gallery-lightbox-navigation {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: grid;
    width: 50px;
    height: 50px;
    padding: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    place-items: center;
}

.starlink-gallery-lightbox-navigation--previous {
    left: clamp(16px, 3vw, 48px);
}

.starlink-gallery-lightbox-navigation--next {
    right: clamp(16px, 3vw, 48px);
}

.starlink-gallery-lightbox-close svg,
.starlink-gallery-lightbox-navigation svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.starlink-gallery-lightbox-close:hover,
.starlink-gallery-lightbox-navigation:hover {
    border-color: #fff;
    background: rgba(45, 45, 45, 0.9);
}

.starlink-gallery-lightbox-close:focus-visible,
.starlink-gallery-lightbox-navigation:focus-visible,
.starlink-gallery-lightbox-thumbnail:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.starlink-gallery-lightbox-thumbnails {
    display: grid;
    width: min(100%, 440px);
    margin: 0 auto;
    grid-column: 1 / -1;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.starlink-gallery-lightbox-thumbnail {
    aspect-ratio: 1 / 1;
    padding: 3px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: #0b0b0b;
    cursor: pointer;
}

.starlink-gallery-lightbox-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 7px;
    object-fit: cover;
}

.starlink-gallery-lightbox-thumbnail.is-active {
    border-color: #1488ff;
    box-shadow: 0 0 0 1px #1488ff;
}

.starlink-product-order-panel {
    margin-right: 65.875px;
    padding: 34px 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    background: #151515;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.starlink-product-order-eyebrow {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
}

.starlink-product-order-panel h2 {
    margin: 6px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.starlink-product-order-description {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.starlink-product-order-field {
    margin-top: 20px;
}

.starlink-product-order-field label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 400;
}

.starlink-product-order-select-wrap {
    position: relative;
}

.starlink-product-order-select-wrap::after {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 9px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: "";
    pointer-events: none;
    transform: translateY(-70%) rotate(45deg);
}

.starlink-product-order-field select {
    appearance: none;
    width: 100%;
    height: 48px;
    padding: 0 48px 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: #2d2d2d;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color-scheme: dark;
}

.starlink-product-order-field select:focus-visible {
    outline: 2px solid #2997ff;
    outline-offset: 2px;
}

.starlink-quantity-picker {
    position: relative;
}

.starlink-quantity-trigger {
    display: flex;
    width: 100%;
    height: 48px;
    padding: 0 18px 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    align-items: center;
    justify-content: space-between;
    background: #2d2d2d;
    color: #fff;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.starlink-quantity-trigger:focus-visible {
    outline: 2px solid #2997ff;
    outline-offset: 2px;
}

.starlink-quantity-trigger-icon {
    width: 9px;
    height: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.2s ease;
}

.starlink-quantity-picker.is-open .starlink-quantity-trigger-icon {
    transform: translateY(2px) rotate(225deg);
}

.starlink-quantity-menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 8px);
    left: 0;
    display: grid;
    width: 100%;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: #222;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.52);
}

.starlink-quantity-menu[hidden] {
    display: none;
}

.starlink-quantity-option {
    min-height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
}

.starlink-quantity-option:hover,
.starlink-quantity-option:focus-visible,
.starlink-quantity-option.is-selected {
    background: rgba(41, 151, 255, 0.16);
    color: #62adff;
    outline: none;
}

.starlink-quantity-custom {
    margin-top: 7px;
    padding: 10px 3px 2px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.starlink-quantity-custom > span {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.starlink-quantity-custom-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.starlink-quantity-custom-row input {
    min-width: 0;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: #171717;
    color: #fff;
    font: inherit;
    font-size: 13px;
}

.starlink-quantity-custom-row button {
    min-width: 70px;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    background: #0a7ae6;
    color: #fff;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.starlink-quantity-custom-row input:focus-visible,
.starlink-quantity-custom-row button:focus-visible {
    outline: 2px solid #2997ff;
    outline-offset: 2px;
}

.starlink-quantity-custom small {
    display: block;
    min-height: 14px;
    margin-top: 5px;
    color: #ff7b75;
    font-size: 10px;
}

.starlink-product-order-note {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.42);
    font-size: 14px;
    font-style: italic;
    line-height: 1.4;
}

.starlink-product-order-price {
    display: flex;
    margin-top: 22px;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 9px;
    color: #2997ff;
}

.starlink-product-order-price strong {
    font-size: 18px;
    font-weight: 600;
}

.starlink-product-order-price span {
    font-size: 14px;
    font-weight: 400;
}

.starlink-product-order-tagline {
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-style: italic;
    line-height: 1.4;
}

.starlink-product-order-button {
    width: 100%;
    min-height: 48px;
    margin-top: 24px;
    border: 0;
    border-radius: 9px;
    background: #0a7ae6;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.starlink-product-order-button:hover,
.starlink-product-order-button:focus-visible {
    background: #1688f5;
    transform: translateY(-1px);
}

.starlink-order-list {
    width: min(calc(100% - var(--starlink-content-gutter)), var(--starlink-content-width));
    margin: -72px auto 110px;
    padding: 22px;
    border: 1px solid rgba(41, 151, 255, 0.58);
    border-radius: 18px;
    background: #101318;
    color: #fff;
}

.starlink-order-list[hidden] {
    display: none;
}

.starlink-order-list h2 {
    margin: 0 0 18px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.starlink-order-list-head,
.starlink-order-list-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 90px 130px 36px;
    align-items: center;
    gap: 16px;
}

.starlink-order-list-head {
    padding: 0 14px 10px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.starlink-order-list-row {
    min-height: 62px;
    margin-top: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.055);
}

.starlink-order-list-model {
    min-width: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
}

.starlink-order-list-quantity {
    min-width: 54px;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

.starlink-order-list-pricing {
    color: #62adff;
    font-size: 13px;
}

.starlink-order-list-remove {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ff625c;
    font: inherit;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.starlink-order-list-remove:focus-visible {
    outline: 2px solid #ff625c;
    outline-offset: 2px;
}

.starlink-order-list-summary {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 16px;
    padding: 16px 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 16px;
}

.starlink-partners-section {
    width: min(calc(100% - var(--starlink-content-gutter)), var(--starlink-content-width));
    margin: 0 auto;
    padding: 0 0 140px;
    --theme-color: #38bdf8;
    --theme-color-hover: #7dd3fc;
    scroll-margin-top: 90px;
}

.starlink-partners-title {
    margin: 0 0 48px;
    color: #fff;
    font-family: "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    letter-spacing: -0.035em;
    line-height: 1.12;
    text-align: center;
}

.starlink-partners-section .ibp-map-directory {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 4fr) minmax(330px, 2fr);
    align-items: center;
    gap: 28px;
}

.starlink-partners-section .ibp-world-map {
    display: grid;
    width: 100%;
    min-height: clamp(260px, 28vw, 420px);
    margin: 0;
    align-items: center;
}

.starlink-partners-section .ibp-world-map.map-image > img {
    width: 100%;
    grid-area: 1 / 1;
}

.starlink-partners-section .ibp-world-map.map-image > img:first-child:not(:last-child) + img:last-child {
    opacity: 0;
    animation: starlink-map-pulse 1.8s ease-in-out infinite;
}

.starlink-partners-section .ibp-map-marker {
    display: none;
}

.starlink-partners-section .ibp-directory-list {
    display: grid;
    width: 100%;
    max-width: none;
    margin: 0;
    align-content: center;
    gap: 10px;
}

.starlink-partners-section .ibp-directory-card {
    border-color: rgba(125, 211, 252, 0.12);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(18, 30, 38, 0.96), rgba(13, 20, 26, 0.96));
}

.starlink-partners-section .ibp-directory-card:hover,
.starlink-partners-section .ibp-directory-card:focus-within {
    border-color: rgba(56, 189, 248, 0.46);
    transform: translateY(-3px);
}

.starlink-partners-section .ibp-directory-card-content {
    flex-wrap: nowrap;
    gap: 14px;
    padding: 8px 12px;
}

.starlink-partners-section .ibp-directory-card-avatar {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.22);
}

.starlink-partners-section .ibp-directory-card-main {
    display: flex;
    min-width: 0;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 7px;
}

.starlink-partners-section .ibp-directory-card-name,
.starlink-partners-section .ibp-directory-card-descriptor,
.starlink-partners-section .ibp-directory-whatsapp {
    font-size: 13px;
}

.starlink-partners-section .ibp-directory-card-flags {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 5px;
}

.starlink-partners-section .ibp-directory-whatsapp {
    min-width: 110px;
    min-height: 36px;
    padding: 7px 13px;
    border-color: #38bdf8;
    background: rgba(14, 116, 144, 0.16);
}

.starlink-partners-section .ibp-directory-whatsapp:hover,
.starlink-partners-section .ibp-directory-whatsapp:focus-visible {
    background: rgba(14, 116, 144, 0.3);
    box-shadow: 0 10px 22px rgba(14, 165, 233, 0.15);
}

@keyframes starlink-map-pulse {
    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 0.85;
    }
}

.starlink-story-sections {
    display: grid;
    width: min(calc(100% - var(--starlink-content-gutter)), var(--starlink-content-width));
    margin: 0 auto;
    padding: 20px 0 140px;
    gap: 42px;
}

.starlink-story-card {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    align-items: center;
    background-image: var(--starlink-story-image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.starlink-story-card::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 10, 17, 0.94) 0%, rgba(3, 10, 17, 0.76) 40%, rgba(3, 10, 17, 0.08) 72%);
    content: "";
}

.starlink-story-card--right {
    justify-content: flex-end;
}

.starlink-story-card--right::before {
    background: linear-gradient(270deg, rgba(4, 9, 15, 0.94) 0%, rgba(4, 9, 15, 0.78) 42%, rgba(4, 9, 15, 0.08) 74%);
}

.starlink-story-content {
    width: min(46%, 480px);
    margin: 0 clamp(52px, 6vw, 78px);
    color: #fff;
}

.starlink-story-content h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.starlink-story-logo-heading {
    line-height: 0;
}

.starlink-story-logo {
    display: block;
    width: min(100%, 250px);
    height: auto;
}

.starlink-story-content p,
.starlink-story-benefits li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.starlink-story-content p {
    margin: 0;
}

.starlink-story-content p + p {
    margin-top: 16px;
}

.starlink-story-list-label {
    margin-top: 16px !important;
}

.starlink-story-benefits {
    display: grid;
    margin: 8px 0 0;
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 22px;
    list-style: none;
}

.starlink-story-benefits li {
    position: relative;
    padding-left: 12px;
    line-height: 1.35;
}

.starlink-story-benefits li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "*";
}

.starlink-benefit-mobile-break {
    display: none;
}

.starlink-ready-banner {
    position: relative;
    isolation: isolate;
    display: flex;
    width: 100%;
    min-height: 780px;
    overflow: hidden;
    align-items: center;
    background-image: url('/store/images/home/star-link.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

html.starlink-page-document footer,
html.starlink-page-document footer .footer-container,
html.starlink-page-document footer .footer-bottom-container {
    margin-top: 0;
}

.starlink-ready-banner::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 8, 14, 0.9) 0%, rgba(3, 8, 14, 0.66) 42%, rgba(3, 8, 14, 0.12) 72%);
    content: "";
}

.starlink-ready-content {
    width: min(calc(100% - var(--starlink-content-gutter)), var(--starlink-content-width));
    margin: 0 auto;
    padding-left: 0;
}

.starlink-ready-content h2 {
    max-width: 470px;
    margin: 0;
    color: #fff;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.starlink-ready-content p {
    max-width: 500px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.starlink-ready-button {
    display: inline-flex;
    min-height: 60px;
    margin-top: 28px;
    padding: 10px 24px 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    align-items: center;
    gap: 13px;
    background: #2878ff;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(40, 120, 255, 0.22);
    transition: background-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.starlink-ready-button svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.starlink-ready-button:hover,
.starlink-ready-button:focus-visible {
    background: #3987ff;
    color: #fff;
    box-shadow: 0 18px 42px rgba(40, 120, 255, 0.32);
    transform: translateY(-2px);
}

.starlink-ready-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.starlink-product-order-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
    .starlink-product-card:hover {
        border-color: rgba(255, 255, 255, 0.24);
        background: rgba(255, 255, 255, 0.035);
        transform: translateY(-4px);
    }

    .starlink-product-card:hover .starlink-product-image {
        transform: scale(1.035);
    }
}

@media (max-width: 900px) {
    .starlink-selector {
        width: min(calc(100% - 32px), 720px);
        padding-top: 130px;
    }

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

    .starlink-product-detail {
        width: min(calc(100% - 40px), 680px);
        padding-top: 10px;
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .starlink-product-order-panel {
        width: min(100%, 500px);
        margin: 0 auto;
    }

    .starlink-order-list {
        width: min(calc(100% - 40px), 680px);
    }

    .starlink-partners-section {
        width: min(calc(100% - 40px), 680px);
        padding: 0 0 110px;
    }

    .starlink-partners-section .ibp-map-directory {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .starlink-partners-section .ibp-world-map {
        min-height: auto;
    }

    .starlink-partners-section .ibp-directory-list {
        width: min(100%, 500px);
        margin: 0 auto;
    }

    .starlink-story-sections {
        width: min(calc(100% - 40px), 680px);
        gap: 30px;
    }

    .starlink-story-card {
        min-height: 580px;
        align-items: flex-end;
        background-position: center;
    }

    .starlink-story-card::before,
    .starlink-story-card--right::before {
        background: linear-gradient(0deg, rgba(2, 7, 12, 0.97) 0%, rgba(2, 7, 12, 0.84) 48%, rgba(2, 7, 12, 0.12) 82%);
    }

    .starlink-story-content {
        width: 100%;
        margin: 0;
        padding: 40px;
    }

    .starlink-ready-content {
        width: min(calc(100% - 40px), 680px);
        padding-left: 0;
    }
}

@media (max-width: 560px) {
    .starlink-selector {
        width: 100%;
        min-height: 600px;
        padding: 116px 0 76px;
    }

    .starlink-selector-header {
        padding: 0 22px;
    }

    .starlink-selector-title img {
        width: 220px;
    }

    .starlink-selector-header p {
        margin-top: 16px;
        font-size: 13px;
    }

    .starlink-product-list {
        display: flex;
        gap: 12px;
        margin-top: 34px;
        padding: 0 22px 56px;
        overflow-x: auto;
        scroll-padding-left: 22px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    }

    .starlink-product-list::-webkit-scrollbar {
        display: none;
    }

    .starlink-product-list-shell {
        width: 100%;
    }

    .starlink-product-list-controls {
        width: max-content;
        margin: -22px auto 0;
        padding: 0 10px;
        position: relative;
        z-index: 2;
        justify-content: center;
        gap: 12px;
        background: #000;
    }

    .starlink-product-list-controls.is-visible {
        display: flex;
    }

    .starlink-product-list-control {
        appearance: none;
        width: 42px;
        min-width: 42px;
        height: 42px;
        padding: 0;
        border: 1.5px solid #dbe4eb;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, #fff 0%, #fbfcfe 100%);
        box-shadow: 0 10px 24px rgba(255, 255, 255, 0.12);
        cursor: pointer;
        transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    }

    .starlink-product-list-control:not([hidden]) {
        display: inline-flex;
    }

    .starlink-product-list-control svg {
        display: block;
        width: 10px;
        height: 16px;
    }

    .starlink-product-list-control path {
        fill: none;
        stroke: #17181a;
        stroke-width: 2.1;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .starlink-product-list-control:hover,
    .starlink-product-list-control:focus-visible {
        transform: translateY(-1px) scale(1.01);
        box-shadow: 0 14px 28px rgba(255, 255, 255, 0.17);
        outline: none;
    }

    .starlink-product-list-control:disabled {
        border-color: #aeb6bd !important;
        background: linear-gradient(180deg, #e4e7ea 0%, #cbd1d6 100%) !important;
        opacity: 1;
        cursor: default;
        transform: none;
        box-shadow: none;
    }

    .starlink-product-list-control:disabled path {
        stroke: #737b83;
    }

    .starlink-product-card {
        min-width: min(74vw, 270px);
        min-height: 220px;
        flex: 0 0 min(74vw, 270px);
        scroll-snap-align: start;
    }

    .starlink-product-detail {
        width: 100%;
        padding: 12px 20px 90px;
        gap: 34px;
    }

    .starlink-product-gallery-main {
        width: 100%;
        max-width: 380px;
    }

    .starlink-product-gallery-thumbnails {
        gap: 8px;
    }

    .starlink-product-order-panel {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .starlink-order-list {
        width: calc(100% - 40px);
        margin: -42px auto 82px;
        padding: 16px;
        border-radius: 15px;
    }

    .starlink-order-list h2 {
        font-size: 18px;
    }

    .starlink-order-list-head {
        display: none;
    }

    .starlink-order-list-row {
        grid-template-columns: minmax(0, 1fr) auto 34px;
        gap: 10px;
        padding: 12px;
    }

    .starlink-order-list-model {
        grid-column: 1;
        grid-row: 1;
    }

    .starlink-order-list-quantity {
        grid-column: 2;
        grid-row: 1 / 3;
        align-self: center;
    }

    .starlink-order-list-pricing {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .starlink-order-list-remove {
        grid-column: 3;
        grid-row: 1 / 3;
    }

    .starlink-partners-section {
        width: 100%;
        padding: 0 20px 90px;
    }

    .starlink-partners-title {
        margin-bottom: 34px;
        font-size: 28px;
    }

    .starlink-partners-section .ibp-directory-card-content {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 10px 12px;
    }

    .starlink-partners-section .ibp-directory-card-avatar {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
    }

    .starlink-partners-section .ibp-directory-card-main {
        min-width: 0;
        flex: 1 1 auto;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

    .starlink-partners-section .ibp-directory-whatsapp {
        min-width: 98px;
        margin-left: auto;
        padding-inline: 10px;
        flex: 0 0 auto;
        align-self: center;
    }

    .starlink-story-sections {
        width: 100%;
        padding: 10px 0 50px;
        gap: 0;
    }

    .starlink-story-card {
        --starlink-mobile-black-extension: 140px;
        width: 100%;
        min-height: calc(118.3vw + var(--starlink-mobile-black-extension));
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        align-items: flex-start;
        background-color: #000;
        background-image: var(--starlink-story-mobile-image);
        background-position: center bottom;
        background-size: 100% auto;
    }

    .starlink-story-card:nth-child(2) {
        --starlink-mobile-black-extension: 190px;
    }

    .starlink-story-card:nth-child(3) {
        --starlink-mobile-black-extension: 160px;
    }

    .starlink-story-card::before,
    .starlink-story-card--right::before {
        background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.96) 38%, rgba(2, 8, 14, 0.7) 60%, rgba(2, 8, 14, 0.05) 78%);
    }

    .starlink-story-content {
        padding: 32px 10px 0;
        text-align: center;
    }

    .starlink-story-content h2 {
        margin-bottom: 10px;
        font-size: 30px;
        line-height: 1.2;
        text-wrap: balance;
    }

    .starlink-story-logo {
        width: min(82%, 250px);
        margin: 0 auto;
    }

    .starlink-story-content p,
    .starlink-story-benefits li {
        font-size: 14px;
        line-height: 1.42;
    }

    .starlink-story-content p {
        text-wrap: pretty;
    }

    .starlink-story-benefits li {
        text-wrap: balance;
    }

    .starlink-story-content p + p {
        margin-top: 10px;
    }

    .starlink-story-list-label {
        margin-top: 10px !important;
    }

    .starlink-story-benefits {
        width: min(100%, 340px);
        margin: 8px auto 0;
        grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
        gap: 5px 50px;
        text-align: left;
    }

    .starlink-story-benefits li {
        padding-left: 8px;
        letter-spacing: -0.15px;
    }

    .starlink-benefit-mobile-break {
        display: block;
    }

    .starlink-ready-banner {
        min-height: 600px;
        align-items: flex-start;
        background-image: url('/store/images/starlink/starlink-mobile.webp');
        background-position: center top;
    }

    .starlink-ready-banner::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(2, 7, 12, 0.74) 42%, rgba(2, 7, 12, 0.08) 78%);
    }

    .starlink-ready-content {
        width: 100%;
        padding: 0px 20px 0;
        text-align: center;
    }

    .starlink-ready-content h2 {
        max-width: none;
        font-size: 30px;
        text-wrap: balance;
    }

    .starlink-ready-content p {
        max-width: 360px;
        margin-right: auto;
        margin-left: auto;
        text-wrap: pretty;
    }

    .starlink-ready-button {
        width: fit-content;
        max-width: 100%;
        margin-right: auto;
        margin-left: auto;
        justify-content: center;
    }

    .starlink-gallery-lightbox {
        padding: 68px 12px 14px;
        grid-template-columns: 38px minmax(0, 1fr) 38px;
        gap: 8px;
    }

    .starlink-gallery-lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .starlink-gallery-lightbox-navigation {
        width: 38px;
        height: 38px;
    }

    .starlink-gallery-lightbox-navigation--previous {
        left: 8px;
    }

    .starlink-gallery-lightbox-navigation--next {
        right: 8px;
    }

    .starlink-gallery-lightbox-close svg,
    .starlink-gallery-lightbox-navigation svg {
        width: 19px;
        height: 19px;
    }

    .starlink-gallery-lightbox-thumbnails {
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .starlink-product-card,
    .starlink-product-image,
    .starlink-product-order-button,
    .starlink-partners-section .ibp-directory-card,
    .starlink-ready-button {
        transition: none;
    }

    .starlink-partners-section .ibp-world-map.map-image > img:first-child:not(:last-child) + img:last-child {
        animation: none;
        opacity: 0.55;
    }
}
