:root {
    --isp-bg: #050608;
    --isp-bg-elevated: #0a0c10;
    --isp-surface: #10141c;
    --isp-border: rgba(255, 255, 255, 0.07);
    --isp-text: #eef0f5;
    --isp-muted: #8b93a8;
    --isp-accent: #5eb0ff;
    --isp-accent-2: #7c5cff;
    --isp-accent-soft: rgba(94, 176, 255, 0.12);
    --isp-glow: rgba(94, 176, 255, 0.4);
    --isp-radius: 18px;
    --isp-radius-lg: 22px;
    --isp-font: "Plus Jakarta Sans", system-ui, sans-serif;
    --isp-display: "Outfit", system-ui, sans-serif;
    --isp-section-py: clamp(4.5rem, 10vw, 7.5rem);
    --isp-container: 1140px;
}

html {
    scroll-behavior: smooth;
}

body.isp-theme {
    font-family: var(--isp-font);
    background: var(--isp-bg);
    color: var(--isp-text);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    font-size: 1.02rem;
    line-height: 1.65;
}

.isp-container {
    max-width: var(--isp-container);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* —— Typography —— */
.isp-heading {
    font-family: var(--isp-display);
    letter-spacing: -0.03em;
    font-weight: 700;
}

.isp-display-xl {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.08;
}

.isp-display-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.12;
}

.isp-display-sm {
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    line-height: 1.18;
}

.isp-lead-lg {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.55;
    color: var(--isp-muted);
}

.isp-muted {
    color: var(--isp-muted);
}

.isp-accent {
    color: var(--isp-accent);
}

/* —— Nav —— */
.isp-nav-blur {
    backdrop-filter: blur(18px) saturate(1.2);
    background: rgba(5, 6, 8, 0.78);
    border-bottom: 1px solid var(--isp-border);
}

.isp-nav-blur .navbar-brand {
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

.isp-nav-blur .nav-link {
    color: rgba(255, 255, 255, 0.72) !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
}

.isp-nav-blur .nav-link:hover,
.isp-nav-blur .nav-link.text-white {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06);
}

.isp-nav-blur .isp-nav-link--active {
    color: #fff !important;
    background: rgba(94, 176, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(94, 176, 255, 0.22);
}

/* —— Buttons —— */
.isp-btn-primary {
    background: linear-gradient(135deg, #6bb8ff 0%, #3d8ef5 45%, #5a7cff 100%);
    border: none;
    color: #030508;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 16px 48px rgba(61, 142, 245, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.isp-btn-primary:hover {
    filter: brightness(1.06);
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.14) inset,
        0 22px 56px rgba(61, 142, 245, 0.45);
    color: #030508;
}

.isp-btn-primary.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.isp-btn-ghost {
    border: 1px solid var(--isp-border);
    color: var(--isp-text);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
    padding: 0.85rem 1.65rem;
    font-weight: 600;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.isp-btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.07);
    color: var(--isp-text);
    transform: translateY(-1px);
}

.isp-btn-ghost.btn-lg {
    padding: 1rem 1.85rem;
}

/* —— Cards —— */
.isp-card {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #12161f 0%, #0c0f14 100%);
    border: 1px solid var(--isp-border);
    border-radius: var(--isp-radius);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.isp-card--hover:hover {
    transform: translateY(-6px);
    border-color: rgba(94, 176, 255, 0.28);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(94, 176, 255, 0.1);
}

.isp-card-highlight {
    border-color: rgba(94, 176, 255, 0.4);
    box-shadow: 0 0 0 1px rgba(94, 176, 255, 0.15), 0 32px 85px rgba(0, 0, 0, 0.5);
}

.isp-plan-card--popular {
    border-color: rgba(94, 176, 255, 0.45) !important;
    box-shadow: 0 0 0 1px rgba(94, 176, 255, 0.2), 0 32px 90px rgba(61, 142, 245, 0.15) !important;
}

.isp-plan-card__body {
    position: relative;
}

.isp-plan-pill {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #030508;
    background: linear-gradient(135deg, #6bb8ff, #3d8ef5);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(61, 142, 245, 0.35);
}

/* —— Sections —— */
.isp-gradient-hero {
    background:
        radial-gradient(ellipse 90% 60% at 50% -30%, rgba(94, 176, 255, 0.18), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(124, 92, 255, 0.1), transparent),
        var(--isp-bg);
}

/* Section with soft photographic backdrop + overlay */
.isp-section--media {
    position: relative;
    overflow: hidden;
}

.isp-section--media::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--isp-section-bg-image);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    filter: saturate(1.05) brightness(0.35);
    opacity: 0.45;
}

.isp-section--media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 70% at 50% 0%, rgba(94, 176, 255, 0.12), transparent 55%),
        linear-gradient(180deg, rgba(5, 6, 8, 0.92) 0%, rgba(5, 6, 8, 0.97) 100%);
}

.isp-section--media > .container {
    position: relative;
    z-index: 2;
}

/* Why / features band */
.isp-section--why {
    --isp-section-bg-image: none;
}

.isp-section--why.isp-section--media::before {
    opacity: 0.38;
    filter: saturate(1.08) brightness(0.32);
}

/* Testimonials: faint grid / tech texture */
.isp-section--testimonials.isp-section--media::before {
    opacity: 0.28;
    filter: saturate(0.9) brightness(0.4);
}

.isp-section--testimonials.isp-section--media::after {
    background: linear-gradient(180deg, rgba(5, 6, 8, 0.94) 0%, rgba(5, 6, 8, 0.98) 100%);
}

/* Self-install */
.isp-section--self-install.isp-section--media::before {
    opacity: 0.32;
    filter: saturate(1.05) brightness(0.38);
}

.isp-section {
    padding-top: var(--isp-section-py);
    padding-bottom: var(--isp-section-py);
}

