:root {
    --replica-brand: #00a88f;
    --replica-brand-dark: #006f63;
    --replica-brand-soft: #e6fffb;
    --replica-ink: #142333;
    --replica-muted: #607080;
    --replica-line: rgba(20, 35, 51, 0.1);
    --replica-bg: #f7fbfa;
    --replica-shadow: 0 20px 58px rgba(0, 111, 99, 0.12);
}

.replica-body {
    margin: 0;
    color: var(--replica-ink);
    background: var(--replica-bg);
    font-family: Arial, "Microsoft YaHei", sans-serif;
}

.replica-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.replica-section {
    padding: 72px 0;
}

.replica-button,
.replica-btn,
.replica-phone-pill,
.replica-nav-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0 20px;
    text-decoration: none;
    font-weight: 900;
}

.replica-btn--primary,
.replica-button {
    color: #fff;
    background: linear-gradient(135deg, var(--replica-brand), var(--replica-brand-dark));
    box-shadow: 0 14px 34px rgba(0, 168, 143, 0.28);
}

.replica-btn--light {
    color: var(--replica-brand);
    background: #fff;
    border-color: var(--replica-line);
}

.replica-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--replica-line);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.replica-topbar {
    color: #fff;
    background: var(--replica-brand);
    font-size: 13px;
}

.replica-topbar__inner,
.replica-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.replica-topbar__inner {
    min-height: 36px;
}

.replica-topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 900;
}

.replica-header__inner {
    min-height: 78px;
}

.replica-logo img {
    display: block;
    height: 46px;
    width: auto;
}

.replica-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.replica-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--replica-ink);
    text-decoration: none;
    font-weight: 900;
    transition: color 160ms ease;
}

.replica-nav a:hover,
.replica-nav a:focus-visible,
.replica-nav a[aria-current="page"] {
    color: var(--replica-brand);
}

.replica-nav__services {
    position: relative;
    display: inline-flex;
}

.replica-nav__services::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    width: 220px;
    height: 18px;
    transform: translateX(-50%);
    z-index: 1;
}

.replica-service-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    min-width: 180px;
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--replica-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--replica-shadow);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.replica-nav__services:hover .replica-service-menu,
.replica-nav__services:focus-within .replica-service-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.replica-service-menu a {
    min-height: 38px;
    white-space: nowrap;
}

.replica-phone-pill {
    color: #fff;
    background: var(--replica-brand);
}

.replica-nav-toggle {
    display: none;
    color: var(--replica-ink);
    background: #fff;
    border-color: var(--replica-line);
}

.replica-footer {
    color: var(--replica-ink);
    background: #f4f8f7;
    border-top: 1px solid var(--replica-line);
}

.replica-footer__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 32px;
    padding: 52px 0 34px;
}

.replica-footer__logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    padding: 10px 14px;
    border: 1px solid rgba(20, 35, 51, 0.08);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.replica-footer__logo {
    height: 46px;
    width: auto;
    display: block;
}

.replica-footer p,
.replica-footer__bottom {
    color: rgba(20, 35, 51, 0.68);
}

.replica-footer__nav {
    display: grid;
    gap: 10px;
}

.replica-footer a {
    color: var(--replica-ink);
    text-decoration: none;
}

.replica-footer__contact span,
.replica-footer__contact a {
    display: block;
}

.replica-footer__contact a {
    margin-top: 10px;
    color: var(--replica-brand);
    font-size: 24px;
    font-weight: 900;
}

.replica-footer__bottom {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(20, 35, 51, 0.1);
    font-size: 13px;
}

.replica-icp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.replica-icp img {
    width: 18px;
    height: 18px;
}

.replica-floating {
    position: fixed;
    right: 22px;
    top: 48%;
    z-index: 90;
    display: grid;
    gap: 8px;
}

.replica-floating--compact a,
.replica-floating--compact button {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--replica-brand), var(--replica-brand-dark));
    text-decoration: none;
    font: inherit;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0, 111, 99, 0.28);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(0, 168, 143, 0.34);
    outline-offset: 3px;
}

.replica-main {
    overflow: hidden;
}

.replica-hero,
.replica-page-hero {
    position: relative;
    padding: 86px 0;
    background: linear-gradient(135deg, #fff, #fff5f5 52%, #f8fafc);
}

.replica-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 46px;
    align-items: center;
}

