/* Home-page hero: broadband switch style */
.hero-home {
    position: relative;
    isolation: isolate;
    min-height: clamp(620px, 78vh, 780px);
    display: grid;
    align-items: center;
    padding: clamp(56px, 7vw, 88px) 0 clamp(48px, 6vw, 72px);
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(90deg, rgba(255, 45, 125, 0.10), transparent 35%),
        radial-gradient(circle at 80% 28%, rgba(184, 255, 61, 0.13), transparent 28%),
        radial-gradient(circle at 72% 45%, rgba(255, 255, 255, 0.09), transparent 18%),
        linear-gradient(118deg, #271036 0%, #3a1246 43%, #120416 100%);
}

.hero-home::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.10;
    mask-image: linear-gradient(90deg, #000 0%, transparent 72%);
}

.hero-switch__glow {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    filter: blur(2px);
}

.hero-switch__glow--pink {
    width: 620px;
    height: 620px;
    right: -220px;
    top: -130px;
    background: radial-gradient(circle, rgba(255, 45, 125, 0.34), transparent 64%);
}

.hero-switch__glow--lime {
    width: 420px;
    height: 420px;
    left: 38%;
    bottom: -210px;
    background: radial-gradient(circle, rgba(184, 255, 61, 0.24), transparent 64%);
}

.hero-switch__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: center;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-switch__copy h1 {
    max-width: 860px;
    color: #ffffff;
    font-size: clamp(3rem, 6.5vw, 6.4rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.hero-switch__copy h1 span {
    display: block;
    font-weight: 950;
}

.hero-switch__copy h1 em {
    color: var(--uc-lime);
    font-style: normal;
    text-shadow: 0 0 32px rgba(184, 255, 61, 0.22);
}

.hero-lead {
    margin-top: 22px;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.91);
    font-size: clamp(1.05rem, 1.5vw, 1.34rem);
    font-weight: 700;
    line-height: 1.45;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 26px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.hero-proof li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 900;
}

.hero-proof span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 3px solid rgba(184, 255, 61, 0.86);
    border-radius: 999px;
    color: var(--uc-lime);
    box-shadow: 0 0 24px rgba(184, 255, 61, 0.18);
}

.hero-postcode {
    width: min(100%, 650px);
    margin-top: 34px;
    padding: 6px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 22px 65px rgba(0, 0, 0, 0.28);
    align-items: center;
    gap: 0 8px;
}

.hero-postcode input {
    min-height: 48px;
    height: 48px;
    padding: 0 18px;
    color: #140516;
    background: #ffffff;
    border: 0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: none;
}

.hero-postcode input::placeholder {
    color: rgba(20, 5, 22, 0.42);
}

.hero-postcode input:focus {
    border-color: transparent;
    box-shadow: none;
}

.hero-postcode button {
    min-width: 136px;
    min-height: 48px;
    height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--uc-pink), var(--uc-pink-strong));
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(255, 45, 125, 0.30);
}

.hero-postcode .checker-result {
    color: #ffffff;
    grid-column: 1 / -1;
}

.hero-postcode .checker-result:empty {
    display: none;
    min-height: 0;
    margin: 0;
    padding: 0;
}

.hero-postcode .checker-result:not(:empty) {
    display: block;
    min-height: auto;
    margin-top: 8px;
}

.hero-postcode .result-loading,
.hero-postcode .result-error,
.hero-postcode .result-success {
    margin: 8px 2px 2px;
    text-align: left;
}

.hero-postcode .result-loading {
    color: #140516;
    background: rgba(20, 5, 22, 0.08);
}

.hero-postcode .result-success {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(184, 255, 61, 0.22), rgba(255, 45, 125, 0.12));
    border-color: rgba(184, 255, 61, 0.55);
}

.hero-postcode .result-success ul {
    color: rgba(255, 255, 255, 0.86);
}

.hero-switch__visual {
    position: relative;
    min-height: 410px;
    display: grid;
    place-items: center;
}

.switch-label {
    position: absolute;
    top: 20px;
    left: 11%;
    z-index: 3;
    padding: 10px 20px;
    border-radius: 999px;
    color: #351041;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
    font-size: clamp(1rem, 2vw, 1.55rem);
    font-weight: 950;
    letter-spacing: -0.04em;
}

.switch-device {
    position: relative;
    width: min(100%, 560px);
    height: 212px;
    margin-top: 42px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 62% 30%, rgba(255, 255, 255, 0.24), transparent 22%),
        linear-gradient(135deg, #2df0ae 0%, #21b79c 46%, #187e88 100%);
    border: 10px solid rgba(255, 255, 255, 0.84);
    box-shadow:
        0 34px 75px rgba(0, 0, 0, 0.36),
        inset 0 2px 18px rgba(255, 255, 255, 0.28);
    transform: rotate(-4deg);
}