.isp-section--tight {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Full-bleed hero */
.isp-hero {
    position: relative;
    min-height: min(92vh, 900px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Inner pages: shorter hero with same imagery treatment */
.isp-hero.isp-hero--page {
    min-height: 0;
    align-items: stretch;
}

.isp-hero--page .isp-hero__row {
    min-height: min(48vh, 520px);
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.isp-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    will-change: transform;
}

/* Homepage hero: dual looping clips (5G + satellite mood) behind headline */
.isp-hero--live-videos .isp-hero__bg {
    opacity: 0.32;
    filter: saturate(1.05) brightness(0.92);
}

.isp-hero__videos {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.isp-hero__video-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

@media (max-width: 575.98px) {
    .isp-hero__video-split {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
    }
}

.isp-hero__video-cell {
    position: relative;
    min-height: 12rem;
    overflow: hidden;
}

.isp-hero__video {
    position: absolute;
    inset: -12% -8%;
    width: calc(100% + 16%);
    height: calc(100% + 24%);
    object-fit: cover;
    object-position: center;
}

.isp-hero__video-blend {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 5, 8, 0.2) 0%, transparent 18%, transparent 82%, rgba(3, 5, 8, 0.25) 100%),
        linear-gradient(180deg, transparent 0%, rgba(3, 5, 8, 0.35) 100%);
    mix-blend-mode: multiply;
    opacity: 0.85;
    pointer-events: none;
}

@media (max-width: 575.98px) {
    .isp-hero__video-blend {
        background:
            linear-gradient(180deg, rgba(3, 5, 8, 0.15) 0%, transparent 22%, transparent 78%, rgba(3, 5, 8, 0.2) 100%),
            linear-gradient(180deg, transparent 0%, rgba(3, 5, 8, 0.4) 100%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .isp-hero__videos {
        display: none;
    }

    .isp-hero--live-videos .isp-hero__bg {
        opacity: 1;
        filter: none;
    }
}

/* Subtle “video-like” motion on hero backgrounds */
@keyframes ispKenBurns {
    from {
        transform: scale(1.03) translate(0, 0);
    }
    to {
        transform: scale(1.1) translate(-1.2%, -0.6%);
    }
}

.isp-hero__bg--kenburns {
    animation: ispKenBurns 38s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
    .isp-hero__bg--kenburns {
        animation: none;
        transform: scale(1.02);
    }

    .isp-hero__bg--kenburns-slow,
    .isp-hero__ambient {
        animation: none !important;
    }
}

@keyframes ispKenBurnsSlow {
    from {
        transform: scale(1.04) translate(0, 0);
    }
    to {
        transform: scale(1.11) translate(-1.5%, -0.9%);
    }
}

.isp-hero__ambient {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: var(--isp-hero-ambient-opacity, 0.38);
    mix-blend-mode: soft-light;
    pointer-events: none;
    will-change: transform;
}

.isp-hero__bg--kenburns-slow {
    animation: ispKenBurnsSlow 52s ease-in-out infinite alternate;
}

.isp-hero__mesh {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: 0.09;
    background-image:
        radial-gradient(ellipse 55% 40% at 20% 25%, rgba(94, 176, 255, 0.35), transparent 55%),
        radial-gradient(ellipse 45% 40% at 85% 75%, rgba(160, 140, 255, 0.22), transparent 55%),
        repeating-linear-gradient(
            105deg,
            transparent 0,
            transparent 72px,
            rgba(255, 255, 255, 0.04) 72px,
            rgba(255, 255, 255, 0.04) 73px
        );
}

.isp-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    background: linear-gradient(180deg, rgba(3, 5, 8, 0.55) 0%, rgba(3, 5, 8, 0.88) 45%, rgba(3, 5, 8, 0.96) 100%);
}

.isp-hero__overlay--deep {
    background: linear-gradient(
        165deg,
        rgba(3, 5, 8, 0.72) 0%,
        rgba(3, 5, 8, 0.88) 38%,
        rgba(3, 5, 8, 0.97) 100%
    );
}

.isp-hero__noise {
    position: absolute;
    inset: 0;
    z-index: 5;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.isp-hero__content {
    position: relative;
    z-index: 6;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.isp-hero-animate > * {
    animation: ispFadeUp 0.85s ease-out both;
}

.isp-hero-animate > *:nth-child(1) {
    animation-delay: 0.05s;
}
.isp-hero-animate > *:nth-child(2) {
    animation-delay: 0.15s;
}
.isp-hero-animate > *:nth-child(3) {
    animation-delay: 0.25s;
}
.isp-hero-animate > *:nth-child(4) {
    animation-delay: 0.35s;
}
.isp-hero-animate > *:nth-child(5) {
    animation-delay: 0.42s;
}

@keyframes ispFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.isp-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.isp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Feature icon tiles */
.isp-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(94, 176, 255, 0.2), rgba(124, 92, 255, 0.08));
    border: 1px solid rgba(94, 176, 255, 0.25);
    color: var(--isp-accent);
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.isp-feature-icon svg {
    width: 26px;
    height: 26px;
}

/* Plan category icon strip */
.isp-plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(94, 176, 255, 0.1);
    border: 1px solid rgba(94, 176, 255, 0.2);
    color: var(--isp-accent);
    flex-shrink: 0;
}

.isp-plan-icon svg {
    width: 24px;
    height: 24px;
}

.isp-plan-icon--sat {
    background: rgba(124, 92, 255, 0.12);
    border-color: rgba(124, 92, 255, 0.28);
    color: #b8a6ff;
}

/* Home — plan preview cards with photo strip */
.isp-plan-preview-card {
    overflow: hidden;
    padding-top: 0 !important;
}

.isp-plan-preview-card__media {
    position: relative;
    height: 140px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--isp-border);
}

.isp-plan-preview-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(12, 15, 20, 0.92) 92%);
}

.isp-plan-preview-card__body {
    padding: 1.5rem 1.5rem 1.5rem;
}

@media (min-width: 992px) {
    .isp-plan-preview-card__body {
        padding: 1.75rem 2rem 2rem;
    }
}

/* /plans — card top image */
.isp-plan-card-media {
    position: relative;
    height: 122px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--isp-border);
}

.isp-plan-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.2) 0%, rgba(12, 15, 20, 0.96) 100%);
}

.isp-signal-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
}

