/* Spire Hosting — static redo (matches Elementor kit colours) */
:root {
    --color-primary: #00aeef;
    --color-secondary: #034f7a;
    --color-text: #0d1b2a;
    --color-accent: #e7e247;
    --color-muted: #d4d2d5;
    --color-light: #f8f4f9;
    --color-white: #fff;
    --radius-lg: 25px;
    --radius-pill: 35px;
    --shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    --font-body: "Encode Sans", system-ui, sans-serif;
    --font-display: "Poppins", system-ui, sans-serif;
    --max: 1280px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: var(--color-secondary);
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15em;
}

a:hover {
    color: var(--color-primary);
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-text);
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.container {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

/* Header */
.top-bar {
    background: var(--color-text);
    color: var(--color-white);
    font-size: 0.85rem;
}

.top-bar a {
    color: var(--color-white);
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--color-primary);
}

.top-bar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem 1rem;
    padding: 0.35rem 0;
}

.top-bar__links {
    display: flex;
    gap: 1.25rem;
}

.header-bar {
    position: relative;
    z-index: 200;
    background: linear-gradient(90deg, rgba(0, 174, 239, 0.88), rgba(0, 174, 239, 0.88));
    box-shadow: var(--shadow);
}

.header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    display: block;
    width: 140px;
    height: auto;
}

@media (min-width: 768px) {
    .logo img {
        width: 160px;
    }
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    height: 3px;
    width: 26px;
    background: var(--color-white);
    border-radius: 2px;
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }
}

.site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
}

.site-nav.is-open {
    display: flex;
}

@media (min-width: 1024px) {
    .site-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: auto;
        flex: 1;
        justify-content: flex-end;
        gap: 0.25rem 1.5rem;
        padding-bottom: 0;
    }
}

.site-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

@media (min-width: 1024px) {
    .site-nav__list {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}

.site-nav__item {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

@media (min-width: 1024px) {
    .site-nav__item {
        border-bottom: 0;
    }
}

.site-nav__item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
}

.site-nav__item-top a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.65rem 0;
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .site-nav__item-top a {
        padding: 0.55rem 0.45rem;
        font-size: 1.02rem;
        letter-spacing: 0.03em;
    }
}

.site-nav__item-top a:hover {
    color: var(--color-text);
}

.site-nav__link-caret {
    display: none;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.9;
    transform: translateY(1px);
}

.site-nav__sub-toggle {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.site-nav__sub-toggle::after {
    content: "";
    display: block;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--color-white);
}

.site-nav__item--mega.is-open .site-nav__sub-toggle::after {
    transform: rotate(180deg);
}

@media (min-width: 1024px) {
    .site-nav__sub-toggle {
        display: none;
    }

    .site-nav__link-caret {
        display: inline-block;
    }
}

/* Mega menu (matches live Jet / Elementor columns) */
.site-nav__mega {
    display: none;
    padding: 0 0 0.75rem;
}

.site-nav__item--mega.is-open .site-nav__mega {
    display: block;
}

.site-nav__mega-inner {
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.site-nav__mega-cards {
    display: flex;
    flex-direction: column;
}

.mega-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.15rem 1rem;
    text-decoration: none;
    color: var(--color-text);
    border-bottom: 1px solid #eee;
    transition: background 0.15s;
}

.site-nav__mega-cards > .mega-card:last-child {
    border-bottom: 0;
}

.mega-card:hover,
.mega-card:focus-visible {
    background: #f8f8f8;
    color: var(--color-text);
}

.mega-card__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    margin-bottom: 0.5rem;
}

.mega-card__icon {
    max-width: 72px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.mega-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #242424;
    margin-bottom: 0.35rem;
}

.mega-card__text {
    font-size: 0.88rem;
    line-height: 1.45;
    color: #7e7e7e;
    margin-bottom: 0.65rem;
}

.mega-card__btn {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.mega-card:hover .mega-card__btn,
.mega-card:focus-visible .mega-card__btn {
    background: #000;
    color: var(--color-white);
}

@media (min-width: 1024px) {
    /*
     * Full-viewport hover bridge: mega is position:fixed under the header, so the <li>’s box is
     * only nav-height. Moving through the gap drops :hover. This ::before is on the <li> (no
     * transform), so position:fixed tracks the viewport and spans the dead zone until the panel.
     */
    .site-nav__item--mega:hover::before,
    .site-nav__item--mega:focus-within::before {
        content: "";
        position: fixed;
        left: 0;
        right: 0;
        top: calc(var(--mega-top, 7.5rem) - 2rem);
        height: 2rem;
        z-index: 299;
        pointer-events: auto;
    }

    .site-nav__item--mega:hover,
    .site-nav__item--mega:focus-within {
        z-index: 310;
    }

    .site-nav__item--mega.is-open .site-nav__mega {
        display: none;
    }

    .site-nav__item--mega:hover .site-nav__mega,
    .site-nav__item--mega:focus-within .site-nav__mega {
        display: block;
    }

    /* Fixed + viewport centering so the panel lines up with the page, not the nav label */
    .site-nav__mega {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        /* Increase desktop submenu container size by ~25% */
        width: min(calc(100vw - 2rem), 50rem);
        top: var(--mega-top, 7.5rem);
        padding-top: 0.35rem;
        z-index: 300;
        background: transparent;
        box-sizing: border-box;
        pointer-events: auto;
    }

    .site-nav__mega:has(.site-nav__mega-cards--4) {
        width: min(calc(100vw - 2rem), 60rem);
    }

    .site-nav__mega-inner {
        border-radius: 8px;
    }

    .site-nav__mega-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

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

    .site-nav__mega-cards--4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .mega-card {
        border-bottom: 0;
        border-right: 1px solid #eee;
        min-height: 140px;
        justify-content: flex-start;
        padding: 0.81rem 0.63rem 0.94rem;
    }

    .mega-card__icon-wrap {
        min-height: 50px;
        margin-bottom: 0.38rem;
    }

    .mega-card__icon {
        max-width: 45px;
        max-height: 45px;
    }

    .mega-card__title {
        font-size: 1.02rem;
        margin-bottom: 0.25rem;
    }

    .mega-card__text {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 0.56rem;
    }

    .mega-card__btn {
        padding: 0.35rem 0.81rem;
        font-size: 0.88rem;
    }

    .site-nav__mega-cards:not(.site-nav__mega-cards--4) .mega-card:nth-child(3n) {
        border-right: 0;
    }

    .site-nav__mega-cards--2 .mega-card:nth-child(2n) {
        border-right: 0;
    }

    .site-nav__mega-cards--4 .mega-card:nth-child(4n) {
        border-right: 0;
    }
}

/* Trustpilot strip under More mega (matches live Elementor row) */
.mega-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.25rem 1.5rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.mega-trust__main {
    max-width: 36rem;
}

.mega-trust__text {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
    font-weight: 500;
}

.mega-trust__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1.15rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transition: background 0.15s;
}

.mega-trust__btn:hover,
.mega-trust__btn:focus-visible {
    background: #000;
    color: var(--color-white);
}

.mega-trust__badge {
    display: block;
    line-height: 0;
}

.mega-trust__logo {
    max-width: min(250px, 100%);
    height: auto;
}

