:root {
    --bg: #f3f3f5;
    --surface: #ffffff;
    --ink: #1b1b21;
    --muted: #696978;
    --brand: #7d21ff;
    --line: #e4e4ea;
    --ok: #3eb56f;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
}

.skip-link {
    position: absolute;
    left: 10px;
    top: -60px;
    z-index: 3000;
    padding: 10px 14px;
    border-radius: 10px;
    border: 2px solid #ffffff;
    background: #2d0ab6;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.skip-link:focus-visible {
    top: 10px;
}

.container {
    width: calc(100% - 20px);
    margin: 0 auto;
}

.top-nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 140;
}

.nav-inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid #d6c9ff;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff, #f5f0ff);
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #5b38c8;
    display: block;
    transition: transform 160ms ease, opacity 160ms ease;
}

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

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

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

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand img {
    display: block;
    height: 32px;
    width: auto;
}

.top-nav nav {
    display: none;
}

.top-nav.menu-open nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    background: linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
    border: 1px solid #d9cff8;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 14px 30px rgba(49, 34, 93, 0.22);
    z-index: 150;
    animation: navDropIn 180ms ease;
}

.top-nav.menu-open nav a {
    color: #3c2a7d;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 0;
    border-bottom: 1px solid #ece5ff;
    background: transparent;
    border-radius: 0;
    padding: 10px 2px;
}

.top-nav.menu-open nav .nav-link-active {
    color: #4f1dcf;
    font-weight: 700;
}

.top-nav.menu-open nav a:last-child {
    border-bottom: 0;
}

.top-nav.menu-open nav a:hover {
    color: #5f3ac8;
}

@media (max-width: 640px) {
    .top-nav {
        z-index: 2000;
    }

    .top-nav.menu-open nav {
        position: fixed;
        left: 10px;
        right: 10px;
        top: 74px;
        z-index: 2100;
    }

    .top-nav.menu-open nav .nav-link.nav-link-active::after {
        content: none;
    }

    .top-nav.menu-open nav .nav-link-active {
        color: #3c2a7d;
        font-weight: 600;
    }
}

.nav-link {
    position: relative;
}

.nav-link.nav-link-active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #6f43dd, #4f1dcf);
}

@keyframes navDropIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    padding: 10px 0 8px;
}

.hero-card {
    background-color: #2d0ab6;
    border-radius: 14px;
    padding: 22px;
    min-height: 210px;
    display: block;
    overflow: visible;
    position: relative;
    z-index: 20;
}

.hero-card-no-search {
    min-height: 168px;
    padding: 20px 22px;
}

.hero-card-no-search .hero-copy h1 {
    font-size: 28px;
    line-height: 1.06;
    font-weight: 600;
}

.hero-media {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-media picture,
.hero-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-media img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
}

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

.hero-copy h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 34px;
    line-height: 1.02;
    font-weight: 800;
    max-width: 320px;
}

.hero-inline-error {
    margin: 0 0 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.hero-subtext {
    margin: 0;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 16px;
    line-height: 1.35;
}

.hero-search {
    margin-top: 16px;
    width: min(100%, 700px);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-search-field {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    z-index: 30;
}

.hero-postcode {
    display: block;
    width: 100%;
    min-width: 0;
    height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c37;
    background: #fff;
}

.hero-postcode::-moz-placeholder {
    color: #7a7a8f;
}

.hero-postcode::placeholder {
    color: #7a7a8f;
}

.hero-postcode:focus {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 2px;
}

.hero-search-btn {
    min-width: 148px;
    height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 239, 255, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.88);
    color: #3f20a8;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(23, 12, 68, 0.28), 0 0 0 2px rgba(255, 255, 255, 0.16);
    transform: translateY(1px);
    cursor: pointer;
}

.hero-search-btn:hover {
    background: linear-gradient(165deg, #ffffff 0%, #f1e9ff 100%);
    border-color: #fff;
    color: #341993;
}

@media (max-width: 640px) {
    .hero-search {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
    }

    .hero-search-btn {
        min-width: 136px;
        padding: 0 18px;
        justify-self: end;
    }
}

.postcode-results {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    z-index: 2300;
    max-height: 380px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    overflow: auto;
    box-shadow: 0 12px 24px rgba(19, 19, 30, 0.12);
}

.postcode-results.is-open {
    display: block;
}

.postcode-results li + li {
    border-top: 1px solid #efeff4;
}

.postcode-results button {
    width: 100%;
    text-align: left;
    border: 0;
    background: #fff;
    color: #2f3040;
    font-size: 13px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 10px 12px;
    cursor: pointer;
}

.postcode-results button:hover {
    background: #f8f5ff;
}

.postcode-results button.is-active {
    background: #f8f5ff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-orbit {
    display: none;
}

.trusted-section {
    padding: 18px 0 16px;
    text-align: center;
    position: relative;
    z-index: 22;
    margin-top: -28px;
}

.trusted-floating-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 16px 34px rgba(19, 19, 26, 0.12);
    padding: 18px 16px;
    margin: 0 auto 18px;
    max-width: 920px;
}

.trusted-floating-kicker {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #6f43dd;
}

.trusted-floating-card h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.08;
    font-weight: 800;
    color: #262630;
}