.switch-device::before {
    content: "";
    position: absolute;
    inset: -40px -56px;
    z-index: -1;
    background:
        conic-gradient(from 72deg, transparent 0 12%, rgba(255,255,255,0.16) 13%, transparent 16% 30%, rgba(255,255,255,0.13) 31%, transparent 34% 55%, rgba(184,255,61,0.10) 56%, transparent 60% 100%);
    filter: blur(1px);
    opacity: 0.78;
}

.switch-knob {
    position: absolute;
    left: 12px;
    top: 50%;
    display: grid;
    place-items: center;
    width: 188px;
    height: 188px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(145deg, #18d993, #0a8f75);
    border: 8px solid rgba(255, 255, 255, 0.78);
    box-shadow: 18px 0 28px rgba(5, 8, 19, 0.14), inset 0 12px 24px rgba(255, 255, 255, 0.16);
    transform: translateY(-50%);
}

.switch-knob span {
    font-size: 4.25rem;
    font-weight: 950;
    letter-spacing: -0.08em;
    transform: rotate(4deg);
}

.switch-face {
    position: absolute;
    right: 76px;
    top: 50%;
    width: 168px;
    height: 126px;
    transform: translateY(-50%);
}

.switch-eye {
    position: absolute;
    top: 24px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: inset -9px -8px 0 rgba(5, 8, 19, 0.08);
}

.switch-eye::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 12px;
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #050813;
}

.switch-eye--left { left: 22px; }
.switch-eye--right { right: 22px; }

.switch-smile {
    position: absolute;
    left: 50%;
    bottom: 16px;
    width: 88px;
    height: 46px;
    border-bottom: 12px solid #4c1a5f;
    border-radius: 0 0 80px 80px;
    transform: translateX(-50%);
    filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.12));
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 34px;
    color: #ffffff;
    font-weight: 950;
    font-size: 1.05rem;
}

.hero-rating__star {
    color: var(--uc-lime);
    font-size: 2rem;
    line-height: 1;
    text-shadow: 0 0 24px rgba(184, 255, 61, 0.35);
}

.hero-rating strong {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    letter-spacing: -0.04em;
}

.hero-rating span:not(.hero-rating__star) {
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(184, 255, 61, 0.18);
    border: 1px solid rgba(184, 255, 61, 0.24);
    color: var(--uc-lime);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}


