
/* ==========================================================================
   LaundryCare — Client Review Homepage Polish
   Loaded after home.css so it safely refines the existing component system.
   ========================================================================== */

:root {
    --lc-navy: #08264a;
    --lc-blue: #1769ff;
    --lc-cyan: #11c5c8;
    --lc-indigo: #5548f5;
    --lc-violet: #7651f7;
    --lc-orange: #ffad3d;
    --lc-ink: #102544;
    --lc-muted: #64748b;
    --lc-line: rgba(20, 55, 95, .10);
    --lc-soft: #f5faff;
    --lc-white: #fff;
    --lc-radius-sm: 14px;
    --lc-radius-md: 20px;
    --lc-radius-lg: 28px;
    --lc-shadow-sm: 0 8px 24px rgba(13, 42, 79, .07);
    --lc-shadow-md: 0 18px 45px rgba(13, 42, 79, .11);
    --lc-shadow-lg: 0 30px 80px rgba(13, 42, 79, .16);
}

/* ---------- Global section rhythm ---------- */

.lc-section,
.lc-trust-section,
.lc-reviews-section,
.lc-stats-section,
.lc-offer-section,
.lc-partner-section,
.lc-final-cta {
    position: relative;
    overflow: hidden;
}

.lc-section {
    padding: clamp(72px, 8vw, 112px) 0;
}

.lc-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.lc-section-heading h2,
.lc-about-copy h2,
.lc-tracker-heading h2,
.lc-final-card h2,
.lc-partner-card h2 {
    color: var(--lc-ink);
    letter-spacing: -.045em;
    line-height: .98;
    font-weight: 850;
}

.lc-section-heading h2 {
    margin: 10px 0 14px;
    font-size: clamp(2rem, 4vw, 3.25rem);
}

.lc-section-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--lc-muted);
    line-height: 1.75;
}

.lc-heading-left {
    margin-left: 0;
    text-align: left;
}

.lc-heading-left p {
    margin-left: 0;
}

.lc-eyebrow,
.lc-mini-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--lc-blue);
    font-size: .69rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.lc-eyebrow::before {
    content: "";
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--lc-cyan), var(--lc-blue));
}

.lc-eyebrow-light {
    color: rgba(255,255,255,.82);
}

.lc-eyebrow-light::before {
    background: linear-gradient(90deg, var(--lc-cyan), #fff);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Hero ---------- */

.lc-hero {
    position: relative;
    isolation: isolate;
    min-height: min(760px, calc(100vh - 20px));
    display: flex;
    align-items: center;
    padding: 74px 0 62px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 220, 210, .30), transparent 28%),
        radial-gradient(circle at 25% 90%, rgba(122, 72, 246, .48), transparent 32%),
        linear-gradient(115deg, #092c59 0%, #155fc3 55%, #079cae 100%);
}

.lc-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -5%;
    right: -5%;
    bottom: -110px;
    height: 190px;
    border-radius: 50% 50% 0 0;
    background: #fff;
}

.lc-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: .15;
    background-image:
        linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.lc-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(.2px);
    pointer-events: none;
}

.lc-hero-orb-one {
    width: 210px;
    height: 210px;
    right: -70px;
    top: 40px;
    background: rgba(255, 213, 73, .18);
    box-shadow: 0 0 80px rgba(255, 213, 73, .15);
}

.lc-hero-orb-two {
    width: 190px;
    height: 190px;
    left: -85px;
    bottom: -65px;
    background: rgba(255, 91, 161, .22);
}

.lc-hero-container {
    width: 100%;
}

.lc-hero-row {
    min-height: 570px;
}

.lc-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.lc-hero-copy h1 {
    margin: 20px 0 20px;
    max-width: 650px;
    color: #fff;
    font-size: clamp(3.15rem, 6vw, 6.2rem);
    font-weight: 900;
    line-height: .86;
    letter-spacing: -.065em;
}

.lc-hero-lead {
    max-width: 610px;
    margin: 0 0 8px;
    color: rgba(255,255,255,.95);
    font-size: clamp(1rem, 1.4vw, 1.22rem);
    line-height: 1.65;
}

.lc-hero-description {
    max-width: 580px;
    margin: 0 0 26px;
    color: rgba(255,255,255,.70);
    line-height: 1.7;
}

.lc-pill {
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
}

.lc-pill-light {
    color: #fff;
    padding: 10px 14px;
    border-radius: 99px;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lc-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.lc-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.lc-btn:hover {
    transform: translateY(-2px);
}

.lc-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #1ba7ff, #5a4af4);
    box-shadow: 0 14px 30px rgba(25, 100, 255, .30);
}

.lc-btn-primary:hover {
    color: #fff;
    box-shadow: 0 18px 38px rgba(25, 100, 255, .40);
}

.lc-btn-glass {
    color: #fff;
    border: 1px solid rgba(255,255,255,.34);
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
}

.lc-btn-glass:hover {
    color: #fff;
    background: rgba(255,255,255,.15);
}

.lc-btn-outline {
    color: var(--lc-blue);
    border: 1px solid rgba(23,105,255,.20);
    background: #fff;
    box-shadow: var(--lc-shadow-sm);
}

.lc-btn-dark {
    color: #fff;
    background: var(--lc-navy);
}

.lc-btn-white {
    color: var(--lc-navy);
    background: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.lc-hero-media {
    position: relative;
    width: min(100%, 620px);
    margin-left: auto;
    padding: 12px;
}

.lc-hero-image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.12 / 1;
    border: 8px solid rgba(255,255,255,.34);
    border-radius: 32px;
    background: rgba(255,255,255,.12);
    box-shadow: 0 28px 70px rgba(4, 35, 76, .28);
    transform: rotate(1deg);
}

.lc-hero-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.lc-image-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,.18), transparent 60%);
    transform: translateX(-120%);
    animation: lcShine 5s ease-in-out infinite;
}

@keyframes lcShine {
    0%, 55% { transform: translateX(-120%); }
    75%, 100% { transform: translateX(120%); }
}

.lc-floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 175px;
    padding: 12px 14px;
    color: var(--lc-ink);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--lc-shadow-md);
    backdrop-filter: blur(14px);
}

.lc-floating-card small,
.lc-floating-card strong {
    display: block;
}

.lc-floating-card small {
    color: var(--lc-muted);
    font-size: .67rem;
}

.lc-floating-card strong {
    margin-top: 2px;
    font-size: .83rem;
}

.lc-floating-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 12px;
    background: linear-gradient(135deg, #18b9ff, #1469ff);
}

.lc-floating-icon.lc-green {
    background: linear-gradient(135deg, #12cfa5, #09a9a1);
}

.lc-floating-pickup {
    left: -10px;
    bottom: 25px;
    animation: lcFloat 4s ease-in-out infinite;
}

.lc-floating-quality {
    right: -5px;
    top: 25px;
    animation: lcFloat 4s 1s ease-in-out infinite;
}

@keyframes lcFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.lc-avatar-stack {
    display: flex;
}

.lc-avatar-stack span {
    width: 34px;
    height: 34px;
    margin-left: -5px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, #1cb8e8, #514af4);
    font-size: .65rem;
    font-weight: 800;
}

.lc-avatar-stack span:first-child {
    margin-left: 0;
}

.lc-hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.lc-stars {
    color: #ffd36a;
    letter-spacing: 2px;
    font-size: .82rem;
}

.lc-hero-proof small {
    color: rgba(255,255,255,.72);
}

.lc-hero-promises {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.lc-hero-promises > div {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 99px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.82);
    font-size: .74rem;
}

.lc-hero-indicators {
    bottom: -8px;
}

.lc-hero-indicators button {
    width: 28px;
    height: 3px;
    border: 0;
    border-radius: 99px;
    background: rgba(255,255,255,.38);
}

.lc-hero-indicators .active {
    width: 44px;
    background: #fff;
}

.lc-carousel-control {
    width: 48px;
    height: 48px;
    top: 50%;
    margin-top: -24px;
    opacity: 1;
    border-radius: 50%;
    background: rgba(5, 35, 71, .35);
    backdrop-filter: blur(10px);
}

.lc-carousel-control:hover {
    background: rgba(5, 35, 71, .62);
}

/* ---------- Stats ---------- */

.lc-stats-section {
    z-index: 4;
    margin-top: -30px;
    padding: 0 0 30px;
}

.lc-stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    padding: 18px 22px;
    border: 1px solid rgba(23,105,255,.10);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--lc-shadow-lg);
    backdrop-filter: blur(18px);
}