.trusted-floating-card h3 span {
    color: #6f43dd;
}

.section-eyebrow {
    margin: 0 0 12px;
    font-size: 14px;
    letter-spacing: 0.14em;
    font-weight: 700;
    color: #7a7a8f;
}

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

.logo-grid img {
    height: 30px;
    width: auto;
    max-width: 120px;
    -o-object-fit: contain;
       object-fit: contain;
    justify-self: center;
    align-self: center;
}

.logo-grid img.provider-logo--talktalk {
    height: 15px;
    max-width: 104px;
}

.deals-section {
    padding: 18px 0 26px;
}

.featured-home-section {
    padding: 18px 0 22px;
}

.featured-home-section h2 {
    margin: 0;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.02em;
}

.home-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.home-featured-card {
    position: relative;
    background: linear-gradient(165deg, #ffffff 0%, #f8f3ff 100%);
    border: 1px solid #d8caef;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(76, 33, 176, 0.09);
}

.home-featured-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f0e7ff;
    border: 1px solid #ccb6ff;
    color: #592fc6;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-featured-brand img {
    height: 26px;
    width: auto;
    max-width: 120px;
}

.home-featured-brand strong {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.15;
    color: #272536;
}

.home-featured-metrics {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.home-featured-value {
    display: block;
    color: #17152a;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.home-featured-label {
    display: block;
    margin-top: 5px;
    color: #64657a;
    font-size: 12px;
}

.home-featured-meta {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-featured-meta span {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d8dceb;
    border-radius: 999px;
    background: #fff;
    color: #4b4d61;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
}

.home-featured-meta .home-featured-reward {
    border-color: #ebc793;
    background: #f9f3e9;
    color: #4a3518;
}

.home-featured-meta .home-featured-reward::before {
    content: '';
    width: 14px;
    height: 10px;
    border: 2px solid #f09a00;
    border-radius: 3px;
    display: inline-block;
    margin-right: 6px;
    box-sizing: border-box;
}

.home-featured-card .btn {
    margin-top: 12px;
    width: 100%;
    height: 38px;
    font-size: 12px;
}

.results-services-pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.results-service-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-height: 56px;
    border: 1px solid #d8dcef;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafe 100%);
    padding: 14px 18px;
    box-shadow: 0 1px 4px rgba(16, 16, 25, 0.05);
}

.results-service-pill--neutral {
    align-items: center;
    justify-content: center;
}

.results-service-label {
    color: #252b3f;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.results-service-value {
    color: #1f2336;
    font-size: 13px;
    line-height: 1;
}

.results-service-meta {
    color: #5f667d;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
}

.results-service-pill--superfast .results-service-label::before,
.results-service-pill--full-fibre .results-service-label::before,
.results-service-pill--gigabit .results-service-label::before,
.results-service-pill--neutral .results-service-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.results-service-pill--superfast {
    border-color: #cddbf8;
}

.results-service-pill--superfast .results-service-label::before {
    background: #2f80ed;
}

.results-service-pill--full-fibre {
    border-color: #c7ebdc;
}

.results-service-pill--full-fibre .results-service-label::before {
    background: #16a34a;
}

.results-service-pill--gigabit {
    border-color: #f6dec0;
}

.results-service-pill--gigabit .results-service-label::before {
    background: #f59e0b;
}

.results-service-pill--neutral .results-service-label::before {
    background: #8c95ad;
}

.deals-services-pills {
    margin: -2px 0 12px;
}

.deals-section h2,
.faq-section h2,
.guides-section h2 {
    margin: 0;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.02em;
}

.section-subtitle {
    margin: 10px 0 20px;
    text-align: center;
    color: var(--muted);
}

.breadcrumbs {
    margin: 2px 0 2px;
    font-size: 13px;
    color: #636a7f;
}

.breadcrumbs ol {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs a {
    color: #636a7f;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs li::after {
    content: '›';
    margin-left: 8px;
    color: #aab0c0;
}

.breadcrumbs li:last-child::after {
    content: '';
}

.deals-list {
    display: grid;
    gap: 12px;
    min-width: 0;
}

.deals-filter-toggle {
    display: inline-flex;
    justify-self: start;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    gap: 8px;
    height: 44px;
    padding: 0 16px;
}

.filter-icon {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.deals-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.deals-sort {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #505164;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 4px 8px 4px 12px;
    min-height: 44px;
}

.deals-sort select {
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    color: #2d2e37;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    padding: 0 34px 0 12px;
    min-width: 170px;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #5a5b6e 50%),
        linear-gradient(135deg, #5a5b6e 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 2px),
        calc(100% - 13px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.deals-sort select:focus {
    outline: 2px solid #6f43dd;
    outline-offset: 2px;
}

.deals-sort select:focus-visible {
    outline: 2px solid #6f43dd;
    outline-offset: 2px;
}

.deals-sort select option {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
}

.deals-layout {
    display: block;
    min-width: 0;
}

.deals-sidebar {
    display: none;
}

.deals-sidebar-close,
.deals-sidebar-overlay {
    display: none;
}

.deal-card {
    background: #fff;
    border: 1px solid #dde2ee;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(24, 24, 34, 0.06);
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.deal-provider-logo {
    height: 34px;
    width: auto;
    max-width: 120px;
    -o-object-fit: contain;
       object-fit: contain;
    margin-bottom: 10px;
}

.deal-heading {
    display: block;
    font-size: 13px;
    line-height: 1.15;
    color: #596b87;
    margin-bottom: 10px;
}

.deal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.deal-tag {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cfd6e5;
    background: #e8edf6;
    color: #5e6f8b;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 9px;
    line-height: 1;
}

.deal-col {
    padding: 0;
}

.deal-divider {
    height: 1px;
    background: #d2d8e4;
    margin: 14px 0;
}

.deal-label {
    display: block;
    color: #5f6f8a;
    font-size: 11px;
    margin-top: 4px;
}

.deal-metric {
    display: block;
    color: #020a22;
    font-size: 36px;
    line-height: 0.9;
    letter-spacing: -0.03em;
}

.deal-price-avg {
    display: block;
    color: #020a22;
    font-size: 21px;
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-align: right;
}

.deal-price-secondary {
    color: #5f6f8a;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 8px;
    text-align: right;
}

.deal-metric span,
.deal-price-avg span {
    font-size: 0.58em;
    letter-spacing: 0;
}

.deal-layout {
    display: grid;
    gap: 14px;
    min-width: 0;
}

.deal-main {
    display: grid;
    gap: 0;
    min-width: 0;
}

.deal-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: end;
}

.deal-contract {
    display: block;
    margin-top: 8px;
    color: #5f6f8a;
    font-size: 11px;
    line-height: 1.2;
}

.deal-reward-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    border-radius: 10px;
    border: 1px solid #ebc793;
    background: #f9f3e9;
    color: #402d11;
    margin-top: 10px;
    padding: 0 10px;
}

.deal-reward-banner svg {
    width: 17px;
    height: 17px;
    stroke: #f09a00;
    fill: none;
    stroke-width: 2;
}

.deal-reward-banner strong {
    font-size: 13px;
    line-height: 1;
}

.deal-actions-col {
    display: grid;
    gap: 10px;
    align-content: start;
    justify-items: stretch;
}

.deal-actions-col .btn {
    width: 100%;
    height: 34px;
    font-size: 12px;
    padding: 0 14px;
}

.deal-actions-col .btn-outline {
    background: #fff;
    color: #1f2435;
    border: 1px solid #cbd4e4;
    font-size: 11px;
    height: 36px;
}

.deal-actions-col .postcode-focus-btn {
    margin-top: 4px;
}

.deal-details-toggle {
    color: #1f2435;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
}

.deal-details-toggle:hover {
    color: #111827;
}

.deal-card-featured {
    position: relative;
    border-color: #bfa8ff;
    background: linear-gradient(180deg, #ffffff 0%, #f8f3ff 100%);
    box-shadow: 0 12px 30px rgba(83, 45, 194, 0.16);
}

.deal-card-featured::before {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    top: -1px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #7a2bff 0%, #4f1dcf 50%, #20b97b 100%);
}

.deal-featured-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f2ecff;
    border: 1px solid #d8c8ff;
}

.deal-featured-title {
    font-size: 12px;
    font-weight: 800;
    color: #311b70;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.deal-featured-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    border-radius: 999px;
    padding: 0 10px;
    font-size: 10px;
    font-weight: 800;
    color: #4f1dcf;
    border: 1px solid #bfa7ff;
    background: #ffffff;
}

.deal-card-featured .deal-provider-logo {
    height: 38px;
}

.deal-card-featured .deal-heading {
    color: #344d76;
    font-weight: 700;
}

.deal-card-featured .deal-price-avg,
.deal-card-featured .deal-metric {
    color: #0a1230;
}

.deal-card-featured .deal-actions-col .btn {
    box-shadow: 0 8px 18px rgba(74, 28, 190, 0.28);
}

.deals-gated-message {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 12px 14px;
    color: #5b5c6f;
    font-size: 13px;
    line-height: 1.4;
}

.deal-details-panel {
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid transparent;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-4px);
    transition:
        max-height 260ms ease,
        opacity 200ms ease,
        transform 260ms ease,
        margin-top 260ms ease,
        padding-top 260ms ease,
        border-color 260ms ease;
}

.deal-details-panel.is-open,
.deal-details-panel.is-closing {
    margin-top: 10px;
    padding-top: 12px;
    border-top-color: #d2d8e4;
}

.deal-details-panel.is-open {
    max-height: 480px;
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .deal-details-panel {
        transition: none;
    }
}

.deal-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.deal-details-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #4f1dcf;
    margin-bottom: 2px;
}

.deal-details-grid p {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    color: #383945;
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
}

.hero-search .hero-search-btn {
    padding: 0 22px;
    font-weight: 800;
    font-size: 15px;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
}

.btn-outline {
    background: #fff;
    color: #1f2435;
    border: 1px solid #cbd4e4;
    min-width: 116px;
    height: 36px;
    font-size: 11px;
}

.filter-group {
    margin: 0 0 14px;
}

.filter-group span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #65657a;
    margin-bottom: 7px;
}

.filter-group label {
    display: block;
    font-size: 13px;
    color: #3e3e4d;
    margin: 0 0 6px;
}

.provider-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 10px;
}

.provider-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.provider-options img {
    height: 18px;
    width: auto;
    max-width: 92px;
    -o-object-fit: contain;
       object-fit: contain;
}

.deals-sidebar .filter-group {
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid var(--line);
}

.deals-sidebar .filter-group:first-of-type {
    border-top: 0;
    padding-top: 6px;
}

.deals-sidebar .filter-group span {
    margin-bottom: 8px;
}

.deals-sidebar .filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px;
    color: #343544;
    font-size: 13px;
}