/* Supplier / logo strip directly below the hero */
.supplier-logo-strip {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    padding: 18px 0;
    background:
        linear-gradient(90deg, rgba(255, 45, 125, 0.18), rgba(184, 255, 61, 0.08)),
        rgba(5, 8, 19, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.supplier-logo-strip__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    align-items: center;
}

.supplier-logo-strip__heading span {
    display: block;
    color: var(--uc-lime);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.supplier-logo-strip__heading strong {
    display: block;
    margin-top: 4px;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

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

.supplier-logo {
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 10px 12px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.88rem;
    font-weight: 950;
    text-align: center;
    letter-spacing: -0.02em;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.supplier-logo:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.105);
    border-color: rgba(255, 45, 125, 0.55);
}

.supplier-logo--service {
    box-shadow: inset 0 0 0 1px rgba(255, 45, 125, 0.12);
}

.supplier-logo--network {
    box-shadow: inset 0 0 0 1px rgba(184, 255, 61, 0.12);
}

.supplier-logo--platform {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.10);
}

@media (max-width: 1080px) {
    .hero-switch__inner {
        grid-template-columns: 1fr;
    }

    .hero-switch__visual {
        min-height: 330px;
        max-width: 680px;
        margin-inline: auto;
    }

    .supplier-logo-strip__inner {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .supplier-logo-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .hero-home {
        min-height: auto;
        padding-top: 44px;
    }

    .hero-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }

    .hero-switch__copy h1 {
        font-size: clamp(2.45rem, 14vw, 4rem);
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-postcode {
        grid-template-columns: 1fr;
        padding: 6px;
        border-radius: 16px;
        gap: 8px;
    }

    .hero-postcode input,
    .hero-postcode button {
        min-height: 48px;
        height: 48px;
    }

    .hero-postcode button {
        width: 100%;
    }

    .supplier-logo-strip {
        padding: 16px 0;
    }

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

    .supplier-logo {
        min-height: 52px;
        border-radius: 14px;
        font-size: 0.82rem;
    }

    .hero-switch__visual {
        min-height: 250px;
        place-items: start center;
    }

    .switch-label {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 8px;
        font-size: 1rem;
    }

    .switch-device {
        width: min(100%, 420px);
        height: 156px;
        border-width: 7px;
        margin-top: 0;
    }

    .switch-knob {
        width: 138px;
        height: 138px;
        border-width: 6px;
    }

    .switch-knob span {
        font-size: 3.05rem;
    }

    .switch-face {
        right: 42px;
        width: 128px;
        height: 100px;
    }

    .switch-eye {
        width: 32px;
        height: 32px;
    }

    .switch-eye::after {
        left: 9px;
        top: 9px;
        width: 13px;
        height: 13px;
    }

    .switch-smile {
        width: 66px;
        border-bottom-width: 9px;
    }

    .hero-rating {
        margin-top: 18px;
        justify-content: flex-start;
    }
}

/* Next design update: hero image, vertical timeline and new promotional sections */
.hero-home {
    background:
        linear-gradient(90deg, rgba(255, 45, 125, 0.18), transparent 38%),
        radial-gradient(circle at 80% 26%, rgba(184, 255, 61, 0.16), transparent 28%),
        radial-gradient(circle at 72% 42%, rgba(255, 255, 255, 0.12), transparent 18%),
        linear-gradient(118deg, #17051d 0%, #3b0c46 44%, #090412 100%);
}

.hero-switch__visual--image {
    min-height: 450px;
}

.hero-switch__visual--image .switch-label {
    top: 18px;
    left: 10%;
    color: #2a0638;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.72);
}

.hero-switch-art {
    width: min(100%, 620px);
    filter: drop-shadow(0 34px 60px rgba(0, 0, 0, 0.32));
    transform: rotate(-2deg);
}

.hero-switch__visual--image .hero-rating {
    margin-top: 4px;
}

.home-timeline-section {
    position: relative;
    background:
        radial-gradient(circle at 12% 18%, rgba(255,45,125,0.14), transparent 24%),
        radial-gradient(circle at 88% 24%, rgba(184,255,61,0.09), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0));
}

.home-timeline-shell {
    position: relative;
}

.home-timeline-heading {
    max-width: 790px;
}

.service-timeline {
    position: relative;
    display: grid;
    gap: 22px;
    margin-top: 34px;
    padding: 10px 0;
}

.service-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, var(--uc-pink), var(--uc-lime), #ffffff, var(--uc-pink));
    box-shadow: 0 0 32px rgba(255,45,125,0.25), 0 0 28px rgba(184,255,61,0.18);
}

.timeline-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    width: calc(50% - 34px);
    min-height: 170px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.045)),
        rgba(255,255,255,0.05);
    box-shadow: 0 24px 70px rgba(0,0,0,0.22);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.timeline-card:hover {
    transform: translateY(-4px) rotate(-0.5deg);
    border-color: rgba(184,255,61,0.45);
    background:
        linear-gradient(145deg, rgba(255,45,125,0.18), rgba(255,255,255,0.055)),
        rgba(255,255,255,0.07);
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: 42px;
    width: 22px;
    height: 22px;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: var(--uc-pink);
    box-shadow: 0 0 0 8px rgba(255,45,125,0.18), 0 0 28px rgba(255,45,125,0.48);
}

.timeline-card--left {
    justify-self: start;
}

.timeline-card--left::before {
    right: -48px;
}

.timeline-card--right {
    justify-self: end;
}

.timeline-card--right::before {
    left: -48px;
    background: var(--uc-lime);
    box-shadow: 0 0 0 8px rgba(184,255,61,0.14), 0 0 28px rgba(184,255,61,0.35);
}

.timeline-card__number {
    position: absolute;
    right: 22px;
    top: 18px;
    color: rgba(255,255,255,0.18);
    font-size: 3.4rem;
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.09em;
}

.timeline-card__icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    color: #071015;
    background: linear-gradient(135deg, var(--uc-lime), #ffffff);
    font-size: 1.55rem;
    font-weight: 950;
    box-shadow: 0 16px 30px rgba(184,255,61,0.16);
}

