/* Remote Support Services page
Uses the existing JD Phones colour, type, button, header and footer system. */

.remote-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 59, 10, .08), transparent 26%),
        radial-gradient(circle at 92% 30%, rgba(255, 59, 10, .04), transparent 24%),
        var(--ink);
}

.remote-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 28px;
    color: #78859b;
    font-size: .75rem;
    font-weight: 650;
}

.remote-breadcrumb a { transition: color .2s ease; }
.remote-breadcrumb a:hover { color: var(--orange); }
.remote-breadcrumb strong { color: #d7dce5; font-weight: 700; }

/* ---------- Hero ---------- */

.remote-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 820px;
    margin: 40px auto 0;
    padding-inline: 24px;
    text-align: center;
}

.remote-hero-icon {
    display: grid;
    place-items: center;
    width: 68px;
    height: 68px;
    margin-bottom: 26px;
    border-radius: 20px;
    background: linear-gradient(155deg, var(--orange), #c92300);
    box-shadow: 0 18px 40px rgba(255, 59, 10, .35);
}

.remote-hero-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #fff;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.remote-hero h1 {
    margin: 0;
    font-size: clamp(2.35rem, 1.7rem + 2.6vw, 3.6rem);
    font-weight: 820;
    line-height: 1.06;
    letter-spacing: -.03em;
}

.remote-hero > p {
    max-width: 620px;
    margin: 22px 0 0;
    color: #b9c1cf;
    font-size: clamp(1rem, .95rem + .2vw, 1.15rem);
    line-height: 1.7;
}

.remote-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 32px;
}

.remote-hero-note {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9ca6b8;
    font-size: .85rem;
    font-weight: 620;
}

.remote-hero-note svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #9ca6b8;
    stroke-width: 1.8;
}

/* ---------- Shared section heading ---------- */

.remote-section-heading {
    max-width: 720px;
    margin: 0 auto 44px;
    text-align: center;
}

.remote-section-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-size: .72rem;
    font-weight: 820;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.remote-section-heading h2 {
    margin: 14px 0 0;
    font-size: clamp(1.9rem, 1.55rem + 1.15vw, 2.6rem);
    font-weight: 820;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.remote-section-heading p {
    max-width: 620px;
    margin: 16px auto 0;
    color: #9ca6b8;
    font-size: 1rem;
    line-height: 1.7;
}

/* ---------- How remote support works ---------- */

.remote-how { margin-top: 96px; }

.remote-how-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.remote-how-card {
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    background: var(--panel);
    transition: border-color .2s ease, transform .2s ease;
}

.remote-how-card:hover {
    border-color: rgba(255, 59, 10, .3);
    transform: translateY(-3px);
}

.remote-how-card .icon-badge {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    margin: 0 auto 18px;
    border-radius: 13px;
    background: rgba(255, 59, 10, .1);
}

.remote-how-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
    font-weight: 750;
}

.remote-how-card p {
    margin: 0;
    color: #9ca6b8;
    font-size: .84rem;
    line-height: 1.6;
}

/* ---------- 3-step process ---------- */

.remote-steps { margin-top: 96px; }

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

.remote-step-card {
    padding: 30px 26px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    background: var(--panel);
}

.remote-step-number {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 1rem;
    font-weight: 820;
}

.remote-step-card h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    font-weight: 750;
}

.remote-step-card p {
    margin: 0;
    color: #9ca6b8;
    font-size: .87rem;
    line-height: 1.65;
}

/* ---------- What we can help with ---------- */

.remote-help { margin-top: 96px; }

.remote-help-panel {
    padding: 40px 44px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 24px;
    background: var(--panel);
}

.remote-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.remote-help-grid li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d8dde6;
    font-size: .92rem;
    line-height: 1.55;
}

.remote-help-grid svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    fill: none;
    stroke: #4fd39a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ---------- Session packages ---------- */

.remote-pricing { margin-top: 96px; }

.remote-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.remote-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 34px 28px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 22px;
    background: var(--panel);
}

.remote-pricing-card-featured {
    border-color: rgba(255, 59, 10, .4);
    background: linear-gradient(165deg, rgba(255, 59, 10, .1), var(--panel) 55%);
    box-shadow: 0 26px 60px rgba(255, 59, 10, .14);
}

