:root {
    --ink: #020b1a;
    --ink-deep: #010714;
    --navy: #061532;
    --panel: #101b32;
    --panel-light: #152139;
    --panel-blue: #14203e;
    --line: #1c2941;
    --orange: #ff3b0a;
    --orange-bright: #ff400d;
    --peach: #ffc4b5;
    --white: #f7f8fb;
    --muted: #9ca6b8;
    --soft: #c6ccd6;
    --page-width: 1340px;
    --radius: 24px;
    --shadow: 0 24px 60px rgba(0, 0, 0, .18);
    --text-body: clamp(1rem, .92rem + .18vw, 1.125rem);
    --text-eyebrow: clamp(.875rem, .82rem + .16vw, 1rem);
    --heading-section: clamp(1.9rem, 1.45rem + 1.25vw, 2.75rem);
}

* { box-sizing: border-box; }

html {
    overflow-x: clip;
    scroll-behavior: smooth;
    scroll-padding-top: 118px;
}

section[id],
footer[id] { scroll-margin-top: 118px; }

body {
    margin: 0;
    overflow-x: clip;
    background: var(--ink);
    color: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.section-shell,
.nav-shell,
.footer-shell {
    width: min(calc(100% - 72px), var(--page-width));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 80px;
    background: rgba(4, 20, 51, .97);
    border-bottom: 1px solid rgba(255, 255, 255, .025);
    backdrop-filter: blur(18px);
}

.nav-shell {
    height: 100%;
    display: grid;
    grid-template-columns: 230px 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
    gap: 10px;
}

.brand img {
    display: block;
    width: 160px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3vw, 52px);
    font-weight: 650;
    font-size: .875rem;
}