.isp-signal-bars span {
    display: block;
    width: 4px;
    border-radius: 2px;
    background: rgba(94, 176, 255, 0.9);
    box-shadow: 0 0 10px rgba(94, 176, 255, 0.45);
}

.isp-signal-bars span:nth-child(1) {
    height: 6px;
}
.isp-signal-bars span:nth-child(2) {
    height: 10px;
}
.isp-signal-bars span:nth-child(3) {
    height: 14px;
}
.isp-signal-bars span:nth-child(4) {
    height: 18px;
}

.isp-signal-bars--muted span {
    background: rgba(255, 255, 255, 0.35);
    box-shadow: none;
}

.isp-signal-bars--oncard span {
    box-shadow: 0 0 10px rgba(94, 176, 255, 0.4);
}

/* —— Plans page (conversion layout) —— */
.isp-plans-hero {
    position: relative;
    min-height: min(72vh, 760px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.isp-plans-line {
    position: relative;
    overflow: hidden;
}

.isp-plans-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--isp-plans-line-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.07;
    filter: saturate(1.15);
    pointer-events: none;
}

.isp-plans-line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 75% 55% at 50% 0%, rgba(94, 176, 255, 0.09), transparent 58%);
    pointer-events: none;
}

.isp-plans-line > .container {
    position: relative;
    z-index: 1;
}

.isp-plans-line-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: 1px solid var(--isp-border);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.isp-plans-line-badge--5g {
    color: var(--isp-accent);
    border-color: rgba(94, 176, 255, 0.35);
    box-shadow: 0 0 24px rgba(94, 176, 255, 0.08);
}

.isp-plans-line-badge--sat {
    color: #c4b5ff;
    border-color: rgba(180, 160, 255, 0.35);
    box-shadow: 0 0 24px rgba(124, 92, 255, 0.1);
}

.isp-plans-line-badge__ico {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.isp-plan-card-pro {
    padding: 0 !important;
    overflow: hidden;
    border-radius: var(--isp-radius-lg) !important;
}

.isp-plan-card-pro--popular {
    border-color: rgba(94, 176, 255, 0.48) !important;
    box-shadow:
        0 0 0 1px rgba(94, 176, 255, 0.22),
        0 40px 100px rgba(61, 142, 245, 0.14) !important;
}

.isp-plan-card-pro__media {
    position: relative;
    height: 148px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--isp-border);
}

.isp-plan-card-pro__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.12) 0%, rgba(12, 15, 20, 0.94) 100%);
}

.isp-plan-card-pro__body {
    position: relative;
}

.isp-plan-card-pro .isp-plan-pill {
    position: static;
    align-self: flex-start;
}

.isp-plan-card-pro__name {
    font-size: clamp(1.4rem, 2.6vw, 1.75rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.isp-plan-card-pro__price {
    font-family: var(--isp-display);
    font-size: clamp(1.9rem, 4.2vw, 2.45rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.035em;
}

.isp-plan-feature-list {
    list-style: none;
    margin: 0;
}

.isp-plan-feature-list li {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.5;
}

.isp-plan-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6bb8ff, #3d8ef5);
    box-shadow: 0 0 12px rgba(94, 176, 255, 0.45);
}

.isp-plans-compare-wrap {
    background: linear-gradient(180deg, rgba(94, 176, 255, 0.04) 0%, transparent 45%), var(--isp-bg);
}

.isp-plans-compare-table {
    color: var(--isp-muted);
    border: 1px solid var(--isp-border) !important;
    border-radius: var(--isp-radius-lg);
    overflow: hidden;
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--isp-border);
}

.isp-plans-compare-table thead th {
    background: rgba(94, 176, 255, 0.1);
    color: #fff;
    font-family: var(--isp-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.11em;
    padding: 1.1rem 1.35rem;
    border-color: var(--isp-border) !important;
    vertical-align: middle;
}

.isp-plans-compare-table tbody th {
    color: #fff;
    font-weight: 600;
    width: 18%;
    min-width: 7rem;
    padding: 1.2rem 1.35rem;
    border-color: var(--isp-border) !important;
    background: rgba(0, 0, 0, 0.28);
    vertical-align: top;
}

.isp-plans-compare-table td {
    padding: 1.2rem 1.35rem;
    border-color: var(--isp-border) !important;
    font-size: 0.95rem;
    line-height: 1.58;
    vertical-align: top;
}

@media (max-width: 767.98px) {
    .isp-plans-compare-table thead th,
    .isp-plans-compare-table tbody th,
    .isp-plans-compare-table td {
        padding: 0.85rem 1rem;
        font-size: 0.88rem;
    }
}

/* Phone plan tiles — subtle wireless motif */
.isp-phone-plan-tile {
    position: relative;
    overflow: hidden;
}

.isp-phone-plan-tile::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 100% 0%, rgba(94, 176, 255, 0.14), transparent 68%);
    pointer-events: none;
}

.isp-phone-plan-tile__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(94, 176, 255, 0.08);
    border: 1px solid rgba(94, 176, 255, 0.18);
    color: var(--isp-accent);
    margin-bottom: 0.5rem;
}

.isp-phone-plan-tile__icon svg {
    width: 20px;
    height: 20px;
}

/* Lazy images — gentle fade-in */
.isp-img-fade {
    opacity: 0;
    transition: opacity 0.65s ease;
}

.isp-img-fade.isp-img-fade--loaded {
    opacity: 1;
}

/* Testimonials / customer reviews (legacy class kept) */
.isp-stars {
    color: #ffc14d;
    letter-spacing: 0.12em;
    font-size: 0.95rem;
    line-height: 1;
}

.isp-testimonial-card {
    height: 100%;
}

/* Customer review cards */
.isp-review-card {
    overflow: hidden;
    padding: 0 !important;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 45%),
        linear-gradient(180deg, #141820 0%, #0d1016 100%);
}

.isp-review-card__inner {
    padding: 1.35rem 1.35rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 992px) {
    .isp-review-card__inner {
        padding: 1.5rem 1.5rem 1.65rem;
    }
}

.isp-review-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 1px rgba(94, 176, 255, 0.2), 0 12px 32px rgba(0, 0, 0, 0.4);
}