.replica-eyebrow,
.replica-page-hero span,
.replica-section-heading span,
.replica-service-detail__copy span,
.replica-brand-copy span,
.store-nearby-panel span,
.lead-form-hotline span {
    color: var(--replica-brand);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.replica-hero h1,
.replica-page-hero h1 {
    margin: 14px 0 18px;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.04;
    font-weight: 900;
}

.replica-hero p,
.replica-page-hero p,
.replica-section-heading p,
.replica-service-detail__copy p,
.replica-brand-copy p,
.replica-value-grid p,
.replica-equipment-card p,
.lead-form-tip li {
    color: var(--replica-muted);
    line-height: 1.8;
}

.replica-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.replica-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.replica-stat {
    min-width: 140px;
    padding: 16px;
    border: 1px solid var(--replica-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--replica-shadow);
}

.replica-stat strong,
.replica-stat span {
    display: block;
}

.replica-stat strong {
    color: var(--replica-brand);
    font-size: 22px;
}

.replica-hero-card,
.replica-mini-card,
.replica-service-card,
.replica-showcase-card,
.replica-brand-card,
.replica-value-grid article,
.replica-equipment-card,
.replica-store-card,
.replica-lead-card,
.replica-lead-aside article,
.store-nearby-panel,
.replica-service-detail {
    border: 1px solid var(--replica-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--replica-shadow);
}

.replica-hero-card,
.replica-mini-card,
.replica-service-card,
.replica-showcase-card,
.replica-equipment-card {
    overflow: hidden;
}

.replica-hero-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.replica-hero-card div {
    padding: 22px;
}

.replica-hero-card h2,
.replica-mini-card span,
.replica-service-card h3,
.replica-showcase-card h3,
.replica-value-grid h3,
.replica-equipment-card h3 {
    color: var(--replica-ink);
    font-weight: 900;
}

.replica-hero-card__stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.replica-mini-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.replica-mini-card span {
    display: block;
    padding: 14px;
}

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

.replica-section-heading--left {
    margin-left: 0;
    text-align: left;
}

.replica-section-heading h2 {
    margin: 10px 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 900;
}

.replica-home-services,
.replica-home-showcase,
.replica-brand-values {
    background: #fff;
}

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

.replica-service-card {
    color: inherit;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.replica-service-card:hover,
.replica-service-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.14);
}

.replica-service-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.replica-service-card div,
.replica-showcase-card h3,
.replica-equipment-card h3,
.replica-equipment-card p {
    padding-left: 20px;
    padding-right: 20px;
}

.replica-service-card div {
    padding-top: 18px;
    padding-bottom: 20px;
}

.replica-service-card p {
    color: var(--replica-muted);
}

.replica-process {
    background: #f8fafc;
}

.replica-process__grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: start;
}

.replica-process-list {
    counter-reset: process;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0;
}

.replica-process-list li {
    counter-increment: process;
    padding: 24px;
    border-radius: 24px;
    color: #fff;
    background: var(--replica-brand);
}

.replica-process-list li::before {
    content: counter(process, decimal-leading-zero);
    display: block;
    margin-bottom: 20px;
    color: rgba(255,255,255,.7);
    font-weight: 900;
}

.replica-process-list strong,
.replica-process-list span {
    display: block;
}

.replica-process-list span {
    margin-top: 8px;
    color: rgba(255,255,255,.78);
}

.replica-showcase-grid,
.replica-equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.replica-showcase-card img,
.replica-equipment-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.replica-showcase-card h3,
.replica-equipment-card h3 {
    margin: 18px 0;
}

.replica-equipment-card p {
    padding-bottom: 22px;
}

.replica-page-hero {
    text-align: center;
}

.replica-page-hero .replica-actions {
    justify-content: center;
}

.replica-brand-layout,
.replica-service-detail,
.replica-lead-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.replica-brand-copy,
.replica-brand-card,
.replica-lead-card,
.replica-lead-aside article {
    padding: 28px;
}

.replica-brand-card {
    text-align: center;
}

.replica-brand-card img {
    height: 58px;
    width: auto;
    margin-bottom: 22px;
}

.replica-brand-card strong,
.replica-brand-card a {
    display: block;
}

.replica-brand-card a {
    margin-top: 12px;
    color: var(--replica-brand);
    text-decoration: none;
    font-size: 24px;
    font-weight: 900;
}

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