.lc-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 14px;
}

.lc-stat-icon,
.lc-trust-icon,
.lc-feature-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: var(--lc-blue);
    border-radius: 13px;
    background: #edf5ff;
}

.lc-stat strong,
.lc-stat span {
    display: block;
}

.lc-stat strong {
    color: var(--lc-ink);
    font-size: 1.1rem;
}

.lc-stat span {
    margin-top: 2px;
    color: var(--lc-muted);
    font-size: .68rem;
}

.lc-stat-divider {
    width: 1px;
    height: 34px;
    background: var(--lc-line);
}

/* ---------- Trust ---------- */

.lc-trust-section {
    padding: 70px 0 82px;
    background: linear-gradient(180deg, #fff 0%, #f5faff 100%);
}

.lc-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.lc-trust-card {
    min-height: 160px;
    padding: 22px;
    border: 1px solid var(--lc-line);
    border-radius: var(--lc-radius-md);
    background: #fff;
    box-shadow: var(--lc-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.lc-trust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(23,105,255,.18);
    box-shadow: var(--lc-shadow-md);
}

.lc-trust-card h3 {
    margin: 16px 0 7px;
    color: var(--lc-ink);
    font-size: 1rem;
    font-weight: 800;
}

.lc-trust-card p {
    margin: 0;
    color: var(--lc-muted);
    font-size: .82rem;
    line-height: 1.6;
}

/* ---------- Offer bar ---------- */

.lc-offer-section {
    padding: 0 0 28px;
    background: #f5faff;
}

.lc-offer-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(255,170,50,.25);
    border-radius: 20px;
    background: linear-gradient(100deg, #fff7e8, #fffdf6);
    box-shadow: 0 12px 30px rgba(255,164,45,.10);
}

.lc-offer-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffae3f, #ff7b3d);
}

.lc-offer-copy {
    flex: 1;
}

.lc-offer-copy > span {
    display: block;
    margin-bottom: 3px;
    color: #d17a00;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.lc-offer-copy h2 {
    margin: 0 0 4px;
    color: var(--lc-ink);
    font-size: 1rem;
    font-weight: 850;
}

.lc-offer-copy p {
    margin: 0;
    color: var(--lc-muted);
    font-size: .74rem;
}

/* ---------- Services ---------- */

.lc-services-section {
    background: #fff;
}

.lc-service-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.lc-service-count {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: var(--lc-muted);
    font-size: .78rem;
}

.lc-service-count strong {
    color: var(--lc-ink);
    font-size: 1.15rem;
}

.lc-service-search,
.lc-area-search {
    width: min(100%, 300px);
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid var(--lc-line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 7px 20px rgba(13,42,79,.05);
}

.lc-service-search i,
.lc-area-search i {
    color: var(--lc-blue);
}

.lc-service-search input,
.lc-area-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--lc-ink);
    font-size: .8rem;
}

.lc-service-search:focus-within,
.lc-area-search:focus-within {
    border-color: rgba(23,105,255,.40);
    box-shadow: 0 0 0 4px rgba(23,105,255,.08);
}

.lc-service-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--lc-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--lc-shadow-sm);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.lc-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(23,105,255,.18);
    box-shadow: var(--lc-shadow-md);
}

.lc-service-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1.18 / 1;
    background: #eff7fc;
}

.lc-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
}

.lc-service-card:hover .lc-service-image img {
    transform: scale(1.055);
}

.lc-service-index {
    position: absolute;
    top: 10px;
    right: 10px;
    min-width: 29px;
    height: 24px;
    display: grid;
    place-items: center;
    padding: 0 7px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 8px;
    background: rgba(8,38,74,.72);
    backdrop-filter: blur(8px);
    font-size: .62rem;
    font-weight: 800;
}

.lc-service-body {
    padding: 15px;
}

.lc-service-body h3 {
    margin: 0 0 5px;
    color: var(--lc-ink);
    font-size: .91rem;
    font-weight: 850;
}

.lc-service-body > p {
    min-height: 36px;
    margin: 0 0 12px;
    color: var(--lc-muted);
    font-size: .68rem;
    line-height: 1.5;
}

.lc-service-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.lc-service-prices span {
    min-width: 0;
    padding: 7px 5px;
    text-align: center;
    border: 1px solid #e8eef6;
    border-radius: 9px;
    background: #f9fbfe;
}

.lc-service-prices span.is-highlight {
    color: var(--lc-blue);
    border-color: rgba(23,105,255,.13);
    background: #eef6ff;
}

.lc-service-prices small,
.lc-service-prices strong {
    display: block;
}

.lc-service-prices small {
    overflow: hidden;
    color: var(--lc-muted);
    font-size: .52rem;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.lc-service-prices strong {
    margin-top: 2px;
    font-size: .72rem;
}

.lc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--lc-blue);
    font-size: .69rem;
    font-weight: 800;
    text-decoration: none;
}

.lc-text-link:hover {
    color: var(--lc-indigo);
}

.lc-service-placeholder,
.lc-about-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(23,105,255,.55);
    background: linear-gradient(135deg, #eaf8ff, #eef1ff);
}

.lc-service-placeholder i {
    font-size: 2.5rem;
}

.lc-empty-state {
    display: grid;
    place-items: center;
    gap: 5px;
    padding: 30px;
    margin: 0 0 20px;
    border: 1px dashed rgba(23,105,255,.20);
    border-radius: 18px;
    background: #f8fbff;
    text-align: center;
}

.lc-empty-state[hidden] {
    display: none;
}

.lc-empty-state i {
    margin-bottom: 3px;
    color: var(--lc-blue);
    font-size: 1.4rem;
}

.lc-empty-state strong {
    color: var(--lc-ink);
    font-size: .9rem;
}

.lc-empty-state span {
    color: var(--lc-muted);
    font-size: .72rem;
}

/* ---------- Reviews ---------- */

.lc-reviews-section {
    padding: 86px 0;
    background:
        radial-gradient(circle at 8% 20%, rgba(118,81,247,.08), transparent 25%),
        #f6f5ff;
}

.lc-review-slider {
    position: relative;
    padding: 0 48px;
}

.lc-review-viewport {
    overflow: hidden;
}

.lc-review-track {
    display: flex;
    gap: 18px;
    transition: transform .45s cubic-bezier(.2,.7,.2,1);
}

.lc-review-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border: 1px solid rgba(23,105,255,.09);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--lc-shadow-sm);
}

.lc-review-rating {
    color: #f6aa32;
    letter-spacing: 2px;
    font-size: .75rem;
}

.lc-review-card > p {
    flex: 1;
    margin: 18px 0 22px;
    color: var(--lc-ink);
    font-size: .9rem;
    line-height: 1.75;
}

.lc-review-person {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lc-review-avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lc-blue), var(--lc-violet));
    font-size: .7rem;
    font-weight: 800;
}

.lc-review-person strong,
.lc-review-person small {
    display: block;
}

.lc-review-person strong {
    color: var(--lc-ink);
    font-size: .77rem;
}

.lc-review-person small {
    margin-top: 2px;
    color: var(--lc-muted);
    font-size: .64rem;
}

.lc-review-nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--lc-line);
    border-radius: 50%;
    background: #fff;
    color: var(--lc-ink);
    box-shadow: var(--lc-shadow-sm);
    transform: translateY(-50%);
    transition: .2s ease;
}