.deals-sidebar .filter-group input[type='checkbox'] {
    margin: 0;
    accent-color: #6f43dd;
}

.deals-sidebar .provider-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 46px;
    gap: 6px;
}

.deals-sidebar .provider-options label {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fbfbfd;
    padding: 0 8px;
    position: relative;
    cursor: pointer;
    height: 46px;
    width: 100%;
    justify-content: center;
}

.deals-sidebar .provider-options img {
    height: 20px;
    max-width: 110px;
    width: auto;
}

.deals-sidebar .provider-options .provider-chip--sky img {
    height: 19px;
}

.deals-sidebar .provider-options .provider-chip--bt img {
    height: 21px;
}

.deals-sidebar .provider-options .provider-chip--vodafone img {
    height: 19px;
}

.deals-sidebar .provider-options .provider-chip--talktalk img {
    height: 10px;
    max-width: 60px;
}

.deals-sidebar .provider-options .provider-chip--plusnet img {
    height: 19px;
}

.deals-sidebar .provider-options .provider-chip--now img {
    height: 18px;
}

.deals-sidebar .provider-options .provider-chip--ee img {
    height: 23px;
}

.deals-sidebar .provider-options .provider-chip--virgin img {
    height: 20px;
}

.deals-sidebar .provider-options .provider-all span {
    font-size: 12px;
    font-weight: 700;
    color: #343544;
}