.replica-value-grid article {
    padding: 24px;
}

.service-type-tabs,
.store-mode-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.service-type-tabs a,
.store-mode-tabs a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid var(--replica-line);
    border-radius: 999px;
    color: var(--replica-ink);
    background: #fff;
    text-decoration: none;
    font-weight: 900;
}

.service-type-tabs a[aria-current="page"],
.store-mode-tabs a[aria-current="page"] {
    color: #fff;
    background: var(--replica-brand);
}

.replica-service-detail {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    padding: 18px;
}

.replica-service-detail__image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.replica-service-detail__copy {
    align-self: center;
    padding: 24px;
}

.replica-service-detail__copy h2 {
    font-size: clamp(32px, 4vw, 50px);
}

.store-nearby-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px;
    margin-bottom: 24px;
}

.replica-store-search {
    padding: 22px;
    border: 1px solid var(--replica-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: var(--replica-shadow);
}

.store-search-panel__form {
    display: flex;
    gap: 10px;
}

.store-search-panel__form input,
.store-search-panel__form button,
.lead-form-field input,
.lead-form-field textarea,
.lead-form-card__submit {
    min-height: 44px;
}

.store-search-panel__form input,
.lead-form-field input,
.lead-form-field textarea {
    width: 100%;
    border: 1px solid var(--replica-line);
    border-radius: 14px;
    padding: 0 14px;
}

.store-search-panel__form button {
    border: 0;
    border-radius: 999px;
    padding: 0 20px;
    color: #fff;
    background: var(--replica-brand);
    font-weight: 900;
}

.store-search-panel__meta,
.store-card__meta,
.store-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.replica-store-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.replica-store-card {
    padding: 22px;
}

.store-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.store-card__top strong {
    font-size: 20px;
}

.store-card__top span,
.store-card__meta span {
    color: var(--replica-muted);
}

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

.lead-form-field {
    display: grid;
    gap: 8px;
    font-weight: 900;
}

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

.lead-form-field textarea {
    min-height: 130px;
    padding-top: 12px;
}

.lead-form-card__submit {
    margin-top: 18px;
    width: 100%;
    border: 0;
}

.replica-lead-aside {
    display: grid;
    gap: 16px;
}

.lead-form-hotline {
    color: #fff;
    background: var(--replica-brand-dark) !important;
}

.lead-form-hotline h2,
.lead-form-hotline span {
    color: #fff;
}

.replica-body {
    background: #fff;
}

.replica-header {
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(20, 35, 51, 0.08);
    box-shadow: 0 8px 28px rgba(20, 35, 51, 0.06);
}

.replica-topbar {
    color: var(--replica-muted);
    background: #fff;
    border-bottom: 1px solid rgba(20, 35, 51, 0.08);
}

.replica-topbar__inner {
    min-height: 34px;
    justify-content: center;
    gap: 34px;
}

.replica-topbar span::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 10px;
    border-radius: 999px;
    background: var(--replica-brand);
    vertical-align: 2px;
}

.replica-topbar a {
    position: absolute;
    right: max(16px, calc((100vw - 1180px) / 2));
    color: var(--replica-brand);
}

.replica-header__inner {
    min-height: 86px;
}

.replica-logo {
    display: inline-flex;
    align-items: center;
    color: var(--replica-ink);
    text-decoration: none;
}

.replica-logo--wide img {
    display: block;
    width: auto;
    height: 58px;
    max-width: min(390px, 44vw);
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
}

.replica-nav {
    gap: 30px;
}

.replica-nav > a,
.replica-nav__services > a {
    position: relative;
}

.replica-nav > a::after,
.replica-nav__services > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 3px;
    border-radius: 999px;
    background: var(--replica-brand);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.replica-nav a:hover::after,
.replica-nav a:focus-visible::after,
.replica-nav a[aria-current="page"]::after {
    transform: scaleX(1);
}

.replica-phone-pill {
    min-height: 52px;
    padding: 0 30px;
    background: linear-gradient(135deg, var(--replica-brand), var(--replica-brand-dark));
    box-shadow: 0 14px 34px rgba(0, 111, 99, 0.22);
}

.replica-floating--compact a,
.replica-floating--compact button,
.store-search-panel__form button,
.service-type-tabs a[aria-current="page"],
.store-mode-tabs a[aria-current="page"],
.replica-process-list li {
    background: linear-gradient(135deg, var(--replica-brand), var(--replica-brand-dark));
}

