:root {
    --bg: #f6f5f2;
    --surface: #ffffff;
    --ink: #1f2933;
    --muted: #52606d;
    --brand: #0b6e4f;
    --brand-soft: #e7f4ef;
    --warning: #ab2f2f;
    --success: #1e7a46;
    --border: #d9e2ec;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", "Trebuchet MS", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 15%, #ffffff, transparent 50%),
        radial-gradient(circle at 85% 10%, #eef7f3, transparent 40%),
        var(--bg);
}

.container {
    width: min(1000px, 92vw);
    margin: 0 auto;
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
}

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

.brand-logo {
    height: 52px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

nav a,
.link-button {
    color: var(--ink);
    text-decoration: none;
    background: transparent;
    border: none;
    font: inherit;
    cursor: pointer;
}

main {
    padding: 2rem 0 3rem;
}

.hero {
    background: linear-gradient(140deg, #ffffff 0%, #edf8f2 100%);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.hero.compact {
    padding: 1.5rem;
}

.about-video-section {
    margin-bottom: 1.5rem;
}

.about-video-title {
    text-align: center;
    margin: 0 0 1rem;
}

.about-video-title h1 {
    margin: 0;
    font-size: clamp(1.8rem, 3.8vw, 2.8rem);
}

.about-video-wrap {
    margin-top: 0;
}

.about-video-shell {
    border: 0;
    border-radius: 14px;
    overflow: hidden;
    background: transparent;
}

.about-video-poster,
.about-video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
    object-fit: cover;
}

.about-video-poster {
    background: #0b1823;
}

.about-video[hidden] {
    display: none;
}

.about-video-poster[hidden] {
    display: none;
}

.about-video-fallback {
    min-height: 240px;
    padding: 1rem 1.25rem;
    display: grid;
    place-content: center;
    text-align: center;
    color: var(--muted);
}

.about-video-fallback[hidden] {
    display: none;
}

.about-video-fallback p {
    margin: 0.35rem 0;
}

.about-video-fallback code,
.about-video-noscript code {
    color: #0f5132;
    background: var(--brand-soft);
    border-radius: 6px;
    padding: 0.15rem 0.3rem;
}

.about-video-noscript {
    margin: 0.85rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.about-owned-text {
    text-align: center;
    margin: 1.1rem 0 0.75rem;
    font-size: 1.12rem;
    color: var(--ink);
}

.about-centered-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.about-hero h1,
.about-hero p {
    text-align: center;
}

.about-hero p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.about-action-button {
    transition: background-color 0.2s ease-in-out;
}

.about-ghost-button {
    background-color: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
    text-align: center;
}

.about-ghost-button:hover {
    background-color: rgba(11, 110, 79, 0.3);
    color: var(--brand);
}

.about-service-button,
.about-contact-button {
    display: inline-flex;
    min-width: 16rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-service-button {
    background-color: #22c55e;
    border-color: #1faf53;
    color: #093b2f;
}

.about-contact-button {
    background-color: #49b2e7;
    border-color: #3aa5dc;
    color: #0c3751;
}

.about-service-button:hover,
.about-service-button:focus-visible {
    background-color: #1fb255;
    border-color: #189548;
    color: #082f26;
}

.about-contact-button:hover,
.about-contact-button:focus-visible {
    background-color: #3aa6dd;
    border-color: #3093c4;
    color: #0a3147;
}

.about-split-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.8rem, 2.5vw, 2rem);
    margin-top: 1rem;
}

.about-split-actions .about-action-button {
    display: inline-flex;
    min-width: 16rem;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    margin-top: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1rem;
}

.form-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
}

.form-section.narrow {
    max-width: 620px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--muted);
}

.form-grid .full-width {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.65rem 0.7rem;
    font: inherit;
}