@media (min-width: 1024px) {
    .mega-trust {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 1.25rem;
        padding: 1rem 1.25rem 1.1rem;
    }

    .mega-trust__main {
        flex: 1;
        max-width: none;
        padding-right: 1rem;
    }

    .mega-trust__text {
        margin-bottom: 0.65rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .mega-trust__btn {
        padding: 0.42rem 1rem;
        font-size: 0.8rem;
    }

    .mega-trust__logo {
        max-width: min(190px, 100%);
    }
}

.site-nav__cta {
    margin-top: 0.5rem;
}

@media (min-width: 1024px) {
    .site-nav__cta {
        margin-top: 0;
        margin-left: 0.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: var(--radius-pill);
    border: 0;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: var(--shadow);
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background: #000;
    color: var(--color-white);
}

.btn--accent {
    background: var(--color-light);
    color: var(--color-text);
}

.btn--accent:hover {
    background: #000;
    color: var(--color-white);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    box-shadow: none;
}

.btn--outline-light:hover {
    background: var(--color-white);
    color: var(--color-text);
}

/* Hero */
.hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 3rem 0 4rem;
    background: var(--color-text) center / cover no-repeat;
    color: var(--color-light);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13, 27, 42, 0.45);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero__panel {
    max-width: 520px;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    background: rgba(13, 27, 42, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: var(--shadow);
}

.hero h1 {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.hero__lead {
    margin: 0 0 1.25rem;
    font-size: 1.1rem;
    color: var(--color-light);
}

.hero__ticks {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
}

.hero__ticks li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.hero__ticks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section--muted {
    background: var(--color-text);
    color: var(--color-light);
}

.section--muted a {
    color: var(--color-primary);
}

.section--muted h2,
.section--muted h3 {
    color: var(--color-light);
}

.section--light {
    background: var(--color-light);
}

.section--gradient {
    background: linear-gradient(180deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
}

.section--gradient a {
    color: var(--color-white);
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--color-primary);
}

.section--muted .section__title,
.section--gradient .section__title {
    color: var(--color-light);
}

.section__intro {
    max-width: 720px;
    margin: 0 0 2rem;
}

/* Promo strip */
.promo-strip {
    text-align: center;
    padding: 1.25rem 1rem;
    background: linear-gradient(90deg, var(--color-accent), #f5e94a);
    color: var(--color-text);
    font-weight: 700;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
}

.promo-strip code {
    background: rgba(0, 0, 0, 0.12);
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    font-family: inherit;
}

/* Cards grid */
.card-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 600px) {
    .card-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 900px) {
    .card-grid--4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow);
    text-align: center;
}

.section--muted .card {
    background: rgba(13, 27, 42, 0.5);
    backdrop-filter: blur(5px);
    color: var(--color-white);
}

.section--muted .card h3 {
    color: var(--color-white);
}

.section--muted .card p {
    color: rgba(255, 255, 255, 0.9);
}

/* “Everything you need…” cards: .section--muted a { color: primary } was overriding buttons (cyan on cyan) */
.section--muted .card h3 a {
    color: var(--color-white);
    text-decoration: none;
    text-decoration-thickness: 0;
}

.section--muted .card h3 a:hover {
    color: var(--color-primary);
}

.section--muted .card .btn {
    text-decoration: none;
    text-decoration-thickness: 0;
}

.section--muted .card .btn--primary {
    color: var(--color-white);
}

.section--muted .card .btn--primary:hover {
    color: var(--color-white);
}

.section--muted .card .btn--accent {
    color: var(--color-text);
}

.section--muted .card .btn--accent:hover {
    color: var(--color-white);
}

.section--gradient .card {
    background: rgba(13, 27, 42, 0.45);
    backdrop-filter: blur(5px);
    color: var(--color-white);
}

.section--gradient .card h3 {
    color: var(--color-white);
}

.section--gradient .card p {
    color: rgba(255, 255, 255, 0.92);
}

.section--gradient .card a {
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.section--gradient .card a:hover {
    color: var(--color-accent);
}

.section--spire-network .section__title {
    text-align: center;
}

.section--spire-network .card h3,
.section--spire-network .card p {
    text-align: center;
}

.section--spire-network .spire-network__cta {
    margin: 2rem auto 0;
    text-align: center;
}

.section--spire-network .spire-network__cta h2 {
    text-align: center;
}

.section--spire-network .spire-network__cta p {
    margin-bottom: 0;
    text-align: center;
}

.section--spire-network .spire-network__cta .btn {
    margin-inline: auto;
}

.section--spire-network .spire-network__cta .btn--primary {
    color: var(--color-white);
}

.section--spire-network .spire-network__cta .btn--primary:hover {
    color: var(--color-white);
}

.section--support-options .section__title {
    text-align: center;
}

.section--support-options .section__intro {
    margin: 0 auto 2rem;
    text-align: center;
}

.apart-tiles {
    display: grid;
    gap: 1.5rem;
}

.apart-tiles:first-of-type {
    margin-top: 0;
}

.apart-tiles + .apart-tiles {
    margin-top: 1.5rem;
}

.apart-tiles__tagline {
    margin: -0.25rem auto 1rem;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
}

.apart-tiles__footnote {
    margin: 1.25rem 0 0;
    color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
    .apart-tiles--row3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .apart-tiles--row-mixed {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.card--apart-tile {
    padding: 0;
    overflow: hidden;
    text-align: center;
}

.card--apart-tile .card__body {
    padding: 1.25rem 1.35rem 1.5rem;
}

.card--apart-tile .card__body p:last-child {
    margin-bottom: 0;
}

.card--apart-tile .card__banner {
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
    display: block;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card img,
.card .card__icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
}

.card p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: #555;
}

/* Homepage: “More about our features” flip cards */
.section--flip-features .section__title {
    margin-bottom: 0.25rem;
}

.flip-feature-grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .flip-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .flip-feature-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.flip-feature-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.flip-card {
    perspective: 1100px;
    min-height: 17.5rem;
}

.flip-card__inner {
    position: relative;
    min-height: 17.5rem;
    transform-style: preserve-3d;
    transition: transform 0.65s cubic-bezier(0.4, 0.2, 0.2, 1);
    border-radius: var(--radius-lg);
    cursor: pointer;
    outline: none;
}

.flip-card__inner:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
}

.flip-card__face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.flip-card__face--front {
    background: linear-gradient(155deg, var(--color-primary) 0%, #0095d4 45%, #0288c4 100%);
    color: var(--color-white);
}

.flip-card__face--back {
    background: linear-gradient(155deg, var(--color-secondary) 0%, #023a58 100%);
    color: rgba(255, 255, 255, 0.96);
}

.flip-card--right .flip-card__face--back {
    transform: rotateY(180deg);
}

.flip-card--left .flip-card__face--back {
    transform: rotateY(-180deg);
}

.flip-card--right:hover .flip-card__inner,
.flip-card--right:focus-within .flip-card__inner,
.flip-card--right.is-flipped .flip-card__inner {
    transform: rotateY(180deg);
}

.flip-card--left:hover .flip-card__inner,
.flip-card--left:focus-within .flip-card__inner,
.flip-card--left.is-flipped .flip-card__inner {
    transform: rotateY(-180deg);
}

.flip-card__icon {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
    margin-bottom: 0.65rem;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}

.flip-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: inherit;
    line-height: 1.25;
}

.flip-card__text {
    font-size: 0.92rem;
    line-height: 1.55;
}

.flip-card__text p {
    margin: 0 0 0.65rem;
    color: inherit;
}

.flip-card__text p:last-child {
    margin-bottom: 0;
}

.flip-card__face--back .flip-card__text {
    font-size: 0.88rem;
    line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
    .flip-card__inner {
        transition: none;
    }
}

/* Feature rows */
.feature-block {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .feature-block {
        grid-template-columns: 1fr 1fr;
    }

    .feature-block--reverse .feature-block__text {
        order: 2;
    }
}

.feature-block h2 {
    font-family: var(--font-display);
    color: var(--color-primary);
}

.section--muted .feature-block h2 {
    color: var(--color-light);
}

/* Homepage: combined “Simple. Intuitive…” + “Leave the competition…” (live copy & media) */
.section--dual-features {
    background: var(--color-white);
}

.dual-features {
    display: flex;
    flex-direction: column;
    gap: clamp(2.5rem, 5vw, 3.5rem);
}

.dual-features__row {
    display: grid;
    gap: clamp(1.75rem, 4vw, 2.75rem);
    align-items: center;
}

@media (min-width: 768px) {
    .dual-features__row {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

.dual-features__eyebrow {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-primary);
}

.dual-features__eyebrow em {
    font-style: italic;
    font-weight: 600;
}

.dual-features__title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3.2vw, 2.1rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

.dual-features__prose {
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

.dual-features__prose p {
    margin: 0 0 0.85rem;
}

.dual-features__prose p:last-child {
    margin-bottom: 0;
}

.dual-features__cta {
    margin-top: 0.25rem;
}

.dual-features__text {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

@media (min-width: 768px) {
    .dual-features__cta {
        align-self: flex-end;
    }
}

.dual-features__media {
    position: relative;
}

.dual-features__img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.dual-features__img--dashboard {
    border: 1px solid rgba(13, 27, 42, 0.08);
}

.dual-features__img--speed {
    max-width: 520px;
    margin-inline: auto;
}

@media (min-width: 768px) {
    .dual-features__row--speed .dual-features__img--speed {
        margin-inline: 0;
        margin-inline-end: auto;
    }
}

.dual-features__divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(13, 27, 42, 0.12) 15%,
        rgba(13, 27, 42, 0.12) 85%,
        transparent
    );
}

@media (max-width: 767px) {
    .dual-features__text {
        text-align: center;
        align-items: center;
    }
}

/* Homepage sustainability spotlight */
.section--sustainability {
    position: relative;
    background-color: #07263b;
    background-image:
        linear-gradient(118deg, rgba(7, 24, 38, 0.88) 8%, rgba(6, 45, 70, 0.7) 52%, rgba(0, 106, 151, 0.48) 100%),
        var(--sustainability-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--color-white);
}

.section--sustainability .section__title {
    color: var(--color-white);
}

.section--sustainability .section__intro {
    max-width: none;
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.95);
}

.section--sustainability .section__intro:last-of-type {
    margin-bottom: 1.4rem;
}

.section--sustainability a:not(.btn) {
    color: #8ee8ff;
}

.section--sustainability a:not(.btn):hover {
    color: var(--color-accent);
}

.sustainability-panel {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 920px) {
    .sustainability-panel {
        grid-template-columns: minmax(0, 1.5fr) minmax(240px, 1fr);
        gap: 2rem;
    }
}

.sustainability-panel__content {
    max-width: 44rem;
}

.sustainability-panel__badge-wrap {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.sustainability-panel__badge-link {
    display: block;
    line-height: 0;
}

.sustainability-panel__badge {
    display: block;
    width: 100%;
    max-width: 350px;
    margin-inline: auto;
    height: auto;
}

@media (max-width: 919px) {
    .sustainability-panel {
        text-align: center;
    }

    .sustainability-panel__content {
        max-width: none;
    }
}

/* Domain CTA */
.domain-cta {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow);
}

.domain-cta h2 {
    margin-top: 0;
    color: var(--color-white);
}

.domain-cta p {
    max-width: 60ch;
    margin-inline: auto;
}

.domain-anchor-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.domain-benefits-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .domain-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 960px) {
    .domain-benefits-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1260px) {
    .domain-benefits-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.anchor-target {
    scroll-margin-top: 8.5rem;
}

.tld-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(20, 35, 72, 0.16);
    border-radius: 12px;
    background: var(--color-white);
}

.tld-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.tld-table th,
.tld-table td {
    padding: 0.72rem 0.85rem;
    border-bottom: 1px solid rgba(20, 35, 72, 0.1);
}

.tld-table th {
    text-align: left;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #223458;
    background: rgba(41, 72, 250, 0.08);
}

.tld-table__numeric {
    text-align: right;
    white-space: nowrap;
}

.tld-table-meta {
    margin: 0.75rem 0 0;
    color: #516081;
    font-size: 0.9rem;
}

.domain-prices {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    margin: 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.domain-cta__search {
    width: min(100%, 720px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    align-items: center;
}

.domain-cta__search--homepage {
    width: min(100%, 780px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 0.95rem;
}

.domain-cta__search-input {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 10px;
    padding: 0.7rem 0.95rem;
    font: inherit;
    color: var(--color-text);
}

.domain-cta__search-input::placeholder {
    color: #5a6a75;
}

.domain-cta__search-input:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 1px;
}

.domain-cta__input-wrap {
    width: min(100%, 620px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    border-radius: 14px;
    padding: 0.38rem;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(232, 242, 255, 0.92));
    box-shadow:
        0 20px 36px rgba(6, 20, 66, 0.32),
        inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.domain-cta__input-wrap:focus-within {
    transform: translateY(-1px);
    box-shadow:
        0 24px 44px rgba(6, 20, 66, 0.38),
        0 0 0 3px rgba(57, 247, 151, 0.38);
}

.domain-cta__input-prefix {
    padding-inline: 0.82rem 0.55rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: #3f4e69;
    border-right: 1px solid rgba(67, 86, 126, 0.28);
    line-height: 1;
}

.domain-cta__search--homepage .domain-cta__search-input {
    border-radius: 10px;
    min-height: 56px;
    font-size: 1.12rem;
    background: transparent;
    box-shadow: none;
    padding-inline: 0.9rem;
}

.domain-cta__search--homepage .domain-cta__search-input:focus-visible {
    outline: none;
}

.domain-cta__search--homepage .btn {
    min-width: min(100%, 280px);
    justify-content: center;
    font-size: 1rem;
}

.domain-cta__helper {
    margin: 0.65rem auto 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 620px) {
    .domain-cta__search {
        grid-template-columns: 1fr;
    }

    .domain-cta__search .btn {
        width: 100%;
    }

    .domain-cta--homepage {
        padding: 1.55rem 1rem 1.25rem;
    }

    .domain-cta__input-wrap {
        width: 100%;
    }

    .domain-cta__search--homepage .domain-cta__search-input {
        font-size: 1rem;
        min-height: 52px;
    }
}

/* Trust / CTA banner */
.cta-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.12), rgba(3, 79, 122, 0.15));
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-display);
    margin-top: 0;
}

/* Page header (inner pages) */
.page-header {
    --page-header-gradient: linear-gradient(130deg, #022a44 0%, #034f7a 48%, #00aeef 100%);
    --page-header-radial-one: rgba(255, 255, 255, 0.2);
    --page-header-radial-two: rgba(231, 226, 71, 0.28);
    --page-header-shape-one: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04));
    --page-header-shape-two: linear-gradient(135deg, rgba(231, 226, 71, 0.35), rgba(231, 226, 71, 0.04));
    --page-header-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(1.9rem, 4vw, 3rem) 0;
    background-image:
        linear-gradient(145deg, rgba(2, 24, 38, 0.64) 0%, rgba(3, 59, 91, 0.52) 52%, rgba(0, 90, 135, 0.52) 100%),
        radial-gradient(circle at 12% 18%, var(--page-header-radial-one) 0%, rgba(255, 255, 255, 0) 38%),
        radial-gradient(circle at 86% 8%, var(--page-header-radial-two) 0%, rgba(231, 226, 71, 0) 32%),
        var(--page-header-image),
        var(--page-header-gradient);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--color-white);
}