.replica-hero.replica-hero--carousel {
    padding: 0;
    color: #fff;
    background: #eef5f3;
}

.replica-hero-carousel {
    position: relative;
    min-height: 690px;
    overflow: hidden;
}

.replica-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 560ms ease;
}

.replica-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.replica-hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.replica-hero-slide__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.72) 35%, rgba(255, 255, 255, 0.2) 68%, rgba(20, 35, 51, 0.18) 100%);
}

.replica-hero-slide__content {
    position: relative;
    z-index: 2;
    min-height: 690px;
    display: flex;
    align-items: center;
}

.replica-hero--carousel .replica-hero__copy {
    width: min(640px, 100%);
    padding-top: 48px;
}

.replica-hero--carousel .replica-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 18px;
    border-radius: 999px;
    color: var(--replica-muted);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 28px rgba(20, 35, 51, 0.08);
    letter-spacing: 0;
    text-transform: none;
}

.replica-hero--carousel .replica-eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 10px;
    border-radius: 999px;
    background: var(--replica-brand);
}

.replica-hero--carousel h1 {
    max-width: 720px;
    margin: 28px 0 10px;
    color: var(--replica-ink);
    font-size: clamp(54px, 6vw, 86px);
    letter-spacing: -0.06em;
    text-shadow: none;
}

.replica-hero--carousel p {
    color: #526170;
    font-size: clamp(20px, 2.4vw, 30px);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.replica-hero--carousel .replica-actions {
    margin-top: 42px;
}

.replica-hero--carousel .replica-btn {
    min-height: 58px;
    padding: 0 30px;
    font-size: 18px;
}

.replica-hero--carousel .replica-btn--light {
    color: var(--replica-ink);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 34px rgba(20, 35, 51, 0.1);
}

.replica-hero--carousel .replica-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    width: min(650px, 100%);
    gap: 16px;
    margin-top: 58px;
}

.replica-hero--carousel .replica-stat {
    min-width: 0;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 42px rgba(20, 35, 51, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.replica-hero--carousel .replica-stat strong {
    color: var(--replica-brand);
    font-size: clamp(28px, 3vw, 38px);
    letter-spacing: -0.04em;
}

.replica-hero-carousel__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(20, 35, 51, 0.28);
    font-size: 36px;
    cursor: pointer;
    transform: translateY(-50%);
}

.replica-hero-carousel__arrow--prev {
    left: 20px;
}

.replica-hero-carousel__arrow--next {
    right: 20px;
}

.replica-hero-carousel__dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 5;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.replica-hero-carousel__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(20, 35, 51, 0.22);
    cursor: pointer;
}

.replica-hero-carousel__dots button.is-active {
    width: 26px;
    background: var(--replica-brand);
}

.replica-section-heading span {
    color: var(--replica-brand);
    letter-spacing: 0.2em;
}

.replica-section-heading h2 {
    color: var(--replica-ink);
    letter-spacing: -0.04em;
}

.replica-section-heading h2::after {
    content: "";
    display: block;
    width: 88px;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 999px;
    background: var(--replica-brand);
}

.replica-section-heading--left h2::after {
    margin-left: 0;
}

.replica-home-services {
    padding-top: 100px;
}

.replica-service-grid {
    gap: 34px;
}

.replica-service-card {
    position: relative;
    min-height: 300px;
    border: 0;
    border-radius: 18px;
    color: #fff;
    background: #0f172a;
    box-shadow: 0 20px 48px rgba(20, 35, 51, 0.14);
}

.replica-service-card::after {
    content: "→";
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.replica-service-card img {
    height: 300px;
    opacity: 0.86;
    transition: transform 220ms ease, opacity 220ms ease;
}

.replica-service-card:hover img,
.replica-service-card:focus-visible img {
    transform: scale(1.04);
    opacity: 0.94;
}

.replica-service-card div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px;
    background: linear-gradient(180deg, transparent, rgba(8, 18, 28, 0.82));
}

.replica-service-card h3 {
    color: #fff;
    font-size: 24px;
}

.replica-service-card p {
    color: rgba(255, 255, 255, 0.78);
}

body.contact-modal-open {
    position: fixed;
    top: var(--contact-scroll-y);
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
}