.primary-nav a {
    position: relative;
    padding: 29px 0;
    color: #fff;
    white-space: nowrap;
    transition: color .2s ease;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible { color: var(--orange); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after { transform: scaleX(1); }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 1px solid var(--orange);
    border-radius: 14px;
    background: var(--orange-bright);
    color: #fff;
    font-size: 1rem;
    font-weight: 750;
    letter-spacing: -.01em;
    box-shadow: 0 11px 28px rgba(255, 59, 10, .14);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); background: #ff521f; border-color: #ff521f; }
.button-small { min-height: 40px; padding: 0 18px; border-radius: 8px; font-size: .8125rem; }
.button-compact { min-height: 50px; padding-inline: 24px; border-radius: 8px; font-size: .9375rem; white-space: nowrap; }
.button-dark { border-color: #111c35; background: #101a33; box-shadow: none; }
.button-dark:hover { background: #192641; border-color: #22314f; }
.button-light { border-color: #e5e7ed; background: #f5f5f6; color: #d83917; box-shadow: none; }
.button-light:hover { color: #020B1A; }

.menu-toggle,
.menu-backdrop { display: none; }

.hero {
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.34fr .72fr;
    gap: clamp(72px, 9vw, 150px);
    align-items: start;
    padding-block: 42px 64px;
}

.hero-copy { max-width: 870px; }
.home-hero-copy { padding-top: 66px; }
.contact-chips { display: flex; margin-bottom: 24px; }
.contact-combined-pill {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 5px 7px;
    border: 1px solid rgba(255, 104, 66, .32);
    border-radius: 99px;
    background: linear-gradient(135deg, rgba(20, 32, 62, .98), rgba(6, 21, 50, .98));
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .06);
}
.contact-chips svg { width: 14px; height: 14px; fill: none; stroke: var(--orange); stroke-width: 2; }
.contact-pill-divider {
    flex: 0 0 1px;
    width: 1px;
    height: 22px;
    margin-inline: 6px;
    background: rgba(255, 255, 255, .14);
}
.contact-phone {
    display: inline-flex;
    width: 156px;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 11px;
    color: #f7f8fb;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .01em;
}
.contact-phone a { white-space: nowrap; transition: color .2s ease; }
.contact-phone a:hover { color: #ff8a6d; }
.location-picker {
    position: relative;
    z-index: 21;
}
.location-picker-toggle {
    display: inline-grid;
    grid-template-columns: 16px 1fr 12px;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 12px 6px 10px;
    width: 156px;
    border: 1px solid transparent;
    border-radius: 99px;
    background: transparent;
    color: #f7f8fb;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .01em;
    box-shadow: none;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.location-picker-toggle:hover {
    transform: none;
    border-color: rgba(255, 104, 66, .18);
    background: rgba(255, 59, 10, .09);
    box-shadow: none;
}
.location-picker-toggle:focus-visible {
    outline: 3px solid rgba(255, 59, 10, .28);
    outline-offset: 3px;
}
.location-picker-toggle[aria-expanded="true"] {
    border-color: rgba(255, 104, 66, .28);
    background: rgba(255, 59, 10, .12);
    box-shadow: inset 0 0 0 1px rgba(255, 59, 10, .04);
}
.location-picker-toggle > svg:first-child {
    width: 16px;
    height: 16px;
    filter: drop-shadow(0 2px 3px rgba(255, 59, 10, .18));
}
.location-picker-toggle #location-picker-label {
    display: inline;
    justify-self: center;
    min-height: 0;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font: inherit;
}
.location-picker-toggle .chevron {
    width: 12px;
    height: 12px;
    margin-left: 2px;
    fill: none;
    stroke: #f7f8fb;
    stroke-width: 2;
    transition: transform .2s ease;
}
.location-picker-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.location-menu {
    position: absolute;
    top: calc(100% + 11px);
    left: 0;
    z-index: 20;
    width: max-content;
    min-width: 278px;
    max-width: calc(100vw - 28px);
    margin: 0;
    padding: 8px;
    list-style: none;
    background: linear-gradient(155deg, rgba(16, 27, 50, .98), rgba(1, 7, 20, .99));
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 17px;
    box-shadow: 0 28px 60px rgba(0, 0, 0, .54), 0 6px 18px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .045);
    backdrop-filter: blur(16px);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(.975);
    transform-origin: top left;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s cubic-bezier(.2, .8, .2, 1), visibility .2s;
}
.location-menu::before {
    content: "Select a store";
    display: block;
    padding: 7px 10px 9px;
    color: #8f9aad;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.location-menu::after {
    content: "";
    position: absolute;
    top: -6px;
    left: 21px;
    width: 10px;
    height: 10px;
    background: #101b32;
    border-top: 1px solid rgba(255, 255, 255, .11);
    border-left: 1px solid rgba(255, 255, 255, .11);
    transform: rotate(45deg);
}
.location-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.location-menu li {
    position: relative;
    min-height: 58px;
    padding: 29px 14px 9px 43px;
    border: 1px solid rgba(255, 255, 255, .045);
    border-radius: 12px;
    background: rgba(255, 255, 255, .025);
    color: #9faabc;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: .005em;
    cursor: pointer;
    transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.location-menu li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--orange);
    border-radius: 50% 50% 50% 0;
    transform: translateY(-58%) rotate(-45deg);
    box-shadow: -2px 2px 8px rgba(255, 59, 10, .16);
}
.location-menu li::after {
    content: attr(data-city);
    position: absolute;
    top: 9px;
    left: 43px;
    color: #f7f8fb;
    font-size: 13.5px;
    font-weight: 750;
    line-height: 1.2;
    letter-spacing: -.01em;
}
.location-menu li + li { margin-top: 5px; }
.location-menu li:hover {
    color: #fff;
    background: linear-gradient(100deg, rgba(255, 59, 10, .13), rgba(255, 255, 255, .065));
    border-color: rgba(255, 104, 66, .22);
    box-shadow: inset 3px 0 0 var(--orange), 0 7px 18px rgba(0, 0, 0, .13);
    transform: translateX(3px);
}
.location-menu li:active { transform: translateX(3px) scale(.985); }

.hero h1 {
    max-width: 870px;
    margin: 0;
    font-size: clamp(2.5rem, 2.7vw, 3.5rem);
    font-weight: 780;
    line-height: 1.06;
    letter-spacing: -.04em;
}
.hero h1 span { color: var(--orange); }
.hero-copy > p {
    max-width: 650px;
    margin: 28px 0 0;
    color: #a9b0be;
    font-size: var(--text-body);
    line-height: 1.55;
}
.hero-actions { display: flex; gap: 54px; margin-top: 42px; }
.hero-actions .button { min-width: 204px; min-height: 58px; font-size: clamp(1rem, .94rem + .2vw, 1.125rem); border-radius: 14px; }

.hero-visual {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    perspective: 1200px;
}
.phone-aura {
    position: absolute;
    z-index: -1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 59, 10, .18) 0%, rgba(255, 88, 44, .07) 42%, transparent 70%);
    filter: blur(48px);
    transition: background .9s ease, opacity .9s ease;
}
.phone-presentation {
    --iphone-y-start: -21deg;
    --iphone-y-end: -25deg;
    --iphone-x-start: 4deg;
    --iphone-x-end: 2.5deg;
    --iphone-z-start: 2.5deg;
    --iphone-z-end: 1.5deg;
    position: relative;
    z-index: 1;
    width: min(100%, 265px);
    transform: rotateY(var(--iphone-y-start)) rotateX(var(--iphone-x-start)) rotateZ(var(--iphone-z-start));
    transform-origin: 50% 55%;
    transform-style: preserve-3d;
    will-change: transform;
    animation: iphone-showcase 9s cubic-bezier(.45, 0, .55, 1) infinite;
}
.phone-presentation .phone-float {
    width: 100%;
    animation: iphone-float 7s ease-in-out infinite;
}
.phone-float {
    position: relative;
    z-index: 1;
    width: min(100%, 305px);
    user-select: none;
    animation: hero-float 6s ease-in-out infinite;
}
.phone-shell {
    position: relative;
    padding: 10px;
    border-radius: 48px;
    background: linear-gradient(145deg, #313136 0%, #1c1c20 50%, #0d0d0f 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .11), 0 0 0 1px rgba(255, 255, 255, .06), 0 28px 65px -14px rgba(0, 0, 0, .72), 0 0 78px rgba(255, 59, 10, .18);
    transition: box-shadow .9s ease;
}
.phone-screen {
    position: relative;
    aspect-ratio: 9 / 19.5;
    overflow: hidden;
    border-radius: 39px;
    background: linear-gradient(170deg, #0b162b 0%, #162544 50%, #0e1c37 100%);
    transition: background 1s ease;
}
.phone-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, rgba(255,255,255,.025), transparent 28%, transparent 74%, rgba(255,255,255,.018));
    pointer-events: none;
}
.dynamic-island {
    position: absolute;
    z-index: 5;
    top: 15px;
    left: 50%;
    width: 94px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 99px;
    background: #000;
    transform: translateX(-50%);
}
.dynamic-island span {
    width: 8px;
    height: 8px;
    border: 1px solid #1c1c20;
    border-radius: 50%;
    background: #111216;
}
.phone-button {
    position: absolute;
    z-index: -1;
    width: 3px;
    background: linear-gradient(#77777c, #343439);
}
.phone-button-mute { top: 112px; left: -3px; height: 28px; border-radius: 3px 0 0 3px; }
.phone-button-volume-up { top: 158px; left: -3px; height: 53px; border-radius: 3px 0 0 3px; }
.phone-button-volume-down { top: 222px; left: -3px; height: 53px; border-radius: 3px 0 0 3px; }
.phone-button-power { top: 174px; right: -3px; height: 64px; border-radius: 0 3px 3px 0; }
.crack-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: opacity .8s ease;
}
.crack-overlay path {
    fill: none;
    stroke: rgba(255,255,255,.62);
    stroke-width: 1.15;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0;
    vector-effect: non-scaling-stroke;
}
.repair-stage {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-top: 42px;
    opacity: 0;
    transform: scale(.96);
    transition: opacity .55s ease, transform .55s ease;
    pointer-events: none;
}
.repair-stage strong {
    font-size: 12px;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.stage-icon {
    position: relative;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
}
.stage-icon::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid currentColor;
    border-radius: inherit;
    opacity: .18;
}
.stage-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.stage-dots { display: flex; gap: 7px; }
.stage-dots span { width: 5px; height: 5px; border-radius: 50%; background: currentColor; opacity: .3; }
.stage-dots span:nth-child(2) { animation-delay: .18s; }
.stage-dots span:nth-child(3) { animation-delay: .36s; }
.stage-damaged { color: #f0645f; }
.stage-scanning { color: #60a5fa; }
.stage-repairing { color: #f59e0b; }

.scan-beam {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(96,165,250,.35) 12%, #60a5fa 50%, rgba(96,165,250,.35) 88%, transparent);
    box-shadow: 0 0 18px rgba(96,165,250,.85), 0 0 44px rgba(59,130,246,.35);
    opacity: 0;
}
.repair-sparks { position: absolute; inset: 0; pointer-events: none; }
.repair-sparks span {
    position: absolute;
    top: 46%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 11px #f59e0b;
    opacity: 0;
}
.repair-sparks span:nth-child(1) { --spark-x: -54px; --spark-y: -56px; animation-delay: 0s; }
.repair-sparks span:nth-child(2) { --spark-x: 49px; --spark-y: -38px; animation-delay: .35s; }
.repair-sparks span:nth-child(3) { --spark-x: -65px; --spark-y: 32px; animation-delay: .7s; }
.repair-sparks span:nth-child(4) { --spark-x: 61px; --spark-y: 42px; animation-delay: 1.05s; }
.repair-sparks span:nth-child(5) { --spark-x: 8px; --spark-y: -76px; animation-delay: 1.4s; }

.completion-flash {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    width: 98px;
    height: 98px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(52,211,153,.65);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52,211,153,.22), rgba(59,130,246,.08) 55%, transparent 72%);
    color: #6ee7b7;
    font-size: 40px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.45);
    pointer-events: none;
}
.completion-flash::before,
.completion-flash::after {
    content: "";
    position: absolute;
    inset: -18px;
    border: 1px solid rgba(52,211,153,.32);
    border-radius: inherit;
}
.completion-flash::after { inset: -38px; opacity: .5; }

.hero-visual[data-stage="damaged"] .phone-screen { background: linear-gradient(170deg, #190b11 0%, #210d14 48%, #10070b 100%); }
.hero-visual[data-stage="damaged"] .phone-aura { background: radial-gradient(circle, rgba(239,68,68,.22), rgba(190,24,93,.08) 44%, transparent 71%); }
.hero-visual[data-stage="damaged"] .phone-shell { box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 0 1px rgba(255,255,255,.05), 0 28px 65px -14px rgba(0,0,0,.72), 0 0 78px rgba(239,68,68,.17); }
.hero-visual[data-stage="damaged"] .stage-damaged,
.hero-visual[data-stage="scanning"] .stage-scanning,
.hero-visual[data-stage="repairing"] .stage-repairing { opacity: 1; transform: scale(1); }
.hero-visual[data-stage="damaged"] .crack-overlay path { animation: crack-draw .9s ease-out forwards; }
.hero-visual[data-stage="damaged"] .stage-icon { animation: warning-pulse 1.55s ease-in-out infinite; }

.hero-visual[data-stage="scanning"] .phone-screen { background: linear-gradient(170deg, #071329 0%, #102249 50%, #091735 100%); }
.hero-visual[data-stage="scanning"] .phone-aura { background: radial-gradient(circle, rgba(59,130,246,.22), rgba(14,165,233,.07) 44%, transparent 71%); }
.hero-visual[data-stage="scanning"] .phone-shell { box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 0 1px rgba(255,255,255,.05), 0 28px 65px -14px rgba(0,0,0,.72), 0 0 82px rgba(59,130,246,.2); }
.hero-visual[data-stage="scanning"] .crack-overlay path { stroke-dashoffset: 0; opacity: .42; }
.hero-visual[data-stage="scanning"] .scan-beam { opacity: 1; animation: scan-screen 2.1s cubic-bezier(.45,0,.55,1) infinite; }
.hero-visual[data-stage="scanning"] .stage-icon { animation: scanner-pulse 1.4s ease-in-out infinite; }

.hero-visual[data-stage="repairing"] .phone-screen { background: linear-gradient(170deg, #111323 0%, #1c203e 50%, #10172d 100%); }
.hero-visual[data-stage="repairing"] .phone-aura { background: radial-gradient(circle, rgba(245,158,11,.22), rgba(255,59,10,.08) 44%, transparent 71%); }
.hero-visual[data-stage="repairing"] .phone-shell { box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 0 1px rgba(255,255,255,.05), 0 28px 65px -14px rgba(0,0,0,.72), 0 0 82px rgba(245,158,11,.18); }
.hero-visual[data-stage="repairing"] .crack-overlay path { stroke-dashoffset: 0; opacity: .38; animation: crack-heal 3.1s ease-in forwards; }
.hero-visual[data-stage="repairing"] .stage-icon { animation: repair-tool 1.05s ease-in-out infinite; }
.hero-visual[data-stage="repairing"] .repair-sparks span { animation: repair-spark 1.6s ease-out infinite; }

.hero-visual[data-stage="complete"] .phone-review { opacity: 1; transform: translateY(0) scale(1); }
.hero-visual[data-stage="complete"] .crack-overlay { opacity: 0; }
.hero-visual[data-stage="complete"] .completion-flash { animation: completion-burst 1.45s ease-out both; }
.hero-visual[data-stage="complete"] .phone-shell { box-shadow: inset 0 1px 0 rgba(255,255,255,.11), 0 0 0 1px rgba(255,255,255,.06), 0 28px 65px -14px rgba(0,0,0,.72), 0 0 85px rgba(52,211,153,.12), 0 0 58px rgba(255,59,10,.12); }

.repair-stage .stage-dots span { animation: stage-dot 1.15s ease-in-out infinite; }
.phone-review {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 70px 24px 38px;
    text-align: center;
    opacity: 0;
    transform: translateY(12px) scale(.985);
    transition: opacity .85s .35s ease, transform .85s .35s ease;
}
.phone-review figcaption {
    margin-bottom: 18px;
    color: #ff7959;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .23em;
}
.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 17px;
    color: #fbbf24;
    font-size: 21px;
    line-height: 1;
}
.phone-review blockquote {
    max-width: 230px;
    margin: 0 0 24px;
    color: rgba(255,255,255,.92);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}
.reviewer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.reviewer strong { font-size: 15px; }
.reviewer > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255,255,255,.45);
    font-size: 11px;
}
.reviewer svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.google-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 24px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 99px;
    background: rgba(255,255,255,.065);
    color: rgba(255,255,255,.62);
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}
.google-review-badge svg { width: 15px; height: 15px; }
.home-indicator {
    position: absolute;
    z-index: 5;
    bottom: 10px;
    left: 50%;
    width: 104px;
    height: 4px;
    border-radius: 99px;
    background: rgba(255,255,255,.16);
    transform: translateX(-50%);
}
@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes iphone-showcase {
    0%, 100% {
        transform: translate3d(-2px, 1px, 0) rotateY(var(--iphone-y-start)) rotateX(var(--iphone-x-start)) rotateZ(var(--iphone-z-start));
    }
    50% {
        transform: translate3d(7px, -4px, 14px) rotateY(var(--iphone-y-end)) rotateX(var(--iphone-x-end)) rotateZ(var(--iphone-z-end));
    }
}
@keyframes iphone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
@keyframes crack-draw {
    0% { stroke-dashoffset: 1; opacity: 0; }
    20% { opacity: .75; }
    100% { stroke-dashoffset: 0; opacity: .68; }
}
@keyframes crack-heal {
    0% { stroke-dashoffset: 0; opacity: .42; }
    70% { opacity: .22; }
    100% { stroke-dashoffset: 1; opacity: 0; }
}
@keyframes warning-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239,100,97,.22); }
    50% { transform: scale(1.06); box-shadow: 0 0 0 17px rgba(239,100,97,0); }
}
@keyframes scanner-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(96,165,250,.22); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 17px rgba(96,165,250,0); }
}
@keyframes scan-screen {
    0% { transform: translateY(0); opacity: 0; }
    12% { opacity: 1; }
    88% { opacity: 1; }
    100% { transform: translateY(465px); opacity: 0; }
}
@keyframes repair-tool {
    0%, 100% { transform: rotate(-4deg) scale(1); }
    45% { transform: rotate(7deg) scale(1.055); }
    65% { transform: rotate(1deg) scale(1.02); }
}
@keyframes repair-spark {
    0% { transform: translate(0, 0) scale(.2); opacity: 0; }
    18% { opacity: 1; }
    72% { opacity: .8; }
    100% { transform: translate(var(--spark-x), var(--spark-y)) scale(0); opacity: 0; }
}
@keyframes stage-dot {
    0%, 70%, 100% { transform: translateY(0); opacity: .28; }
    35% { transform: translateY(-4px); opacity: 1; }
}
@keyframes completion-burst {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(.35); }
    28% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
    62% { opacity: .9; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.55); }
}