.page-header::before,
.page-header::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.page-header::before {
    width: clamp(8rem, 20vw, 14rem);
    height: clamp(8rem, 20vw, 14rem);
    top: -4rem;
    right: -3.5rem;
    border-radius: 50%;
    background: var(--page-header-shape-one);
    filter: blur(2px);
}

.page-header::after {
    width: clamp(6.5rem, 17vw, 11rem);
    height: clamp(6.5rem, 17vw, 11rem);
    bottom: -3rem;
    left: -2.25rem;
    border-radius: 50%;
    background: var(--page-header-shape-two);
}

.page-header .container {
    position: relative;
    z-index: 1;
    max-width: 48rem;
    margin-inline: auto;
    padding: clamp(0.9rem, 2.2vw, 1.2rem) clamp(0.9rem, 2.1vw, 1.2rem);
    border-radius: 14px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 24px rgba(2, 28, 43, 0.24);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.page-header h1 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3.1vw, 2.1rem);
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-wrap: balance;
}

.page-header p {
    margin: 0.6rem 0 0;
    max-width: 62ch;
    font-size: clamp(0.94rem, 1.7vw, 1.02rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.94);
}

.page-header--hosting {
    --page-header-gradient: linear-gradient(128deg, #02263d 0%, #006d9b 50%, #00aeef 100%);
}

.page-header--domains {
    --page-header-gradient: linear-gradient(128deg, #01324f 0%, #035f8d 44%, #2cb7f3 100%);
    --page-header-radial-two: rgba(255, 255, 255, 0.18);
    --page-header-shape-two: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.06));
}