.button {
    display: inline-block;
    border: 0;
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-weight: 700;
    background: var(--brand);
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.button-secondary {
    background: #304b60;
}

.about-split-actions .about-service-button,
.about-split-actions .about-contact-button {
    border: 0;
    box-shadow: none;
}

.about-split-actions .about-service-button {
    background: #22c55e;
    border-color: #1faf53;
    color: #093b2f;
}

.about-split-actions .about-service-button:hover,
.about-split-actions .about-service-button:focus-visible {
    background: #1fb255;
    border-color: #189548;
    color: #082f26;
}

.about-split-actions .about-contact-button {
    background: #49b2e7;
    border-color: #3aa5dc;
    color: #0c3751;
}

.about-split-actions .about-contact-button:hover,
.about-split-actions .about-contact-button:focus-visible {
    background: #3aa6dd;
    border-color: #3093c4;
    color: #0a3147;
}

.actions {
    margin-top: 1.4rem;
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.alert {
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    margin: 0 0 1rem;
}

.alert.error {
    background: #f9eaea;
    color: var(--warning);
}

.alert.success {
    background: #eaf7ee;
    color: var(--success);
}

.status {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
}

.status.active {
    color: var(--success);
}

.status.suspended {
    color: var(--warning);
}

.status.pending_payment {
    color: #9a6700;
}

.ppsk {
    display: inline-block;
    background: var(--brand-soft);
    color: #0f5132;
    padding: 0.4rem 0.5rem;
    border-radius: 8px;
    font-weight: 700;
}

.inline-form {
    display: inline;
}

.status-note {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.35rem;
}

.dashboard-page .hero.compact {
    padding: 2.25rem;
    margin-bottom: 2.25rem;
    border-radius: 24px;
}

.dashboard-page .hero h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    margin-bottom: 0.9rem;
}

.dashboard-page .hero p {
    font-size: 1.5rem;
    line-height: 1.45;
}

.dashboard-page .alert {
    font-size: 1.5rem;
    padding: 1.1rem 1.25rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.dashboard-page .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.dashboard-page .card {
    padding: 1.5rem;
    border-radius: 21px;
}

.dashboard-page .wifi-card {
    grid-column: 1 / -1;
}

.dashboard-page .wifi-card-body {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(340px, 1fr);
    align-items: stretch;
    gap: 1.5rem;
}

.dashboard-page .wifi-card-body-empty {
    grid-template-columns: 1fr;
}

.dashboard-page .wifi-card-copy {
    min-width: 0;
}

.dashboard-page .wifi-qr-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.dashboard-page .wifi-card-copy h2 {
    margin-bottom: 1rem;
}

.dashboard-page .wifi-ssid-label {
    margin-bottom: 0.2rem;
}

.dashboard-page .wifi-ssid-value {
    font-weight: 400;
    color: var(--ink);
}

.dashboard-page .card h2 {
    font-size: 2.1rem;
    margin: 0 0 1rem;
}

.dashboard-page .card p {
    font-size: 1.5rem;
    line-height: 1.45;
    margin: 0 0 0.95rem;
}

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

.dashboard-page .status {
    font-size: 1.275rem;
}

.dashboard-page .ppsk {
    font-size: clamp(2.1rem, 4vw, 2.7rem);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-top: 0.35rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.dashboard-page .wifi-qr {
    width: min(100%, 420px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.dashboard-page .wifi-qr svg {
    display: block;
    width: 100%;
    height: auto;
}

.dashboard-page .wifi-qr-note {
    color: var(--muted);
    text-align: right;
    margin-bottom: 0.8rem;
}

.dashboard-page .actions {
    margin-top: 2.1rem;
    gap: 1.2rem;
    align-items: flex-start;
}

.dashboard-page .button {
    font-size: 1.5rem;
    padding: 0.9rem 1.5rem;
}

.dashboard-page .inline-form {
    display: inline-flex;
    flex-direction: column;
}

.dashboard-page .status-note {
    font-size: 1.23rem;
    margin-top: 0.5rem;
}

.services-strip {
    margin: 0 0 1.35rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.services-strip-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.7rem;
}

.service-tile {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    padding: 0.45rem 0.35rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.service-tile img {
    width: 92px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.service-tile span {
    font-size: 0.9rem;
    line-height: 1.25;
    font-weight: 600;
}

.service-tile:hover,
.service-tile:focus-visible,
.service-tile.is-active {
    color: var(--brand);
    background-color: rgba(11, 110, 79, 0.08);
}

.service-tile:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

.service-tile:hover {
    transform: translateY(-1px);
}

.services-detail-shell {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.service-panel {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.25rem;
}

.service-panel.is-active {
    display: block;
}

.service-panel h2 {
    margin: 0 0 0.5rem;
}

.service-panel p {
    margin: 0;
    color: var(--muted);
}

.service-panel-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.service-panel-item {
    margin: 0;
    border: 1px dashed var(--border);
    border-radius: 12px;
    padding: 0.8rem;
    background: #fcfefd;
    text-align: center;
}

.service-panel-item img {
    width: min(220px, 100%);
    height: auto;
    object-fit: contain;
}

.service-panel-item figcaption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}

#service-panel-online-payment-portal .service-panel-grid {
    margin-top: 0.65rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border-radius: 0;
    overflow: visible;
}

#service-panel-online-payment-portal {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

#service-panel-online-payment-portal .service-panel-item {
    border: 0;
    border-radius: 0;
    padding: 0.8rem 0.8rem 0.65rem;
    box-shadow: none;
    position: relative;
    background: var(--pane-solid);
}

#service-panel-online-payment-portal .service-panel-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 10%;
    background: linear-gradient(to bottom, var(--pane-solid) 0%, var(--pane-clear) 100%);
    pointer-events: none;
}

#service-panel-online-payment-portal .service-panel-item::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 100%;
    height: 5%;
    background: linear-gradient(to top, var(--pane-solid) 0%, var(--pane-clear) 100%);
    pointer-events: none;
}

#service-panel-online-payment-portal .service-panel-item img {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    display: block;
}

#service-panel-online-payment-portal .service-panel-item figcaption {
    margin: 0.6rem auto 0;
    display: inline-block;
    width: fit-content;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(20, 53, 38, 0.22);
    background: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    font-weight: 700;
    color: #143526;
}

#service-panel-online-payment-portal .service-panel-item:nth-child(1) {
    --pane-solid: rgba(192, 229, 205, 0.62);
    --pane-clear: rgba(192, 229, 205, 0);
}