.timeline-card strong {
    display: block;
    color: var(--uc-lime);
    font-size: 0.78rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.timeline-card h3 {
    margin-top: 6px;
    padding-right: 40px;
    color: #ffffff;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.timeline-card p {
    margin-top: 10px;
    color: rgba(255,255,255,0.74);
}

.section--switch-help {
    color: #2a0638;
    background:
        radial-gradient(circle at 70% 24%, rgba(184,255,61,0.17), transparent 22%),
        linear-gradient(180deg, #fff9fe 0%, #f4e7ff 100%);
}

.switch-help-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: clamp(32px, 5vw, 70px);
    align-items: center;
}

.section--switch-help .eyebrow,
.section--news-preview .eyebrow {
    color: var(--uc-pink-strong);
}

.switch-help-copy h2 {
    max-width: 760px;
    color: #2a0638;
    font-size: clamp(2.1rem, 4vw, 4.35rem);
    line-height: 1.04;
    letter-spacing: -0.06em;
}

.switch-help-copy p {
    margin-top: 22px;
    color: rgba(42,6,56,0.74);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.switch-help-copy .switch-help-note {
    max-width: 760px;
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(42,6,56,0.06);
    border: 1px solid rgba(42,6,56,0.12);
    color: rgba(42,6,56,0.68);
    font-size: 0.92rem;
    font-weight: 800;
}

.switch-help-copy .btn {
    margin-top: 24px;
}

.switch-help-art img {
    width: min(100%, 720px);
    filter: drop-shadow(0 22px 52px rgba(42,6,56,0.20));
}

.section--news-preview {
    color: #2a0638;
    background: linear-gradient(180deg, #fffafe 0%, #f7efff 100%);
}

.news-preview-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 28px;
}

.news-preview-heading h2 {
    color: #2a0638;
    font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.news-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.88fr) 1fr;
    gap: 22px;
    align-items: center;
    min-height: 230px;
    padding: 22px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(42,6,56,0.09);
    border: 1px solid rgba(42,6,56,0.06);
}

.news-card__media {
    position: relative;
    min-height: 170px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 950;
    letter-spacing: -0.04em;
}

.news-card__media::before,
.news-card__media::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: 0.85;
}

.news-card__media::before {
    width: 150px;
    height: 150px;
    right: -34px;
    top: -44px;
    background: rgba(184,255,61,0.26);
}

.news-card__media::after {
    width: 110px;
    height: 110px;
    left: -28px;
    bottom: -34px;
    background: rgba(255,255,255,0.18);
}

.news-card__media span {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: rgba(255,255,255,0.13);
    border: 2px solid rgba(255,255,255,0.35);
    box-shadow: inset 0 0 35px rgba(255,255,255,0.12);
}

