.service-page {
    background: var(--paper);
}

.service-page main {
    overflow: hidden;
}

.service-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    min-height: 610px;
    margin-top: 24px;
    overflow: hidden;
    background: white;
    border-radius: 42px;
    box-shadow: 0 1px 0 rgba(21,21,21,.06);
}

.service-hero__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px clamp(42px, 5vw, 76px);
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
}

.service-breadcrumb a:hover {
    color: var(--red);
}

.service-breadcrumb span {
    color: #aaa39c;
}

.service-hero h1 {
    max-width: 720px;
    margin: 22px 0 22px;
    font-size: clamp(60px, 6vw, 94px);
    font-weight: 900;
    line-height: .9;
    letter-spacing: -.073em;
}

.service-hero h1 em {
    color: var(--red);
    font-style: normal;
}

.service-hero__lead {
    max-width: 650px;
    margin: 0;
    color: #53504d;
    font-size: 18px;
    line-height: 1.6;
}

.service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.service-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 34px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 750;
}

.service-hero__meta span::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 8px;
    background: var(--red);
    border-radius: 50%;
    vertical-align: 1px;
}

.service-hero__visual {
    position: relative;
    min-height: 610px;
    overflow: hidden;
}

.service-hero__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--service-image) center / cover no-repeat;
    transform: scale(1.025);
    transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}

.service-hero__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, white 0, rgba(255,255,255,.45) 12%, transparent 38%),
                linear-gradient(180deg, transparent 62%, rgba(15,15,15,.22));
}

.service-hero:hover .service-hero__visual::before {
    transform: scale(1.055);
}

.service-hero--phone { --service-image: url("../images/rep.webp"); }
.service-hero--computer { --service-image: url("../images/pc.webp"); }
.service-hero--photo { --service-image: url("../images/pb.webp"); }

.service-hero__badge {
    position: absolute;
    z-index: 2;
    right: 30px;
    bottom: 30px;
    width: min(310px, calc(100% - 60px));
    padding: 18px 20px;
    color: var(--ink);
    background: rgba(255,255,255,.91);
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 19px;
    box-shadow: 0 20px 55px rgba(21,21,21,.16);
    backdrop-filter: blur(16px);
}

.service-hero__badge strong,
.service-hero__badge span {
    display: block;
}

.service-hero__badge strong {
    font-size: 13px;
}

.service-hero__badge span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.45;
}

.service-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 22px;
    overflow: hidden;
    color: white;
    background: var(--ink);
    border-radius: 22px;
}

.service-facts > div {
    min-height: 102px;
    padding: 23px 27px;
    border-right: 1px solid rgba(255,255,255,.13);
}

.service-facts > div:last-child {
    border-right: 0;
}

.service-facts small,
.service-facts strong {
    display: block;
}

.service-facts small {
    color: #ff5555;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.service-facts strong {
    margin-top: 9px;
    font-size: 14px;
    line-height: 1.35;
}

.service-section {
    padding: 110px 0;
}

.service-section--before-process {
    padding-bottom: 0;
}

.service-section--tight {
    padding-top: 22px;
}

.service-section--white {
    background: white;
}

.service-heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 470px);
    gap: 60px;
    align-items: end;
    margin-bottom: 42px;
}

.service-heading h2 {
    max-width: 790px;
    margin: 20px 0 0;
    font-size: clamp(46px, 5vw, 76px);
    line-height: .95;
    letter-spacing: -.06em;
}

.service-heading > p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.65;
}

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

.repair-card {
    position: relative;
    min-height: 248px;
    padding: 30px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
}

.service-section--white .repair-card {
    background: var(--paper);
}

.repair-card:hover {
    transform: translateY(-5px);
    border-color: #c6bfba;
    box-shadow: 0 22px 54px rgba(31,22,19,.09);
}

.repair-card__number {
    display: grid;
    place-items: center;
    width: 37px;
    height: 37px;
    color: var(--red);
    background: var(--red-soft);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
}

.repair-card h3 {
    margin: 28px 0 10px;
    font-size: 24px;
    letter-spacing: -.035em;
}

.repair-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.service-split {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    overflow: hidden;
    color: white;
    background: var(--red);
    border-radius: 32px;
}

.service-split__intro {
    padding: clamp(44px, 6vw, 78px);
}

.service-split__intro h2 {
    margin: 22px 0 18px;
    font-size: clamp(48px, 5vw, 74px);
    line-height: .94;
    letter-spacing: -.06em;
}

.service-split__intro p {
    max-width: 500px;
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.65;
}

.service-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 32px;
    background: white;
}

.service-step {
    padding: 28px;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
}

.service-step:nth-child(odd) {
    border-right: 1px solid var(--line);
}

.service-step:nth-last-child(-n+2) {
    border-bottom: 0;
}