/* Orange iPhone 17 Pro Max-style hero device and restoration sequence. */
.iphone-phone { width: 100%; }
.iphone-phone .phone-shell {
    padding: 7px;
    border: 1px solid rgba(255, 143, 109, .82);
    border-radius: 49px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.3), transparent 9%, transparent 89%, rgba(104,25,8,.24)),
        linear-gradient(145deg, #ff8a68 0%, #ff6336 22%, #ff521f 52%, #b92f0e 80%, #f24718 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,226,215,.72),
        inset 1px 0 0 rgba(255,190,169,.25),
        inset -1px 0 0 rgba(111,27,8,.22),
        0 0 0 1px rgba(105,27,10,.72),
        0 34px 72px -18px rgba(0,0,0,.82),
        0 0 76px rgba(255,82,31,.18);
    transition: box-shadow .85s ease, border-color .85s ease;
}
.iphone-phone .phone-shell::before,
.iphone-phone .phone-shell::after {
    content: "";
    position: absolute;
    top: 46px;
    bottom: 46px;
    z-index: 7;
    width: 1px;
    background: linear-gradient(transparent, rgba(255,220,208,.5) 18%, rgba(137,34,10,.22) 76%, transparent);
    pointer-events: none;
}
.iphone-phone .phone-shell::before { left: 3px; }
.iphone-phone .phone-shell::after { right: 3px; }
.iphone-phone .phone-screen {
    aspect-ratio: 9 / 19.5;
    border: 1px solid rgba(0,0,0,.95);
    border-radius: 42px;
    background: linear-gradient(160deg, #07111f, #0c1830 48%, #07101f);
    transition: background .85s ease;
}
.iphone-phone .phone-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(105deg, rgba(255,255,255,.045), transparent 19%, transparent 78%, rgba(255,255,255,.02)),
        repeating-linear-gradient(0deg, rgba(255,255,255,.012) 0 1px, transparent 1px 4px);
    pointer-events: none;
}
.galaxy-wallpaper {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 82% 22%, rgba(255,82,35,.32), transparent 25%),
        radial-gradient(ellipse at 18% 78%, rgba(38,114,255,.28), transparent 28%),
        radial-gradient(ellipse at 55% 48%, rgba(117,68,255,.2), transparent 32%),
        linear-gradient(155deg, #070b16, #0a1632 48%, #050914);
    opacity: .55;
    transform: scale(1.08);
    transition: opacity 1s ease, transform 1.2s cubic-bezier(.22,1,.36,1), filter 1s ease;
}
.iphone-phone .dynamic-island {
    z-index: 12;
    top: 13px;
    width: 82px;
    height: 25px;
    border: 1px solid rgba(255,255,255,.045);
    box-shadow: 0 1px 2px rgba(255,255,255,.05), inset 0 0 0 1px #000;
}
.iphone-phone .dynamic-island span {
    position: absolute;
    top: 50%;
    right: 8px;
    width: 7px;
    height: 7px;
    border-color: #161b25;
    background: radial-gradient(circle at 35% 30%, #24406c, #05070b 52%, #000 72%);
    transform: translateY(-50%);
}
.iphone-phone .phone-button {
    width: 3px;
    background: linear-gradient(#ff8a68, #b92f0e 48%, #ff521f);
    box-shadow: 0 0 1px rgba(255,205,189,.45);
}
.iphone-phone .phone-button-action { top: 103px; left: -4px; height: 30px; border-radius: 3px 0 0 3px; }
.iphone-phone .phone-button-volume-up { top: 151px; left: -4px; height: 49px; border-radius: 3px 0 0 3px; }
.iphone-phone .phone-button-volume-down { top: 211px; left: -4px; height: 49px; border-radius: 3px 0 0 3px; }
.iphone-phone .phone-button-power { top: 173px; right: -4px; height: 76px; border-radius: 0 3px 3px 0; }
.iphone-phone .home-indicator { bottom: 9px; width: 94px; height: 4px; opacity: .72; }

.iphone-phone .crack-overlay { z-index: 5; opacity: 1; transition: opacity .75s ease; }
.iphone-phone .crack-overlay path {
    stroke: rgba(227,239,255,.88);
    stroke-width: 1.05;
    filter: drop-shadow(0 0 2px rgba(137,187,255,.75));
}
.impact-flash {
    position: absolute;
    z-index: 4;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(215,234,255,.8);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.9) 0 2%, rgba(119,176,255,.28) 8%, transparent 62%);
    box-shadow: 0 0 28px rgba(116,170,255,.62), inset 0 0 20px rgba(255,255,255,.28);
    opacity: 0;
    transform: translate(-50%, -50%) scale(.15);
    pointer-events: none;
}
.impact-flash-one { top: 28%; left: 19%; }
.impact-flash-two { top: 20%; left: 79%; }
.impact-flash-three { top: 67%; left: 50%; }

.phone-stage {
    position: absolute;
    inset: 0;
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 52px 24px 38px;
    text-align: center;
    opacity: 0;
    transform: translateY(10px) scale(.97);
    pointer-events: none;
    transition: opacity .55s ease, transform .7s cubic-bezier(.22,1,.36,1);
}

.boot-logo { display: flex; flex-direction: column; align-items: center; }
.boot-logo-image {
    display: block;
    width: min(100%, 190px);
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .28));
}
.boot-progress {
    width: 148px;
    height: 2px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(255,255,255,.1);
}
.boot-progress i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, #ff3b0a, #ff9478); transform: scaleX(0); transform-origin: left; }
.brand-glitch {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent 0 19px, rgba(255,83,38,.05) 20px 21px);
    opacity: 0;
    pointer-events: none;
}