.news-card__media--fibre { background: linear-gradient(135deg, #ff2d7d, #672dff); }
.news-card__media--voice { background: linear-gradient(135deg, #2a0638, #ff2d7d); }
.news-card__media--cloud { background: linear-gradient(135deg, #141a34, #0ecb83); }
.news-card__media--server { background: linear-gradient(135deg, #080b19, #65186e); }

.news-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #2a0638;
    font-size: 0.86rem;
    font-weight: 950;
    text-transform: uppercase;
}

.news-card__meta span {
    padding: 8px 14px;
    border: 2px solid var(--uc-pink);
    border-radius: 999px;
    color: #2a0638;
}

.news-card__meta time {
    color: rgba(42,6,56,0.76);
}

.news-card h3 {
    color: #2a0638;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.news-card a {
    display: inline-block;
    margin-top: 18px;
    color: #2a0638;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: var(--uc-pink);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.section--refer {
    background:
        linear-gradient(172deg, transparent 0 12%, rgba(255,255,255,0.04) 12% 100%),
        #050813;
}

.refer-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    gap: 28px;
    align-items: center;
    overflow: hidden;
    padding: clamp(28px, 6vw, 62px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 84% 20%, rgba(184,255,61,0.16), transparent 28%),
        radial-gradient(circle at 10% 85%, rgba(255,45,125,0.22), transparent 28%),
        linear-gradient(135deg, #42104d, #1b0628 74%);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 26px 80px rgba(0,0,0,0.24);
}

.refer-panel__copy h2 {
    margin-top: 10px;
    color: #ffffff;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.065em;
}

.refer-panel__copy p {
    max-width: 740px;
    margin-top: 18px;
    color: rgba(255,255,255,0.78);
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.refer-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.refer-points li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 950;
}

.refer-points span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #071015;
    background: var(--uc-lime);
    box-shadow: 0 0 24px rgba(184,255,61,0.30);
}

.refer-panel .btn {
    margin-top: 30px;
}

.refer-panel__art img {
    width: min(100%, 430px);
    margin-inline: auto;
    filter: drop-shadow(0 24px 55px rgba(0,0,0,0.28));
}

.section--field-team {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 78%, rgba(184,255,61,0.14), transparent 32%),
        radial-gradient(circle at 80% 10%, rgba(255,45,125,0.20), transparent 28%),
        linear-gradient(180deg, #070a18 0%, #111a30 45%, #11413d 100%);
}

.field-team-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
    gap: clamp(34px, 5vw, 80px);
    align-items: center;
}

.field-team-copy h2 {
    margin-top: 10px;
    color: var(--uc-lime);
    font-size: clamp(2.2rem, 5vw, 4.6rem);
    line-height: 1.02;
    letter-spacing: -0.065em;
}

.field-team-copy p {
    max-width: 760px;
    margin-top: 20px;
    color: rgba(255,255,255,0.82);
    font-size: clamp(1.05rem, 1.4vw, 1.26rem);
}

.field-art-wrap {
    margin-top: 26px;
}

.field-art-wrap img {
    width: min(100%, 640px);
    filter: drop-shadow(0 28px 60px rgba(0,0,0,0.32));
}

.field-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.field-feature-grid article {
    min-height: 230px;
    padding: 28px;
    text-align: center;
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.075);
    box-shadow: 0 20px 55px rgba(0,0,0,0.16);
}

.field-feature-grid article span {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: #071015;
    background: linear-gradient(135deg, var(--uc-lime), #ffffff);
    font-size: 1.8rem;
    font-weight: 950;
    box-shadow: 0 0 34px rgba(184,255,61,0.20);
}

.field-feature-grid article h3 {
    color: #ffffff;
    font-size: clamp(1.22rem, 2vw, 1.65rem);
    line-height: 1.15;
}

.field-feature-grid article p {
    margin-top: 12px;
    color: rgba(255,255,255,0.72);
}

@media (max-width: 1080px) {
    .service-timeline::before {
        left: 18px;
        transform: none;
    }

    .timeline-card,
    .timeline-card--left,
    .timeline-card--right {
        width: calc(100% - 48px);
        justify-self: end;
    }

    .timeline-card--left::before,
    .timeline-card--right::before {
        left: -43px;
        right: auto;
    }

    .switch-help-grid,
    .refer-panel,
    .field-team-grid {
        grid-template-columns: 1fr;
    }

    .switch-help-art,
    .refer-panel__art {
        max-width: 680px;
        margin-inline: auto;
    }
}

@media (max-width: 920px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card {
        grid-template-columns: minmax(180px, 0.7fr) 1fr;
    }
}

@media (max-width: 680px) {
    .hero-switch__visual--image {
        min-height: 270px;
    }

    .hero-switch__visual--image .switch-label {
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 8px;
    }

    .hero-switch-art {
        width: min(100%, 440px);
    }

    .service-timeline {
        padding-left: 0;
    }

    .timeline-card {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 22px;
    }

    .timeline-card__number {
        font-size: 2.6rem;
    }

    .timeline-card h3 {
        padding-right: 20px;
    }

    .news-preview-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .news-card {
        grid-template-columns: 1fr;
    }

    .news-card__media {
        min-height: 180px;
    }

    .field-feature-grid {
        grid-template-columns: 1fr;
    }

    .refer-panel,
    .switch-help-grid,
    .field-team-grid {
        gap: 24px;
    }
}

/* Client tweak: light-background sections, single vertical timeline spine and revised engineer/van artwork */
.home-timeline-section {
    color: #2a0638;
    background:
        radial-gradient(circle at 10% 10%, rgba(255,45,125,0.08), transparent 24%),
        radial-gradient(circle at 92% 16%, rgba(184,255,61,0.10), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fff7fe 54%, #f8efff 100%);
}

.home-timeline-heading h2,
.home-timeline-heading p {
    color: #2a0638;
}

.home-timeline-heading p {
    color: rgba(42,6,56,0.72);
}

.service-timeline {
    max-width: 1080px;
    margin: 38px auto 0;
    padding: 12px 0 12px 82px;
    gap: 24px;
}

.service-timeline::before {
    top: 16px;
    bottom: 16px;
    left: 32px;
    width: 6px;
    transform: none;
    background: linear-gradient(180deg, var(--uc-pink), var(--uc-lime), var(--uc-pink));
    box-shadow: 0 0 0 8px rgba(255,45,125,0.055), 0 0 34px rgba(255,45,125,0.22), 0 0 24px rgba(184,255,61,0.16);
}

.timeline-card,
.timeline-card--left,
.timeline-card--right {
    width: 100%;
    justify-self: stretch;
    min-height: 148px;
    border: 1px solid rgba(42,6,56,0.10);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,248,253,0.96)),
        #ffffff;
    box-shadow: 0 18px 48px rgba(42,6,56,0.08);
}

.timeline-card:nth-child(2) {
    transform: translateX(18px) rotate(0.35deg);
}

.timeline-card:nth-child(3) {
    transform: translateX(-4px) rotate(-0.3deg);
}

.timeline-card:nth-child(4) {
    transform: translateX(14px) rotate(0.25deg);
}

.timeline-card:hover,
.timeline-card:nth-child(2):hover,
.timeline-card:nth-child(3):hover,
.timeline-card:nth-child(4):hover {
    transform: translateY(-4px) translateX(10px);
    border-color: rgba(255,45,125,0.35);
    background: #ffffff;
    box-shadow: 0 24px 68px rgba(42,6,56,0.13);
}

.timeline-card::before,
.timeline-card--left::before,
.timeline-card--right::before {
    left: -67px;
    right: auto;
    top: 42px;
    width: 24px;
    height: 24px;
    border: 5px solid #ffffff;
    background: var(--uc-pink);
    box-shadow: 0 0 0 8px rgba(255,45,125,0.13), 0 0 28px rgba(255,45,125,0.32);
}

.timeline-card:nth-child(even)::before {
    background: var(--uc-lime);
    box-shadow: 0 0 0 8px rgba(184,255,61,0.14), 0 0 28px rgba(184,255,61,0.28);
}

.timeline-card::after {
    content: "";
    position: absolute;
    top: 55px;
    left: -42px;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,45,125,0.65), rgba(255,45,125,0));
}

.timeline-card__number {
    color: rgba(42,6,56,0.10);
}

.timeline-card__icon {
    color: #2a0638;
    background: linear-gradient(135deg, var(--uc-lime), #ffffff);
    box-shadow: 0 14px 28px rgba(42,6,56,0.08);
}

.timeline-card strong {
    color: var(--uc-pink-strong);
}

.timeline-card h3 {
    color: #2a0638;
}

.timeline-card p {
    color: rgba(42,6,56,0.70);
}

.section--switch-help,
.section--news-preview,
.section--refer,
.section--field-team {
    color: #2a0638;
    background:
        radial-gradient(circle at 8% 18%, rgba(255,45,125,0.055), transparent 25%),
        radial-gradient(circle at 92% 10%, rgba(184,255,61,0.08), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #fff8ff 100%);
}

.section--refer {
    padding-top: clamp(54px, 7vw, 92px);
}

.refer-panel {
    background:
        radial-gradient(circle at 84% 20%, rgba(184,255,61,0.16), transparent 28%),
        radial-gradient(circle at 10% 85%, rgba(255,45,125,0.24), transparent 28%),
        linear-gradient(135deg, #61206e 0%, #3b0c46 48%, #1b0628 100%);
    border: 1px solid rgba(42,6,56,0.08);
    box-shadow: 0 26px 70px rgba(42,6,56,0.18);
}

.section--field-team {
    overflow: hidden;
}

.field-team-copy h2 {
    color: #2a0638;
}

.field-team-copy p {
    color: rgba(42,6,56,0.74);
}

.field-art-wrap {
    padding: 16px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255,45,125,0.06), rgba(184,255,61,0.06));
    border: 1px solid rgba(42,6,56,0.08);
}

.field-art-wrap img {
    filter: drop-shadow(0 24px 48px rgba(42,6,56,0.18));
}

.field-feature-grid article {
    border: 1px solid rgba(42,6,56,0.10);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 45px rgba(42,6,56,0.08);
}

.field-feature-grid article span {
    color: #2a0638;
    background: linear-gradient(135deg, var(--uc-lime), #ffffff);
    box-shadow: 0 0 30px rgba(184,255,61,0.20);
}

.field-feature-grid article h3 {
    color: #2a0638;
}

.field-feature-grid article p {
    color: rgba(42,6,56,0.68);
}

@media (max-width: 1080px) {
    .service-timeline {
        padding-left: 68px;
    }

    .service-timeline::before {
        left: 24px;
    }

    .timeline-card,
    .timeline-card--left,
    .timeline-card--right {
        width: 100%;
        justify-self: stretch;
    }

    .timeline-card::before,
    .timeline-card--left::before,
    .timeline-card--right::before {
        left: -56px;
        right: auto;
    }

    .timeline-card::after {
        left: -34px;
        width: 34px;
    }
}

@media (max-width: 680px) {
    .service-timeline {
        padding-left: 46px;
        gap: 18px;
    }

    .service-timeline::before {
        left: 18px;
        width: 5px;
    }

    .timeline-card,
    .timeline-card:nth-child(2),
    .timeline-card:nth-child(3),
    .timeline-card:nth-child(4),
    .timeline-card:hover,
    .timeline-card:nth-child(2):hover,
    .timeline-card:nth-child(3):hover,
    .timeline-card:nth-child(4):hover {
        transform: none;
    }

    .timeline-card::before,
    .timeline-card--left::before,
    .timeline-card--right::before {
        left: -39px;
        width: 20px;
        height: 20px;
        border-width: 4px;
    }

    .timeline-card::after {
        left: -20px;
        width: 20px;
    }

    .field-art-wrap {
        padding: 8px;
        border-radius: 24px;
    }
}

/* Final dark-section correction: keep all newer homepage sections aligned to the dark Unixcloud theme. */
.home-timeline-section,
.section--switch-help,
.section--news-preview,
.section--refer,
.section--field-team {
    color: #ffffff;
    background:
        radial-gradient(circle at 12% 12%, rgba(255,45,125,0.15), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(184,255,61,0.10), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(77,19,89,0.48), transparent 42%),
        linear-gradient(180deg, #050813 0%, #0b0d1f 48%, #13051b 100%) !important;
}

.home-timeline-section::before,
.section--switch-help::before,
.section--news-preview::before,
.section--field-team::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 82px 82px;
    opacity: 0.16;
    mask-image: linear-gradient(180deg, #000, transparent 88%);
}

.home-timeline-section,
.section--switch-help,
.section--news-preview,
.section--field-team {
    position: relative;
    overflow: hidden;
}

.home-timeline-section > .container,
.section--switch-help > .container,
.section--news-preview > .container,
.section--field-team > .container {
    position: relative;
    z-index: 1;
}

.home-timeline-heading h2,
.news-preview-heading h2,
.switch-help-copy h2,
.field-team-copy h2 {
    color: #ffffff !important;
}

.home-timeline-heading p,
.switch-help-copy p,
.field-team-copy p {
    color: rgba(255,255,255,0.76) !important;
}

.home-timeline-heading .eyebrow,
.section--switch-help .eyebrow,
.section--news-preview .eyebrow,
.section--field-team .eyebrow,
.refer-panel .eyebrow {
    color: var(--uc-lime) !important;
}

.service-timeline {
    max-width: 1080px;
    margin: 38px auto 0;
    padding: 12px 0 12px 82px;
    gap: 24px;
}

.service-timeline::before {
    top: 16px !important;
    bottom: 16px !important;
    left: 32px !important;
    width: 6px !important;
    transform: none !important;
    background: linear-gradient(180deg, var(--uc-pink), var(--uc-lime), var(--uc-pink)) !important;
    box-shadow:
        0 0 0 8px rgba(255,45,125,0.055),
        0 0 34px rgba(255,45,125,0.28),
        0 0 24px rgba(184,255,61,0.18) !important;
}

.timeline-card,
.timeline-card--left,
.timeline-card--right {
    width: 100% !important;
    justify-self: stretch !important;
    min-height: 150px;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.13) !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.095), rgba(255,255,255,0.045)),
        linear-gradient(135deg, rgba(255,45,125,0.095), rgba(184,255,61,0.035)),
        rgba(7,10,24,0.86) !important;
    box-shadow: 0 22px 62px rgba(0,0,0,0.28) !important;
    backdrop-filter: blur(10px);
}

.timeline-card:nth-child(2) { transform: translateX(18px) rotate(0.35deg); }
.timeline-card:nth-child(3) { transform: translateX(-4px) rotate(-0.3deg); }
.timeline-card:nth-child(4) { transform: translateX(14px) rotate(0.25deg); }

.timeline-card:hover,
.timeline-card:nth-child(2):hover,
.timeline-card:nth-child(3):hover,
.timeline-card:nth-child(4):hover {
    transform: translateY(-4px) translateX(10px) !important;
    border-color: rgba(184,255,61,0.40) !important;
    background:
        linear-gradient(135deg, rgba(255,45,125,0.16), rgba(184,255,61,0.055)),
        rgba(11,13,31,0.94) !important;
}

.timeline-card::before,
.timeline-card--left::before,
.timeline-card--right::before {
    left: -67px !important;
    right: auto !important;
    top: 42px !important;
    width: 24px !important;
    height: 24px !important;
    border: 5px solid #0b0d1f !important;
    background: var(--uc-pink) !important;
    box-shadow: 0 0 0 8px rgba(255,45,125,0.15), 0 0 28px rgba(255,45,125,0.38) !important;
}

.timeline-card:nth-child(even)::before {
    background: var(--uc-lime) !important;
    box-shadow: 0 0 0 8px rgba(184,255,61,0.14), 0 0 28px rgba(184,255,61,0.30) !important;
}

.timeline-card::after {
    content: "";
    position: absolute;
    top: 55px;
    left: -42px;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,45,125,0.72), rgba(255,45,125,0));
}