#service-panel-online-payment-portal .service-panel-item:nth-child(2) {
    --pane-solid: rgba(196, 220, 233, 0.62);
    --pane-clear: rgba(196, 220, 233, 0);
}

#service-panel-online-payment-portal .service-panel-item:nth-child(3) {
    --pane-solid: rgba(174, 220, 193, 0.62);
    --pane-clear: rgba(174, 220, 193, 0);
}

#service-panel-voucher-codes {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

#service-panel-voucher-codes .voucher-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 1.4rem;
}

#service-panel-voucher-codes .voucher-copy {
    grid-column: 1;
    display: grid;
    gap: 0.35rem;
}

#service-panel-voucher-codes .voucher-intro {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.35;
}

#service-panel-voucher-codes .voucher-points,
#service-panel-private-network .voucher-points,
#service-panel-wifi-bridge .voucher-points {
    margin: 0;
    padding-left: 1.2rem;
}

#service-panel-voucher-codes .voucher-points li,
#service-panel-private-network .voucher-points li,
#service-panel-wifi-bridge .voucher-points li {
    margin-bottom: 0.9rem;
    line-height: 1.45;
}

#service-panel-voucher-codes .voucher-points li:last-child,
#service-panel-private-network .voucher-points li:last-child,
#service-panel-wifi-bridge .voucher-points li:last-child {
    margin-bottom: 0;
}

#service-panel-voucher-codes .voucher-image-wrap {
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
    width: min(575px, 100%);
    justify-self: end;
    transform: translateX(0);
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    grid-column: 2;
}

#service-panel-voucher-codes .voucher-image-wrap img {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    display: block;
    filter: none;
}

#service-panel-voucher-codes .voucher-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 14px;
    box-shadow: inset 0 0 6px rgba(246, 245, 242, 0.82);
}

#service-panel-private-network {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

#service-panel-private-network .private-network-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 1.4rem;
}

#service-panel-private-network .private-network-image-wrap {
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
    width: min(575px, 100%);
    justify-self: end;
    transform: translateX(0);
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

#service-panel-private-network .private-network-image-wrap img {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    display: block;
    filter: none;
}

#service-panel-private-network .private-network-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 14px;
    box-shadow: inset 0 0 6px rgba(246, 245, 242, 0.82);
}

#service-panel-wifi-bridge {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

#service-panel-wifi-bridge .wifi-bridge-rows {
    display: grid;
    gap: 1rem;
}

#service-panel-wifi-bridge .wifi-bridge-row {
    display: grid;
    grid-template-columns: minmax(260px, 46%) minmax(0, 1fr);
    align-items: center;
    gap: 1.2rem;
}

#service-panel-wifi-bridge .wifi-bridge-points {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

#service-panel-wifi-bridge .wifi-bridge-points li {
    margin-bottom: 0.9rem;
    line-height: 1.45;
}

#service-panel-wifi-bridge .wifi-bridge-points li:last-child {
    margin-bottom: 0;
}

#service-panel-wifi-bridge .wifi-bridge-image-wrap {
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    justify-self: start;
}

#service-panel-wifi-bridge .wifi-bridge-image-wrap img {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    display: block;
    filter: none;
}

#service-panel-wifi-bridge .wifi-bridge-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 14px;
    box-shadow: inset 0 0 6px rgba(246, 245, 242, 0.82);
}

#service-panel-ptp-ptmp {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

#service-panel-ptp-ptmp .ptp-ptmp-rows {
    display: grid;
    gap: 1rem;
}

#service-panel-ptp-ptmp .ptp-ptmp-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 46%);
    align-items: center;
    gap: 1.2rem;
}

#service-panel-ptp-ptmp .ptp-ptmp-copy-group p {
    margin: 0 0 1rem;
    line-height: 1.45;
}