.restore-beam {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(86,151,255,.7) 18%, #fff 50%, rgba(255,79,35,.75) 82%, transparent);
    box-shadow: 0 -14px 42px rgba(79,139,255,.28), 0 0 20px rgba(255,255,255,.9), 0 12px 40px rgba(255,59,10,.2);
    opacity: 0;
}
.restore-core {
    position: relative;
    width: 100px;
    height: 100px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border: 1px solid rgba(100,156,255,.42);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74,129,255,.16), transparent 65%);
    box-shadow: 0 0 52px rgba(68,119,255,.16);
}
.restore-core::before,
.restore-core::after {
    content: "";
    position: absolute;
    inset: -12px;
    border: 1px dashed rgba(255,90,48,.34);
    border-radius: 50%;
}
.restore-core::after { inset: -28px; border-color: rgba(83,142,255,.2); }
.restore-core span { position: absolute; inset: 7px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.restore-core svg { width: 47px; height: 47px; fill: none; stroke: #8fb7ff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 8px rgba(103,157,255,.5)); }
.restore-stage > strong { color: #f5f8ff; font-size: 11px; letter-spacing: .15em; }
.restore-stage > small { margin-top: 8px; color: rgba(255,255,255,.42); font-size: 9px; letter-spacing: .06em; }
.repair-particles { position: absolute; inset: 0; }
.repair-particles span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    border-radius: 1px;
    background: #8ab4ff;
    box-shadow: 0 0 9px currentColor;
    opacity: 0;
}
.repair-particles span:nth-child(1) { --particle-x: -118px; --particle-y: -225px; }
.repair-particles span:nth-child(2) { --particle-x: 105px; --particle-y: -192px; animation-delay: .22s; }
.repair-particles span:nth-child(3) { --particle-x: -92px; --particle-y: -108px; animation-delay: .44s; color: #ff6843; }
.repair-particles span:nth-child(4) { --particle-x: 122px; --particle-y: -46px; animation-delay: .66s; }
.repair-particles span:nth-child(5) { --particle-x: -125px; --particle-y: 44px; animation-delay: .88s; color: #ff6843; }
.repair-particles span:nth-child(6) { --particle-x: 110px; --particle-y: 104px; animation-delay: 1.1s; }
.repair-particles span:nth-child(7) { --particle-x: -86px; --particle-y: 184px; animation-delay: 1.32s; }
.repair-particles span:nth-child(8) { --particle-x: 82px; --particle-y: 228px; animation-delay: 1.54s; color: #ff6843; }
.repair-particles span:nth-child(9) { --particle-x: -18px; --particle-y: -246px; animation-delay: 1.76s; }
.repair-particles span:nth-child(10) { --particle-x: 24px; --particle-y: 244px; animation-delay: 1.98s; }

.complete-check {
    position: relative;
    z-index: 2;
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border: 1px solid rgba(103,232,185,.48);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52,211,153,.2), rgba(14,70,74,.12) 60%, transparent);
    box-shadow: 0 0 44px rgba(52,211,153,.14), inset 0 0 28px rgba(52,211,153,.1);
}
.complete-check svg { width: 48px; height: 48px; fill: none; stroke: #6ee7b7; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.complete-stage > strong { color: #fff; font-size: 14px; letter-spacing: .18em; }
.complete-stage > small { margin-top: 9px; color: #ff7655; font-size: 9px; font-weight: 800; letter-spacing: .12em; }
.complete-orbit { position: absolute; top: 50%; left: 50%; width: 160px; height: 160px; border: 1px solid rgba(110,231,183,.12); border-radius: 50%; transform: translate(-50%, -64%); }
.complete-orbit::before { content: ""; position: absolute; inset: 18px; border: 1px dashed rgba(255,114,81,.18); border-radius: 50%; }
.complete-orbit span,
.complete-orbit i { position: absolute; top: 50%; left: -3px; width: 6px; height: 6px; border-radius: 50%; background: #6ee7b7; box-shadow: 0 0 10px #6ee7b7; }
.complete-orbit i { right: -3px; left: auto; background: #ff704d; box-shadow: 0 0 10px #ff704d; }
.device-health { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; width: 100%; margin-top: 42px; }
.device-health span { display: flex; align-items: center; justify-content: center; gap: 6px; min-height: 30px; border: 1px solid rgba(255,255,255,.07); border-radius: 8px; background: rgba(255,255,255,.035); color: rgba(255,255,255,.52); font-size: 7px; font-weight: 800; letter-spacing: .06em; }
.device-health i { width: 5px; height: 5px; border-radius: 50%; background: #49d69a; box-shadow: 0 0 7px rgba(73,214,154,.7); }

.hero-visual[data-stage="impact"] .phone-shell { animation: galaxy-impact .8s cubic-bezier(.36,.07,.19,.97) both; box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 0 0 1px rgba(0,0,0,.8), 0 34px 72px -18px rgba(0,0,0,.85), 0 0 95px rgba(239,68,68,.2); }
.hero-visual[data-stage="impact"] .phone-screen { background: linear-gradient(160deg, #15090f, #1e0c16 48%, #09070e); }
.hero-visual[data-stage="impact"] .phone-aura { background: radial-gradient(circle, rgba(239,68,68,.24), rgba(190,24,93,.09) 44%, transparent 72%); }
.hero-visual[data-stage="impact"] .crack-overlay path { animation: galaxy-crack-burst .82s cubic-bezier(.2,.75,.25,1) forwards; }
.hero-visual[data-stage="impact"] .crack-network-two path { animation-delay: .22s; }
.hero-visual[data-stage="impact"] .crack-network-three path { animation-delay: .42s; }
.hero-visual[data-stage="impact"] .impact-flash { animation: impact-ring .72s ease-out forwards; }
.hero-visual[data-stage="impact"] .impact-flash-two { animation-delay: .2s; }
.hero-visual[data-stage="impact"] .impact-flash-three { animation-delay: .4s; }

.hero-visual[data-stage="identity"] .brand-stage,
.hero-visual[data-stage="restore"] .restore-stage,
.hero-visual[data-stage="complete"] .complete-stage { opacity: 1; transform: translateY(0) scale(1); }
.hero-visual[data-stage="identity"] .phone-screen { background: linear-gradient(155deg, #090b13, #10152a 52%, #080a11); }
.hero-visual[data-stage="identity"] .phone-aura { background: radial-gradient(circle, rgba(255,59,10,.2), rgba(80,60,180,.07) 46%, transparent 72%); }
.hero-visual[data-stage="identity"] .crack-overlay path { stroke-dashoffset: 0; opacity: .28; }
.hero-visual[data-stage="identity"] .boot-logo { animation: brand-materialize .95s cubic-bezier(.22,1,.36,1) both; }
.hero-visual[data-stage="identity"] .boot-progress i { animation: boot-progress 2.35s .25s cubic-bezier(.4,0,.2,1) both; }
.hero-visual[data-stage="identity"] .brand-glitch { animation: brand-glitch 1.45s steps(2,end) both; }

.hero-visual[data-stage="restore"] .phone-screen { background: linear-gradient(155deg, #071022, #0e1d3d 48%, #0d1224); }
.hero-visual[data-stage="restore"] .phone-aura { background: radial-gradient(circle, rgba(63,124,255,.22), rgba(255,59,10,.07) 48%, transparent 72%); }
.hero-visual[data-stage="restore"] .crack-overlay path { stroke-dashoffset: 0; opacity: .52; animation: galaxy-crack-heal 3.45s cubic-bezier(.55,0,.45,1) forwards; }
.hero-visual[data-stage="restore"] .restore-beam { animation: restore-sweep 2.7s cubic-bezier(.45,0,.55,1) infinite; }
.hero-visual[data-stage="restore"] .restore-core::before { animation: core-orbit 5s linear infinite; }
.hero-visual[data-stage="restore"] .restore-core::after { animation: core-orbit 8s linear infinite reverse; }
.hero-visual[data-stage="restore"] .restore-core { animation: core-pulse 1.8s ease-in-out infinite; }
.hero-visual[data-stage="restore"] .repair-particles span { animation: particle-converge 2.3s ease-in infinite; }

.hero-visual[data-stage="complete"] .phone-screen { background: linear-gradient(155deg, #07131d, #0b2030 50%, #07121e); }
.hero-visual[data-stage="complete"] .galaxy-wallpaper { opacity: .9; transform: scale(1); filter: saturate(1.15) brightness(1.05); }
.hero-visual[data-stage="complete"] .phone-aura { background: radial-gradient(circle, rgba(52,211,153,.2), rgba(255,59,10,.07) 46%, transparent 72%); }
.hero-visual[data-stage="complete"] .crack-overlay,
.hero-visual[data-stage="complete"] .impact-flash { opacity: 0; }
.hero-visual[data-stage="complete"] .complete-check { animation: restored-pop .9s .15s cubic-bezier(.22,1,.36,1) both; }
.hero-visual[data-stage="complete"] .complete-orbit { animation: orbit-float 8s linear infinite; }
.hero-visual[data-stage="complete"] .phone-shell { border-color: rgba(110,231,183,.2); box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 0 0 1px rgba(0,0,0,.8), 0 34px 72px -18px rgba(0,0,0,.82), 0 0 92px rgba(52,211,153,.14); }

@keyframes galaxy-impact {
    0%, 100% { transform: translate3d(0,0,0) rotate(0); }
    14% { transform: translate3d(-7px,2px,0) rotate(-.8deg); }
    28% { transform: translate3d(6px,-2px,0) rotate(.7deg); }
    42% { transform: translate3d(-4px,1px,0) rotate(-.45deg); }
    58% { transform: translate3d(3px,0,0) rotate(.3deg); }
    74% { transform: translate3d(-1px,0,0) rotate(-.1deg); }
}
@keyframes galaxy-crack-burst {
    0% { stroke-dashoffset: 1; opacity: 0; }
    12% { opacity: 1; }
    70% { stroke-dashoffset: 0; opacity: .92; }
    100% { stroke-dashoffset: 0; opacity: .68; }
}
@keyframes impact-ring {
    0% { opacity: 0; transform: translate(-50%,-50%) scale(.12); }
    24% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%,-50%) scale(2.7); }
}
@keyframes brand-materialize {
    0% { opacity: 0; filter: blur(12px); transform: scale(.72); }
    55% { opacity: 1; filter: blur(0); transform: scale(1.06); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes boot-progress { 0% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
@keyframes brand-glitch {
    0%, 100% { opacity: 0; transform: translateY(0); }
    12%, 18% { opacity: .8; transform: translateY(-5px); }
    35%, 42% { opacity: .5; transform: translateY(8px); }
    63%, 69% { opacity: .38; transform: translateY(-2px); }
}
@keyframes galaxy-crack-heal {
    0% { stroke-dashoffset: 0; opacity: .58; filter: drop-shadow(0 0 3px rgba(137,187,255,.8)); }
    35% { opacity: .78; filter: drop-shadow(0 0 6px rgba(96,165,250,1)); }
    100% { stroke-dashoffset: -1; opacity: 0; filter: drop-shadow(0 0 0 transparent); }
}
@keyframes restore-sweep {
    0% { bottom: 2%; opacity: 0; }
    12% { opacity: 1; }
    82% { opacity: 1; }
    100% { bottom: 96%; opacity: 0; }
}
@keyframes core-orbit { to { transform: rotate(360deg); } }
@keyframes core-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 45px rgba(68,119,255,.14); }
    50% { transform: scale(1.045); box-shadow: 0 0 70px rgba(68,119,255,.24); }
}
@keyframes particle-converge {
    0% { opacity: 0; transform: translate(var(--particle-x),var(--particle-y)) rotate(0) scale(.3); }
    18% { opacity: .95; }
    80% { opacity: .7; }
    100% { opacity: 0; transform: translate(0,0) rotate(180deg) scale(1.4); }
}
@keyframes restored-pop {
    0% { opacity: 0; transform: scale(.35) rotate(-12deg); }
    58% { opacity: 1; transform: scale(1.1) rotate(2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes orbit-float {
    from { transform: translate(-50%,-64%) rotate(0); }
    to { transform: translate(-50%,-64%) rotate(360deg); }
}

.services-section { padding-bottom: 76px; }
.section-heading span { display: block; margin-bottom: 8px; color: var(--orange); font-size: var(--text-eyebrow); font-weight: 750; line-height: 1.2; }
.section-heading h2 { margin: 0; font-size: var(--heading-section); font-weight: 760; line-height: 1.12; letter-spacing: -.03em; }
.section-heading p { margin: 12px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.55; }
.services-heading h2 { color: var(--orange); font-size: clamp(20px, 2vw, 28px); }

.service-grid {
    display: grid;
    grid-template-columns: 1.72fr 1fr;
    gap: 24px;
    margin-top: 28px;
    padding: 28px;
    border-radius: 24px;
    background: #0f162a;
}
.service-card {
    border: 1px solid transparent;
    border-radius: 18px;
    background: #162139;
    box-shadow: none;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1),
                box-shadow .35s cubic-bezier(.22, 1, .36, 1),
                border-color .35s ease,
                background-color .35s ease;
}
.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 59, 10, .4);
    background-color: #1b2745;
    box-shadow: 0 22px 44px rgba(0, 0, 0, .3);
}
.service-card h3 { margin: 0; font-size: clamp(1.35rem, 1.08rem + .9vw, 2rem); font-weight: 750; line-height: 1.12; letter-spacing: -.025em; }
.service-card p { margin: 12px 0 0; color: #c2c7d0; font-size: .9375rem; font-weight: 500; line-height: 1.45; }
.service-icon { width: 46px; height: 58px; fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; transition: transform .35s cubic-bezier(.22, 1, .36, 1); }
.service-card:hover .service-icon { transform: scale(1.08); }
.service-card-primary {
    min-height: 334px;
    display: flex;
    flex-direction: column;
    padding: 30px;
}
.service-card-primary h3 { margin-top: 18px; font-size: clamp(1.75rem, 1.3rem + 1.3vw, 2.5rem); }
.service-card-primary p { max-width: 480px; font-size: 1rem; }
.text-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    color: var(--orange);
    font-weight: 750;
    font-size: .9375rem;
}
.text-link span { font-size: 36px; font-weight: 300; transition: transform .3s cubic-bezier(.22, 1, .36, 1); }
.service-card:hover .text-link span { transform: translateX(4px); }
.service-stack { display: grid; gap: 18px; }
.service-card-small { min-height: 158px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 10px; padding: 22px 26px; }
.service-card-small h3 { font-size: clamp(1.15rem, 1.02rem + .5vw, 1.45rem); }
.service-card-small p { margin-top: 4px; font-size: .8125rem; }
.service-card-wide {
    grid-column: 1 / -1;
    min-height: 210px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto 1fr;
    align-items: center;
    gap: 14px 32px;
    padding: 28px 32px;
}
.service-card-wide .laptop-icon { grid-column: 1 / -1; grid-row: 1; width: 58px; height: 46px; }
.service-card-wide > div { grid-column: 1; grid-row: 2; }
.service-card-wide .button { grid-column: 2; grid-row: 2; }
.service-card-wide h3 { font-size: clamp(1.6rem, 1.2rem + 1vw, 2.25rem); }
.service-card-wide p { max-width: 700px; }

.collection-section { padding-bottom: 82px; }
.collection-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}
.collection-heading > div { min-width: 0; }
.collection-controls { display: inline-flex; align-items: center; gap: 9px; }
.collection-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: rgba(17, 29, 54, .88);
    color: #dce2ec;
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.collection-arrow:hover {
    border-color: rgba(255, 104, 66, .5);
    background: rgba(255, 59, 10, .11);
    color: #fff;
    transform: translateY(-1px);
}
.collection-arrow:focus-visible { outline: 3px solid rgba(255, 59, 10, .32); outline-offset: 3px; }
.collection-arrow svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.collection-motion-toggle {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 99px;
    background: rgba(17, 29, 54, .88);
    color: #dce2ec;
    font: inherit;
    font-size: .75rem;
    font-weight: 750;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
    cursor: pointer;
    transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}
.collection-motion-toggle:hover {
    border-color: rgba(255, 104, 66, .5);
    background: rgba(255, 59, 10, .11);
    color: #fff;
    transform: translateY(-1px);
}
.collection-motion-toggle:focus-visible { outline: 3px solid rgba(255, 59, 10, .32); outline-offset: 3px; }
.collection-motion-toggle svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.collection-motion-toggle .collection-play-icon { display: none; }
.collection-motion-toggle[aria-pressed="true"] .collection-pause-icon { display: none; }
.collection-motion-toggle[aria-pressed="true"] .collection-play-icon { display: block; }

.phone-showcase {
    --collection-accent: 255, 79, 32;
    position: relative;
    margin-top: 34px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, .075);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 48%, rgba(var(--collection-accent), .1), transparent 32%),
        linear-gradient(90deg, rgba(255, 255, 255, .018), transparent 24%, transparent 76%, rgba(255, 255, 255, .018)),
        linear-gradient(145deg, #071126 0%, #020815 55%, #081329 100%);
    box-shadow: 0 30px 78px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .04);
}
.phone-showcase.is-focused {
    background:
        radial-gradient(circle at 50% 46%, rgba(var(--collection-accent), .2), transparent 28%),
        linear-gradient(90deg, rgba(255, 255, 255, .018), transparent 24%, transparent 76%, rgba(255, 255, 255, .018)),
        linear-gradient(145deg, #071126 0%, #020815 55%, #081329 100%);
}
.phone-showcase::before,
.phone-showcase::after {
    content: "";
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    width: clamp(40px, 8vw, 125px);
    pointer-events: none;
}
.phone-showcase::before { left: 0; background: linear-gradient(90deg, #071126 10%, transparent); }
.phone-showcase::after { right: 0; background: linear-gradient(-90deg, #081329 10%, transparent); }
.phone-showcase-glow {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: min(68%, 760px);
    height: 82px;
    border-radius: 50%;
    background-color: rgba(var(--collection-accent), .18);
    box-shadow: 0 0 128px 32px rgba(var(--collection-accent), .08);
    filter: blur(38px);
    opacity: .62;
    transform: translate(-50%, -50%);
    transition: width .8s ease, height .8s ease, opacity .8s ease, background-color .8s ease, box-shadow .8s ease;
}
.phone-showcase.is-focused .phone-showcase-glow {
    width: min(48%, 560px);
    height: 112px;
    background-color: rgba(var(--collection-accent), .32);
    box-shadow: 0 0 142px 42px rgba(var(--collection-accent), .14);
    opacity: 1;
}
.phone-showcase-top-light,
.phone-showcase-bottom-light {
    position: absolute;
    z-index: 2;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) rotateX(72deg);
    transition: background-color .8s ease, box-shadow .8s ease;
}
.phone-showcase-top-light {
    top: 10%;
    width: clamp(110px, 15vw, 210px);
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, .92), rgba(var(--collection-accent), .4) 45%, transparent 78%);
    box-shadow: 0 0 54px 10px rgba(var(--collection-accent), .32), inset 0 0 18px rgba(255, 255, 255, .4);
    opacity: .82;
}
.phone-showcase-bottom-light {
    bottom: 8%;
    width: clamp(150px, 20vw, 300px);
    height: 42px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, .88), rgba(var(--collection-accent), .45) 42%, transparent 80%);
    box-shadow: 0 0 100px 28px rgba(var(--collection-accent), .3);
    opacity: .9;
}
.phone-showcase.is-focused .phone-showcase-top-light { opacity: 1; box-shadow: 0 0 64px 14px rgba(var(--collection-accent), .42), inset 0 0 18px rgba(255, 255, 255, .45); }
.phone-showcase.is-focused .phone-showcase-bottom-light { opacity: 1; box-shadow: 0 0 118px 34px rgba(var(--collection-accent), .4); }
.phone-showcase-stage {
    position: relative;
    z-index: 4;
    height: 520px;
    overflow: hidden;
    outline: none;
    perspective: 1500px;
    touch-action: pan-y;
    cursor: grab;
}
.phone-showcase-stage:active { cursor: grabbing; }
.phone-showcase-stage:focus-visible { box-shadow: inset 0 0 0 3px rgba(255, 59, 10, .28); }
.phone-showcase-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: var(--phone-z, 1);
    width: clamp(92px, 8.5vw, 136px);
    height: clamp(150px, 13vw, 210px);
    opacity: var(--phone-opacity, 0);
    filter: blur(var(--phone-blur, 0px)) brightness(var(--phone-brightness, .72));
    transform: translate(-50%, -50%) translate3d(var(--phone-x, 0), var(--phone-y, 0), 0) rotateY(var(--phone-rotate, 0deg)) rotateZ(var(--phone-tilt, 0deg)) scale(var(--phone-scale, .7));
    transform-origin: 50% 50%;
    cursor: pointer;
    pointer-events: var(--phone-pointer, auto);
    will-change: transform, opacity, filter;
    transition:
        transform .72s cubic-bezier(.2, .82, .2, 1),
        opacity .5s ease,
        filter .5s ease;
}
.phone-showcase:not(.is-focused):not(.is-rejoining) .phone-showcase-slide { transition: none; }
.phone-showcase-slide.is-active { cursor: default; }
.phone-showcase-device {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform .32s cubic-bezier(.2, .8, .2, 1), filter .3s ease;
}
.phone-showcase-device.is-entering {
    animation: collection-device-focus 1s cubic-bezier(.2, .82, .2, 1);
}
.phone-showcase:not(.is-focused) .phone-showcase-slide:hover .phone-showcase-device { transform: scale(1.07); filter: brightness(1.08) saturate(1.08); }
.phone-showcase-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    filter: drop-shadow(0 30px 28px rgba(0, 0, 0, .5));
}

.device-focus-info {
    position: absolute;
    z-index: 70;
    top: 50%;
    width: min(25%, 310px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .42s ease, transform .58s cubic-bezier(.2, .82, .2, 1), visibility .42s;
}
.device-focus-info-left {
    left: clamp(24px, 4.5vw, 68px);
    transform: translate(-28px, -50%);
}
.device-focus-info-right {
    right: clamp(24px, 4.5vw, 68px);
    transform: translate(28px, -50%);
}
.phone-showcase.is-focused .device-focus-info {
    visibility: visible;
    opacity: 1;
    transform: translate(0, -50%);
    transition-delay: .28s;
}
.device-focus-info > span,
.device-focus-finish span {
    display: block;
    color: var(--orange);
    font-size: .625rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.device-focus-info h3 {
    max-width: 300px;
    margin: 10px 0 0;
    color: #fff;
    font-size: clamp(1.65rem, 1.3rem + 1vw, 2.4rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.04em;
}
.device-focus-finish { margin-top: 24px; }
.device-focus-finish strong { display: block; margin-top: 5px; color: #eef1f6; font-size: .875rem; font-weight: 750; }
.device-focus-info-right p {
    max-width: 320px;
    margin: 12px 0 0;
    color: #bbc4d3;
    font-size: clamp(.8125rem, .75rem + .18vw, .9375rem);
    line-height: 1.65;
}
.device-focus-close {
    position: absolute;
    z-index: 80;
    right: 24px;
    bottom: 22px;
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 99px;
    background: rgba(8, 18, 38, .82);
    color: #c8d0dc;
    font: inherit;
    font-size: .6875rem;
    font-weight: 720;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s, border-color .2s ease, color .2s ease;
}
.device-focus-close svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.device-focus-close:hover { border-color: rgba(255, 79, 32, .5); color: #fff; }
.device-focus-close:focus-visible { outline: 3px solid rgba(255, 59, 10, .32); outline-offset: 3px; }
.phone-showcase.is-focused .device-focus-close {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: .4s, .4s, 0s, 0s, 0s;
}

@keyframes collection-device-focus {
    0% { transform: translateY(18px) rotateY(-76deg) scale(.8); filter: brightness(.72) saturate(.72); }
    68% { transform: translateY(-7px) rotateY(8deg) scale(1.04); filter: brightness(1.1) saturate(1.1); }
    100% { transform: translateY(0) rotateY(0) scale(1); filter: brightness(1) saturate(1); }
}

@media (prefers-reduced-motion: reduce) {
    .phone-showcase-slide { transition-duration: .01ms; }
    .phone-showcase-device.is-entering { animation: none; }
}

.offers-section { padding-bottom: 76px; }
.offers-card {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 48px;
    padding: 42px;
    border: 0;
    border-radius: 18px;
    background: var(--panel);
    box-shadow: none;
}
.offers-card .section-heading h2 { color: var(--orange); font-size: clamp(1.55rem, 1.2rem + 1vw, 2.1rem); }
.offers-list { display: grid; gap: 22px; margin-top: 34px; }
.offers-list article { display: grid; grid-template-columns: 56px 1fr; align-items: center; gap: 20px; }
.offers-list h3 { margin: 0; font-size: clamp(1.15rem, 1.02rem + .5vw, 1.45rem); font-weight: 720; line-height: 1.2; }
.offers-list p { max-width: 360px; margin: 5px 0 0; color: #c0c6d0; font-size: .875rem; line-height: 1.45; }
.round-icon { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 50%; background: var(--orange); }
.round-icon svg { width: 29px; height: 29px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.offers-visual {
    min-height: 326px;
    align-self: stretch;
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #172242;
}
.offers-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.endorsements { padding-block: 70px 82px; }
.centered-heading { text-align: center; }
.centered-heading p { max-width: 700px; margin-inline: auto; }

/* Google reviews slider (replaces old .endorsement-grid / .endorsement-card) */
.review-swiper-wrap { position: relative; margin-top: 54px; padding-inline: 56px; }
.review-swiper { position: relative; overflow: hidden; padding-bottom: 50px; }
.review-swiper .swiper-slide { height: auto; }

.review-card-tile {
    height: 100%;
    min-height: 270px;
    padding: 30px 28px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    background: #0e1931;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.review-card-head { display: flex; align-items: center; gap: 14px; }
.review-avatar {
    display: grid; place-items: center;
    width: 42px; height: 42px; flex: 0 0 42px;
    border-radius: 50%; background: var(--orange-bright);
    color: #fff; font-weight: 800;
}
.review-card-head strong { display: block; color: #fff; font-size: .9375rem; }
.review-card-head small { display: block; margin-top: 2px; color: var(--muted); font-size: .75rem; font-weight: 500; }
.review-stars-row { display: flex; align-items: center; gap: 10px; margin-top: 14px; color: #fbbf24; font-size: .9rem; }
.review-card-tile p { margin: 14px 0 0; color: #c2c7d0; font-size: .875rem; line-height: 1.6; }

.review-swiper .swiper-pagination { bottom: 4px !important; }
.review-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.25); opacity: 1; }
.review-swiper .swiper-pagination-bullet-active { background: var(--orange-bright); }

/* Arrows sit outside the card row, like a floating prev/next control */
.review-swiper-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    background: rgba(17, 29, 54, .88);
    color: #dce2ec;
    transform: translateY(-50%);
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.review-swiper-nav:hover {
    color: #fff;
    border-color: rgba(255, 104, 66, .5);
    background: rgba(255, 59, 10, .11);
    transform: translateY(-50%);
}
.review-swiper-nav::after { font-size: 15px; font-weight: 800; }
.review-swiper-wrap .swiper-button-prev { left: 0; }
.review-swiper-wrap .swiper-button-next { right: 0; }
.review-swiper-nav.swiper-button-disabled { opacity: .35; pointer-events: none; }


.booking { padding-bottom: 58px; }
.booking-inner {
    min-height: 332px;
    display: grid;
    align-content: center;
    justify-items: center;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, .02);
    border-radius: 20px;
    background: var(--panel);
    box-shadow: var(--shadow);
}
.booking .section-heading h2 { font-size: clamp(2rem, 1.55rem + 1.25vw, 2.75rem); }
.booking .section-heading p { max-width: 670px; color: #c7ccd5; }
.booking-actions { display: flex; gap: 190px; margin-top: 34px; }
.booking-actions .button { min-width: 250px; min-height: 54px; border-radius: 7px; font-size: .9375rem; }

.site-footer { padding: 32px 0 0; background: var(--ink-deep); }
.footer-shell { display: grid; grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr)); gap: 28px; }

.footer-logo { display: inline-block; }
.footer-logo img { display: block; width: 210px; height: auto; }
.footer-intro p { max-width: 290px; margin: 14px 0 16px; color: #e7e9ee; font-size: .875rem; line-height: 1.5; }

.footer-contact-list { list-style: none; margin: 0 0 14px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.footer-contact-item { display: flex; align-items: center; gap: 9px; color: var(--white); font-size: .875rem; font-weight: 600; }
.footer-contact-item svg { width: 16px; height: 16px; flex: none; fill: none; stroke: var(--orange); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact-item-plain { padding-left: 25px; }
.footer-contact-item a { color: inherit; overflow-wrap: anywhere; }
.footer-contact-item a:hover { color: var(--orange); }

.footer-social { display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border: 1.5px solid var(--orange); border-radius: 999px; }
.footer-social-icon { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 999px; overflow: hidden; }
.footer-social-icon svg { width: 100%; height: 100%; }
.footer-social-facebook { background: #1877f2; }
.footer-social-facebook svg { padding: 6px; fill: #fff; }
.footer-social-instagram { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); border-radius: 7px; }
.footer-social-instagram svg rect { fill: none; stroke: #fff; stroke-width: 1.6; }
.footer-social-twitter { background: #1da1f2; }
.footer-social-twitter svg { padding: 6px; fill: #fff; }
.footer-social-tiktok { background: #010101; border-radius: 7px; }
.footer-social-divider { width: 1px; height: 18px; background: var(--orange); }
.footer-social-wrap { display: inline-flex; align-items: center; gap: 10px; }
.footer-social-store-toggle { display: inline-flex; align-items: center; justify-content: space-between; gap: 6px; width: 130px; background: transparent; border: 1.5px solid var(--orange); color: var(--white); font: inherit; font-size: .8rem; font-weight: 600; padding: 7px 12px; border-radius: 999px; cursor: pointer; }
.footer-social-caret { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform .15s ease; }
#footer-social-dropdown.is-open .footer-social-caret { transform: rotate(180deg); }
.footer-social-store-dropdown { position: relative; }
.footer-social-store-menu { position: absolute; bottom: calc(100% + 8px); left: 0; width: 130px; background: var(--ink-deep); border: 1px solid var(--orange); border-radius: 10px; padding: 4px; margin: 0; list-style: none; display: none; z-index: 20; }
#footer-social-dropdown.is-open .footer-social-store-menu { display: block; }
.footer-social-store-option { padding: 8px 10px; font-size: .8rem; color: #f1f2f5; border-radius: 6px; cursor: pointer; }
.footer-social-store-option:hover { background: rgba(255,255,255,.12); outline: none; }
.footer-social-store-option:focus-visible { outline: 1px solid var(--orange); }
.footer-social-store-option[aria-selected="true"] { color: var(--orange); font-weight: 700; background: rgba(255,255,255,.12); }
.footer-social-store-menu:hover .footer-social-store-option[aria-selected="true"]:not(:hover) { background: transparent; }

.footer-column { display: flex; flex-direction: column; }
.footer-column h3 { position: relative; margin: 0 0 18px; padding-bottom: 10px; color: var(--white); font-size: 1.125rem; font-weight: 750; line-height: 1.25; }
.footer-column h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; border-radius: 2px; background: var(--orange); }
.footer-column > a { color: #f1f2f5; font-size: .875rem; font-weight: 600; line-height: 1.45; text-decoration: none; }
.footer-column > a:not(:last-of-type) { margin-bottom: 15px; }
.footer-column > a:hover { color: var(--orange); }
.footer-arrow-link { display: inline-flex; align-items: center; gap: 6px; width: max-content; max-width: 100%; }
.footer-arrow-link svg { width: 14px; height: 14px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.footer-email-block { display: grid; grid-template-columns: 16px minmax(0, 1fr); align-items: start; gap: 8px; margin-bottom: 14px; }
.footer-email-block > svg { width: 16px; height: 16px; margin-top: 2px; fill: none; stroke: var(--orange); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.footer-email-block div { display: grid; gap: 2px; min-width: 0; }
.footer-email-block span { color: var(--muted); font-size: .6875rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.footer-email-block a { color: #f1f2f5; font-size: .8125rem; font-weight: 650; overflow-wrap: anywhere; }
.footer-email-block a:hover { color: var(--orange); }
.footer-store-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.footer-store-list li { position: relative; padding-left: 12px; border-left: 2px solid rgba(255, 59, 10, .55); }
.footer-store-list strong { display: block; margin-bottom: 3px; color: var(--white); font-size: .8125rem; font-weight: 750; }
.footer-store-list address { margin: 0 0 3px; color: #b8c0cd; font: 500 .75rem/1.4 Inter, ui-sans-serif, sans-serif; }
.footer-store-list address a { color: inherit; }
.footer-store-list > li > a { color: #f1f2f5; font-size: .75rem; font-weight: 700; }
.footer-store-list a:hover { color: var(--orange); }

.footer-bottom { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-top: 32px; padding-block: 18px; padding-inline: max(36px, calc((100% - var(--page-width)) / 2)); border-top: 1px solid rgba(247, 248, 251, .18); }
.footer-copyright { display: flex; align-items: center; gap: 7px; margin: 0; color: var(--white); font-size: .8125rem; font-weight: 700; }
.footer-copyright-icon { width: 16px; height: 16px; fill: none; stroke: var(--white); stroke-width: 1.4; }
.footer-brand-highlight { color: var(--orange); }
.footer-legal-links { display: flex; align-items: center; gap: 12px; }
.footer-legal-links a { color: var(--white); font-size: .8125rem; font-weight: 700; text-decoration: none; }
.footer-legal-links a:hover { color: var(--orange); }
.footer-legal-links span { color: var(--orange); font-size: .8125rem; }

@media (max-width: 1180px) {
    .nav-shell { grid-template-columns: 200px 1fr auto; gap: 16px; }
    .brand img { width: 150px; }
    .primary-nav { gap: 22px; font-size: 12px; }
    .hero { gap: 60px; }
    .booking-actions { gap: 90px; }
    .footer-shell { grid-template-columns: 1.2fr repeat(3, 1fr); row-gap: 32px; }
}

@media (max-width: 960px) {
    .section-shell, .nav-shell, .footer-shell { width: min(calc(100% - 40px), var(--page-width)); }
    .footer-bottom { padding-inline: 20px; }
    .nav-shell { grid-template-columns: 1fr auto auto; }
    .site-header { height: 80px; }
    .brand img { width: 132px; height: auto; }
    .menu-backdrop {
        position: fixed;
        inset: 80px 0 0;
        z-index: 1;
        display: block;
        width: 100%;
        height: calc(100dvh - 80px);
        padding: 0;
        border: 0;
        background: rgba(1, 7, 20, .68);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        cursor: default;
        backdrop-filter: blur(3px);
        transition: opacity .32s ease, visibility 0s linear .32s;
    }
    .menu-backdrop.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }
    .primary-nav {
        position: fixed;
        top: 80px;
        right: 0;
        bottom: 0;
        z-index: 2;
        display: grid;
        width: min(86vw, 360px);
        height: calc(100dvh - 80px);
        align-content: start;
        justify-content: stretch;
        gap: 0;
        padding: 22px 24px 36px;
        overflow-y: auto;
        background: linear-gradient(160deg, rgba(8, 27, 62, .995), rgba(3, 13, 32, .995));
        border-left: 1px solid rgba(255, 255, 255, .08);
        box-shadow: -28px 0 70px rgba(0, 0, 0, .38);
        transform: translate3d(104%, 0, 0);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        will-change: transform, opacity;
        transition:
            transform .46s cubic-bezier(.22, 1, .36, 1),
            opacity .3s ease,
            visibility 0s linear .46s;
        overscroll-behavior: contain;
    }
    .primary-nav.open {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }
    .primary-nav a {
        padding: 17px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, .055);
        font-size: 16px;
        opacity: 0;
        transform: translateX(18px);
        transition:
            color .2s ease,
            opacity .28s ease,
            transform .38s cubic-bezier(.22, 1, .36, 1);
    }
    .primary-nav.open a { opacity: 1; transform: translateX(0); }
    .primary-nav.open a:nth-child(1) { transition-delay: .07s; }
    .primary-nav.open a:nth-child(2) { transition-delay: .1s; }
    .primary-nav.open a:nth-child(3) { transition-delay: .13s; }
    .primary-nav.open a:nth-child(4) { transition-delay: .16s; }
    .primary-nav.open a:nth-child(5) { transition-delay: .19s; }
    .primary-nav.open a:nth-child(6) { transition-delay: .22s; }
    .primary-nav a::after { display: none; }
    .menu-toggle {
        position: relative;
        z-index: 3;
        display: grid;
        width: 44px;
        height: 44px;
        place-content: center;
        gap: 5px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: transparent;
        cursor: pointer;
        transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
    }
    .menu-toggle:hover { border-color: rgba(255, 255, 255, .24); }
    .menu-toggle[aria-expanded="true"] {
        border-color: rgba(255, 59, 10, .42);
        background: rgba(255, 59, 10, .09);
        box-shadow: 0 0 24px rgba(255, 59, 10, .1);
    }
    .menu-toggle span:not(.sr-only) {
        display: block;
        width: 21px;
        height: 2px;
        border-radius: 99px;
        background: #fff;
        transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .2s ease;
    }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero { min-height: auto; grid-template-columns: 1fr; padding-block: 56px; }
    .hero-copy { max-width: 760px; }
    .home-hero-copy { padding-top: 0; }
    .hero-visual { min-height: 620px; justify-content: center; }
    .service-grid { grid-template-columns: 1fr; }
    .service-card-wide { grid-column: auto; grid-template-columns: 72px 1fr; grid-template-rows: auto auto; }
    .service-card-wide .laptop-icon { grid-column: 1; grid-row: 1 / 3; }
    .service-card-wide > div { grid-column: 2; grid-row: 1; }
    .service-card-wide .button { grid-column: 2; grid-row: 2; justify-self: start; }
    .phone-showcase-stage { height: 480px; }
    .device-focus-info { width: min(27%, 250px); }
    .device-focus-info-left { left: 24px; }
    .device-focus-info-right { right: 24px; }
    .offers-card { grid-template-columns: 1fr; }
    .offers-visual { min-height: 240px; }
    .booking-actions { gap: 26px; }
    .footer-shell { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
    .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
    .section-shell, .nav-shell, .footer-shell { width: min(calc(100% - 28px), var(--page-width)); }
    .footer-bottom { padding-inline: 14px; }
    .header-cta { display: none; }
    .nav-shell { grid-template-columns: 1fr auto; }
    .hero { padding-block: 56px 48px; }
    .contact-chips { width: 100%; align-items: flex-start; flex-direction: column; gap: 10px; }
    .contact-combined-pill { width: min(100%, 330px); }
    .location-picker { flex: 1 1 50%; min-width: 0; }
    .location-picker-toggle { width: 100%; }
    .contact-phone { flex: 1 1 50%; width: auto; min-width: 0; padding-inline: 8px; }
    .hero h1 { font-size: clamp(2.35rem, 10.5vw, 3.1rem); }
    .hero-copy > p { font-size: 15px; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 14px; margin-top: 32px; }
    .hero-actions .button { min-width: 0; min-height: 56px; font-size: 1rem; }
    .hero-visual { min-height: 585px; }
    .phone-aura { width: 330px; height: 330px; }
    .phone-presentation {
        --iphone-y-start: -14deg;
        --iphone-y-end: -17deg;
        --iphone-x-start: 3deg;
        --iphone-x-end: 2deg;
        --iphone-z-start: 2deg;
        --iphone-z-end: 1deg;
        width: min(100%, 242px);
    }
    .phone-float { width: min(100%, 265px); }
    .phone-shell { border-radius: 43px; }
    .phone-screen { border-radius: 34px; }
    .phone-review { padding: 62px 18px 34px; }
    .phone-review figcaption { margin-bottom: 14px; }
    .review-stars { margin-bottom: 14px; font-size: 18px; }
    .phone-review blockquote { margin-bottom: 18px; font-size: 12px; }
    .google-review-badge { margin-top: 18px; padding: 7px 10px; font-size: 9px; }
    .section-heading h2 { font-size: 31px; }
    .service-grid { margin-top: 32px; }
    .service-card-primary { min-height: 285px; padding: 25px; }
    .service-card-primary h3 { font-size: 28px; }
    .service-card-primary p { font-size: 15px; }
    .service-card-small { min-height: 130px; padding: 20px; }
    .service-card-wide { grid-template-columns: 1fr; padding: 25px; }
    .service-card-wide .button { grid-column: auto; width: 100%; }
    .service-card-wide h3 { font-size: 27px; }
    .service-grid { gap: 16px; padding: 16px; }
    .service-card-small { min-height: auto; }
    .service-card-wide { grid-template-columns: 1fr; grid-template-rows: auto auto auto; padding: 25px; }
    .service-card-wide .laptop-icon,
    .service-card-wide > div,
    .service-card-wide .button { grid-column: 1; grid-row: auto; }
    .service-card-wide .button { width: 100%; }
    .collection-section, .offers-section { padding-bottom: 56px; }
    .collection-heading { align-items: flex-start; flex-direction: column; gap: 20px; }
    .collection-controls { width: 100%; justify-content: flex-end; }
    .collection-motion-toggle { width: 44px; padding: 0; border-radius: 50%; }
    .collection-motion-toggle span { display: none; }
    .phone-showcase { margin-top: 24px; border-radius: 20px; }
    .phone-showcase-stage { height: 520px; }
    .phone-showcase.is-focused .phone-showcase-stage { height: 610px; }
    .phone-showcase-slide { width: 94px; height: 150px; }
    .device-focus-info {
        top: 380px;
        bottom: auto;
        width: calc(50% - 30px);
    }
    .device-focus-info-left { left: 18px; transform: translate(-12px, 10px); }
    .device-focus-info-right { right: 18px; transform: translate(12px, 10px); }
    .phone-showcase.is-focused .device-focus-info { transform: translate(0, 0); }
    .device-focus-info h3 { margin-top: 7px; font-size: clamp(1.2rem, 5vw, 1.55rem); }
    .device-focus-finish { margin-top: 14px; }
    .device-focus-info-right p { margin-top: 8px; font-size: .75rem; line-height: 1.5; overflow-wrap: anywhere; }
    .phone-showcase.is-focused .phone-showcase-bottom-light { top: 56%; bottom: auto; }
    .device-focus-close { right: 50%; bottom: 18px; transform: translate(50%, 8px); }
    .phone-showcase.is-focused .device-focus-close { transform: translate(50%, 0); }
    .offers-card { gap: 30px; padding: 26px 20px; }
    .offers-list { gap: 20px; margin-top: 28px; }
    .offers-list article { grid-template-columns: 46px 1fr; gap: 14px; }
    .round-icon { width: 46px; height: 46px; }
    .offers-visual { min-height: 190px; }
    .review-swiper-wrap { padding-inline: 40px; }
    .review-swiper-nav { width: 36px; height: 36px; }
    .review-swiper-nav::after { font-size: 13px; }
    .review-card-tile { min-height: 180px; padding: 24px 22px; }
    .booking-inner { padding: 38px 20px; }
    .booking .section-heading h2 { font-size: 33px; }
    .booking-actions { width: 100%; flex-direction: column; gap: 14px; }
    .booking-actions .button { min-width: 0; width: 100%; }
    .site-footer { padding-top: 28px; }
    .footer-shell { grid-template-columns: 1fr; gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
    .collection-motion-toggle { display: none; }
}



@media (prefers-reduced-motion: reduce) {
    :is(
        .service-card,
        .offers-card,
        .review-card-tile,
        .repair-device-card,
        .other-service-card,
        .pillar-card,
        .flow-card,
        .service-select-card,
        .flow-feature-card,
        .delivery-card,
        .pricing-mode-option,
        .review-card,
        .info-card,
        .call-direct-card,
        .macbook-related-card,
        .macbook-fault-card,
        .macbook-repair-card
    ) {
        transition: none;
        transform: none !important;
    }

    .macbook-hero-image { animation: none !important; }
}

/* Shared hero/icon-badge component rules (used across Repair Services, Contact, and About pages) */
.hero.repair-page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 64px 44px;
    justify-items: center;
    text-align: center;
}
.repair-page-hero .hero-copy {
    max-width: 760px;
    margin: 0 auto;
}
.repair-page-hero .hero-actions {
    justify-content: center;
}

.icon-badge {
    display: grid;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 59, 10, .3);
    border-radius: 12px;
    background: rgba(255, 59, 10, .08);
}
.icon-badge svg { width: 24px; height: 24px; fill: none; stroke: var(--orange); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

@media (max-width: 960px) {
    .hero.repair-page-hero { padding-block: 56px 36px; }
}

@media (max-width: 620px) {
    .hero.repair-page-hero { padding-block: 48px 30px; }
    .repair-page-hero .hero-copy h1 { font-size: clamp(2.15rem, 9.5vw, 2.75rem); }
}

/* ==========================================================================
   Card animations
   Applied purely via JS-added classes (see card-animations.js) — no template
   markup was changed. Cards scroll-reveal into place once, and hero float
   badges get a gentle continuous bob. Fully respects prefers-reduced-motion
   and degrades gracefully if JS is unavailable (cards simply stay visible).
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
    .js-reveal-card {
        opacity: 0;
        transform: translateY(26px) scale(.98);
        transition: opacity .7s cubic-bezier(.22, 1, .36, 1),
                    transform .7s cubic-bezier(.22, 1, .36, 1);
        transition-delay: var(--reveal-delay, 0s);
        will-change: opacity, transform;
    }
    .js-reveal-card.is-revealed {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .iphone-float-card,
    .phones-float-card,
    .console-float-card,
    .audio-float-card {
        animation: cardFloatBob 4.6s ease-in-out infinite;
    }
    .iphone-float-card-care,
    .phones-float-card-care,
    .console-float-card-care,
    .audio-float-card-care {
        animation-delay: 1.7s;
    }

    @keyframes cardFloatBob {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-9px); }
    }
}