.timeline-card__number { color: rgba(255,255,255,0.13) !important; }
.timeline-card__icon {
    color: #071015 !important;
    background: linear-gradient(135deg, var(--uc-lime), #ffffff) !important;
    box-shadow: 0 16px 32px rgba(184,255,61,0.16) !important;
}
.timeline-card strong { color: var(--uc-lime) !important; }
.timeline-card h3 { color: #ffffff !important; }
.timeline-card p { color: rgba(255,255,255,0.74) !important; }

.switch-help-copy .switch-help-note {
    background: rgba(255,255,255,0.075) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    color: rgba(255,255,255,0.72) !important;
}

.switch-help-art {
    padding: 18px;
    border-radius: 34px;
    background:
        radial-gradient(circle at 75% 18%, rgba(184,255,61,0.10), transparent 26%),
        linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 70px rgba(0,0,0,0.26);
}

.switch-help-art img {
    filter: drop-shadow(0 26px 48px rgba(0,0,0,0.38)) !important;
}

.news-card {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.13) !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.088), rgba(255,255,255,0.04)),
        rgba(7,10,24,0.86) !important;
    box-shadow: 0 24px 62px rgba(0,0,0,0.24) !important;
}

.news-preview-heading .btn {
    box-shadow: 0 16px 34px rgba(255,45,125,0.24);
}