.deals-sidebar .provider-options input[type='checkbox'] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    margin: 0;
}

.deals-sidebar .provider-options label:has(input[type='checkbox']:checked) {
    border-color: #6f43dd;
    background: #f4efff;
    box-shadow: inset 0 0 0 1px #6f43dd;
}

.deals-sidebar .btn.btn-primary {
    width: 100%;
    height: 40px;
    margin-top: 10px;
}

.section-cta-wrap {
    margin-top: 18px;
    text-align: center;
}

@media (max-width: 920px) {
    .deals-controls {
        flex-wrap: wrap;
    }

    .deals-sort {
        margin-left: auto;
    }

    .deals-sidebar.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .deals-sidebar {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 90vw);
        height: 100vh;
        z-index: 2200;
        background: #fff;
        border-left: 1px solid var(--line);
        padding: 16px;
        overflow-y: auto;
        box-shadow: -8px 0 24px rgba(0, 0, 0, 0.16);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 220ms ease, visibility 220ms ease;
    }

    .deals-sidebar .deals-sidebar-close {
        display: inline-flex;
        position: absolute;
        top: 12px;
        right: 12px;
        justify-content: center;
        align-items: center;
        width: 36px;
        height: 36px;
        border: 1px solid var(--line);
        border-radius: 999px;
        background: #fff;
        font-size: 20px;
        line-height: 1;
        margin: 0;
        z-index: 2;
    }

    .deals-sidebar h3 {
        padding-right: 52px;
    }

    .deals-sidebar-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 2150;
        background: rgba(17, 17, 23, 0.42);
        opacity: 0;
        visibility: hidden;
        transition: opacity 220ms ease, visibility 220ms ease;
    }

    .deals-sidebar-overlay.is-open {
        opacity: 1;
        visibility: visible;
    }

    body.filters-open {
        overflow: hidden;
    }
}

@media (min-width: 641px) {
    .top-nav nav {
        display: flex;
        gap: 22px;
    }

    .top-nav nav a {
        color: #41414f;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
    }

    .nav-toggle {
        display: none;
    }
}