.replica-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.replica-contact-modal.is-open {
    display: flex;
}

.replica-contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.replica-contact-modal__panel {
    position: relative;
    width: min(560px, 100%);
    max-height: min(720px, calc(100vh - 48px));
    overflow-y: auto;
    box-sizing: border-box;
    padding: 30px;
    border: 1px solid var(--replica-line);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.replica-contact-modal__panel > span,
.replica-team-contact span {
    color: var(--replica-brand);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.replica-contact-modal__panel h2,
.replica-team-contact h2 {
    margin: 10px 0 12px;
    font-size: clamp(28px, 4vw, 40px);
}

.replica-contact-modal__panel p,
.replica-team-contact p {
    color: var(--replica-muted);
    line-height: 1.8;
}

.replica-contact-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--replica-line);
    border-radius: 999px;
    background: #fff;
    color: var(--replica-ink);
    cursor: pointer;
    font-size: 24px;
}

.replica-contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.replica-contact-form label,
.replica-contact-form__full,
.replica-contact-form__status,
.replica-contact-form button {
    grid-column: 1 / -1;
}

.replica-contact-form label:not(.replica-contact-form__full) {
    grid-column: span 1;
}

.replica-contact-form label span {
    display: block;
    margin-bottom: 8px;
    font-weight: 900;
}

.replica-contact-form input,
.replica-contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid var(--replica-line);
    border-radius: 16px;
    padding: 12px 14px;
    font: inherit;
}

.replica-contact-form textarea {
    min-height: 116px;
    resize: vertical;
}

.replica-contact-form__status {
    min-height: 22px;
    margin: 0;
    color: var(--replica-brand);
    font-weight: 900;
}

.replica-team-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
    padding: 28px;
    border: 1px solid var(--replica-line);
    border-radius: 28px;
    background: linear-gradient(135deg, #fff, #eef8f6);
    box-shadow: var(--replica-shadow);
}

@media (prefers-reduced-motion: reduce) {
    .replica-hero-slide,
    .replica-service-card img,
    .replica-nav > a::after,
    .replica-nav__services > a::after {
        transition: none;
    }
}