.lc-review-nav:hover {
    color: #fff;
    background: var(--lc-blue);
    transform: translateY(-50%) scale(1.05);
}

.lc-review-prev { left: 0; }
.lc-review-next { right: 0; }

/* ---------- About ---------- */

.lc-about-section {
    background: linear-gradient(180deg, #f5fdff, #fff);
}

.lc-about-visual {
    position: relative;
    width: min(100%, 560px);
    margin: auto;
}

.lc-about-visual > img,
.lc-about-placeholder {
    width: 100%;
    aspect-ratio: 1.12 / .82;
    object-fit: cover;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: var(--lc-shadow-lg);
}

.lc-about-badge {
    position: absolute;
    right: -20px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 250px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.85);
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    box-shadow: var(--lc-shadow-md);
    backdrop-filter: blur(12px);
}

.lc-about-badge > span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 11px;
    background: linear-gradient(135deg, #12cfa5, #0fa3b0);
}

.lc-about-badge strong,
.lc-about-badge small {
    display: block;
}

.lc-about-badge strong {
    color: var(--lc-ink);
    font-size: .72rem;
}

.lc-about-badge small {
    margin-top: 2px;
    color: var(--lc-muted);
    font-size: .61rem;
    line-height: 1.4;
}

.lc-about-copy h2 {
    margin: 12px 0 15px;
    font-size: clamp(2rem, 4vw, 3.6rem);
}

.lc-large-copy {
    max-width: 620px;
    color: var(--lc-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.lc-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px 24px;
    margin-top: 30px;
}

.lc-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lc-feature h3 {
    margin: 2px 0 4px;
    color: var(--lc-ink);
    font-size: .82rem;
    font-weight: 850;
}

.lc-feature p {
    margin: 0;
    color: var(--lc-muted);
    font-size: .68rem;
    line-height: 1.55;
}

/* ---------- Process ---------- */

.lc-process-section {
    background: #f5fcff;
}

.lc-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    align-items: stretch;
}

.lc-process-step {
    position: relative;
    min-height: 185px;
    padding: 22px 18px 18px;
    border: 1px solid var(--lc-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--lc-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
}

.lc-process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--lc-shadow-md);
}

.lc-process-number {
    position: absolute;
    top: 12px;
    right: 14px;
    color: rgba(23,105,255,.16);
    font-size: 1.1rem;
    font-weight: 900;
}

.lc-process-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--lc-blue);
    border-radius: 13px;
    background: #edf5ff;
}

.lc-process-step h3 {
    margin: 17px 0 7px;
    color: var(--lc-ink);
    font-size: .88rem;
    font-weight: 850;
}

.lc-process-step p {
    margin: 0;
    color: var(--lc-muted);
    font-size: .68rem;
    line-height: 1.6;
}

.lc-process-arrow {
    align-self: center;
    display: grid;
    place-items: center;
    color: rgba(23,105,255,.55);
}

.lc-slot-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 28px;
    padding: 20px 22px;
    border: 1px solid rgba(23,105,255,.10);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--lc-shadow-sm);
}

.lc-slot-panel h3 {
    margin: 6px 0 0;
    color: var(--lc-ink);
    font-size: 1rem;
    font-weight: 850;
}

.lc-slot-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.lc-slot-list span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border: 1px solid #e5edf6;
    border-radius: 99px;
    color: var(--lc-muted);
    background: #f9fbfe;
    font-size: .65rem;
}

/* ---------- Tracker ---------- */

.lc-tracker-section {
    padding: 96px 0;
    color: #fff;
    background:
        radial-gradient(circle at 85% 20%, rgba(105,83,255,.42), transparent 32%),
        radial-gradient(circle at 10% 65%, rgba(0,194,195,.20), transparent 28%),
        linear-gradient(135deg, #062d49, #123f80 65%, #33319a);
}

.lc-tracker-shell {
    padding: clamp(28px, 5vw, 55px);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 28px;
    background: rgba(255,255,255,.045);
    box-shadow: 0 35px 80px rgba(0,0,0,.15);
}

.lc-tracker-heading {
    max-width: 690px;
}

.lc-tracker-heading h2 {
    margin: 12px 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.lc-tracker-heading p {
    color: rgba(255,255,255,.68);
    line-height: 1.7;
}

.lc-tracker-layout {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 38px;
    align-items: center;
    margin-top: 38px;
}

.lc-tracker-dial {
    position: relative;
    width: 190px;
    height: 190px;
    margin: auto;
}

.lc-tracker-dial svg {
    width: 100%;
    height: 100%;
}

.lc-tracker-center {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    padding: 35px;
    text-align: center;
}

.lc-tracker-center strong {
    color: #fff;
    font-size: .8rem;
    line-height: 1.2;
}

.lc-tracker-center span {
    margin-top: 5px;
    color: rgba(255,255,255,.56);
    font-size: .61rem;
}

.lc-tracker-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
}

.lc-tracker-step {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    background: rgba(255,255,255,.055);
    transition: .25s ease;
}

.lc-tracker-step.is-active {
    border-color: rgba(38,206,211,.28);
    background: linear-gradient(135deg, rgba(17,197,200,.16), rgba(92,77,247,.17));
}

.lc-tracker-dot {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    display: grid;
    place-items: center;
    color: rgba(255,255,255,.42);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    font-size: .62rem;
}

.lc-tracker-step.is-active .lc-tracker-dot {
    color: #fff;
    border-color: #1bc8ca;
    background: #11aeb4;
}

.lc-tracker-step h3 {
    margin: 0 0 3px;
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
}

.lc-tracker-step p {
    margin: 0;
    color: rgba(255,255,255,.55);
    font-size: .58rem;
    line-height: 1.45;
}

/* ---------- Areas ---------- */

.lc-area-section {
    background: #f5fcfb;
}

.lc-area-search {
    margin: -10px auto 26px;
}

.lc-area-card {
    height: 100%;
    display: flex;
    gap: 13px;
    padding: 20px;
    border: 1px solid var(--lc-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--lc-shadow-sm);
    transition: .25s ease;
}

.lc-area-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lc-shadow-md);
}

.lc-area-icon {
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    display: grid;
    place-items: center;
    color: #10a9ae;
    border-radius: 13px;
    background: #e9fbf9;
}

.lc-area-card h3 {
    margin: 0 0 5px;
    color: var(--lc-ink);
    font-size: .92rem;
    font-weight: 850;
}

.lc-area-card p {
    margin: 0 0 10px;
    color: var(--lc-muted);
    font-size: .67rem;
}

.lc-city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.lc-city-list span {
    padding: 5px 8px;
    border-radius: 99px;
    color: var(--lc-blue);
    background: #f0f6ff;
    font-size: .61rem;
}

/* ---------- Offers ---------- */

.lc-offers-section {
    background: #fff;
}

.lc-offer-tile {
    height: 100%;
    padding: 22px;
    border: 1px solid var(--lc-line);
    border-radius: 20px;
    background: linear-gradient(145deg, #fff, #fbfcff);
    box-shadow: var(--lc-shadow-sm);
    transition: .25s ease;
}

.lc-offer-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--lc-shadow-md);
}

.lc-offer-tile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.lc-offer-badge,
.lc-coupon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 99px;
    font-size: .61rem;
    font-weight: 800;
}

.lc-offer-badge {
    color: var(--lc-blue);
    background: #eef6ff;
}

.lc-coupon {
    color: #a85f00;
    background: #fff1d8;
}

.lc-offer-tile h3 {
    margin: 22px 0 8px;
    color: var(--lc-ink);
    font-size: 1rem;
    font-weight: 850;
}

.lc-offer-tile p {
    min-height: 55px;
    margin: 0;
    color: var(--lc-muted);
    font-size: .72rem;
    line-height: 1.65;
}