@media (min-width: 641px) {
    .deal-details-panel {
        margin: 10px 0 0;
        padding: 14px 0 2px;
    }

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

.compare-section {
    margin: 16px 0 0;
    position: relative;
}

.compare-inner {
    text-align: center;
    margin-top: 14px;
}

.compare-inner h2 {
    margin: 0 0 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.compare-intro {
    margin: 0 auto;
    padding-bottom: 14px;
    max-width: 700px;
    color: #5f6377;
    font-size: 14px;
    line-height: 1.45;
}

.features-section {
    padding: 8px 0 18px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.feature-card {
    background: linear-gradient(180deg, #c718ff 0%, #7a17e1 100%);
    color: #fff;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    padding: 20px 20px 22px;
    min-height: 152px;
    box-shadow: 0 14px 28px rgba(78, 16, 173, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.feature-card h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 600;
}

.feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
}

.faq-section {
    padding: 22px 0;
}

.faq-list {
    margin: 18px auto 0;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid #dfe3ec;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(24, 24, 34, 0.04);
}

.faq-item[open] {
    border-color: #6f43dd;
    box-shadow: 0 0 0 1px rgba(111, 67, 221, 0.2), 0 6px 16px rgba(42, 25, 94, 0.08);
}

.faq-summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary h3 {
    margin: 0;
    font-size: 15px;
    line-height: 1.25;
    color: #1f2332;
    font-weight: 500;
}

.faq-arrow {
    flex: 0 0 auto;
    width: 12px;
    height: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6f43dd;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    transition: transform 180ms ease;
}

.faq-arrow::before {
    content: '↗';
}

.faq-item[open] .faq-arrow {
    transform: rotate(90deg);
}

.faq-body {
    padding: 0 20px 16px;
}

.faq-body p {
    margin: 0;
    color: #7d8396;
    font-size: 13px;
    line-height: 1.55;
}

.guides-section {
    padding: 16px 0 32px;
}

.guides-page-section {
    padding: 22px 0 18px;
}

.guides-page-section.guides-page-section-compact {
    padding-top: 0;
}

.guides-page-header {
    text-align: center;
    margin-bottom: 16px;
}

.guides-page-eyebrow {
    margin: 0 0 8px;
    color: #6732cf;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.guides-page-header h1 {
    margin: 0;
    font-size: 30px;
    line-height: 1.06;
}

.guides-page-subtitle {
    margin: 10px auto 0;
    max-width: 720px;
    color: #666a7e;
    font-size: 14px;
    line-height: 1.4;
}

.guides-page-taxonomy {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.guides-page-taxonomy li {
    display: inline-flex;
    align-items: center;
}

.guide-filter-chip {
    border: 1px solid #d6cdf2;
    border-radius: 999px;
    background: #f6f1ff;
    color: #6137c6;
    font-size: 12px;
    font-weight: 600;
    min-height: 30px;
    padding: 0 11px;
    cursor: pointer;
}

.guide-filter-chip.is-active {
    background: #6137c6;
    border-color: #6137c6;
    color: #fff;
}

.guide-filter-chip:focus-visible {
    outline: 2px solid #6f43dd;
    outline-offset: 2px;
}

.guides-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.guides-more-wrap {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.guides-more-btn {
    min-width: 160px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
}

.guide-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #d7dcec;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    min-height: 260px;
}

.guide-card:hover,
.guide-card:focus,
.guide-card:active {
    text-decoration: none;
    color: inherit;
}

.guide-card:hover {
    transform: translateY(-2px);
    border-color: #cbc2ec;
    box-shadow: 0 14px 26px rgba(24, 20, 52, 0.1);
}

.guide-thumb {
    height: 138px;
    position: relative;
    transition: transform 260ms ease;
    background:
        radial-gradient(120% 140% at 20% 20%, rgba(210, 174, 255, 0.75), rgba(128, 58, 222, 0.1) 70%),
        linear-gradient(130deg, #4e1cb3 0%, #6f2ce1 48%, #8d35ff 100%);
}

.guide-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 6, 33, 0.12) 0%, rgba(10, 6, 33, 0) 60%);
}

.guide-copy {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.guide-eyebrow {
    display: inline-flex;
    align-self: flex-start;
    border: 1px solid #d2c7f7;
    border-radius: 999px;
    background: #f4efff;
    color: #6139c8;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 8px;
}

.guide-copy h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.18;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.guide-copy p {
    margin: 0 0 auto;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.4;
}

.guide-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    color: #4f2ec3;
    font-size: 13px;
    font-weight: 700;
}

.guide-article-body {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #d7dcec;
    border-radius: 16px;
    padding: 18px 20px;
}

.guide-article-body p {
    margin: 0;
    color: #4a4e61;
    font-size: 15px;
    line-height: 1.65;
}

.guide-article-enhanced {
    max-width: 1040px;
    margin: 0 auto;
}

.guide-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    color: #778096;
    font-size: 14px;
    line-height: 1.2;
}

.guide-article-meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    border: 1px solid #dfd6f8;
    background: #f8f4ff;
    color: #6a48c8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0 10px;
}

.guide-key-takeaways {
    margin-top: 16px;
    background: #f6f2ff;
    border: 1px solid #e0d4fb;
    border-radius: 16px;
    padding: 20px 22px;
}

.guide-key-takeaways h2 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.24;
    color: #4e2ab4;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.guide-key-takeaways h2::before {
    content: '';
    width: 18px;
    height: 18px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 18h6M10 22h4M12 2a7 7 0 0 0-4 12.75c.62.45 1 1.16 1 1.93V17h6v-.32c0-.77.38-1.48 1-1.93A7 7 0 0 0 12 2z' stroke='%235f2dd3' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.guide-key-takeaways ul {
    margin: 0;
    padding-left: 18px;
}

.guide-key-takeaways li {
    margin: 0 0 8px;
    color: #42485d;
    font-size: 14px;
    line-height: 1.45;
}

.guide-key-takeaways li::marker {
    color: #5f2dd3;
}

.guide-key-takeaways li:last-child {
    margin-bottom: 0;
}