.page-header--support {
    --page-header-gradient: linear-gradient(128deg, #03314a 0%, #0c6f97 46%, #36c6e9 100%);
    --page-header-radial-two: rgba(160, 246, 255, 0.26);
}

.page-header--company {
    --page-header-gradient: linear-gradient(130deg, #102231 0%, #1e5168 52%, #4cb4df 100%);
    --page-header-radial-one: rgba(255, 255, 255, 0.16);
}

.page-header--blog {
    --page-header-gradient: linear-gradient(128deg, #1a2b38 0%, #2a526b 48%, #1f9dd9 100%);
    --page-header-radial-two: rgba(231, 226, 71, 0.22);
}

.page-header--blog-post {
    --page-header-gradient: linear-gradient(130deg, #10273a 0%, #1f4660 55%, #237db0 100%);
    --page-header-radial-one: rgba(255, 255, 255, 0.16);
    --page-header-radial-two: rgba(183, 228, 249, 0.25);
}

.page-header--blog-post .container {
    max-width: 1180px;
    border-radius: 16px;
    padding: clamp(1rem, 2.2vw, 1.35rem) clamp(1rem, 2.4vw, 1.5rem);
}

.page-header--blog-post h1 {
    font-size: clamp(1.6rem, 3.4vw, 2.4rem);
    line-height: 1.2;
}

.page-header--blog-post .blog-post-head__crumb {
    margin: 0 0 0.55rem;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.page-header--blog-post .blog-post-head__crumb a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.page-header--blog-post .blog-post-head__crumb a:hover,
.page-header--blog-post .blog-post-head__crumb a:focus-visible {
    color: #fff;
}

.page-header--blog-post .blog-post-hero__excerpt {
    margin: 0.65rem 0 0;
    max-width: 78ch;
    font-size: clamp(0.98rem, 1.9vw, 1.08rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.96);
}

.page-header--blog-post .blog-post-meta {
    color: rgba(255, 255, 255, 0.93);
    margin-top: 0.75rem;
}

.page-header--legal {
    --page-header-gradient: linear-gradient(128deg, #132a3a 0%, #1d4c63 52%, #2f89b9 100%);
    --page-header-radial-one: rgba(255, 255, 255, 0.12);
    --page-header-radial-two: rgba(195, 225, 239, 0.24);
    --page-header-shape-two: linear-gradient(135deg, rgba(195, 225, 239, 0.3), rgba(195, 225, 239, 0.06));
}

/* Page-specific live-style header images */
body.page-web-hosting .page-header {
    --page-header-image: url("../media/uploads/2023/07/spire-hosting-fast-uk-cpanel-web-hosting-litespeed-chesterfield-derbyshire.png");
}

body.page-agency-web-hosting .page-header {
    --page-header-image: url("../media/uploads/2023/07/spire-hosting-fast-web-design-agency-freelancer-hosting-uk.png");
}

body.page-reseller-hosting .page-header {
    --page-header-image: url("../media/uploads/2023/07/spire-hosting-fast-cpanel-reseller-hosting-chesterfield-derbyshire-uk-2.png");
}

body.page-business-web-hosting .page-header {
    --page-header-image: url("../media/uploads/2023/07/spire-hosting-pci-compliant-business-web-hosting-chesterfield-derbyshire-uk.png");
}

body.page-vps-servers .page-header {
    --page-header-image: url("../media/uploads/2023/07/spire-hosting-fast-carbon-neutral-vps-web-hosting-cpanel-derbyshire-uk.jpg");
}

body.page-office365 .page-header {
    --page-header-image: url("../media/uploads/2023/07/spire-hosting-microsoft-365-subscription-cheap-uk.png");
}

body.page-domain-names .page-header,
body.page-domain-search .page-header {
    --page-header-image: url("../media/uploads/2023/07/spire-hosting-domain-names-nominet-com-uk-couk-net-org-registrar-derbyshire-1.jpg");
}

body.page-free-charity-web-hosting .page-header {
    --page-header-image: url("../media/uploads/2023/07/spire-hosting-sharing-image.jpg");
}

body.page-about-spire-hosting .page-header {
    --page-header-image: url("../media/uploads/2023/07/spire-hosting-web-hosting-chesterfield-derbyshire-uk.jpg");
}

body.page-support-centre .page-header,
body.page-contact .page-header,
body.page-blog .page-header,
body.page-terms-conditions .page-header {
    --page-header-image: url("../media/uploads/2023/07/spire-hosting-sharing-image.jpg");
}

/* Prose */
.prose {
    max-width: 720px;
}

.prose h2 {
    font-family: var(--font-display);
    color: var(--color-primary);
    margin-top: 2rem;
}

.prose ul {
    padding-left: 1.25rem;
}

/* Web hosting highlights section */
.section--hosting-highlights {
    background:
        radial-gradient(circle at 10% 8%, rgba(0, 174, 239, 0.12), rgba(0, 174, 239, 0) 45%),
        radial-gradient(circle at 88% 92%, rgba(3, 79, 122, 0.12), rgba(3, 79, 122, 0) 44%),
        #fff;
}

.hosting-highlights {
    max-width: 860px;
    margin: 0 auto;
}

.hosting-highlights__lead {
    margin: 0 0 1.2rem;
    font-size: 1.1rem;
    line-height: 1.72;
    color: #233446;
}

.hosting-highlights__panel {
    border: 1px solid rgba(0, 174, 239, 0.25);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 255, 0.98));
    padding: clamp(1.1rem, 2.1vw, 1.6rem);
    box-shadow: 0 12px 28px rgba(8, 24, 44, 0.1);
}

.hosting-highlights__panel h2 {
    margin: 0 0 0.9rem;
    font-family: var(--font-display);
    color: var(--color-secondary);
}

.hosting-highlights__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.hosting-highlights__list li {
    position: relative;
    margin: 0;
    padding: 0.6rem 0.8rem 0.6rem 2.25rem;
    border-radius: 12px;
    background: rgba(0, 174, 239, 0.08);
    color: #1e2f40;
    line-height: 1.55;
}

.hosting-highlights__list li::before {
    content: "✓";
    position: absolute;
    left: 0.85rem;
    top: 0.62rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.hosting-highlights__offer {
    margin: 1rem 0 0;
    color: #1f3141;
    font-size: 1.02rem;
}

.hosting-highlights__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .hosting-highlights__actions .btn {
        width: 100%;
    }
}

/* About + support imported section blocks */
.split-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .split-grid--2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: stretch;
    }
}

.info-panel {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow);
}

.info-panel--glass {
    background: rgba(13, 27, 42, 0.42);
    color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 14px 32px rgba(5, 18, 31, 0.24);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.info-panel--glass .section__title {
    color: var(--color-white);
}

.info-panel--glass a:not(.btn) {
    color: #9de9ff;
}

.info-panel--glass a:not(.btn):hover {
    color: var(--color-accent);
}

.icon-check-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}

.icon-check-list li {
    position: relative;
    padding-left: 1.5rem;
}

.icon-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.team-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 740px) {
    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.team-card {
    padding: 1.35rem;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: var(--shadow);
    text-align: center;
}

.team-card img {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 0.85rem;
    box-shadow: 0 8px 18px rgba(6, 16, 30, 0.18);
}

.team-card h3 {
    margin: 0;
}

.team-card__role {
    margin: 0.2rem 0 0.75rem;
    font-size: 0.9rem;
    color: #4f5d6a;
}

.team-card p:last-child {
    margin-bottom: 0;
}

.support-hub-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 700px) {
    .support-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1060px) {
    .support-hub-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.support-hub-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.4rem 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid rgba(13, 27, 42, 0.1);
    box-shadow: 0 10px 24px rgba(8, 24, 44, 0.09);
}

.support-hub-card h3 {
    margin: 0;
    color: var(--color-secondary);
}

.support-hub-card p {
    margin: 0 0 0.35rem;
}

.support-hub-card__icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

/* Contact */
.contact-layout {
    display: grid;
    gap: 2rem;
}