/* ---------- FAQ ---------- */

.lc-faq-section {
    background: #f8f7ff;
}

.lc-faq-container {
    max-width: 930px;
}

.lc-faq-list {
    display: grid;
    gap: 10px;
}

.lc-faq-item {
    overflow: hidden;
    border: 1px solid var(--lc-line);
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(13,42,79,.04);
}

.lc-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 18px;
    border: 0;
    background: transparent;
    color: var(--lc-ink);
    text-align: left;
    font-size: .82rem;
    font-weight: 800;
}

.lc-faq-question i {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    display: grid;
    place-items: center;
    color: var(--lc-blue);
    border-radius: 50%;
    background: #eef5ff;
    transition: transform .25s ease;
}

.lc-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}

.lc-faq-answer p {
    overflow: hidden;
    margin: 0;
    padding: 0 18px;
    color: var(--lc-muted);
    font-size: .73rem;
    line-height: 1.7;
}

.lc-faq-item.is-open .lc-faq-answer {
    grid-template-rows: 1fr;
}

.lc-faq-item.is-open .lc-faq-answer p {
    padding-bottom: 17px;
}

.lc-faq-item.is-open .lc-faq-question i {
    transform: rotate(45deg);
}

/* ---------- Partner / CTA ---------- */

.lc-partner-section {
    padding: 28px 0;
    background: #fff;
}

.lc-partner-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
    color: #fff;
    border-radius: 20px;
    background: linear-gradient(105deg, #063d5d, #0b78a1);
    box-shadow: var(--lc-shadow-md);
}

.lc-partner-card h2 {
    margin: 7px 0;
    color: #fff;
    font-size: 1.35rem;
}

.lc-partner-card p {
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: .72rem;
}

.lc-final-cta {
    padding: 34px 0 90px;
    background: #fff;
}