.service-step b {
    color: var(--red);
    font-size: 11px;
}

.service-step h3 {
    margin: 24px 0 9px;
    font-size: 20px;
}

.service-step p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.service-proof {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 18px;
    margin-top: 18px;
}

.service-proof__score,
.service-proof__copy {
    padding: 40px;
    border-radius: 26px;
}

.service-proof__score {
    color: white;
    background: var(--ink);
}

.service-proof__score strong {
    display: block;
    font-size: 70px;
    line-height: 1;
    letter-spacing: -.06em;
}

.service-proof__score .stars {
    display: block;
    margin-top: 13px;
}

.service-proof__score small {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,.55);
    line-height: 1.5;
}

.service-proof__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    border: 1px solid var(--line);
}

.service-proof__copy h2 {
    margin: 0 0 13px;
    font-size: clamp(31px, 3vw, 48px);
    line-height: 1;
    letter-spacing: -.05em;
}

.service-proof__copy p {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    position: relative;
    padding: 25px 58px 25px 0;
    font-size: 18px;
    font-weight: 850;
    cursor: pointer;
    list-style: none;
}

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

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 8px;
    top: 50%;
    color: var(--red);
    font-size: 25px;
    transform: translateY(-50%);
}

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

.faq-list p {
    max-width: 860px;
    margin: -4px 0 24px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.service-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 32px;
    padding: clamp(42px, 6vw, 72px);
    color: white;
    background: var(--red);
    border-radius: 32px;
}

.service-cta h2 {
    max-width: 800px;
    margin: 20px 0 12px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: .94;
    letter-spacing: -.06em;
}

.service-cta p {
    margin: 0;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
}

.service-cta__actions {
    display: grid;
    min-width: 260px;
    gap: 10px;
}

.service-switcher {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin: -68px auto 90px;
}

.service-switcher a {
    position: relative;
    padding: 6px 15px;
    color: rgba(255,255,255,.62);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: .025em;
    transition: color .2s ease;
}

.service-switcher a + a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1px;
    width: 3px;
    height: 3px;
    background: rgba(255,255,255,.38);
    border-radius: 50%;
    transform: translateY(-50%);
}

.service-switcher a:hover {
    color: white;
}

.service-switcher a[aria-current="page"] {
    color: white;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,.48);
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.service-page .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1);
}

.service-page .reveal.is-inview {
    opacity: 1;
    transform: none;
}

@media (max-width: 1060px) {
    .service-hero { grid-template-columns: 1.08fr .92fr; }
    .service-hero__copy { padding-inline: 44px; }
    .service-hero h1 { font-size: clamp(55px, 7vw, 78px); }
    .service-heading { gap: 35px; }
    .repair-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .service-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        margin-top: 14px;
        border-radius: 28px;
    }
    .service-hero__copy { padding: 42px 24px 38px; }
    .service-breadcrumb { margin-bottom: 24px; }
    .service-hero h1 { font-size: clamp(49px, 15vw, 68px); }
    .service-hero__lead { font-size: 15px; }
    .service-hero__actions { display: grid; }
    .service-hero__visual { min-height: 360px; }
    .service-hero__visual::after { background: linear-gradient(180deg, white 0, transparent 25%), linear-gradient(180deg, transparent 55%, rgba(15,15,15,.2)); }
    .service-hero__badge { right: 18px; bottom: 18px; width: calc(100% - 36px); }
    .service-facts { grid-template-columns: 1fr 1fr; }
    .service-facts > div:nth-child(2) { border-right: 0; }
    .service-facts > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.13); }
    .service-section { padding: 74px 0; }
    .service-section--tight { padding-top: 14px; }
    .service-heading { grid-template-columns: 1fr; gap: 17px; }
    .service-heading h2 { font-size: 45px; }
    .repair-grid { grid-template-columns: 1fr; }
    .repair-card { min-height: 215px; }
    .service-split { grid-template-columns: 1fr; border-radius: 27px; }
    .service-split__intro { padding: 46px 24px; }
    .service-split__intro h2 { font-size: 45px; }
    .service-steps { padding: 10px 18px; grid-template-columns: 1fr; }
    .service-step { padding: 26px 6px; border-bottom: 1px solid var(--line) !important; border-right: 0 !important; }
    .service-step:last-child { border-bottom: 0 !important; }
    .service-proof { grid-template-columns: 1fr; }
    .service-proof__score, .service-proof__copy { padding: 30px 24px; }
    .service-cta { grid-template-columns: 1fr; padding: 45px 24px; border-radius: 28px; }
    .service-cta h2 { font-size: 46px; }
    .service-cta__actions { min-width: 0; }
    .service-switcher { margin-top: -45px; margin-bottom: 65px; }
}

@media (prefers-reduced-motion: reduce) {
    .service-page .reveal { opacity: 1; transform: none; }
}