.isp-review-card__avatar--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--isp-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--isp-accent);
    background: linear-gradient(145deg, rgba(94, 176, 255, 0.2), rgba(124, 92, 255, 0.12));
}

.isp-review-stars {
    display: flex;
    gap: 0.15rem;
    line-height: 1;
}

.isp-review-stars__icon {
    color: #ffb84d;
    font-size: 1rem;
    text-shadow: 0 0 12px rgba(255, 184, 77, 0.35);
}

.isp-review-stars__icon--off {
    color: rgba(255, 255, 255, 0.15);
    text-shadow: none;
}

.isp-review-card__quote {
    line-height: 1.65;
}

/* Paged reviews — taller section, pager UI */
.isp-section--reviews-paged {
    min-height: min(88vh, 920px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.isp-section--reviews-paged > .container {
    width: 100%;
}

.isp-review-pager__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.isp-review-pager__dot:hover {
    border-color: rgba(94, 176, 255, 0.45);
    background: rgba(94, 176, 255, 0.2);
}

.isp-review-pager__dot--active {
    background: linear-gradient(135deg, #6bb8ff, #3d8ef5);
    border-color: rgba(94, 176, 255, 0.55);
    transform: scale(1.15);
    box-shadow: 0 0 14px rgba(94, 176, 255, 0.35);
}

/* Nav trust strip — factual highlights only */
.isp-trust-bar {
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

.isp-trust-bar__item {
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 767.98px) {
    .isp-section--reviews-paged {
        min-height: 0;
        padding-top: clamp(3rem, 8vw, 5rem);
        padding-bottom: clamp(3rem, 8vw, 5rem);
    }
}

/* Homepage lifestyle mosaic */
.isp-lifestyle-card {
    position: relative;
    border-radius: var(--isp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--isp-border);
    min-height: 280px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.isp-lifestyle-card:hover {
    transform: translateY(-4px);
    border-color: rgba(94, 176, 255, 0.25);
    box-shadow: 0 32px 85px rgba(0, 0, 0, 0.55), 0 0 40px rgba(94, 176, 255, 0.06);
}

.isp-lifestyle-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    filter: saturate(1.05);
    transition: transform 0.5s ease, filter 0.35s ease;
}

.isp-lifestyle-card:hover .isp-lifestyle-card__img {
    transform: scale(1.07);
    filter: saturate(1.1);
}

.isp-lifestyle-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 5, 8, 0.15) 0%, rgba(3, 5, 8, 0.55) 45%, rgba(3, 5, 8, 0.92) 100%);
    pointer-events: none;
}

.isp-lifestyle-card__glow {
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(94, 176, 255, 0.12), transparent 70%);
    pointer-events: none;
}

.isp-lifestyle-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem 1.35rem 1.35rem;
    z-index: 2;
}

.isp-lifestyle-card__label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.35rem;
}

