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

.recovery-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);
}

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

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

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

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

.recovery-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);
}

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

.recovery-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;
}

.recovery-hero h1 span { color: var(--orange); }

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

.recovery-hero > p strong { color: var(--white); font-weight: 750; }

.recovery-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
}

/* ---------- Stats strip ---------- */

.recovery-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 48px auto 0;
}

.recovery-stat {
    padding: 24px 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    background: var(--panel);
}

.recovery-stat strong {
    display: block;
    font-size: clamp(1.4rem, 1.2rem + 1vw, 1.9rem);
    font-weight: 820;
    color: var(--orange);
    letter-spacing: -.02em;
}

.recovery-stat span {
    display: block;
    margin-top: 6px;
    color: #9ca6b8;
    font-size: .8rem;
    font-weight: 620;
}

/* ---------- Emergency warning banner ---------- */

.recovery-warning {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 28px auto 0;
    padding: 18px 22px;
    border: 1px solid rgba(255, 176, 32, .3);
    border-radius: 16px;
    background: rgba(255, 176, 32, .08);
}

.recovery-warning svg {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    fill: none;
    stroke: #ffb020;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.recovery-warning p {
    margin: 0;
    color: #e7c98d;
    font-size: .85rem;
    line-height: 1.65;
}

.recovery-warning strong { color: #ffcf7a; font-weight: 750; }

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

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

.recovery-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;
}

.recovery-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;
}

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

/* ---------- What we recover grid ---------- */

.recovery-services { margin-top: 96px; }

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

.recovery-service-card {
    padding: 28px 26px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    background: var(--panel);
    transition: border-color .2s ease, transform .2s ease;
}

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

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

.recovery-service-card h3 {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 750;
}

.recovery-service-card p {
    margin: 0 0 16px;
    color: #9ca6b8;
    font-size: .88rem;
    line-height: 1.65;
}

.recovery-service-price {
    display: inline-flex;
    font-size: .82rem;
    font-weight: 750;
    color: var(--orange);
}

/* ---------- How it works ---------- */

.recovery-process { margin-top: 96px; }

.recovery-process-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.recovery-process-list li {
    padding: 26px 24px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    background: var(--panel);
}

.recovery-step-number {
    display: block;
    font-size: 2.1rem;
    font-weight: 820;
    color: rgba(255, 59, 10, .35);
    letter-spacing: -.03em;
}

.recovery-process-list .icon-badge {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin: 14px 0 16px;
    border-radius: 11px;
    background: rgba(255, 59, 10, .1);
}

.recovery-process-list h3 {
    margin: 0 0 8px;
    font-size: 1.02rem;
    font-weight: 750;
}

.recovery-process-list p {
    margin: 0;
    color: #9ca6b8;
    font-size: .85rem;
    line-height: 1.65;
}

/* ---------- Pricing ---------- */

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

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

.recovery-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 22px;
    background: var(--panel);
}

.recovery-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);
}

.recovery-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;
}

.recovery-pricing-card h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 750;
}

.recovery-pricing-amount {
    margin: 10px 0 0;
    font-size: clamp(1.5rem, 1.3rem + .9vw, 1.9rem);
    font-weight: 820;
    letter-spacing: -.02em;
    color: var(--orange);
}

.recovery-pricing-card > p {
    margin: 14px 0 20px;
    color: #9ca6b8;
    font-size: .88rem;
    line-height: 1.65;
}

.recovery-pricing-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin: 0 0 4px;
    padding: 0;
    list-style: none;
}

.recovery-pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #d8dde6;
    font-size: .85rem;
    line-height: 1.4;
}

.recovery-pricing-list svg {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    fill: none;
    stroke: var(--orange);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.recovery-guarantee {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 24px;
    padding: 18px 22px;
    border: 1px solid rgba(60, 200, 140, .28);
    border-radius: 16px;
    background: rgba(60, 200, 140, .08);
}

.recovery-guarantee svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    fill: none;
    stroke: #4fd39a;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.recovery-guarantee strong {
    display: block;
    color: #7ee6bb;
    font-size: .9rem;
    font-weight: 750;
}

.recovery-guarantee p {
    margin: 4px 0 0;
    color: #a8ccbc;
    font-size: .84rem;
    line-height: 1.6;
}

/* ---------- Assessment CTA panel ---------- */

.recovery-assess { margin-top: 96px; }

.recovery-assess-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);
}

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

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

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

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

.recovery-assess-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;
}

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

.recovery-assess-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);
}

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

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

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

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

.recovery-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;
}

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

.recovery-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;
}

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

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

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

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

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

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

.recovery-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;
}

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

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

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

/* ---------- Final CTA ---------- */

.recovery-final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 96px;
    margin-bottom: 20px;
    padding: 56px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 28px;
    background: var(--panel);
}

.recovery-final-cta .icon-badge {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: rgba(255, 59, 10, .12);
}

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

.recovery-final-cta p {
    max-width: 520px;
    margin: 14px 0 0;
    color: #9ca6b8;
    font-size: .95rem;
    line-height: 1.7;
}

.recovery-final-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

/* ---------- Locations near you ---------- */

.recovery-near { margin-top: 80px; }

.recovery-near h2 {
    margin: 0 0 8px;
    font-size: 1.2rem;
    font-weight: 750;
}

.recovery-near > p {
    max-width: 620px;
    margin: 0 0 22px;
    color: #9ca6b8;
    font-size: .88rem;
    line-height: 1.65;
}

.recovery-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.recovery-area-tags li {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 99px;
    color: #c6ccd6;
    font-size: .8rem;
    font-weight: 620;
}

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

@media (max-width: 980px) {
    .recovery-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .recovery-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .recovery-process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .recovery-pricing-grid { grid-template-columns: minmax(0, 1fr); }
    .recovery-related-grid { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 620px) {
    .recovery-stats { grid-template-columns: minmax(0, 1fr); }
    .recovery-service-grid { grid-template-columns: minmax(0, 1fr); }
    .recovery-process-list { grid-template-columns: minmax(0, 1fr); }
    .recovery-final-cta,
    .recovery-assess-panel { padding: 36px 24px; }
}