.lc-final-card {
    position: relative;
    overflow: hidden;
    padding: clamp(28px, 5vw, 52px);
    border-radius: 26px;
    background:
        radial-gradient(circle at 92% 115%, rgba(255,180,58,.36), transparent 25%),
        linear-gradient(115deg, #1470ff, #5b42ef 75%, #6f48f4);
    box-shadow: 0 28px 70px rgba(60,72,220,.24);
}

.lc-final-card h2 {
    margin: 12px 0 8px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.lc-final-card p {
    max-width: 690px;
    margin: 0;
    color: rgba(255,255,255,.74);
    line-height: 1.65;
}

.lc-final-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.lc-final-secondary {
    color: rgba(255,255,255,.84);
    font-size: .7rem;
    font-weight: 700;
    text-decoration: none;
}

.lc-final-secondary:hover {
    color: #fff;
}

.lc-final-decoration {
    position: absolute;
    right: -70px;
    bottom: -100px;
    width: 250px;
    height: 250px;
    border: 35px solid rgba(255,255,255,.09);
    border-radius: 50%;
}

/* ---------- Responsive ---------- */

@media (max-width: 1199.98px) {
    .lc-hero {
        min-height: auto;
    }

    .lc-hero-row {
        min-height: 520px;
    }

    .lc-hero-copy h1 {
        font-size: clamp(3rem, 6vw, 5rem);
    }

    .lc-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lc-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lc-process-arrow {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .lc-hero {
        padding-top: 44px;
    }

    .lc-hero-row {
        min-height: 0;
    }

    .lc-hero-copy {
        max-width: 720px;
        margin: auto;
        text-align: center;
    }

    .lc-hero-copy h1,
    .lc-hero-lead,
    .lc-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .lc-hero-actions,
    .lc-hero-proof,
    .lc-hero-promises {
        justify-content: center;
    }

    .lc-hero-media {
        margin: 12px auto 20px;
    }

    .lc-hero::after {
        bottom: -130px;
    }

    .lc-stats-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .lc-stat-divider {
        display: none;
    }

    .lc-tracker-layout {
        grid-template-columns: 1fr;
    }

    .lc-tracker-dial {
        margin-bottom: 5px;
    }

    .lc-review-card {
        flex-basis: calc((100% - 18px) / 2);
    }

    .lc-about-badge {
        right: 10px;
    }

    .lc-partner-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .lc-final-actions {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .lc-section {
        padding: 62px 0;
    }

    .lc-hero {
        padding: 28px 0 48px;
    }

    .lc-hero-copy h1 {
        font-size: clamp(2.65rem, 13vw, 4.2rem);
    }

    .lc-hero-lead {
        font-size: .93rem;
    }

    .lc-hero-description {
        font-size: .78rem;
    }

    .lc-hero-media {
        padding: 7px;
    }

    .lc-hero-image-frame {
        border-width: 5px;
        border-radius: 22px;
    }

    .lc-floating-card {
        min-width: 145px;
        padding: 9px;
        border-radius: 13px;
    }

    .lc-floating-card strong {
        font-size: .68rem;
    }

    .lc-floating-pickup {
        left: -3px;
        bottom: 12px;
    }

    .lc-floating-quality {
        right: -3px;
        top: 12px;
    }

    .lc-floating-icon {
        width: 31px;
        height: 31px;
        flex-basis: 31px;
        border-radius: 9px;
    }

    .lc-stats-section {
        margin-top: -20px;
    }

    .lc-stats-panel {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px;
        border-radius: 17px;
    }

    .lc-stat {
        justify-content: flex-start;
        padding: 10px 8px;
    }

    .lc-stat-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .lc-stat strong {
        font-size: .9rem;
    }

    .lc-stat span {
        font-size: .58rem;
    }

    .lc-trust-grid {
        grid-template-columns: 1fr;
    }

    .lc-service-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .lc-service-search,
    .lc-area-search {
        width: 100%;
    }

    .lc-service-body {
        padding: 11px;
    }

    .lc-service-body h3 {
        font-size: .75rem;
    }

    .lc-service-body > p {
        min-height: 31px;
        font-size: .59rem;
    }

    .lc-service-prices small {
        font-size: .45rem;
    }

    .lc-service-prices strong {
        font-size: .62rem;
    }

    .lc-review-slider {
        padding: 0 34px;
    }

    .lc-review-card {
        flex-basis: 100%;
    }

    .lc-review-card > p {
        font-size: .82rem;
    }

    .lc-feature-grid {
        grid-template-columns: 1fr;
    }

    .lc-about-visual {
        margin-bottom: 18px;
    }

    .lc-about-badge {
        right: 8px;
        bottom: 10px;
    }

    .lc-process-grid {
        grid-template-columns: 1fr;
    }

    .lc-process-step {
        min-height: auto;
    }

    .lc-slot-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .lc-slot-list {
        justify-content: flex-start;
    }

    .lc-tracker-list {
        grid-template-columns: 1fr;
    }

    .lc-tracker-shell {
        padding: 24px 16px;
        border-radius: 20px;
    }

    .lc-tracker-heading h2 {
        font-size: 2rem;
    }

    .lc-partner-card {
        padding: 22px;
    }

    .lc-final-card {
        padding: 28px 22px;
        border-radius: 21px;
    }

    .lc-final-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .lc-final-actions .lc-btn {
        width: 100%;
    }
}

@media (max-width: 479.98px) {
    .lc-hero-copy h1 {
        font-size: 2.55rem;
    }

    .lc-hero-actions .lc-btn {
        width: 100%;
    }

    .lc-hero-proof {
        align-items: flex-start;
        text-align: left;
    }

    .lc-hero-promises {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .lc-stats-panel {
        grid-template-columns: 1fr 1fr;
    }

    .lc-stat {
        gap: 7px;
    }

    .lc-service-image {
        aspect-ratio: 1.1 / 1;
    }

    .lc-service-prices {
        gap: 3px;
    }

    .lc-service-prices span {
        padding: 6px 3px;
    }

    .lc-service-prices small {
        font-size: .40rem;
    }

    .lc-service-prices strong {
        font-size: .58rem;
    }

    .lc-about-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -18px 10px 0 auto;
        width: calc(100% - 20px);
    }
}

/* ---------- Accessibility / reduced motion ---------- */

:focus-visible {
    outline: 3px solid rgba(23,105,255,.35);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* ==========================================================================
   LAUNDRYCARE — FINAL CLIENT REVIEW PASS
   Visual refinement layer
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body {
    background: #f8fbff;
    color: var(--lc-ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: rgba(37, 99, 235, .18);
    color: #08264a;
}

/* ---------- Hero: more breathing room + stronger focal hierarchy ---------- */

.lc-hero {
    min-height: clamp(590px, 72vh, 760px);
    display: flex;
    align-items: center;
    padding-top: clamp(86px, 8vw, 120px);
    padding-bottom: clamp(60px, 7vw, 96px);
    isolation: isolate;
}

.lc-hero-container,
.lc-hero-grid {
    min-height: 100%;
}

.lc-hero-grid {
    align-items: center;
    gap: clamp(34px, 5vw, 84px);
}

.lc-hero-copy {
    max-width: 650px;
    position: relative;
    z-index: 3;
}

.lc-hero-copy h1 {
    max-width: 650px;
    font-size: clamp(3.25rem, 6.3vw, 6.1rem);
    line-height: .88;
    letter-spacing: -.065em;
    text-wrap: balance;
}

.lc-hero-description,
.lc-hero-lead {
    max-width: 570px;
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    line-height: 1.75;
}

.lc-hero-actions {
    margin-top: 28px;
    gap: 12px;
}

.lc-btn {
    min-height: 52px;
    border-radius: 15px;
    padding-inline: 20px;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}

.lc-btn-primary:hover,
.lc-btn-dark:hover,
.lc-btn-white:hover {
    transform: translateY(-3px);
}

.lc-hero-media {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lc-hero-image-frame {
    width: min(100%, 620px);
    aspect-ratio: 1.08 / 1;
    border-radius: 34px;
    padding: 9px;
    box-shadow:
        0 28px 75px rgba(6, 38, 74, .24),
        0 0 0 1px rgba(255,255,255,.24);
}

.lc-hero-image {
    border-radius: 27px;
}

.lc-floating-card {
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(5, 31, 60, .20);
    backdrop-filter: blur(16px);
}

.lc-hero-indicators {
    margin-top: 24px;
}

.lc-hero-indicators span,
.lc-hero-indicators button {
    transition: width .25s ease, opacity .25s ease, transform .25s ease;
}

.lc-hero-indicators .active {
    width: 34px;
    transform: scaleY(1.15);
}

/* ---------- Trust/stat strip ---------- */

.lc-stats-section {
    padding: 0 0 30px;
    margin-top: -28px;
    position: relative;
    z-index: 5;
}

.lc-stats-panel {
    border-radius: 24px;
    box-shadow:
        0 20px 55px rgba(14, 46, 82, .12),
        0 1px 0 rgba(255,255,255,.8) inset;
    backdrop-filter: blur(18px);
}

.lc-stat {
    min-height: 92px;
    padding: 18px 24px;
}

.lc-stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
}

.lc-stat strong {
    font-size: 1.05rem;
}

.lc-stat span {
    font-size: .78rem;
}

/* ---------- Pickup offer ---------- */

.lc-offer-section {
    padding-top: 18px;
    padding-bottom: 28px;
}

.lc-offer-card {
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 16px 38px rgba(217, 119, 6, .12);
    transition: transform .25s ease, box-shadow .25s ease;
}

.lc-offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(217, 119, 6, .17);
}

.lc-offer-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
}

/* ---------- Services: premium catalog feel ---------- */

.lc-services-section {
    padding-top: clamp(68px, 7vw, 96px);
    padding-bottom: clamp(80px, 9vw, 118px);
}

.lc-services-section .lc-section-heading {
    margin-bottom: 34px;
}

.lc-service-toolbar {
    margin-bottom: 28px;
}

.lc-service-search {
    border-radius: 15px;
    min-height: 48px;
    box-shadow: 0 8px 25px rgba(15, 44, 80, .06);
}

.lc-service-card {
    position: relative;
    overflow: hidden;
    border-radius: 19px;
    background: #fff;
    border: 1px solid rgba(24, 65, 108, .075);
    box-shadow: 0 9px 28px rgba(18, 51, 88, .075);
    transition:
        transform .28s ease,
        box-shadow .28s ease,
        border-color .28s ease;
}

.lc-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(37, 99, 235, .16);
    box-shadow:
        0 20px 44px rgba(18, 51, 88, .13),
        0 0 0 1px rgba(37, 99, 235, .04);
}

.lc-service-image,
.lc-service-placeholder {
    aspect-ratio: 1.38 / 1;
    overflow: hidden;
}

.lc-service-image img {
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
}

.lc-service-card:hover .lc-service-image img {
    transform: scale(1.065);
}

.lc-service-body {
    padding: 16px 16px 17px;
}

.lc-service-index {
    font-size: .67rem;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: .08em;
}

.lc-service-body h3 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: .98rem;
    line-height: 1.2;
    letter-spacing: -.025em;
}

.lc-service-body p {
    min-height: 34px;
    font-size: .74rem;
    line-height: 1.45;
    color: #64748b;
}

.lc-service-prices {
    gap: 6px;
    margin-top: 12px;
}

.lc-service-prices > * {
    border-radius: 9px;
    padding: 6px 7px;
    font-size: .65rem;
}

.lc-text-link {
    font-weight: 750;
}

.lc-service-card .lc-text-link:hover {
    transform: translateX(3px);
}

.lc-empty-state {
    border-radius: 20px;
    padding: 38px 24px;
}

/* ---------- Testimonials ---------- */

.lc-reviews-section {
    padding-top: clamp(70px, 8vw, 105px);
    padding-bottom: clamp(72px, 8vw, 108px);
    background:
        radial-gradient(circle at 8% 15%, rgba(99,102,241,.10), transparent 28%),
        linear-gradient(180deg, #f4f3ff 0%, #f8fbff 100%);
}

.lc-review-slider {
    position: relative;
}

.lc-review-card {
    min-height: 245px;
    border-radius: 21px;
    border: 1px solid rgba(38, 68, 108, .08);
    box-shadow: 0 12px 34px rgba(17, 43, 78, .08);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.lc-review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(17, 43, 78, .12);
    border-color: rgba(99, 102, 241, .14);
}

.lc-review-rating {
    font-size: .78rem;
    letter-spacing: .1em;
}

.lc-review-card blockquote {
    font-size: .92rem;
    line-height: 1.72;
}

.lc-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(37,99,235,.18);
}

.lc-review-nav button {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    transition: transform .2s ease, background .2s ease;
}

.lc-review-nav button:hover {
    transform: translateY(-2px);
}

/* ---------- About: stronger two-column composition ---------- */

.lc-about-section {
    padding-top: clamp(78px, 9vw, 120px);
    padding-bottom: clamp(78px, 9vw, 120px);
}

.lc-about-section .lc-about-visual {
    position: relative;
}

.lc-about-visual img {
    border-radius: 26px;
    box-shadow: 0 25px 60px rgba(11, 44, 78, .14);
}

.lc-about-copy {
    max-width: 570px;
}

.lc-about-copy h2 {
    font-size: clamp(2.2rem, 4.1vw, 3.75rem);
}

.lc-feature-grid {
    gap: 12px;
    margin-top: 26px;
}

.lc-feature {
    padding: 14px;
    border-radius: 15px;
    transition: transform .25s ease, background .25s ease;
}

.lc-feature:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,.78);
}

.lc-feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
}

/* ---------- Process: make journey obvious ---------- */