.remote-pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    border-radius: 99px;
    background: var(--orange);
    color: #fff;
    font-size: .68rem;
    font-weight: 820;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.remote-pricing-card span.remote-pricing-length {
    color: #9ca6b8;
    font-size: .82rem;
    font-weight: 650;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.remote-pricing-amount {
    margin: 10px 0 0;
    font-size: clamp(1.8rem, 1.5rem + 1.2vw, 2.3rem);
    font-weight: 820;
    letter-spacing: -.02em;
    color: var(--orange);
}

.remote-pricing-card p {
    margin: 14px 0 0;
    color: #9ca6b8;
    font-size: .87rem;
    line-height: 1.6;
}

/* ---------- Device compatibility table ---------- */

.remote-compat { margin-top: 96px; }

.remote-compat-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 20px;
    background: var(--panel);
}

.remote-compat-table th,
.remote-compat-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.remote-compat-table thead th {
    color: #78859b;
    font-size: .75rem;
    font-weight: 720;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.remote-compat-table tbody tr:last-child td { border-bottom: none; }

.remote-compat-table tbody th {
    color: var(--white);
    font-size: .9rem;
    font-weight: 700;
}

.remote-compat-table td { text-align: center; }
.remote-compat-table td:first-of-type,
.remote-compat-table th:first-of-type { text-align: left; }

.remote-compat-table svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.remote-compat-yes svg { stroke: #4fd39a; }
.remote-compat-no svg { stroke: #616f88; }

/* ---------- FAQ ---------- */

.remote-faq { margin-top: 96px; }

.remote-faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 780px;
    margin: 0 auto;
}

.remote-faq-list details {
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    background: var(--panel);
}

.remote-faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    color: var(--white);
    font-size: .96rem;
    font-weight: 700;
}

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

.remote-faq-list summary::after {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-right: 2px solid #78859b;
    border-bottom: 2px solid #78859b;
    transform: rotate(45deg);
    transition: transform .2s ease;
}

.remote-faq-list details[open] summary::after { transform: rotate(-135deg); }

.remote-faq-list p {
    margin: 14px 0 0;
    color: #9ca6b8;
    font-size: .88rem;
    line-height: 1.7;
}

/* ---------- Related services ---------- */

.remote-related { margin-top: 80px; }

.remote-related h2 {
    margin: 0 0 20px;
    font-size: 1.2rem;
    font-weight: 750;
}

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

.remote-related-grid a {
    display: block;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    background: var(--panel);
    transition: border-color .2s ease, transform .2s ease;
}

.remote-related-grid a:hover {
    border-color: rgba(255, 59, 10, .3);
    transform: translateY(-2px);
}

.remote-related-grid h3 {
    margin: 0 0 6px;
    font-size: .95rem;
    font-weight: 700;
}

.remote-related-grid p {
    margin: 0;
    color: #9ca6b8;
    font-size: .82rem;
    line-height: 1.55;
}

/* ---------- Booking CTA panel ---------- */

.remote-book { margin-top: 96px; margin-bottom: 30px;}

.remote-book-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 26px;
    background: var(--panel);
}

.remote-book-panel .icon-badge {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: rgba(255, 59, 10, .12);
}

.remote-book-panel h2 {
    margin: 0;
    font-size: clamp(1.5rem, 1.3rem + .9vw, 1.9rem);
    font-weight: 820;
    letter-spacing: -.02em;
}

.remote-book-panel > p {
    max-width: 460px;
    margin: 14px 0 0;
    color: #9ca6b8;
    font-size: .95rem;
    line-height: 1.7;
}

.remote-book-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.remote-book-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 24px;
    margin: 26px 0 0;
    padding: 0;
    color: #d8dde6;
    font-size: .78rem;
    font-weight: 650;
    list-style: none;
}

.remote-book-trust li { display: flex; align-items: center; gap: 8px; }

.remote-book-trust li::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 12px rgba(255, 59, 10, .55);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
    .remote-how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .remote-step-grid { grid-template-columns: minmax(0, 1fr); }
    .remote-pricing-grid { grid-template-columns: minmax(0, 1fr); }
    .remote-help-grid { grid-template-columns: minmax(0, 1fr); }
    .remote-related-grid { grid-template-columns: minmax(0, 1fr); }
    .remote-help-panel { padding: 32px 26px; }
    .remote-compat-table { display: block; overflow-x: auto; }
}

@media (max-width: 620px) {
    .remote-how-grid { grid-template-columns: minmax(0, 1fr); }
    .remote-book-panel { padding: 36px 24px; }
}