.guide-contents-card {
    margin-top: 18px;
    background: #fff;
    border: 1px solid #dce2ef;
    border-radius: 16px;
    padding: 16px 18px;
}

.guide-article-layout {
    margin-top: 0;
    display: grid;
    gap: 18px;
}

.guide-article-sidebar {
    order: 1;
}

.guide-article-main {
    order: 2;
    counter-reset: guide-section;
}

.guide-contents-card h2 {
    margin: 0;
    font-size: 18px;
    color: #1f2332;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.guide-contents-card h2::before {
    content: '';
    width: 16px;
    height: 16px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 6h13M8 12h13M8 18h13M3 6h.01M3 12h.01M3 18h.01' stroke='%235f2dd3' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.guide-contents-card ol {
    margin: 12px 0 0;
    padding-left: 22px;
}

.guide-contents-card li {
    margin: 0 0 10px;
    color: #5d647a;
    font-size: 15px;
    font-weight: 500;
}

.guide-contents-card li::marker {
    color: #5f2dd3;
    font-weight: 500;
}

.guide-contents-card li:last-child {
    margin-bottom: 0;
}

.guide-contents-card a {
    color: #5d647a;
    text-decoration: none;
    font-size: 13px;
}

.guide-contents-card a:hover {
    color: #4f2ec3;
    text-decoration: underline;
}

.guide-article-block {
    margin-top: 0;
}

.guide-article-block + .guide-article-block {
    margin-top: 26px;
}

.guide-article-block h2 {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    line-height: 1.18;
    color: #1f2435;
    font-weight: 500;
}

.guide-article-block h2::before {
    counter-increment: guide-section;
    content: counter(guide-section);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #5f2dd3;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    flex: 0 0 30px;
}

.guide-step-badge {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #5f2dd3;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.guide-article-block p {
    margin: 0 0 12px;
    color: #43495d;
    font-size: 15px;
    line-height: 1.6;
}

.guide-article-block ul {
    margin: 0 0 14px;
    padding-left: 22px;
}

.guide-article-block li {
    margin: 0 0 8px;
    color: #43495d;
    font-size: 15px;
    line-height: 1.55;
}

.guide-article-main > h2 {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    line-height: 1.18;
    color: #1f2435;
    font-weight: 500;
}

.guide-article-main > h2::before {
    counter-increment: guide-section;
    content: counter(guide-section);
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #5f2dd3;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    flex: 0 0 30px;
}

.guide-article-main > h2 + p,
.guide-article-main > h2 + ul {
    margin-top: 0;
}

.guide-article-main > h2:not(:first-child) {
    margin-top: 26px;
}

.guide-article-main > p {
    margin: 0 0 12px;
    color: #43495d;
    font-size: 15px;
    line-height: 1.6;
}

.guide-article-main > ul {
    margin: 0 0 14px;
    padding-left: 22px;
}

.guide-article-main > ul li {
    margin: 0 0 8px;
    color: #43495d;
    font-size: 15px;
    line-height: 1.55;
}

.guide-callout {
    border-left: 4px solid;
    border-radius: 10px;
    padding: 12px 14px;
}

.guide-callout p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.guide-callout-warning {
    border-left-color: #ff7a3d;
    background: #fff4ed;
}

.guide-callout-tip {
    border-left-color: #f4b538;
    background: #fff8e6;
}

.guide-callout-note {
    border-left-color: #b28af7;
    background: #f6efff;
}

@media (min-width: 921px) {
    .guide-article-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 26px;
        align-items: start;
        margin-top: 18px;
    }

    .guide-article-sidebar {
        order: 2;
        position: sticky;
        top: 92px;
        height: -moz-max-content;
        height: max-content;
    }

    .guide-article-main {
        order: 1;
    }

    .guide-article-sidebar .guide-contents-card {
        margin-top: 0;
    }

    .guide-key-takeaways h2 {
        font-size: 18px;
    }

    .guide-contents-card h2 {
        font-size: 18px;
    }

    .guide-article-block h2 {
        font-size: 20px;
    }
}

.content-page-section {
    padding: 28px 0 34px;
}

.content-page-container {
    max-width: 920px;
}

.content-page-prose {
    background: #fff;
    border: 1px solid #dce1ed;
    border-radius: 16px;
    padding: 22px;
}

.content-page-prose h1 {
    margin: 0 0 14px;
    color: #1f2332;
    font-size: 34px;
    line-height: 1.08;
}

.content-page-prose h2 {
    margin: 24px 0 10px;
    color: #1f2332;
    font-size: 23px;
    line-height: 1.16;
}

.content-page-prose p {
    margin: 0 0 12px;
    color: #4a5065;
    font-size: 15px;
    line-height: 1.7;
}

.content-page-prose ul {
    margin: 0 0 14px;
    padding-left: 20px;
    color: #4a5065;
}

.content-page-prose li {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.6;
}

.contact-notice {
    background: #f2f8ee;
    border: 1px solid #b8d8aa;
    color: #2f5a20;
    border-radius: 10px;
    padding: 10px 12px;
}

.contact-form {
    margin-top: 12px;
    display: grid;
    gap: 12px;
}

.contact-form-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
}

.contact-field {
    display: grid;
    gap: 6px;
}