.contact-layout--forms-only {
    width: min(100%, 1120px);
    margin-inline: auto;
}

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

    .contact-layout--forms-only {
        grid-template-columns: 1fr;
    }
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--color-muted);
    border-radius: 10px;
    font: inherit;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 500px) {
    .form-row--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.form-msg {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.form-msg--ok {
    background: #d4edda;
    color: #155724;
}

.form-msg--err {
    background: #f8d7da;
    color: #721c24;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.tabs {
    border: 1px solid var(--color-muted);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.tabs__heads {
    display: flex;
    border-bottom: 1px solid var(--color-muted);
}

.tabs__heads button {
    flex: 1;
    padding: 0.85rem 1rem;
    border: 0;
    background: var(--color-light);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.tabs__heads button[aria-selected="true"] {
    background: var(--color-primary);
    color: var(--color-white);
}

.tabs__panel {
    padding: 1.25rem;
    display: none;
}

.tabs__panel.is-active {
    display: block;
}

.terms-note {
    margin: 0 0 1rem;
}

.terms-tabs .tabs__heads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0;
    border-bottom: 1px solid var(--color-muted);
}

.terms-tabs .tabs__heads button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
    min-height: 3.15rem;
    border-right: 1px solid var(--color-muted);
    border-bottom: 1px solid var(--color-muted);
    padding: 0.75rem 0.95rem;
}

.terms-tabs .tabs__heads button[aria-selected="true"] .terms-tabs__icon {
    opacity: 1;
}

.terms-tabs__icon {
    width: 0.95rem;
    height: 0.95rem;
    display: inline-flex;
    flex: 0 0 auto;
    opacity: 0.85;
}

.terms-tabs__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.terms-tabs .tabs__panel {
    max-height: none;
    padding: 1.35rem 1.5rem 1.35rem 1.9rem;
}

@media (max-width: 767px) {
    .terms-tabs .tabs__heads {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .terms-tabs .tabs__panel {
        padding: 1.1rem 1rem 1.1rem 1.35rem;
    }
}

/* Blog cards */
.blog-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.15rem;
    grid-template-columns: 1fr;
}

@media (min-width: 720px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.blog-grid__item {
    min-width: 0;
}

.blog-card {
    height: 100%;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid rgba(13, 27, 42, 0.1);
    box-shadow: 0 10px 24px rgba(8, 24, 44, 0.08);
    overflow: hidden;
}

.blog-card__link {
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
    background: #e9f0f6;
}

.blog-card__body {
    padding: 1rem 1rem 1.1rem;
    display: grid;
    gap: 0.45rem;
}

.blog-card__title {
    margin: 0;
    color: var(--color-secondary);
    font-family: var(--font-display);
    font-size: 1.08rem;
    line-height: 1.3;
}

.blog-card__date {
    font-size: 0.83rem;
    color: #5b6772;
}

.blog-card__excerpt {
    margin: 0;
    color: #26323d;
    line-height: 1.45;
}

.blog-card__link:hover .blog-card__title,
.blog-card__link:focus-visible .blog-card__title {
    color: var(--color-primary);
}

.blog-card__link:hover .blog-card__image,
.blog-card__link:focus-visible .blog-card__image {
    transform: scale(1.03);
}

.blog-card__image {
    transition: transform 180ms ease;
}

.blog-post {
    max-width: 980px;
    margin: 0 auto;
}

.blog-post-shell {
    padding-top: 1.2rem;
    padding-bottom: 1.4rem;
}

.blog-post-shell__container {
    max-width: 1180px;
}

.blog-post-layout {
    display: grid;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 1060px) {
    .blog-post-layout {
        grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr);
        gap: 1.8rem;
    }
}

.blog-post-head__crumb {
    margin: 0 0 0.45rem;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.blog-post-head__crumb a {
    text-decoration: none;
    color: var(--color-primary);
}

.blog-post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.8rem;
    color: #4f5f6c;
    font-size: 0.92rem;
}

.blog-post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-post-meta span:not(:last-child)::after {
    content: "|";
    margin-left: 0.45rem;
    opacity: 0.8;
}

.blog-post__image {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 32px rgba(8, 24, 44, 0.13);
}

.blog-post__content {
    margin: 0 auto 0;
    background: var(--color-white);
    padding: 1.4rem 1.45rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 24px rgba(8, 24, 44, 0.08);
    line-height: 1.62;
}

.blog-post__content h2,
.blog-post__content h3 {
    color: var(--color-secondary);
    margin-top: 1.65rem;
    margin-bottom: 0.55rem;
    line-height: 1.3;
}

.blog-post__content p {
    margin-top: 0;
    margin-bottom: 1.05rem;
}

.blog-post__content a {
    font-weight: 600;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.blog-post--single .blog-post__content ul,
.blog-post--single .blog-post__content ol {
    padding-left: 1.2rem;
}

.blog-post--single .blog-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.blog-post__content blockquote {
    margin: 1.2rem 0;
    border-left: 4px solid var(--color-primary);
    padding: 0.7rem 0 0.7rem 1rem;
    color: #344555;
    background: rgba(0, 109, 155, 0.06);
}

.blog-post__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.1rem 0;
    display: block;
    overflow-x: auto;
}

.blog-post__content th,
.blog-post__content td {
    border: 1px solid rgba(13, 27, 42, 0.18);
    padding: 0.5rem 0.65rem;
    text-align: left;
}

.blog-post__content p:last-child {
    margin-bottom: 0;
}

.blog-post-sidebar {
    display: grid;
    gap: 1rem;
}

@media (min-width: 1060px) {
    .blog-post-sidebar {
        position: sticky;
        top: 1rem;
    }
}

.blog-post-sidebar__box {
    background: var(--color-white);
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: 0 8px 22px rgba(8, 24, 44, 0.08);
}

.blog-post-sidebar__box h2 {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
    color: var(--color-secondary);
}

.blog-post-sidebar__item {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 0.65rem;
    align-items: start;
    padding: 0.6rem 0;
    border-top: 1px solid rgba(13, 27, 42, 0.08);
}

.blog-post-sidebar__item:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.blog-post-sidebar__thumb {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.blog-post-sidebar__thumb img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    display: block;
}

.blog-post-sidebar__body h3 {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.35;
}

.blog-post-sidebar__body h3 a {
    color: #1d3345;
    text-decoration: none;
}

.blog-post-sidebar__body h3 a:hover,
.blog-post-sidebar__body h3 a:focus-visible {
    color: var(--color-primary);
}

.blog-post-sidebar__body time {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    color: #5f6b77;
}

.blog-post-sidebar__actions {
    margin: 0.85rem 0 0;
}

.blog-post-sidebar__box--cta p {
    margin: 0 0 0.9rem;
    color: #415364;
}

.section__kicker {
    display: inline-block;
    margin: 0 0 0.55rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

/* Reseller discovery centre */
.discovery-hero {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 900px) {
    .discovery-hero {
        grid-template-columns: 1.35fr 1fr;
        align-items: stretch;
    }
}

.discovery-hero__content h2 {
    margin-top: 0;
}

.discovery-hero__kicker {
    margin: 0 0 0.45rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.discovery-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1rem;
}

.discovery-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.42rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(17, 65, 95, 0.2);
    background: #fff;
    color: #11314f;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
}

.discovery-chip:hover,
.discovery-chip:focus-visible {
    border-color: rgba(31, 157, 217, 0.45);
    color: var(--color-primary);
}

.discovery-hero__meta {
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(150deg, #10354e, #1a4f71);
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 14px 32px rgba(7, 22, 37, 0.16);
}

.discovery-hero__meta h3 {
    margin-top: 0;
    color: #fff;
}

.discovery-hero__meta ul {
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

.discovery-hero__meta li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.discovery-hero__meta li strong {
    color: #b6efff;
}

.discovery-hero__meta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

.discovery-feature {
    background: linear-gradient(135deg, #0e2d42 0%, #1f5676 52%, #2b7eb0 100%);
    border-radius: var(--radius-xl);
    color: #fff;
    padding: clamp(1.1rem, 2.4vw, 1.7rem);
    box-shadow: 0 16px 40px rgba(9, 25, 41, 0.24);
}

.discovery-feature__label {
    display: inline-block;
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.86);
}

.discovery-feature h2 {
    margin-top: 0;
    color: #fff;
}

.discovery-feature p {
    color: rgba(255, 255, 255, 0.94);
}

.discovery-feature .btn {
    margin-top: 0.25rem;
}

.discovery-feature__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.8rem 0 0.3rem;
}

.discovery-feature__meta span,
.discovery-feature__meta time {
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    padding: 0.3rem 0.65rem;
}

.discovery-category-nav {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 700px) {
    .discovery-category-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1060px) {
    .discovery-category-nav {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.discovery-category-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
    padding: 1.25rem 1rem 1.15rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(13, 27, 42, 0.12);
    background: var(--color-white);
    box-shadow: 0 10px 24px rgba(8, 24, 44, 0.09);
    text-decoration: none;
    transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}

.discovery-category-nav-card:hover,
.discovery-category-nav-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(8, 24, 44, 0.14);
    border-color: rgba(31, 157, 217, 0.45);
}

.discovery-category-nav-card__count {
    margin: 0;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #516579;
    font-weight: 700;
}

.discovery-category-nav-card h3 {
    margin: 0.1rem 0 0.1rem;
    color: var(--color-secondary);
}

.discovery-category-nav-card p {
    margin: 0;
    color: #475b6c;
}

.discovery-category-section {
    margin-top: 2rem;
}

.discovery-category-section:first-of-type {
    margin-top: 2.2rem;
}

.discovery-category-section__head {
    margin: 0 0 1rem;
}

.discovery-category-section__head h3 {
    margin: 0;
}

.discovery-category-section__head p {
    margin: 0.35rem 0 0;
}

.discovery-post-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 760px) {
    .discovery-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.discovery-post-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border: 1px solid rgba(13, 27, 42, 0.12);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: 0 10px 26px rgba(11, 26, 42, 0.08);
    padding: 1.1rem 1.1rem 1.2rem;
}

.discovery-post-card__tag {
    margin: 0;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 0.24rem 0.58rem;
    border-radius: 999px;
    background: rgba(31, 157, 217, 0.14);
    color: #0f4f73;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.discovery-post-card h3,
.discovery-post-card h4 {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.3;
}

.discovery-post-card h3 a,
.discovery-post-card h4 a {
    text-decoration: none;
}

.discovery-post-card h3 a:hover,
.discovery-post-card h3 a:focus-visible,
.discovery-post-card h4 a:hover,
.discovery-post-card h4 a:focus-visible {
    text-decoration: underline;
}

.discovery-post-card p {
    margin: 0;
}

.discovery-post-card__meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
    color: #5a6978;
    font-size: 0.84rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(13, 27, 42, 0.1);
}

.discovery-post-card__link {
    margin-top: 0.2rem;
    font-weight: 700;
    text-decoration: none;
}

.discovery-post-card__link:hover,
.discovery-post-card__link:focus-visible {
    text-decoration: underline;
}

.discovery-resource-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 760px) {
    .discovery-resource-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.discovery-resource-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(17, 45, 67, 0.12);
    background: var(--color-white);
    box-shadow: 0 8px 20px rgba(13, 31, 48, 0.08);
    padding: 1.1rem 1rem 1.2rem;
}

.discovery-resource-card h3 {
    margin-top: 0;
    margin-bottom: 0.55rem;
}

.discovery-resource-card p {
    margin-top: 0;
    margin-bottom: 1rem;
}

/* Blog list */
.post-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-list li {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--color-muted);
}