#service-panel-ptp-ptmp .ptp-ptmp-copy-group p:last-child {
    margin-bottom: 0;
}

#service-panel-ptp-ptmp .ptp-ptmp-image-wrap {
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    justify-self: end;
}

#service-panel-ptp-ptmp .ptp-ptmp-image-wrap-compact {
    width: 60%;
    justify-self: center;
}

#service-panel-ptp-ptmp .ptp-ptmp-row:first-child .ptp-ptmp-image-wrap-compact img {
    margin-inline: auto;
}

#service-panel-ptp-ptmp .ptp-ptmp-image-wrap img {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    display: block;
    filter: none;
}

#service-panel-ptp-ptmp .ptp-ptmp-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 14px;
    box-shadow: inset 0 0 6px rgba(246, 245, 242, 0.82);
}

#service-panel-outdoor-access-points {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

#service-panel-outdoor-access-points .outdoor-access-title {
    margin: 0 0 0.55rem;
    font-size: 1.25rem;
    font-weight: 700;
}

#service-panel-outdoor-access-points .outdoor-access-copy {
    display: grid;
    align-content: start;
}

#service-panel-outdoor-access-points .outdoor-access-text {
    margin: 0 0 0.65rem;
    line-height: 1.45;
}

#service-panel-outdoor-access-points .outdoor-access-text:last-child {
    margin-bottom: 0;
}

#service-panel-outdoor-access-points .outdoor-access-rows {
    display: grid;
    gap: 1rem;
}

#service-panel-outdoor-access-points .outdoor-access-row {
    display: grid;
    grid-template-columns: minmax(260px, 46%) minmax(0, 1fr);
    align-items: center;
    gap: 1.2rem;
}

#service-panel-outdoor-access-points .outdoor-access-image-wrap {
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    justify-self: start;
}

#service-panel-outdoor-access-points .outdoor-access-image-wrap img {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    display: block;
    filter: none;
}

#service-panel-outdoor-access-points .outdoor-access-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 14px;
    box-shadow: none;
}

@media (max-width: 980px) {
    .dashboard-page .wifi-card-body {
        grid-template-columns: 1fr;
    }

    .dashboard-page .wifi-qr-panel {
        justify-content: flex-start;
        align-items: flex-start;
    }

    .dashboard-page .wifi-qr-note {
        text-align: left;
    }

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

    #service-panel-online-payment-portal .service-panel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #service-panel-voucher-codes .voucher-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #service-panel-voucher-codes .voucher-copy {
        grid-column: auto;
    }

    #service-panel-voucher-codes .voucher-image-wrap {
        grid-column: auto;
        justify-self: start;
        transform: none;
        width: min(575px, 100%);
    }

    #service-panel-private-network .private-network-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #service-panel-private-network .private-network-image-wrap {
        justify-self: start;
        transform: none;
        width: min(575px, 100%);
    }

    #service-panel-wifi-bridge .wifi-bridge-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #service-panel-wifi-bridge .wifi-bridge-image-wrap {
        justify-self: start;
        width: 100%;
    }

    #service-panel-ptp-ptmp .ptp-ptmp-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #service-panel-ptp-ptmp .ptp-ptmp-image-wrap {
        justify-self: start;
        width: 100%;
    }

    #service-panel-outdoor-access-points .outdoor-access-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    #service-panel-outdoor-access-points .outdoor-access-image-wrap {
        justify-self: start;
        width: 100%;
    }
}

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

    .about-video-section {
        margin-bottom: 0;
    }

    .about-split-actions {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.15rem;
        margin-top: 2.6rem;
        margin-bottom: 1.2rem;
        padding: 0;
    }

    .about-video {
        aspect-ratio: 4 / 3;
    }

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

    .service-panel-grid {
        grid-template-columns: 1fr;
    }

    #service-panel-online-payment-portal .service-panel-grid {
        grid-template-columns: 1fr;
    }

    #service-panel-online-payment-portal .service-panel-item {
        min-height: 320px;
        padding: 1rem 1rem 2rem;
    }

    #service-panel-online-payment-portal .service-panel-item::after {
        height: 14%;
    }

    #service-panel-online-payment-portal .service-panel-item figcaption {
        margin-top: 0.85rem;
    }
}

@media (max-width: 900px) and (orientation: portrait) {
    .about-video-section {
        position: relative;
        left: 50%;
        right: 50%;
        width: 100vw;
        max-width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
    }

    .about-video-wrap {
        margin: 0;
    }

    .about-video-shell {
        border-radius: 0 !important;
        overflow: hidden;
    }

    .about-video-poster,
    .about-video {
        width: 100vw;
        max-width: 100vw;
        border-radius: 0 !important;
        aspect-ratio: auto;
    }
}