.contact-field label {
    color: #2a2f41;
    font-size: 13px;
    font-weight: 700;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    border: 1px solid #cfd6e5;
    border-radius: 10px;
    background: #fff;
    color: #262b3b;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    padding: 10px 12px;
}

.contact-field textarea {
    resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: 2px solid rgba(111, 67, 221, 0.32);
    outline-offset: 0;
    border-color: #6f43dd;
}

@media (min-width: 641px) {
    .contact-form-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.locations-section {
    padding: 26px 0 24px;
    position: relative;
}

.locations-page-section {
    padding: 20px 0 16px;
}

.locations-page-section h1,
.locations-page-section h2 {
    margin: 0;
    text-align: center;
}

.locations-city-stack {
    display: grid;
    gap: 18px;
}

.locations-content-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.locations-city-content h2 {
    text-align: left;
    font-size: 20px;
    letter-spacing: 0.01em;
}

.locations-availability-strip {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border: 1px solid #dde3ef;
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 2px 8px rgba(24, 24, 34, 0.035);
}

.locations-availability-strip h2 {
    margin: 0 0 12px;
}

.location-availability-card {
    border-radius: 14px;
    padding: 18px 22px;
}

.location-availability-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    line-height: 1.15;
    margin: 0 0 14px;
}

.location-availability-title svg {
    width: 22px;
    height: 22px;
    fill: #6f43dd;
    flex: 0 0 22px;
}

.locations-cta-section .guide-article-layout {
    padding-top: 12px;
}

.locations-cta-section .guide-article-main {
    counter-reset: guide-section 5;
}

.location-availability-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.location-availability-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f7f8fc;
    border: 1px solid #dfe3ec;
    border-radius: 12px;
    padding: 8px 12px;
}

.location-availability-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border: 1px solid #cbb9fb;
    border-radius: 999px;
    color: #6f43dd;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.location-availability-value {
    color: #2e3345;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.locations-helper-line {
    margin: 12px 0 0;
    color: #656b82;
    font-size: 13px;
    line-height: 1.45;
}

.locations-city-intro {
    margin: 8px 0 0;
    color: #4b5168;
    font-size: 14px;
    line-height: 1.55;
}

.locations-provider-compare {
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid #e1e5ef;
}

.locations-provider-compare p {
    margin: 8px 0 0;
    color: #4b5168;
    font-size: 14px;
    line-height: 1.45;
}

.locations-city-faqs {
    padding: 10px 0 0;
}

.locations-city-faqs .faq-list {
    margin-top: 12px;
}

.locations-city-faqs .faq-list {
    max-width: 100%;
}

.locations-city-faqs .faq-item {
    background: #fff;
    border: 1px solid #dfe3ec;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(24, 24, 34, 0.04);
}

.locations-city-faqs .faq-item[open] {
    border-color: #6f43dd;
    box-shadow: 0 0 0 1px rgba(111, 67, 221, 0.2), 0 6px 16px rgba(42, 25, 94, 0.08);
}

.locations-city-faqs .faq-summary {
    padding: 18px 22px;
}

.locations-city-faqs .faq-summary h3 {
    font-size: 15px;
}

@media (max-width: 767px) {
    .location-availability-card {
        padding: 14px;
    }

    .location-availability-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .location-availability-pill {
        width: 100%;
        justify-content: space-between;
    }

    .location-availability-value {
        font-size: 16px;
    }
}

.locations-city-faqs .faq-body {
    padding: 0 22px 18px;
}

.locations-city-links .container {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.locations-city-links h2 {
    text-align: left;
    margin: 0 0 8px;
}

.locations-city-links .location-links {
    gap: 0;
}

.locations-city-links .location-links a {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: auto;
    padding: 12px 0;
    color: #2f3547;
    border-bottom: 1px solid #e1e5ef;
}

.locations-city-links .location-links a:hover {
    border-color: #d5dbeb;
    background: #f7f8fc;
    color: #2f3547;
    box-shadow: none;
    transform: none;
}

.locations-city-links .location-links a:hover::after {
    color: #626a83;
    transform: translateX(1px);
}

.locations-city-links .location-links li:first-child a {
    border-top: 1px solid #e1e5ef;
}

.locations-city-links .location-link-label {
    display: block;
    -webkit-line-clamp: 1;
}

@media (min-width: 921px) {
    .locations-city-links .location-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        -moz-column-gap: 24px;
             column-gap: 24px;
    }

    .locations-city-links .location-links li:first-child a {
        border-top: 0;
    }

    .locations-city-links .location-links li:nth-child(-n + 2) a {
        border-top: 1px solid #e1e5ef;
    }
}

.locations-section h2 {
    margin: 0 0 14px;
    font-size: 20px;
    text-align: center;
    letter-spacing: 0.02em;
    font-weight: 700;
}