.post-list a {
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
}

.post-list time {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

/* FAQ blocks */
.faq-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.5rem;
}

.faq-item {
    border: 1px solid var(--color-muted);
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: 0 6px 18px rgba(12, 24, 46, 0.06);
    padding: 0.9rem 1rem;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.faq-item summary::after {
    content: "+";
    color: var(--color-primary);
    font-size: 1.3rem;
    line-height: 1;
    flex: 0 0 auto;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 0.8rem 0 0;
}

.faq-drawer__tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 520;
    border: 0;
    border-radius: 12px 0 0 12px;
    padding: 0.9rem 0.55rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: background 0.2s, transform 0.2s;
}

.faq-drawer__tab:hover,
.faq-drawer__tab:focus-visible,
.faq-drawer__tab[aria-expanded="true"] {
    background: var(--color-secondary);
}

.faq-drawer {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 530;
    width: min(440px, calc(100vw - 1rem));
    height: 100dvh;
    background: var(--color-white);
    box-shadow: -10px 0 32px rgba(10, 24, 44, 0.22);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(13, 27, 42, 0.12);
}

.faq-drawer.is-open {
    transform: translateX(0);
}

.faq-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem 0.8rem;
    border-bottom: 1px solid rgba(13, 27, 42, 0.12);
    background: linear-gradient(140deg, rgba(0, 174, 239, 0.08), rgba(3, 79, 122, 0.08));
}

.faq-drawer__head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--color-secondary);
}

.faq-drawer__close {
    border: 0;
    background: transparent;
    color: var(--color-secondary);
    font-size: 2rem;
    line-height: 1;
    padding: 0 0.2rem;
    cursor: pointer;
}

.faq-list--drawer {
    margin-top: 0;
    padding: 1rem;
    overflow-y: auto;
}

.faq-drawer__backdrop {
    position: fixed;
    inset: 0;
    z-index: 525;
    background: rgba(13, 27, 42, 0.45);
}

body.faq-drawer-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .faq-drawer__tab {
        top: auto;
        bottom: 1rem;
        right: 1rem;
        transform: none;
        writing-mode: horizontal-tb;
        border-radius: 999px;
        padding: 0.7rem 1rem;
    }

    .faq-drawer {
        width: min(440px, calc(100vw - 0.5rem));
    }
}

/* Homepage blog grid */
.home-blog-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
}

.home-blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-muted);
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: 0 6px 18px rgba(12, 24, 46, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    overflow: hidden;
}

.home-blog-card__media {
    display: block;
    background: #f4f7fb;
}

.home-blog-card__image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.home-blog-card__title {
    margin: 0 1.25rem;
    font-size: 1.08rem;
    line-height: 1.35;
}

.home-blog-card__title a {
    text-decoration: none;
    color: var(--color-secondary);
}

.home-blog-card__title a:hover,
.home-blog-card__title a:focus-visible {
    color: var(--color-primary);
}

.home-blog-card__date {
    font-size: 0.85rem;
    color: #666;
    margin: 0 1.25rem;
}

.home-blog-card__excerpt {
    margin: 0 1.25rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.home-blog-card__link {
    margin-top: auto;
    padding: 0 1.25rem 1.25rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-primary);
}

.home-blog-card__link:hover,
.home-blog-card__link:focus-visible {
    color: var(--color-secondary);
}

@media (min-width: 720px) {
    .home-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .home-blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Pricing tables (Elementor-style) */
.pricing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 2rem;
}

@media (min-width: 700px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        align-items: stretch;
    }

    .pricing-grid--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.price-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--color-white);
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
}

.price-card--featured {
    border-color: var(--color-primary);
    transform: scale(1.02);
    box-shadow: 0 8px 28px rgba(0, 174, 239, 0.25);
}

@media (max-width: 1099px) {
    .price-card--featured {
        transform: none;
    }
}

.price-card__head {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 1.25rem 1rem 1rem;
    text-align: center;
}

.price-card__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: var(--color-primary);
}

.price-card__sub {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
}

.price-card__price {
    text-align: center;
    padding: 1.25rem 1rem 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1;
}

.price-card__currency {
    font-size: 1.35rem;
    vertical-align: top;
    margin-right: 0.1rem;
}

.price-card__int {
    font-size: 2.75rem;
}

.price-card__frac {
    font-size: 1.35rem;
}

.price-card__period {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
    margin-top: 0.35rem;
}

.price-card__features {
    list-style: none;
    margin: 0;
    padding: 0.75rem 1.1rem 1rem;
    flex: 1;
}

.price-card__features li {
    position: relative;
    padding: 0.4rem 0 0.4rem 1.6rem;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
    color: #333;
}

.price-card__features li:last-child {
    border-bottom: 0;
}