.isp-lifestyle-card__title {
    font-family: var(--isp-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 0.35rem;
    line-height: 1.25;
}

.isp-lifestyle-card__text {
    font-size: 0.85rem;
    color: var(--isp-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 767.98px) {
    .isp-lifestyle-card {
        min-height: 240px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .isp-lifestyle-card:hover {
        transform: none;
    }

    .isp-lifestyle-card:hover .isp-lifestyle-card__img {
        transform: scale(1.03);
    }
}

/* Coverage band */
.isp-coverage-band {
    position: relative;
    border-radius: var(--isp-radius-lg);
    overflow: hidden;
    border: 1px solid var(--isp-border);
    min-height: 380px;
    animation: ispCoverageGlow 7s ease-in-out infinite;
}

@keyframes ispCoverageGlow {
    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(94, 176, 255, 0.12),
            0 24px 80px rgba(0, 0, 0, 0.45);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(94, 176, 255, 0.22),
            0 28px 90px rgba(61, 142, 245, 0.12),
            0 0 70px rgba(94, 176, 255, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .isp-coverage-band {
        animation: none;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
    }
}

.isp-coverage-band__bg {
    position: absolute;
    inset: -12px;
    background-size: cover;
    background-position: center;
    filter: saturate(1.08) contrast(1.04) blur(3px);
    transform: scale(1.06);
}

.isp-coverage-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(3, 5, 8, 0.94) 35%, rgba(3, 5, 8, 0.62) 100%);
}

.isp-coverage-band__inner {
    position: relative;
    z-index: 2;
    padding: clamp(2.5rem, 5vw, 4rem);
    max-width: 32rem;
}

/* Equipment split */
.isp-equipment-img {
    border-radius: var(--isp-radius-lg);
    border: 1px solid var(--isp-border);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.isp-equipment-frame {
    position: relative;
    border-radius: var(--isp-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(94, 176, 255, 0.35), rgba(124, 92, 255, 0.15), transparent 60%);
}

.isp-equipment-frame .isp-equipment-img {
    display: block;
    width: 100%;
    border-radius: calc(var(--isp-radius-lg) - 2px);
}

/* /plans section rhythm */
.isp-plans-section--metro {
    position: relative;
}

.isp-plans-section--metro::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: min(42%, 520px);
    height: 100%;
    max-height: 420px;
    background-image: var(--isp-plans-metro-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.14;
    filter: saturate(1.1);
    pointer-events: none;
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
}

.isp-plans-section--satellite {
    position: relative;
}

.isp-plans-section--satellite::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: min(42%, 520px);
    height: 100%;
    max-height: 420px;
    background-image: var(--isp-plans-sat-bg, none);
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    filter: saturate(1.05) brightness(0.9);
    pointer-events: none;
    mask-image: linear-gradient(270deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
}

/* Dashboard stat icons */
.isp-dash-stat {
    position: relative;
}

.isp-dash-stat__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, rgba(94, 176, 255, 0.15), rgba(124, 92, 255, 0.06));
    border: 1px solid rgba(94, 176, 255, 0.2);
    color: var(--isp-accent);
}

.isp-dash-stat__icon svg {
    width: 22px;
    height: 22px;
}

.isp-dash-stat__icon--inline {
    margin-bottom: 0 !important;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

/* FAQ */
.isp-accordion .accordion-item {
    background: transparent;
    border: 1px solid var(--isp-border) !important;
    border-radius: var(--isp-radius) !important;
    margin-bottom: 0.65rem;
    overflow: hidden;
}

.isp-accordion .accordion-button {
    font-weight: 600;
    font-size: 1rem;
    padding: 1.15rem 1.35rem;
}

.isp-accordion .accordion-button:not(.collapsed) {
    background: rgba(94, 176, 255, 0.08);
    color: #fff;
    box-shadow: none;
}

.isp-accordion .accordion-body {
    padding: 0 1.35rem 1.25rem;
}

/* Footer */
.isp-footer {
    border-top: 1px solid var(--isp-border);
    background: linear-gradient(180deg, #080a0e 0%, #050608 100%);
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.isp-footer a {
    color: var(--isp-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.isp-footer a:hover {
    color: #fff;
}

/* Forms */
.form-control.isp-input,
.form-select.isp-input {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--isp-border);
    color: var(--isp-text);
    border-radius: 12px;
    padding: 0.75rem 1rem;
}

.form-control.isp-input:focus,
.form-select.isp-input:focus {
    border-color: rgba(94, 176, 255, 0.55);
    box-shadow: 0 0 0 4px var(--isp-accent-soft);
    color: var(--isp-text);
    background: rgba(255, 255, 255, 0.06);
}

.form-label {
    color: var(--isp-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.text-danger.small,
.invalid-feedback {
    color: #ff9494 !important;
}

.alert-success {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.35);
    color: #b8f5cd;
}

.alert-danger {
    background: rgba(231, 76, 60, 0.12);
    border: 1px solid rgba(231, 76, 60, 0.35);
    color: #ffb4b4;
}

.table-dark {
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--isp-border);
}

.badge.isp-badge {
    background: var(--isp-accent-soft);
    color: var(--isp-accent);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.4em 0.85em;
}

a {
    color: var(--isp-accent);
}

a:hover {
    color: #9fd0ff;
}

.isp-divider {
    height: 1px;
    background: var(--isp-border);
    margin: 2rem 0;
}

/* Auth shell */
.isp-auth-shell {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.isp-auth-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(94, 176, 255, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 50%, rgba(124, 92, 255, 0.08), transparent),
        var(--isp-bg);
    z-index: -1;
}

.isp-auth-card {
    border-radius: var(--isp-radius-lg);
    padding: 2.25rem 2rem;
}

@media (min-width: 576px) {
    .isp-auth-card {
        padding: 2.75rem 2.5rem;
    }
}

/* Dashboard */
.isp-dash-hero {
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid var(--isp-border);
    margin-bottom: 2rem;
}

.isp-dash-stat {
    border-radius: var(--isp-radius);
    padding: 1.5rem 1.35rem;
    height: 100%;
}

.isp-dash-stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--isp-muted);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Cancel / return flow */
.isp-progress {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.isp-progress__step {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 0.65rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid var(--isp-border);
    color: var(--isp-muted);
    background: rgba(0, 0, 0, 0.2);
}

.isp-progress__step--active {
    border-color: rgba(94, 176, 255, 0.45);
    color: #fff;
    background: rgba(94, 176, 255, 0.12);
}

.isp-progress__step--done {
    border-color: rgba(80, 200, 120, 0.4);
    color: #9fe0b4;
    background: rgba(80, 200, 120, 0.08);
}

/* Return flow — horizontal stepper */
.isp-progress--return {
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    margin-bottom: 1.75rem;
    padding: 1.25rem 0.75rem;
    background: rgba(0, 0, 0, 0.28);
    border-radius: 16px;
    border: 1px solid var(--isp-border);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.isp-progress--return .isp-progress__step {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem;
    padding: 0.5rem 0.35rem;
    border: none;
    background: transparent;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}

.isp-progress__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-bottom: 0.15rem;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 0 12px rgba(94, 176, 255, 0.15);
}

.isp-progress__step--todo .isp-progress__dot {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.isp-progress__step--active .isp-progress__dot {
    background: rgba(94, 176, 255, 0.55);
    border-color: rgba(120, 200, 255, 0.85);
    box-shadow: 0 0 16px rgba(94, 176, 255, 0.45);
}

.isp-progress__step--done .isp-progress__dot {
    background: rgba(80, 200, 120, 0.55);
    border-color: rgba(120, 220, 150, 0.85);
    box-shadow: 0 0 12px rgba(80, 200, 120, 0.35);
}

.isp-progress__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.2;
}

.isp-progress__step--todo .isp-progress__label {
    color: var(--isp-muted);
    font-weight: 600;
}

.isp-progress__hint {
    font-size: 0.7rem;
    color: var(--isp-muted);
    line-height: 1.3;
    max-width: 9rem;
}

.isp-progress__connector {
    align-self: center;
    width: 100%;
    max-width: 48px;
    min-width: 24px;
    height: 3px;
    border-radius: 2px;
    margin: 0 0.15rem;
    margin-bottom: 2.25rem;
    background: rgba(255, 255, 255, 0.1);
    flex: 0 1 48px;
}

.isp-progress__connector--on {
    background: linear-gradient(90deg, rgba(80, 200, 120, 0.5), rgba(94, 176, 255, 0.55));
    box-shadow: 0 0 12px rgba(94, 176, 255, 0.25);
}

.isp-progress__connector--off {
    opacity: 0.85;
}

@media (max-width: 575.98px) {
    .isp-progress--return {
        flex-direction: column;
        padding: 1rem;
    }

    .isp-progress--return .isp-progress__connector {
        width: 3px;
        height: 1.25rem;
        max-width: none;
        min-width: auto;
        margin: 0.25rem auto;
        margin-bottom: 0;
        flex: none;
        align-self: center;
    }

    .isp-progress__connector--on {
        background: linear-gradient(180deg, rgba(80, 200, 120, 0.5), rgba(94, 176, 255, 0.55));
    }
}

/* Phone plans */
.isp-phone-carrier-block {
    border-left: 3px solid rgba(255, 255, 255, 0.12);
}

.isp-carrier-accent--vz {
    border-left-color: rgba(200, 80, 90, 0.65);
}

.isp-carrier-accent--tm {
    border-left-color: rgba(226, 0, 116, 0.5);
}

.isp-carrier-accent--sm {
    border-left-color: rgba(0, 168, 89, 0.55);
}

.isp-carrier-accent--ck {
    border-left-color: rgba(130, 220, 160, 0.92);
    box-shadow: inset 0 0 0 1px rgba(130, 220, 160, 0.12);
}

.isp-carrier-accent--mt {
    border-left-color: rgba(226, 0, 116, 0.45);
}

.isp-phone-plan-tile {
    background: rgba(0, 0, 0, 0.2);
    border-color: var(--isp-border);
}

/* Phone plans — illustrative coverage images (inline <img>, not outbound links) */
.isp-phone-coverage-map__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
    aspect-ratio: 16 / 9;
    max-height: 14rem;
    background: rgba(0, 0, 0, 0.35);
}

.isp-phone-plan-coverage-thumb {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.isp-phone-plan-coverage-thumb .isp-phone-coverage-map__img {
    max-height: 10.5rem;
    border: none;
    border-radius: 0;
}

.isp-phone-plan-coverage-thumb--solo .isp-phone-coverage-map__img {
    max-height: 16rem;
}

/* One coverage block per carrier (left column on phone plans) */
.isp-phone-plan-coverage-thumb--carrier .isp-phone-coverage-map__img {
    max-height: 15rem;
}

.isp-phone-carrier-logo-wrap {
    max-width: 100%;
}

.isp-phone-carrier-logo {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.isp-phone-plan-carrier-mark {
    height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    object-position: left center;
    border-radius: 6px;
    opacity: 0.95;
}

/* Self-install */
.isp-install-step {
    position: relative;
    padding: 1.5rem 1.35rem;
    border-radius: var(--isp-radius);
    border: 1px solid var(--isp-border);
    background: linear-gradient(165deg, rgba(94, 176, 255, 0.07), rgba(0, 0, 0, 0.15));
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.isp-install-step:hover {
    border-color: rgba(94, 176, 255, 0.28);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    transform: translateY(-3px);
}

.isp-install-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 14px;
    font-family: var(--isp-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: #030508;
    background: linear-gradient(135deg, #6bb8ff, #3d8ef5);
    margin-bottom: 1rem;
    box-shadow: 0 6px 24px var(--isp-glow);
}

/* Coverage page */
.isp-coverage-hero .isp-hero__row {
    min-height: min(52vh, 560px);
    padding-top: 3rem;
    padding-bottom: 3.5rem;
}

.isp-coverage-hero__title {
    font-size: clamp(2.15rem, 5vw, 3.35rem);
    line-height: 1.08;
}

.isp-coverage-hero__lead {
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    line-height: 1.65;
    max-width: min(60rem, 96vw);
    opacity: 0.94;
}

.isp-coverage-flow {
    --isp-coverage-pad-x: clamp(1.25rem, 4vw, 3.5rem);
}

.isp-coverage-flow__container {
    max-width: min(82rem, 98vw);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--isp-coverage-pad-x);
    padding-right: var(--isp-coverage-pad-x);
}

.isp-coverage-quiz {
    padding: clamp(2rem, 5vw, 3.25rem) clamp(1.5rem, 4vw, 3.5rem);
    border-radius: var(--isp-radius-lg, 22px);
}

.isp-coverage-quiz__progress {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(159, 208, 255, 0.95);
}

.isp-coverage-quiz__heading {
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    line-height: 1.2;
}

.isp-coverage-quiz__label {
    font-size: clamp(1.1rem, 2.2vw, 1.35rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.45;
}

.isp-coverage-quiz__hint {
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.72);
}

.isp-coverage-result {
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 4vw, 3.5rem);
    border-radius: var(--isp-radius-lg, 22px);
}

.isp-coverage-result__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.14em;
}

.isp-coverage-result__name {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    line-height: 1.15;
}

.isp-coverage-result__price {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.isp-coverage-result__note {
    font-size: 1.1rem;
    opacity: 0.9;
}

.isp-coverage-result__desc {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    line-height: 1.6;
    opacity: 0.88;
}

.isp-coverage-result__hint {
    font-size: 1.05rem;
    line-height: 1.55;
    opacity: 0.8;
}

.isp-coverage-map-wrap {
    background: linear-gradient(180deg, rgba(94, 176, 255, 0.06), transparent 55%), var(--isp-bg-elevated);
    border: 1px solid var(--isp-border);
    border-radius: var(--isp-radius);
}

.isp-coverage-map-caption {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
}

.isp-coverage-details {
    padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--isp-radius-lg);
}

.isp-coverage-details summary {
    font-size: clamp(1.15rem, 2.2vw, 1.35rem);
    cursor: pointer;
}

.isp-coverage-details__body {
    font-size: 1.05rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.78);
}

.isp-coverage-nextsteps {
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--isp-radius-lg);
}

.isp-coverage-nextsteps__title {
    font-size: clamp(1.65rem, 3.2vw, 2.1rem);
}

.isp-coverage-nextsteps__lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.6;
    max-width: min(52rem, 92vw);
    opacity: 0.9;
}

.isp-coverage-us-map {
    display: block;
    max-height: min(82vh, 920px);
    object-fit: contain;
    background: rgba(0, 0, 0, 0.2);
}

.isp-quiz-option {
    display: flex;
    align-items: flex-start;
    margin: 0;
    padding: 1.05rem 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--isp-border);
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    color: #fff;
    font-size: clamp(1.02rem, 2vw, 1.15rem);
    line-height: 1.45;
}

.isp-quiz-option:hover {
    border-color: rgba(94, 176, 255, 0.35);
    background: rgba(94, 176, 255, 0.06);
}

.isp-quiz-step {
    display: none;
}

.isp-quiz-step.is-active {
    display: block;
}

.isp-coverage-summary {
    cursor: pointer;
}

.letter-spacing-wide {
    letter-spacing: 0.22em;
}

/* —— Giveaway milestone —— */
.isp-giveaway-top-banner {
    background: linear-gradient(90deg, rgba(94, 176, 255, 0.08), rgba(61, 142, 245, 0.12), rgba(94, 176, 255, 0.08));
    border-bottom: 1px solid rgba(94, 176, 255, 0.15);
}

.isp-giveaway-top-banner__text {
    color: rgba(255, 255, 255, 0.82);
}

.isp-giveaway-top-banner__accent {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 0.35rem;
    vertical-align: middle;
    background: linear-gradient(135deg, #7ec4ff, #3d8ef5);
    box-shadow: 0 0 12px rgba(94, 176, 255, 0.55);
}

.isp-giveaway-top-banner__link {
    color: var(--isp-accent, #6bb8ff);
    text-decoration: none;
    font-weight: 600;
}

.isp-giveaway-top-banner__link:hover {
    color: #9fd0ff;
    text-decoration: underline;
}

.isp-giveaway__card {
    padding: clamp(1.75rem, 4vw, 2.75rem);
    border-radius: var(--isp-radius, 20px);
    border: 1px solid rgba(94, 176, 255, 0.18);
    background: linear-gradient(155deg, rgba(94, 176, 255, 0.07), rgba(0, 0, 0, 0.35) 55%, rgba(0, 0, 0, 0.45));
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.isp-giveaway__eyebrow {
    color: rgba(94, 176, 255, 0.9);
}

.isp-giveaway__prize {
    background: linear-gradient(135deg, #e8f4ff 0%, #7ec4ff 45%, #3d8ef5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 40px rgba(94, 176, 255, 0.35);
    filter: drop-shadow(0 0 20px rgba(94, 176, 255, 0.25));
}

@supports not (background-clip: text) {
    .isp-giveaway__prize {
        color: #9fd0ff;
        background: none;
        filter: none;
    }
}

.isp-giveaway__track {
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.isp-giveaway__track--compact {
    height: 6px;
}

.isp-giveaway__fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #3d6bb8, #5eb0ff, #7ec4ff);
    box-shadow: 0 0 18px rgba(94, 176, 255, 0.35);
    transition: width 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

.isp-giveaway__rules {
    columns: 1;
}

@media (min-width: 768px) {
    .isp-giveaway__rules {
        columns: 2;
        column-gap: 2rem;
    }
}

.isp-giveaway__rules-item {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.35rem;
    break-inside: avoid;
}

.isp-giveaway__rules-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(94, 176, 255, 0.55);
}

.isp-giveaway-plans-strip {
    padding: 1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(94, 176, 255, 0.12);
    background: rgba(0, 0, 0, 0.25);
}

.isp-giveaway-plans-strip__link {
    color: var(--isp-accent, #6bb8ff);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}

.isp-giveaway-plans-strip__link:hover {
    text-decoration: underline;
}

/* —— Support FAB (plan help → email) —— */
.isp-support-fab {
    position: fixed;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 1040;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.65rem;
    pointer-events: none;
}

.isp-support-fab > * {
    pointer-events: auto;
}

.isp-support-fab__panel {
    width: min(18rem, calc(100vw - 2rem));
    padding: 1.1rem 1.15rem;
    border-radius: 16px;
    border: 1px solid rgba(94, 176, 255, 0.2);
    background: linear-gradient(165deg, rgba(20, 28, 40, 0.98), rgba(8, 12, 18, 0.98));
    backdrop-filter: blur(12px);
}

.isp-support-fab__toggle {
    border-radius: 999px;
    padding: 0.65rem 1rem 0.65rem 0.85rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    border: 1px solid rgba(94, 176, 255, 0.35);
    background: linear-gradient(145deg, rgba(61, 142, 245, 0.95), rgba(40, 100, 190, 0.95));
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.isp-support-fab__toggle:hover {
    color: #fff;
    filter: brightness(1.06);
}

.isp-support-fab__toggle:focus-visible {
    outline: 2px solid rgba(94, 176, 255, 0.8);
    outline-offset: 3px;
}

.isp-support-fab__icon {
    display: flex;
    line-height: 0;
}

@media (max-width: 480px) {
    .isp-support-fab__label {
        display: none;
    }

    .isp-support-fab__toggle {
        padding: 0.75rem;
        border-radius: 50%;
    }
}

body.isp-has-support-fab main {
    padding-bottom: 5rem;
}

/* —— Plans page v2 (two parallel options) —— */
.isp-plans-v2-hero {
    position: relative;
    min-height: min(68vh, 720px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 992px) {
    .isp-plans-v2-hero__inner {
        padding-top: 3.5rem !important;
        padding-bottom: 4rem !important;
    }
}

.isp-plans-v2-kicker {
    letter-spacing: 0.18em;
}

.isp-plans-v2-headline {
    max-width: 20ch;
    line-height: 1.08;
}

.isp-plans-v2-subhead {
    max-width: 44rem;
    font-size: clamp(1.05rem, 2.1vw, 1.28rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.isp-plans-v2-footnote {
    max-width: 40rem;
    line-height: 1.55;
}

.isp-plans-v2-cta.btn-lg {
    min-height: 3.35rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.isp-plans-v2-options {
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
    background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(94, 176, 255, 0.06), transparent 55%);
}

.isp-plans-v2-intro {
    max-width: 46rem;
    line-height: 1.65;
}

.isp-plans-v2-row {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.isp-plans-v2-card {
    border-radius: var(--isp-radius-lg, 22px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(168deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.35) 42%, rgba(6, 8, 12, 0.92) 100%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.isp-plans-v2-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.isp-plans-v2-card__media {
    position: relative;
    height: min(220px, 28vw);
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.isp-plans-v2-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.05) 0%, rgba(10, 12, 18, 0.88) 100%);
    pointer-events: none;
}

.isp-plans-v2-card__body {
    padding: clamp(1.75rem, 4vw, 2.35rem);
}

.isp-plans-v2-icon {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(94, 176, 255, 0.28);
    background: rgba(94, 176, 255, 0.08);
    color: #9fd0ff;
}

.isp-plans-v2-icon--sat {
    border-color: rgba(196, 181, 255, 0.32);
    background: rgba(124, 92, 255, 0.1);
    color: #d4c9ff;
}

.isp-plans-v2-icon svg {
    width: 1.65rem;
    height: 1.65rem;
}

.isp-plans-v2-product-line {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(159, 208, 255, 0.95);
}

.isp-plans-v2-product-line--sat {
    color: rgba(212, 201, 255, 0.95);
}

.isp-plans-v2-card__title {
    font-size: clamp(1.5rem, 3vw, 1.85rem);
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.isp-plans-v2-desc {
    font-size: 1.05rem;
    line-height: 1.55;
}

.isp-plans-v2-price {
    font-family: var(--isp-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
}

.isp-plans-v2-price-block {
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.isp-plans-v2-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.isp-plans-v2-features li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.75rem;
    font-size: 1.02rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.isp-plans-v2-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8ebfff, #4a9eef);
    box-shadow: 0 0 10px rgba(94, 176, 255, 0.35);
}

.isp-plans-v2-bestfor-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.35rem;
}

.isp-plans-v2-bestfor {
    font-size: 1.02rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
}

.isp-plans-v2-card-btn {
    min-height: 3.35rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.isp-plans-v2-compare {
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
    background: linear-gradient(180deg, rgba(94, 176, 255, 0.05) 0%, transparent 50%), var(--isp-bg);
}

.isp-plans-v2-section-title {
    letter-spacing: -0.02em;
}

.isp-plans-v2-table {
    color: #fff;
    border: 1px solid var(--isp-border) !important;
    border-radius: var(--isp-radius-lg);
    overflow: hidden;
    font-size: 1.02rem;
    --bs-table-bg: transparent;
    --bs-table-border-color: var(--isp-border);
}

.isp-plans-v2-table thead th {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: var(--isp-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    padding: 1.2rem 1.4rem;
    border-color: var(--isp-border) !important;
    vertical-align: middle;
}

.isp-plans-v2-table tbody th {
    color: #fff;
    font-weight: 600;
    width: 22%;
    min-width: 8rem;
    padding: 1.25rem 1.4rem;
    background: rgba(0, 0, 0, 0.32);
    border-color: var(--isp-border) !important;
    vertical-align: middle;
}

.isp-plans-v2-table td {
    padding: 1.25rem 1.4rem;
    border-color: var(--isp-border) !important;
    line-height: 1.55;
    vertical-align: middle;
    color: #fff;
}

.isp-plans-v2-th-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.isp-plans-v2-th-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    background: rgba(94, 176, 255, 0.12);
    color: #9fd0ff;
}

.isp-plans-v2-th-ico--sat {
    background: rgba(180, 160, 255, 0.12);
    color: #d8d0ff;
}

.isp-plans-v2-th-ico--neutral {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.isp-plans-v2-td-icon {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 0.45rem;
    opacity: 0.9;
    color: #fff;
}

@media (max-width: 767.98px) {
    .isp-plans-v2-table thead th,
    .isp-plans-v2-table tbody th,
    .isp-plans-v2-table td {
        padding: 0.9rem 1rem;
        font-size: 0.95rem;
    }

    .isp-plans-v2-th-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

.isp-plans-v2-trust {
    padding-top: clamp(2.75rem, 5vw, 4rem);
    padding-bottom: clamp(2.75rem, 5vw, 4rem);
    background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(124, 92, 255, 0.06), transparent 50%),
        radial-gradient(ellipse 70% 50% at 10% 80%, rgba(94, 176, 255, 0.05), transparent 50%);
}

.isp-plans-v2-trust-inner {
    max-width: 920px;
}

.isp-plans-v2-trust-tile {
    padding: 1.25rem 1.35rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.22);
}

.isp-plans-v2-trust-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 12px;
    background: rgba(94, 176, 255, 0.1);
    color: #9fd0ff;
}

.isp-plans-v2-trust-text {
    font-size: 1.06rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
}

.isp-plans-v2-promo {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.isp-plans-v2-promo-card {
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2.25rem);
    border-radius: var(--isp-radius-lg);
    border: 1px solid rgba(94, 176, 255, 0.2);
    background: linear-gradient(155deg, rgba(94, 176, 255, 0.09), rgba(0, 0, 0, 0.35));
    max-width: 960px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* —— Homepage connection videos (illustrative b-roll) —— */
.isp-home-videos__figure {
    margin: 0;
}

.isp-home-videos__frame {
    position: relative;
    border-radius: var(--isp-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16 / 10;
    background: #080a0e center / cover no-repeat;
    background-image: var(--hv-poster);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.isp-home-videos__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.isp-home-videos__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(4, 6, 10, 0.92) 100%);
    pointer-events: none;
}

.isp-home-videos__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.1rem 1.25rem;
    z-index: 2;
}

.isp-home-videos__caption-title {
    font-family: var(--isp-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: -0.02em;
}

@media (prefers-reduced-motion: reduce) {
    .isp-home-videos__video {
        display: none;
    }
}

/* —— Custom checkout (Stripe Payment Element) —— */
.isp-checkout-flow__container {
    max-width: min(72rem, 96vw);
}

.isp-checkout-flow__lead {
    max-width: 40rem;
}

.isp-checkout-card {
    background: linear-gradient(165deg, rgba(20, 32, 48, 0.94), rgba(8, 12, 18, 0.98));
    border: 1px solid rgba(94, 176, 255, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.isp-checkout-summary {
    background: linear-gradient(180deg, rgba(94, 176, 255, 0.06), transparent 40%), var(--isp-bg-elevated, rgba(0, 0, 0, 0.25));
}

.isp-checkout-summary__price {
    font-variant-numeric: tabular-nums;
}

.isp-payment-element {
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.isp-checkout-nacha {
    background: rgba(0, 0, 0, 0.2);
}

.isp-checkout-complete__spinner {
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid rgba(94, 176, 255, 0.2);
    border-top-color: #5eb0ff;
    border-radius: 50%;
    animation: isp-spin 0.85s linear infinite;
}

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