.lc-process-section {
    padding-top: clamp(75px, 8vw, 105px);
    padding-bottom: clamp(78px, 8vw, 110px);
    background:
        radial-gradient(circle at 8% 50%, rgba(6,182,212,.12), transparent 28%),
        linear-gradient(180deg, #effcff, #f7fdff);
}

.lc-process-grid {
    position: relative;
    gap: 18px;
}

.lc-process-step {
    position: relative;
    min-height: 170px;
    border-radius: 20px;
    border: 1px solid rgba(23, 78, 110, .08);
    box-shadow: 0 10px 30px rgba(20, 59, 90, .06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.lc-process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(20, 59, 90, .10);
}

.lc-process-number {
    font-size: .68rem;
    letter-spacing: .09em;
}

.lc-process-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.lc-process-arrow {
    opacity: .65;
}

/* ---------- Pickup slots ---------- */

.lc-slot-panel {
    border-radius: 22px;
    box-shadow: 0 16px 38px rgba(20, 59, 90, .08);
}

.lc-slot-list {
    gap: 9px;
}

.lc-slot-list > * {
    border-radius: 12px;
}

/* ---------- Tracker: premium centerpiece ---------- */

.lc-tracker-section {
    padding-top: clamp(80px, 9vw, 120px);
    padding-bottom: clamp(80px, 9vw, 120px);
    background:
        radial-gradient(circle at 12% 55%, rgba(6,182,212,.18), transparent 26%),
        radial-gradient(circle at 90% 35%, rgba(99,102,241,.23), transparent 31%),
        linear-gradient(135deg, #072947 0%, #123a67 48%, #312c8e 100%);
}

.lc-tracker-shell {
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.11);
    background: rgba(255,255,255,.065);
    box-shadow: 0 30px 75px rgba(1, 18, 39, .24);
    backdrop-filter: blur(15px);
}

.lc-tracker-heading h2 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.lc-tracker-list {
    gap: 9px;
}

.lc-tracker-step {
    border-radius: 13px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.075);
    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease;
}

.lc-tracker-step:hover {
    transform: translateX(4px);
    background: rgba(255,255,255,.11);
    border-color: rgba(255,255,255,.14);
}

.lc-tracker-dial {
    filter: drop-shadow(0 12px 25px rgba(0,0,0,.18));
}

/* ---------- Service area ---------- */

.lc-area-section {
    padding-top: clamp(72px, 8vw, 105px);
    padding-bottom: clamp(72px, 8vw, 105px);
}

.lc-area-search {
    min-height: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(15,44,80,.06);
}

.lc-area-card {
    border-radius: 18px;
    border: 1px solid rgba(25, 66, 107, .08);
    box-shadow: 0 10px 28px rgba(20, 59, 90, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.lc-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(20,59,90,.11);
}

.lc-area-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
}

/* ---------- Offers ---------- */

.lc-offers-section {
    padding-top: clamp(72px, 8vw, 105px);
    padding-bottom: clamp(72px, 8vw, 105px);
    background: #fbfcff;
}

.lc-offer-tile {
    min-height: 180px;
    border-radius: 20px;
    border: 1px solid rgba(20,60,100,.08);
    box-shadow: 0 10px 30px rgba(20,59,90,.06);
    transition: transform .25s ease, box-shadow .25s ease;
}

.lc-offer-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(20,59,90,.11);
}

.lc-offer-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
}

/* ---------- FAQ ---------- */

.lc-faq-section {
    padding-top: clamp(76px, 8vw, 110px);
    padding-bottom: clamp(76px, 8vw, 110px);
    background:
        linear-gradient(180deg, #f7f7ff 0%, #fbfcff 100%);
}

.lc-faq-container {
    max-width: 900px;
}

.lc-faq-item {
    overflow: hidden;
    border-radius: 15px;
    border: 1px solid rgba(24, 64, 105, .08);
    background: #fff;
    box-shadow: 0 7px 22px rgba(20,59,90,.045);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.lc-faq-item:has(.is-open) {
    border-color: rgba(37,99,235,.17);
    box-shadow: 0 14px 35px rgba(37,99,235,.08);
}

.lc-faq-question {
    min-height: 60px;
    padding: 16px 19px;
}

.lc-faq-answer {
    line-height: 1.7;
}

/* ---------- Partner CTA ---------- */

.lc-partner-section {
    padding-top: 22px;
    padding-bottom: 25px;
}

.lc-partner-card {
    border-radius: 21px;
    box-shadow: 0 18px 45px rgba(14,59,95,.12);
}

/* ---------- Final CTA: stronger conversion ending ---------- */

.lc-final-cta {
    padding-top: 28px;
    padding-bottom: clamp(70px, 8vw, 100px);
}

.lc-final-card {
    min-height: 250px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 25px 65px rgba(49, 70, 210, .20),
        0 1px 0 rgba(255,255,255,.22) inset;
}

.lc-final-card h2 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4.25rem);
    max-width: 720px;
}

.lc-final-card p {
    max-width: 610px;
    color: rgba(255,255,255,.84);
}

.lc-final-actions .lc-btn {
    min-height: 50px;
}

/* ---------- Generic reveal ---------- */

.reveal-on-scroll {
    will-change: transform, opacity;
}

@media (prefers-reduced-motion: no-preference) {
    .reveal-on-scroll {
        animation-duration: .7s;
        animation-fill-mode: both;
        animation-timing-function: cubic-bezier(.2,.7,.2,1);
    }
}

/* ---------- Tablet ---------- */

@media (max-width: 1199.98px) {
    .lc-hero {
        min-height: 610px;
    }

    .lc-hero-copy h1 {
        font-size: clamp(3rem, 6vw, 5rem);
    }

    .lc-hero-media {
        min-height: 450px;
    }

    .lc-service-card:hover,
    .lc-review-card:hover,
    .lc-area-card:hover,
    .lc-offer-tile:hover,
    .lc-process-step:hover {
        transform: translateY(-4px);
    }
}

/* ---------- Mobile: intentional hierarchy ---------- */

@media (max-width: 767.98px) {

    .lc-hero {
        min-height: auto;
        padding-top: 94px;
        padding-bottom: 44px;
    }

    .lc-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .lc-hero-copy {
        max-width: none;
        text-align: left;
    }

    .lc-hero-copy h1 {
        max-width: 100%;
        font-size: clamp(2.75rem, 13vw, 4.3rem);
        line-height: .9;
    }

    .lc-hero-description,
    .lc-hero-lead {
        font-size: .94rem;
        line-height: 1.65;
    }

    .lc-hero-actions {
        flex-wrap: wrap;
    }

    .lc-hero-actions .lc-btn {
        flex: 1 1 170px;
    }

    .lc-hero-media {
        min-height: auto;
        order: 2;
    }

    .lc-hero-image-frame {
        width: 100%;
        max-width: 540px;
        margin-inline: auto;
        border-radius: 25px;
        padding: 7px;
    }

    .lc-floating-quality {
        top: 6%;
        right: 2%;
        transform: scale(.88);
        transform-origin: top right;
    }

    .lc-floating-pickup {
        bottom: 4%;
        left: 2%;
        transform: scale(.88);
        transform-origin: bottom left;
    }

    .lc-stats-section {
        margin-top: -8px;
        padding-bottom: 18px;
    }

    .lc-stats-panel {
        border-radius: 18px;
    }

    .lc-stat {
        min-height: 78px;
        padding: 13px 15px;
    }

    .lc-services-section {
        padding-top: 62px;
    }

    .lc-service-card {
        border-radius: 16px;
    }

    .lc-service-body {
        padding: 13px;
    }

    .lc-service-body p {
        min-height: 31px;
        font-size: .7rem;
    }

    .lc-service-prices {
        flex-wrap: wrap;
    }

    .lc-review-card {
        min-height: 225px;
    }

    .lc-about-section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .lc-about-copy h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .lc-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lc-process-arrow {
        display: none;
    }

    .lc-process-step {
        min-height: 150px;
    }

    .lc-tracker-shell {
        border-radius: 21px;
        padding: 20px !important;
    }

    .lc-tracker-layout {
        grid-template-columns: 1fr;
    }

    .lc-tracker-center {
        order: 2;
    }

    .lc-tracker-list {
        order: 1;
    }

    .lc-area-card {
        min-height: 0;
    }

    .lc-offer-tile {
        min-height: 160px;
    }

    .lc-final-card {
        min-height: 280px;
        border-radius: 22px;
    }

    .lc-final-card h2 {
        font-size: clamp(2rem, 10vw, 3.25rem);
    }
}