.price-card__tick {
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.price-card__foot {
    padding: 0 1rem 1.25rem;
    margin-top: auto;
}

.price-card__btn {
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border-radius: var(--radius-pill);
    background: var(--color-accent);
    color: var(--color-text);
    box-shadow: var(--shadow);
    transition: background 0.2s, color 0.2s;
}

.price-card__btn:hover {
    background: #000;
    color: var(--color-white);
}

.section--pricing {
    background: var(--color-light);
}

.section--pricing .section__title {
    color: var(--color-secondary);
}

.pricing-footnote {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #555;
}

/* Hosting order wizard */
.order-wizard-hero .section__title {
    color: var(--color-light);
}

.order-wizard-hero .section__intro {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 0;
}

.order-wizard {
    display: grid;
    gap: 1.75rem;
}

@media (min-width: 1100px) {
    .order-wizard {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        align-items: start;
    }
}

.order-wizard__questions {
    display: grid;
    gap: 1rem;
}

.wizard-card {
    border: 1px solid #e5edf7;
    border-radius: var(--radius-lg);
    background: #f8fbff;
    padding: 1.1rem;
}

.wizard-card h2 {
    margin: 0 0 0.8rem;
    color: var(--color-secondary);
    font-size: 1.05rem;
}

.wizard-tile-grid {
    display: grid;
    gap: 0.6rem;
    grid-template-columns: 1fr;
}

@media (min-width: 680px) {
    .wizard-tile-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.wizard-tile {
    border: 1px solid #d4e4f7;
    border-radius: 12px;
    padding: 0.75rem 0.9rem;
    background: var(--color-white);
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.wizard-tile:hover {
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.wizard-tile.is-selected {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.order-wizard__results {
    border: 1px solid #e3eaf4;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    box-shadow: 0 6px 26px rgba(13, 27, 42, 0.07);
    padding: 1.25rem;
}

.order-wizard__results .section__title {
    color: var(--color-secondary);
    margin-bottom: 0.45rem;
}

.wizard-result-copy {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #44556b;
}

.order-wizard__results .pricing-grid {
    margin-top: 0;
}

.order-wizard__results .pricing-footnote {
    margin-bottom: 0;
}

/* VPS catalog */
.section--vps-highlights {
    background:
        radial-gradient(circle at 86% 10%, rgba(0, 174, 239, 0.12), rgba(0, 174, 239, 0) 42%),
        radial-gradient(circle at 14% 88%, rgba(3, 79, 122, 0.12), rgba(3, 79, 122, 0) 44%),
        #fff;
}

.vps-highlights {
    max-width: 860px;
    margin: 0 auto;
}

.vps-highlights__lead {
    margin: 0 0 1.2rem;
    font-size: 1.1rem;
    line-height: 1.72;
    color: #223446;
}

.vps-highlights__panel {
    border: 1px solid rgba(3, 79, 122, 0.24);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 252, 0.98));
    padding: clamp(1.1rem, 2.1vw, 1.6rem);
    box-shadow: 0 12px 28px rgba(8, 24, 44, 0.1);
}

.vps-highlights__panel h2 {
    margin: 0 0 0.9rem;
    font-family: var(--font-display);
    color: var(--color-secondary);
}

.vps-highlights__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.vps-highlights__list li {
    position: relative;
    margin: 0;
    padding: 0.6rem 0.8rem 0.6rem 2.25rem;
    border-radius: 12px;
    background: rgba(3, 79, 122, 0.08);
    color: #1d2f40;
    line-height: 1.55;
}

.vps-highlights__list li::before {
    content: "✓";
    position: absolute;
    left: 0.85rem;
    top: 0.62rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.vps-highlights__assist {
    margin: 1rem 0 0;
    color: #1f3141;
    font-size: 1.01rem;
}

.vps-highlights__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .vps-highlights__actions .btn {
        width: 100%;
    }
}

.os-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 620px) {
    .os-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 980px) {
    .os-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.os-card {
    text-align: center;
    border-radius: 14px;
    border: 1px solid rgba(3, 79, 122, 0.14);
    background: #fff;
    box-shadow: 0 8px 22px rgba(8, 24, 44, 0.08);
    padding: 1rem 0.95rem 1.1rem;
}

.os-card__logo {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.7rem;
    display: block;
}

.os-card h3 {
    margin: 0 0 0.45rem;
    color: var(--color-secondary);
    font-family: var(--font-display);
    font-size: 1.06rem;
}

.os-card p {
    margin: 0;
    color: #324559;
    font-size: 0.91rem;
    line-height: 1.5;
}

.vps-card-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin: 2rem 0;
}

@media (min-width: 768px) {
    .vps-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.vps-card {
    position: relative;
    padding: 1.35rem 1.25rem;
    border-radius: 14px;
    border: 1px solid #e7edf5;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
}

.vps-card--featured {
    border-color: var(--color-primary);
    box-shadow: 0 8px 28px rgba(0, 174, 239, 0.18);
    transform: translateY(-4px);
}

@media (max-width: 767px) {
    .vps-card--featured {
        transform: none;
    }
}

.vps-card__badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-secondary);
    background: #e0f4fc;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.vps-card--featured .vps-card__badge {
    background: var(--color-primary);
    color: var(--color-white);
}

.vps-card__name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.5rem;
    color: var(--color-text);
}

.vps-card__price {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.vps-card__price small {
    font-size: 0.8rem;
    font-weight: 500;
    color: #64748b;
}

.vps-card__features {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    flex: 1;
}

.vps-card__features li {
    padding: 0.4rem 0;
    border-bottom: 1px dashed #eef2f7;
    font-size: 0.9rem;
}

.vps-card__features li:last-child {
    border-bottom: 0;
}

.vps-card__cta {
    display: block;
    text-align: center;
    padding: 0.7rem 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 10px;
    background: #0f172a;
    color: #fff !important;
    border: 1px solid #0f172a;
}

.vps-card__cta:hover {
    background: #1f2937;
}

.vps-card--featured .vps-card__cta {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.vps-card--featured .vps-card__cta:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.vps-table-wrap {
    border: 1px solid #e7edf5;
    border-radius: 12px;
    overflow: auto;
    background: var(--color-white);
    margin-top: 1rem;
}

.vps-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.vps-table th,
.vps-table td {
    padding: 0.65rem 0.85rem;
    border-bottom: 1px solid #eef2f7;
    text-align: left;
    font-size: 0.9rem;
}

.vps-table th {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    background: #f8fafc;
}

.vps-table tbody tr:hover td {
    background: #fbfdff;
}

.vps-table__highlight td {
    background: #f0f9ff;
}

.vps-table__muted {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.15rem;
}

.vps-table__order {
    display: inline-block;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: #111827;
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none !important;
    white-space: nowrap;
}

.vps-table__order:hover {
    background: #1f2937;
    color: #fff !important;
}

.vps-catalog-note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    background: var(--color-text);
}

.site-footer__main {
    background: var(--color-text);
    color: var(--color-light);
    padding: 2rem 0 1rem;
}

.site-footer__main a {
    color: var(--color-light);
    text-decoration: none;
}

.site-footer__main a:hover {
    color: var(--color-primary);
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    .footer-grid {
        grid-template-columns: 1.2fr repeat(3, 1fr);
    }
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    margin: 0 0 0.75rem;
    color: var(--color-white);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-brand__contact {
    margin: 1rem 0 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-social-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
}

.social-icons a svg {
    display: block;
}

.social-icons a:hover {
    background: var(--color-primary);
    color: var(--color-text);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.footer-badges img {
    filter: brightness(1.05);
}

.site-footer__legal {
    background: #0a1520;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
    padding: 1rem 0;
}

.site-footer__legal p {
    margin: 0;
}

.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

/* Homepage hero slider (live-style: video + GIF + overlays) */
.home-slider-wrap {
    position: relative;
    background: var(--color-text);
}

.home-slider {
    position: relative;
    overflow: hidden;
    outline: none;
    min-height: min(88vh, 640px);
}

.home-slider:focus-visible {
    box-shadow: inset 0 0 0 3px var(--color-accent);
}

.home-slider__slides {
    position: relative;
    min-height: min(88vh, 640px);
}

.home-slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.85s ease, visibility 0.85s;
    z-index: 0;
}

.home-slider__slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.home-slider--reduced .home-slider__slide {
    transition-duration: 0.01ms;
}

.home-slider__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.home-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: multiply;
    opacity: 0.92;
}

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

.home-slider__scrim {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        105deg,
        rgba(13, 27, 42, 0.82) 0%,
        rgba(13, 27, 42, 0.45) 42%,
        rgba(13, 27, 42, 0.2) 100%
    );
}

/* Darken toward copy when GIF strip is on the left */
.home-slider__slide--visual-left .home-slider__scrim {
    background: linear-gradient(
        275deg,
        rgba(13, 27, 42, 0.22) 0%,
        rgba(13, 27, 42, 0.5) 48%,
        rgba(13, 27, 42, 0.84) 100%
    );
}

.home-slider__layout {
    position: relative;
    z-index: 3;
    display: grid;
    align-items: stretch;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: min(88vh, 640px);
    height: min(88vh, 640px);
    column-gap: clamp(1.25rem, 3vw, 2.5rem);
    row-gap: 0;
}