@media (max-width: 960px) {
    .replica-topbar {
        display: none;
    }

    .replica-header {
        position: sticky;
        background: #fff;
    }

    .replica-header__inner {
        min-height: 74px;
        flex-wrap: wrap;
        padding: 10px 0;
    }

    .replica-logo--wide img {
        width: min(220px, 58vw);
        height: auto;
        max-height: 52px;
    }

    .replica-nav-toggle {
        width: 52px;
        height: 52px;
        min-height: 52px;
        padding: 0;
        display: inline-flex;
        border-radius: 16px;
        font-size: 0;
        box-shadow: 0 8px 22px rgba(20, 35, 51, 0.08);
    }

    .replica-nav-toggle::before {
        content: "";
        width: 28px;
        height: 20px;
        background: linear-gradient(var(--replica-ink), var(--replica-ink)) 0 0 / 28px 3px no-repeat,
            linear-gradient(var(--replica-ink), var(--replica-ink)) 7px 8px / 21px 3px no-repeat,
            linear-gradient(var(--replica-ink), var(--replica-ink)) 13px 16px / 15px 3px no-repeat;
    }

    .replica-nav,
    .replica-phone-pill {
        width: 100%;
        display: none;
    }

    body.nav-open .replica-nav,
    body.nav-open .replica-phone-pill {
        display: grid;
    }

    .replica-nav {
        gap: 4px;
        padding-bottom: 12px;
    }

    .replica-nav__services,
    .replica-service-menu {
        position: static;
        display: grid;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        box-shadow: none;
        border: 0;
        padding: 0;
    }

    .replica-nav__services::after {
        display: none;
    }

    .replica-footer__top,
    .replica-footer__bottom,
    .replica-hero__grid,
    .replica-process__grid,
    .replica-brand-layout,
    .replica-service-detail,
    .replica-lead-layout {
        grid-template-columns: 1fr;
    }

    .replica-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0 24px;
    }

    .replica-service-grid,
    .replica-showcase-grid,
    .replica-equipment-grid,
    .replica-value-grid,
    .replica-store-card-grid,
    .replica-process-list,
    .lead-form-grid {
        grid-template-columns: 1fr;
    }

    .replica-section,
    .replica-hero,
    .replica-page-hero {
        padding: 46px 0;
    }

    .replica-hero-card img,
    .replica-service-detail__image img {
        height: 280px;
    }

    .replica-hero-carousel,
    .replica-hero-slide__content {
        min-height: 620px;
    }

    .replica-hero-slide__shade {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.5) 34%, rgba(255, 255, 255, 0.88) 100%);
    }

    .replica-hero-slide__content {
        align-items: center;
        padding-top: 0;
    }

    .replica-hero--carousel .replica-hero__copy {
        width: 100%;
        padding-top: 0;
    }

    .replica-hero--carousel h1 {
        margin-top: 32px;
        font-size: clamp(36px, 11vw, 52px);
        letter-spacing: 0.04em;
    }

    .replica-hero--carousel p {
        max-width: 92%;
        margin-top: 24px;
        font-size: clamp(18px, 5vw, 24px);
        letter-spacing: 0.08em;
    }

    .replica-hero--carousel .replica-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 34px;
        width: 100%;
        max-width: 100%;
    }

    .replica-hero--carousel .replica-btn {
        width: 100%;
        box-sizing: border-box;
        min-height: 50px;
        padding: 0 12px;
        border-radius: 16px;
        font-size: 16px;
        white-space: nowrap;
    }

    .replica-hero--carousel .replica-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        width: 100%;
        margin-top: 34px;
    }

    .replica-hero--carousel .replica-stat {
        min-height: 78px;
        box-sizing: border-box;
        padding: 12px 8px;
        border-radius: 14px;
    }

    .replica-hero--carousel .replica-stat strong {
        font-size: clamp(20px, 6vw, 28px);
    }

    .replica-hero--carousel .replica-stat span {
        margin-top: 6px;
        font-size: 12px;
    }

    .replica-hero-carousel__arrow {
        display: none;
    }

    .replica-hero-carousel__dots {
        bottom: 28px;
    }

    .replica-floating {
        right: 28px;
        top: auto;
        bottom: 84px;
    }

    .replica-floating--compact a,
    .replica-floating--compact button {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 14px;
    }

    .replica-service-card,
    .replica-service-card img {
        min-height: 240px;
        height: 240px;
    }

    .store-search-panel__form,
    .store-nearby-panel {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .replica-container {
        width: min(100% - 32px, 100%);
    }

    .replica-header__inner {
        min-height: 64px;
        padding: 8px 0;
    }

    .replica-logo--wide img {
        width: min(188px, 56vw);
        height: auto;
        max-height: 44px;
    }

    .replica-nav-toggle {
        width: 46px;
        height: 46px;
        min-height: 46px;
        border-radius: 14px;
    }

    .replica-hero-carousel,
    .replica-hero-slide__content {
        min-height: 600px;
    }

    .replica-hero--carousel .replica-eyebrow {
        min-height: 32px;
        padding: 0 16px;
        font-size: 12px;
    }

    .replica-hero--carousel h1 {
        margin-top: 30px;
        font-size: clamp(36px, 11vw, 52px);
        line-height: 1.12;
        letter-spacing: 0.04em;
    }

    .replica-hero--carousel p {
        margin-top: 22px;
        font-size: clamp(17px, 5vw, 23px);
        letter-spacing: 0.08em;
    }

    .replica-hero--carousel .replica-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 30px;
    }

    .replica-hero--carousel .replica-btn {
        min-height: 46px;
        padding: 0 10px;
        border-radius: 14px;
        font-size: 15px;
    }

    .replica-hero--carousel .replica-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 32px;
    }

    .replica-hero--carousel .replica-stat {
        min-height: 72px;
        box-sizing: border-box;
        padding: 10px 6px;
        border-radius: 12px;
    }

    .replica-hero--carousel .replica-stat strong {
        font-size: clamp(18px, 5.2vw, 24px);
    }

    .replica-hero--carousel .replica-stat span {
        margin-top: 4px;
        font-size: 11px;
    }

    .replica-floating--compact a,
    .replica-floating--compact button {
        width: 50px;
        height: 50px;
    }

    .replica-contact-modal {
        padding: 14px;
    }

    .replica-contact-modal__panel {
        max-height: calc(100vh - 28px);
        padding: 24px 18px;
        border-radius: 22px;
    }

    .replica-contact-form,
    .replica-team-contact {
        grid-template-columns: 1fr;
    }

    .replica-contact-form label:not(.replica-contact-form__full) {
        grid-column: 1 / -1;
    }

    .replica-team-contact {
        display: grid;
        gap: 18px;
    }

    .replica-team-contact .replica-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .replica-floating--compact button {
        border-radius: 16px;
        font-size: 13px;
    }

    .replica-home-services {
        padding-top: 78px;
    }

    .replica-section-heading h2 {
        font-size: clamp(32px, 9vw, 44px);
    }

    .replica-service-card,
    .replica-service-card img {
        min-height: 260px;
        height: 260px;
    }
}