/* ---------- Small phones ---------- */

@media (max-width: 480px) {

    .lc-hero {
        padding-top: 82px;
    }

    .lc-hero-copy h1 {
        font-size: clamp(2.55rem, 14vw, 3.55rem);
    }

    .lc-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lc-hero-actions .lc-btn {
        width: 100%;
    }

    .lc-hero-proof {
        flex-wrap: wrap;
    }

    .lc-section {
        padding-top: 58px;
        padding-bottom: 62px;
    }

    .lc-section-heading {
        margin-bottom: 30px;
    }

    .lc-section-heading h2 {
        font-size: clamp(1.85rem, 9vw, 2.6rem);
    }

    .lc-process-grid {
        grid-template-columns: 1fr;
    }

    .lc-process-step {
        min-height: auto;
    }

    .lc-feature-grid {
        grid-template-columns: 1fr;
    }

    .lc-final-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lc-final-actions .lc-btn {
        width: 100%;
    }
}

/* ---------- Accessibility ---------- */

.lc-btn:focus-visible,
.lc-service-card:focus-visible,
.lc-review-nav button:focus-visible,
.lc-faq-question:focus-visible,
.lc-area-card:focus-visible,
.lc-offer-tile:focus-visible {
    outline: 3px solid rgba(6,182,212,.45);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .lc-service-card,
    .lc-review-card,
    .lc-area-card,
    .lc-offer-tile,
    .lc-process-step,
    .lc-offer-card,
    .lc-btn,
    .lc-feature,
    .lc-tracker-step {
        transition: none !important;
    }

    .lc-service-card:hover,
    .lc-review-card:hover,
    .lc-area-card:hover,
    .lc-offer-tile:hover,
    .lc-process-step:hover,
    .lc-offer-card:hover,
    .lc-feature:hover {
        transform: none !important;
    }
}


/* ========================================================================
   LAUNDRYCARE — PERFECT CLIENT REVIEW PASS
   Desktop-first sizing, stronger hierarchy, cleaner rhythm and mobile UX.
   This file intentionally sits after home.css + home-client-final.css.
   ======================================================================== */

:root {
    --lc-container: 1240px;
    --lc-section-gap: clamp(72px, 7vw, 104px);
    --lc-card-radius: 22px;
}

/* Keep the page from feeling like a tiny UI board on large screens. */
.public-header + .lc-hero,
.lc-hero {
    overflow: hidden;
}

.container {
    max-width: var(--lc-container);
}

/* ========================================================================
   HERO — stronger first impression
   ======================================================================== */

.lc-hero {
    min-height: clamp(640px, 76vh, 790px);
    padding-top: clamp(92px, 8vw, 128px);
    padding-bottom: clamp(72px, 7vw, 104px);
}

.lc-hero-row {
    min-height: 600px;
}

.lc-hero-copy h1 {
    max-width: 680px;
    font-size: clamp(3.65rem, 6.2vw, 6.35rem);
    line-height: .87;
}

.lc-hero-lead {
    max-width: 590px;
    margin-top: 20px;
    font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

.lc-hero-description {
    max-width: 570px;
    font-size: .98rem;
}

.lc-hero-media {
    min-height: 560px;
}

.lc-hero-image-frame {
    width: min(100%, 650px);
    aspect-ratio: 1.12 / 1;
    border-width: 9px;
    border-radius: 36px;
}

.lc-floating-card {
    min-width: 195px;
    padding: 14px 16px;
}

.lc-floating-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
}

/* ========================================================================
   SECTION HEADINGS — readable at client-review scale
   ======================================================================== */

.lc-section-heading {
    max-width: 820px;
    margin-bottom: 46px;
}

.lc-section-heading h2 {
    font-size: clamp(2.25rem, 3.5vw, 3.45rem);
    line-height: 1;
}

.lc-section-heading p {
    max-width: 700px;
    font-size: .96rem;
}

/* ========================================================================
   STATS
   ======================================================================== */

.lc-stats-section {
    margin-top: -36px;
    padding-bottom: 34px;
}

.lc-stats-panel {
    min-height: 108px;
    padding: 18px 28px;
    border-radius: 26px;
}

.lc-stat {
    min-height: 94px;
    gap: 15px;
    padding: 18px 22px;
}

.lc-stat strong {
    font-size: 1.3rem;
}

.lc-stat span {
    font-size: .78rem;
}

/* ========================================================================
   TRUST
   ======================================================================== */

.lc-trust-section {
    padding: 78px 0 92px;
}

.lc-trust-grid {
    gap: 20px;
}

.lc-trust-card {
    min-height: 175px;
    padding: 25px;
    border-radius: 22px;
}

.lc-trust-card h3 {
    font-size: 1.02rem;
}

.lc-trust-card p {
    font-size: .86rem;
}

/* ========================================================================
   PICKUP OFFER
   ======================================================================== */

.lc-offer-section {
    padding: 0 0 36px;
}

.lc-offer-card {
    min-height: 82px;
    padding: 19px 24px;
    border-radius: 22px;
}

.lc-offer-copy h2 {
    font-size: 1.08rem;
}

.lc-offer-copy p {
    font-size: .8rem;
}

/* ========================================================================
   SERVICES — larger cards, clearer pricing
   ======================================================================== */

.lc-services-section {
    padding-top: 78px;
    padding-bottom: 96px;
}

#lcServiceGrid {
    row-gap: 24px !important;
}

#lcServiceGrid > [class*="col-"] {
    display: flex;
}

.lc-service-card {
    width: 100%;
    min-height: 410px;
    display: flex;
    flex-direction: column;
    border-radius: 21px;
}

.lc-service-image {
    aspect-ratio: 1.25 / 1;
}

.lc-service-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 19px;
}

.lc-service-body h3 {
    font-size: 1.02rem;
}

.lc-service-body > p {
    min-height: 40px;
    margin-bottom: 14px;
    font-size: .76rem;
    line-height: 1.55;
}

.lc-service-prices {
    margin-top: auto;
    gap: 7px;
}