.news-card__meta,
.news-card__meta span,
.news-card h3,
.news-card a {
    color: #ffffff !important;
}

.news-card__meta span {
    border-color: var(--uc-pink) !important;
    background: rgba(255,45,125,0.10);
}

.news-card__meta time {
    color: rgba(255,255,255,0.66) !important;
}

.news-card a {
    text-decoration-color: var(--uc-lime) !important;
}

.section--refer {
    background:
        radial-gradient(circle at 12% 12%, rgba(255,45,125,0.12), transparent 25%),
        radial-gradient(circle at 86% 20%, rgba(184,255,61,0.08), transparent 28%),
        linear-gradient(180deg, #050813 0%, #0b0d1f 100%) !important;
}

.refer-panel {
    background:
        radial-gradient(circle at 84% 20%, rgba(184,255,61,0.16), transparent 28%),
        radial-gradient(circle at 10% 85%, rgba(255,45,125,0.24), transparent 28%),
        linear-gradient(135deg, #61206e 0%, #3b0c46 48%, #1b0628 100%) !important;
    border: 1px solid rgba(255,255,255,0.13) !important;
    box-shadow: 0 28px 80px rgba(0,0,0,0.32) !important;
}

.field-team-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.85fr);
}

.field-art-wrap {
    margin-top: 28px;
    padding: 10px !important;
    border-radius: 34px !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035)),
        rgba(7,10,24,0.92) !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    box-shadow: 0 30px 80px rgba(0,0,0,0.34) !important;
}