.home-slider__layout--visual-right {
    grid-template-columns: minmax(0, 1fr) minmax(260px, min(42vw, 560px));
}

.home-slider__layout--visual-left {
    grid-template-columns: minmax(260px, min(42vw, 560px)) minmax(0, 1fr);
}

.home-slider__layout--visual-left .home-slider__visual {
    order: 1;
}

.home-slider__layout--visual-left .home-slider__copy-col {
    order: 2;
}

.home-slider__copy-col {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-block: clamp(2.5rem, 7vw, 5rem);
    padding-inline: clamp(1.25rem, 4vw, 2.75rem);
}

.home-slider__copy-col .container {
    width: min(100%, 32rem);
    flex: 0 1 auto;
}

.home-slider__copy {
    color: var(--color-white);
    max-width: 32rem;
}

.home-slider__layout--visual-left .home-slider__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    margin-inline-start: auto;
}

.home-slider__layout--visual-left .home-slider__title,
.home-slider__layout--visual-left .home-slider__footnote {
    width: 100%;
    text-align: right;
}

.home-slider__layout--visual-left .home-slider__price-block {
    justify-content: flex-end;
}

.home-slider__layout--visual-left .home-slider__price-lead {
    text-align: right;
}

.home-slider__layout--visual-left .home-slider__price-ring,
.home-slider__layout--visual-left .home-slider__logo {
    margin-inline-start: auto;
    margin-inline-end: 0;
}

.home-slider__title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.12;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
    color: var(--color-white);
}

.home-slider__price-block {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.65rem;
    margin-bottom: 1.25rem;
}

.home-slider__price-lead {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.95;
}

.home-slider__price-main {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 700;
    line-height: 1;
    color: var(--color-light);
}

.home-slider__price-suffix {
    font-size: 1rem;
    opacity: 0.9;
}

.home-slider__price-ring {
    width: clamp(9rem, 22vw, 11rem);
    height: clamp(9rem, 22vw, 11rem);
    margin: 0 0 1.25rem;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.home-slider__price-ring-inner {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.75rem;
    font-weight: 700;
    font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    line-height: 1.2;
    color: var(--color-white);
}

.home-slider__price-ring-l2 {
    font-size: 0.95em;
    opacity: 0.95;
}

.home-slider__logo {
    margin: 0.5rem 0 1rem;
    max-width: 220px;
}

.home-slider__logo img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.home-slider__footnote {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.88;
}

.home-slider__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    padding: 0.85rem 1.35rem;
    border-radius: var(--radius-lg);
    background: var(--color-light);
    color: var(--color-text);
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.home-slider__cta:hover {
    background: var(--color-white);
    color: var(--color-text);
    transform: translateY(-2px);
}

.home-slider__cta-icon {
    font-size: 1.15em;
    line-height: 1;
}

.home-slider__visual {
    position: relative;
    z-index: 0;
    isolation: isolate;
    min-height: min(88vh, 640px);
    align-self: stretch;
    margin: 0;
    overflow: visible;
    /* --slider-strip-bg set inline per slide to match each GIF canvas (see home-slider.php) */
    --slider-strip-bg: #ffffff;
}

/* Full-height strip; angled edge faces the copy column; GIF inset */
.home-slider__gif-link {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--slider-strip-bg);
    outline: none;
    transition: filter 0.28s ease, box-shadow 0.28s ease;
}

/* Strip on the right: slant on the left side of the panel */
.home-slider__layout--visual-right .home-slider__gif-link {
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
    -webkit-clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
    box-shadow: -18px 0 44px rgba(0, 0, 0, 0.38);
    padding: clamp(1.25rem, 3.5vh, 2.75rem) clamp(0.85rem, 2.5vw, 1.5rem) clamp(1.25rem, 3.5vh, 2.75rem)
        clamp(1.75rem, 5vw, 3rem);
}

.home-slider__layout--visual-right .home-slider__gif-link:hover,
.home-slider__layout--visual-right .home-slider__gif-link:focus-visible {
    filter: brightness(1.07);
    box-shadow: -22px 0 52px rgba(0, 0, 0, 0.45);
}

/* Strip on the left: mirrored slant + shadow */
.home-slider__layout--visual-left .home-slider__gif-link {
    clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 86% 100%, 0 100%);
    box-shadow: 18px 0 44px rgba(0, 0, 0, 0.38);
    padding: clamp(1.25rem, 3.5vh, 2.75rem) clamp(1.75rem, 5vw, 3rem) clamp(1.25rem, 3.5vh, 2.75rem)
        clamp(0.85rem, 2.5vw, 1.5rem);
}

.home-slider__layout--visual-left .home-slider__gif-link:hover,
.home-slider__layout--visual-left .home-slider__gif-link:focus-visible {
    filter: brightness(1.07);
    box-shadow: 22px 0 52px rgba(0, 0, 0, 0.45);
}

.home-slider__gif {
    position: relative;
    z-index: 1;
    width: auto;
    height: auto;
    max-width: min(360px, 68%);
    max-height: min(400px, 58vh);
    object-fit: contain;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
    .home-slider__layout--visual-right .home-slider__gif-link:hover,
    .home-slider__layout--visual-right .home-slider__gif-link:focus-visible,
    .home-slider__layout--visual-left .home-slider__gif-link:hover,
    .home-slider__layout--visual-left .home-slider__gif-link:focus-visible {
        filter: none;
    }
}

.home-slider__controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(0.5rem, 2vw, 1.25rem);
}

.home-slider__arrow {
    pointer-events: auto;
    width: 2.75rem;
    height: 2.75rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
}

.home-slider__arrow:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: scale(1.05);
}

.home-slider__arrow:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.home-slider__dots {
    position: absolute;
    left: 50%;
    bottom: clamp(1rem, 3vw, 1.75rem);
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 0.5rem;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    background: rgba(13, 27, 42, 0.45);
    backdrop-filter: blur(4px);
}

.home-slider__dot {
    width: 0.55rem;
    height: 0.55rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.home-slider__dot.is-active {
    background: var(--color-white);
    transform: scale(1.25);
}

.home-slider__dot:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .home-slider__layout {
        grid-template-columns: 1fr;
        column-gap: 0;
        text-align: center;
        min-height: 0;
        height: auto;
        padding-bottom: 3.75rem;
    }

    .home-slider__layout--visual-left .home-slider__copy-col,
    .home-slider__layout--visual-left .home-slider__visual {
        order: unset;
    }

    .home-slider__copy-col {
        padding-block: 1.75rem 1rem;
        padding-inline: clamp(1.25rem, 4vw, 2rem);
    }

    .home-slider__copy {
        max-width: none;
        text-align: center;
        margin-inline: auto;
        display: block;
        align-items: unset;
    }

    .home-slider__layout--visual-left .home-slider__title,
    .home-slider__layout--visual-left .home-slider__footnote {
        text-align: center;
    }

    .home-slider__price-block {
        justify-content: center;
    }

    .home-slider__price-lead {
        width: auto;
        text-align: center;
    }

    .home-slider__price-ring {
        margin-inline: auto;
    }

    .home-slider__logo {
        margin-inline: auto;
    }

    .home-slider__footnote {
        text-align: center;
    }

    .home-slider__visual {
        min-height: clamp(232px, 58vw, 380px);
        width: 100%;
        max-width: none;
        margin: 0;
    }

    .home-slider__gif-link {
        position: relative;
        inset: auto;
        min-height: clamp(232px, 58vw, 380px);
        clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
        -webkit-clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 94%);
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
        padding: clamp(1rem, 3vw, 1.5rem) clamp(0.75rem, 3vw, 1.25rem);
    }

    .home-slider__gif {
        max-width: min(300px, 72%);
        max-height: min(280px, 42vw);
    }

    .home-slider,
    .home-slider__slides {
        min-height: min(78vh, 560px);
    }
}

@media (max-width: 520px) {
    .home-slider__gif-link {
        clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
        -webkit-clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    }

    .home-slider__controls {
        padding: 0;
    }

    .home-slider__arrow {
        width: 2.35rem;
        height: 2.35rem;
        font-size: 1.4rem;
    }
}