.replica-legacy-hidden {
    display: none !important;
}

.replica-stores-page {
    background: #fff;
}

.replica-stores-replica-section {
    padding: 96px 0;
    background: #fff;
}

.replica-stores-layout {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 64px;
    align-items: start;
}

.replica-stores-eyebrow {
    color: #14b8a6;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.replica-stores-copy h1 {
    margin: 12px 0 0;
    color: #1e293b;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.12;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.replica-stores-copy p {
    margin: 24px 0 0;
    color: #64748b;
    font-size: 18px;
    line-height: 1.85;
}

.replica-stores-panel {
    margin-top: 40px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 2.5rem;
    background: #f8fafc;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.replica-stores-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.replica-stores-panel__head strong {
    color: #1e293b;
    font-size: 18px;
    font-weight: 900;
}

.replica-stores-panel__head span {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
}

.replica-stores-list {
    max-height: 500px;
    display: grid;
    gap: 12px;
    overflow-y: auto;
    padding: 8px;
}

.stores-scroll::-webkit-scrollbar {
    width: 4px;
}

.stores-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.stores-scroll::-webkit-scrollbar-thumb {
    border-radius: 9999px;
    background: #e2e8f0;
}

.stores-scroll::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

.replica-store-list-card {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    background: #fff;
    text-align: left;
    transition: border-color 300ms ease, box-shadow 300ms ease, background 300ms ease, transform 300ms ease;
}

.replica-store-list-card:hover,
.replica-store-list-card:focus-visible,
.replica-store-list-card.is-active {
    border-color: rgba(20, 184, 166, 0.3);
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), 0 0 0 2px rgba(20, 184, 166, 0.16);
}

.replica-store-list-card.is-map-filtered-out {
    display: none;
}

.replica-store-list-card__body {
    min-width: 0;
}

.replica-store-list-card strong,
.replica-store-list-card small {
    display: block;
}

.replica-store-list-card strong {
    color: #1e293b;
    font-size: 14px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 300ms ease;
}

.replica-store-list-card:hover strong,
.replica-store-list-card.is-active strong {
    color: #14b8a6;
}

.replica-store-list-card small {
    margin-top: 8px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.replica-store-list-card em {
    flex: 0 0 auto;
    color: #14b8a6;
    background: rgba(20, 184, 166, 0.05);
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.replica-stores-actions {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.replica-stores-map-col {
    animation-delay: 200ms;
}

.replica-stores-map-shell {
    position: relative;
    min-height: 620px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3rem;
    background: #f8fafc;
    box-shadow: inset 0 2px 12px rgba(15, 23, 42, 0.04);
}

.replica-stores-map {
    width: 100%;
    height: 560px;
}

.replica-stores-map-state {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(248, 250, 252, 0.82);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    color: #64748b;
    font-weight: 700;
}

.replica-stores-map-state[hidden] {
    display: none;
}

.replica-stores-map-state span {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border: 4px solid #e2e8f0;
    border-top-color: #14b8a6;
    border-radius: 999px;
    animation: replica-spin 900ms linear infinite;
}

.replica-stores-map-state button {
    min-height: 40px;
    margin-top: 20px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: #14b8a6;
    font-weight: 900;
}

.replica-stores-empty {
    padding: 40px 0;
    color: #94a3b8;
    text-align: center;
}

@keyframes replica-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
    .replica-stores-replica-section {
        padding: 56px 0;
    }

    .replica-stores-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .replica-stores-panel {
        padding: 24px;
        border-radius: 2rem;
    }

    .replica-stores-map-shell {
        min-height: 460px;
        padding: 16px;
        border-radius: 2rem;
    }

    .replica-stores-map {
        height: 430px;
    }
}