.locations-section .container {
    background: linear-gradient(180deg, #f8f9fe 0%, #f2f4fb 100%);
    border: 1px solid #d9deec;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(24, 24, 34, 0.05);
}

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

.location-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    position: relative;
    text-decoration: none;
    color: #3d3e4f;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    border: 1px solid #d7dceb;
    border-radius: 12px;
    height: 58px;
    padding: 10px 14px;
    box-shadow: 0 2px 8px rgba(24, 24, 34, 0.045);
    transition:
        border-color 160ms ease,
        background-color 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.location-links a::before {
    content: none;
}

.location-link-label {
    min-width: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    overflow-wrap: anywhere;
}

.location-links a::after {
    content: '→';
    color: #7a7f95;
    margin-left: 8px;
    transform: translateX(0);
    font-size: 14px;
    transition: color 160ms ease, transform 160ms ease, opacity 160ms ease;
    opacity: 0.72;
    flex: 0 0 auto;
}

.location-links a:hover {
    border-color: #c8b9f3;
    background: #faf8ff;
    color: #5530c7;
    box-shadow: 0 10px 18px rgba(67, 41, 146, 0.14);
    transform: translateY(-1px);
}

.location-links a:hover::after {
    color: #5530c7;
    opacity: 1;
    transform: translateX(2px);
}

.location-links a:focus-visible {
    outline: 2px solid #6f43dd;
    outline-offset: 2px;
}

.location-links-featured {
    gap: 12px;
}

.location-links-featured a {
    height: 64px;
    padding: 12px 16px;
    overflow: hidden;
    background:
        radial-gradient(120% 130% at 0% 0%, rgba(168, 128, 255, 0.18), rgba(168, 128, 255, 0) 58%),
        linear-gradient(180deg, #ffffff 0%, #f7f4ff 100%);
    border-color: #cfc2f4;
    box-shadow: 0 10px 20px rgba(66, 35, 141, 0.12);
}

.location-links-featured a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 4px;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(180deg, #7c4bf0 0%, #5f2dd3 100%);
}

.location-links-featured .location-link-label {
    font-size: 15px;
    font-weight: 700;
    color: #2f2945;
    padding-left: 4px;
    max-width: 11ch;
}

.location-links-featured a::after {
    color: #6441cc;
    opacity: 1;
    width: 24px;
    height: 24px;
    margin-left: 0;
    border-radius: 999px;
    border: 1px solid #cdc0f5;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 13px;
    flex: 0 0 24px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: absolute;
    right: 20px;
    top: 46%;
    transform: translateY(-50%);
}

.location-links-featured a:hover {
    border-color: #b39dec;
    background:
        radial-gradient(120% 130% at 0% 0%, rgba(145, 101, 252, 0.23), rgba(145, 101, 252, 0) 58%),
        linear-gradient(180deg, #ffffff 0%, #f3eeff 100%);
    box-shadow: 0 16px 28px rgba(60, 32, 131, 0.2);
    transform: translateY(-2px);
}

.location-links-featured a:hover::after {
    color: #5530c7;
    border-color: #b8a5eb;
    background: #f9f5ff;
    transform: translateY(-50%);
}

.site-footer {
    background: #fff;
    border-top: 1px solid var(--line);
    padding: 24px 0;
}

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

.footer-grid h5 {
    margin: 0 0 8px;
    font-size: 14px;
}

.footer-accordion {
    border: 1px solid #ddd3fb;
    border-radius: 10px;
    background: linear-gradient(180deg, #f8f5ff 0%, #fff 100%);
    overflow: hidden;
}

.footer-accordion + .footer-accordion {
    margin-top: 8px;
}

.footer-accordion summary {
    list-style: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #4f2ebf;
    padding: 12px 14px;
}

.footer-accordion summary::-webkit-details-marker {
    display: none;
}

.footer-accordion summary::after {
    content: '+';
    float: right;
    color: #6a46d8;
}

.footer-accordion[open] summary::after {
    content: '−';
}

.footer-accordion-body {
    display: none;
    padding: 0 14px 8px;
}

.footer-accordion[open] .footer-accordion-body {
    display: block;
}

.footer-accordion-body a:hover {
    color: #5f3ac8;
}

.footer-brand {
    display: inline-flex;
    margin: 0 0 10px;
}

.footer-brand img {
    display: block;
    height: 28px;
    width: auto;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 10px;
}

.footer-social-label {
    color: #4a4a5b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-social-links {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
}

.footer-grid .footer-social-links a {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid #d8d9e7;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2d2f40;
    margin: 0;
    font-size: 0;
    line-height: 1;
}

.footer-grid .footer-social-links a:hover {
    border-color: #6f43dd;
    color: #6f43dd;
    background: #f6f1ff;
}

.footer-social-links svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.footer-grid p,
.footer-grid a {
    display: block;
    margin: 0 0 8px;
    color: #727285;
    text-decoration: none;
    font-size: 13px;
}

@media (min-width: 641px) {
    .location-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-accordion {
        border: 0;
        border-radius: 0;
        background: transparent;
        overflow: visible;
    }

    .footer-accordion + .footer-accordion {
        margin-top: 0;
    }

    .footer-accordion summary {
        cursor: default;
        pointer-events: none;
        padding: 0;
        margin: 0 0 8px;
        font-size: 14px;
    }

    .footer-accordion summary::after {
        display: none;
    }

    .footer-accordion-body {
        display: block !important;
        padding: 0;
    }

    .footer-social {
        margin-bottom: 10px;
    }
}