.field-art-wrap img {
    display: block;
    width: 100% !important;
    max-width: none !important;
    border-radius: 26px;
    filter: none !important;
}

.field-feature-grid article {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.13) !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.088), rgba(255,255,255,0.038)),
        rgba(7,10,24,0.82) !important;
    box-shadow: 0 22px 60px rgba(0,0,0,0.24) !important;
}

.field-feature-grid article .field-feature-icon,
.field-feature-grid article span {
    color: #071015 !important;
    background: linear-gradient(135deg, var(--uc-lime), #ffffff) !important;
}

.field-feature-grid article .field-feature-icon img {
    width: 38px;
    height: 38px;
    display: block;
}

.field-feature-grid article h3 { color: #ffffff !important; }
.field-feature-grid article p { color: rgba(255,255,255,0.72) !important; }

@media (max-width: 1080px) {
    .service-timeline { padding-left: 68px; }
    .service-timeline::before { left: 24px !important; }
    .timeline-card::before,
    .timeline-card--left::before,
    .timeline-card--right::before { left: -56px !important; }
    .timeline-card::after { left: -34px; width: 34px; }
    .field-team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .service-timeline { padding-left: 46px; gap: 18px; }
    .service-timeline::before { left: 18px !important; width: 5px !important; }
    .timeline-card,
    .timeline-card:nth-child(2),
    .timeline-card:nth-child(3),
    .timeline-card:nth-child(4),
    .timeline-card:hover,
    .timeline-card:nth-child(2):hover,
    .timeline-card:nth-child(3):hover,
    .timeline-card:nth-child(4):hover { transform: none !important; }
    .timeline-card::before,
    .timeline-card--left::before,
    .timeline-card--right::before { left: -39px !important; width: 20px !important; height: 20px !important; border-width: 4px !important; }
    .timeline-card::after { left: -20px; width: 20px; }
    .field-art-wrap { padding: 6px !important; border-radius: 24px !important; }
    .field-art-wrap img { border-radius: 20px; }
}