.lc-service-prices span {
    min-height: 52px;
    padding: 8px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lc-service-prices small {
    font-size: .56rem;
}

.lc-service-prices strong {
    font-size: .8rem;
}

.lc-text-link {
    margin-top: 14px;
    font-size: .74rem;
}

/* Give placeholder cards a deliberate premium treatment. */
.lc-service-placeholder {
    background:
        radial-gradient(circle at 30% 25%, rgba(14,165,233,.20), transparent 30%),
        linear-gradient(135deg, #edfaff, #eef1ff);
}

.lc-service-placeholder i {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: #2563eb;
    background: rgba(255,255,255,.88);
    box-shadow: 0 10px 28px rgba(37,99,235,.10);
}

/* ========================================================================
   REVIEWS — real testimonial-card scale
   ======================================================================== */

.lc-reviews-section {
    padding: 88px 0 96px;
}

.lc-review-slider {
    padding: 0 52px;
}

.lc-review-card {
    min-height: 275px;
    padding: 28px;
    border-radius: 23px;
}

.lc-review-card > p {
    margin: 20px 0 26px;
    font-size: .96rem;
    line-height: 1.8;
}

.lc-review-avatar {
    width: 44px;
    height: 44px;
}

.lc-review-person strong {
    font-size: .82rem;
}

.lc-review-person small {
    font-size: .68rem;
}

.lc-review-nav {
    width: 46px;
    height: 46px;
}

/* ========================================================================
   ABOUT
   ======================================================================== */

.lc-about-section {
    padding: 90px 0 100px;
}

.lc-about-visual {
    padding: 8px;
}

.lc-about-visual img,
.lc-about-placeholder {
    border-radius: 28px;
}

.lc-about-copy h2 {
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: .98;
}

.lc-large-copy {
    font-size: 1rem;
    line-height: 1.8;
}

.lc-feature-grid {
    gap: 14px;
    margin-top: 30px;
}

.lc-feature {
    padding: 16px;
    border-radius: 17px;
}

/* ========================================================================
   HOW IT WORKS — connected visual journey
   ======================================================================== */

.lc-process-section {
    padding: 88px 0 100px;
}

.lc-process-grid {
    gap: 22px;
}

.lc-process-step {
    min-height: 190px;
    padding: 24px;
    border-radius: 22px;
}

.lc-process-icon {
    width: 52px;
    height: 52px;
}

.lc-process-step h3 {
    margin-top: 15px;
    font-size: 1rem;
}

.lc-process-step p {
    font-size: .8rem;
    line-height: 1.6;
}

.lc-process-arrow {
    color: #2563eb;
    font-size: 1.15rem;
}

.lc-slot-panel {
    margin-top: 32px;
    padding: 22px 24px;
}

/* ========================================================================
   TRACKER — keep as centerpiece
   ======================================================================== */

.lc-tracker-section {
    padding: 96px 0 100px;
}

.lc-tracker-shell {
    padding: 42px !important;
    border-radius: 30px;
}

.lc-tracker-heading {
    max-width: 680px;
    margin-bottom: 34px;
}

.lc-tracker-heading h2 {
    font-size: clamp(2.25rem, 4vw, 3.65rem);
}

.lc-tracker-heading p {
    font-size: .9rem;
}

.lc-tracker-step {
    min-height: 64px;
    padding: 12px 14px;
}

.lc-tracker-step h3 {
    font-size: .78rem;
}

.lc-tracker-step p {
    font-size: .65rem;
    line-height: 1.45;
}

/* ========================================================================
   SERVICE AREAS
   ======================================================================== */

.lc-area-section {
    padding: 82px 0 92px;
}

.lc-area-search {
    max-width: 520px;
    margin: 0 auto 30px;
}

.lc-area-card {
    min-height: 190px;
    padding: 24px;
    border-radius: 21px;
}

.lc-area-card h3 {
    font-size: 1.05rem;
}

.lc-area-card p {
    font-size: .8rem;
}

.lc-city-list {
    gap: 7px;
}

.lc-city-list span {
    padding: 6px 9px;
    border-radius: 9px;
    font-size: .68rem;
}

/* ========================================================================
   OFFERS
   ======================================================================== */

.lc-offers-section {
    padding: 82px 0 92px;
}

.lc-offer-tile {
    min-height: 205px;
    padding: 24px;
    border-radius: 22px;
}

.lc-offer-tile h3 {
    font-size: 1.1rem;
}

.lc-offer-tile p {
    font-size: .8rem;
    line-height: 1.65;
}

/* ========================================================================
   FAQ
   ======================================================================== */

.lc-faq-section {
    padding: 86px 0 96px;
}

.lc-faq-container {
    max-width: 980px;
}

.lc-faq-item {
    border-radius: 17px;
}

.lc-faq-question {
    min-height: 66px;
    padding: 17px 21px;
    font-size: .9rem;
}

.lc-faq-answer p {
    padding: 0 21px 19px;
    font-size: .82rem;
    line-height: 1.75;
}

/* ========================================================================
   PARTNER + FINAL CTA
   ======================================================================== */

.lc-partner-section {
    padding: 24px 0 30px;
}

.lc-partner-card {
    min-height: 92px;
    padding: 20px 24px;
    border-radius: 22px;
}

.lc-final-cta {
    padding: 30px 0 104px;
}

.lc-final-card {
    min-height: 290px;
    padding: 42px !important;
    border-radius: 30px;
}

.lc-final-card h2 {
    font-size: clamp(2.45rem, 4.8vw, 4.4rem);
    line-height: .95;
}

.lc-final-card p {
    font-size: .92rem;
    line-height: 1.7;
}

/* ========================================================================
   RESPONSIVE — desktop / tablet / mobile
   ======================================================================== */

@media (min-width: 1200px) {
    #lcServiceGrid > .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
    .lc-hero-row {
        min-height: 520px;
    }

    .lc-hero-media {
        min-height: 450px;
    }

    .lc-hero-copy h1 {
        font-size: clamp(3rem, 6vw, 4.8rem);
    }

    #lcServiceGrid > .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .lc-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lc-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .lc-hero {
        min-height: auto;
        padding-top: 88px;
        padding-bottom: 48px;
    }

    .lc-hero-row {
        min-height: 0;
    }

    .lc-hero-copy h1 {
        font-size: clamp(2.7rem, 12vw, 4.2rem);
    }

    .lc-hero-media {
        min-height: 0;
    }

    .lc-section-heading {
        margin-bottom: 34px;
    }

    .lc-section-heading h2 {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .lc-stats-panel {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px;
    }

    .lc-stat {
        min-height: 76px;
        padding: 12px;
    }

    .lc-stat-divider {
        display: none;
    }

    .lc-trust-grid {
        grid-template-columns: 1fr;
    }

    .lc-trust-card {
        min-height: 0;
    }

    .lc-offer-card {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .lc-offer-card .lc-btn {
        width: 100%;
    }

    .lc-service-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .lc-service-search {
        width: 100%;
    }

    #lcServiceGrid > .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .lc-service-card {
        min-height: 370px;
    }

    .lc-service-body {
        padding: 14px;
    }

    .lc-service-body h3 {
        font-size: .92rem;
    }

    .lc-service-body > p {
        font-size: .69rem;
    }

    .lc-service-prices span {
        min-height: 48px;
    }

    .lc-review-slider {
        padding: 0 42px;
    }

    .lc-review-card {
        min-height: 245px;
        padding: 22px;
    }

    .lc-about-section {
        padding: 70px 0 76px;
    }

    .lc-process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lc-process-step {
        min-height: 165px;
        padding: 18px;
    }

    .lc-tracker-shell {
        padding: 25px !important;
    }

    .lc-tracker-layout {
        grid-template-columns: 1fr;
    }

    .lc-tracker-center {
        order: 2;
    }

    .lc-tracker-list {
        order: 1;
    }

    .lc-area-card {
        min-height: 0;
    }

    .lc-final-card {
        padding: 30px !important;
    }
}

@media (max-width: 575.98px) {
    /* One-column service cards prevent pricing from becoming unreadable. */
    #lcServiceGrid > .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .lc-service-card {
        min-height: 0;
    }

    .lc-service-image {
        aspect-ratio: 1.45 / 1;
    }

    .lc-service-body > p {
        min-height: 0;
    }

    .lc-service-prices span {
        min-height: 54px;
    }

    .lc-process-grid {
        grid-template-columns: 1fr;
    }

    .lc-review-slider {
        padding: 0 36px;
    }

    .lc-review-card {
        min-height: 230px;
    }

    .lc-stats-panel {
        grid-template-columns: 1fr 1fr;
    }

    .lc-stat strong {
        font-size: 1rem;
    }

    .lc-stat span {
        font-size: .68rem;
    }

    .lc-final-card {
        min-height: 320px;
        padding: 25px !important;
    }
}

/* ========================================================================
   PERFORMANCE / ACCESSIBILITY
   ======================================================================== */

.lc-service-card,
.lc-review-card,
.lc-trust-card,
.lc-process-step,
.lc-area-card,
.lc-offer-tile,
.lc-faq-item {
    contain: layout paint;
}

@media (prefers-reduced-motion: reduce) {
    .lc-image-shine,
    .lc-floating-card {
        animation: none !important;
    }
}
