/* ===============================
   Landinguri SEO (/reparatii-*-timisoara/, /inlocuire-*/ etc.)
   Se încarcă după styles.css și refolosește structura .hero de pe homepage.
   Toate animațiile de hero au ciclul de 6s al etichetelor .phone-state (înainte 0–45%, după 52–95%).
   =============================== */

@property --lv-pct {
    syntax: '<integer>';
    inherits: true;
    initial-value: 0;
}

a.brand-card {
    display: block;
    color: inherit;
    text-decoration: none;
}

.brand-card__more {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    font-weight: 800;
    color: #6ee7b7;
}

.lv-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #d1fae5;
    text-shadow: 0 1px 6px rgba(2, 6, 23, 0.8);
}

.lv-breadcrumb a {
    color: #6ee7b7;
    text-decoration: none;
}

.lv-breadcrumb a:hover {
    text-decoration: underline;
}

.lv-hero .hero-title {
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.12;
}

.lv-hero .hero-btn-price {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
}

.lv-hero .hero-btn-call {
    display: inline-flex;
}

.lv-hero .hero-btn-service {
    order: 3;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

/* Mereu lateral: text stânga, telefon dreapta, perechea centrată în pagină */
.lv-hero {
    min-height: 0;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 3rem;
}

@media (min-width: 769px) {
    .lv-hero .hero-content {
        grid-template-columns: minmax(0, 38rem) 17.5rem;
        justify-content: center;
        align-items: start;
        column-gap: clamp(2.5rem, 4vw, 4.5rem);
        width: min(100%, 68rem);
        margin-inline: auto;
    }

    .lv-hero .hero-visual {
        align-self: start;
        justify-content: center;
        width: 17.5rem;
        padding-top: 0.15rem;
    }

    .lv-hero .lv-device,
    .lv-hero .phone-model {
        width: 260px;
    }

    .lv-hero .phone-model {
        height: 520px;
    }

    .lv-hero .hero-buttons {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 3.4rem;
        grid-template-areas:
            "price   map"
            "call    map"
            "service service";
        align-items: center;
        justify-items: stretch;
        gap: 0.7rem;
        width: min(100%, 36rem);
    }

    .lv-hero .hero-btn-price { grid-area: price; }
    .lv-hero .hero-btn-call { grid-area: call; }
    .lv-hero .hero-btn-service {
        grid-area: service;
        order: 0;
        width: 100%;
        justify-content: center;
    }
    .lv-hero .hero-btn-map {
        grid-area: map;
        align-self: center;
        justify-self: center;
    }

    .lv-hero .hero-buttons .btn {
        width: 100%;
        min-height: 3.4rem;
        justify-content: center;
        padding: 0.8rem 1.1rem;
        white-space: nowrap;
    }

    .lv-hero .trust-badges {
        justify-content: flex-start;
    }
}

/* ---------- Carcasa comună a vizualurilor ---------- */
.lv-device {
    position: relative;
    width: 240px;
    aspect-ratio: 1 / 2;
    padding: 10px;
    border-radius: 38px;
    background: linear-gradient(150deg, #1f2937 0%, #0b1220 60%, #111827 100%);
    border: 2px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06);
    animation: lvFloat 6s ease-in-out infinite;
}

.lv-device:not(.lv-device--back)::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    z-index: 2;
    width: 30%;
    height: 14px;
    border-radius: 999px;
    background: #000;
    transform: translateX(-50%);
}

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

.lv-screen {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 29px;
    background: radial-gradient(circle at 50% 30%, #12324a 0%, #07111f 65%, #030712 100%);
}

.lv-device .phone-state {
    z-index: 4;
}

/* ---------- baterie ---------- */
.lv-device--battery .lv-screen {
    animation: lvBatteryPct 6s ease-in-out infinite;
}

@keyframes lvBatteryPct {
    0%, 45% { --lv-pct: 9; }
    52% { --lv-pct: 20; }
    90%, 100% { --lv-pct: 100; }
}

.lv-battery {
    position: relative;
    width: 42%;
    height: 38%;
    border: 4px solid rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    padding: 5px;
    display: flex;
    align-items: flex-end;
}

.lv-battery::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    width: 36%;
    height: 8px;
    border-radius: 4px 4px 0 0;
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(-50%);
}

.lv-battery__fill {
    display: block;
    width: 100%;
    height: calc(var(--lv-pct) * 1%);
    border-radius: 9px;
    animation: lvBatteryColor 6s ease-in-out infinite;
}

@keyframes lvBatteryColor {
    0%, 45% { background: #ef4444; box-shadow: 0 0 18px rgba(239, 68, 68, 0.7); }
    60%, 100% { background: linear-gradient(0deg, #059669, #34d399); box-shadow: 0 0 22px rgba(52, 211, 153, 0.7); }
}

.lv-battery__bolt {
    position: absolute;
    inset: 22% 25%;
    color: #fef3c7;
    opacity: 0;
    animation: lvShowAfter 6s ease-in-out infinite;
}

.lv-battery__pct::after {
    counter-reset: lvpct var(--lv-pct);
    content: counter(lvpct) '%';
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

.lv-battery__label,
.lv-port__label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #a7f3d0;
    opacity: 0;
    animation: lvShowAfter 6s ease-in-out infinite;
}

@keyframes lvShowAfter {
    0%, 48% { opacity: 0; transform: scale(0.85); }
    56%, 94% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.85); }
}

@keyframes lvShowBefore {
    0%, 44% { opacity: 1; }
    50%, 97% { opacity: 0; }
    100% { opacity: 1; }
}

/* ---------- mufă: cerc de încărcare + conector USB-C ---------- */
.lv-device--port {
    overflow: visible;
    margin-bottom: 46px;
}

.lv-dial {
    position: relative;
    width: 58%;
    aspect-ratio: 1;
}

.lv-dial__svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.lv-dial__track,
.lv-dial__arc {
    fill: none;
    stroke-width: 3;
}

.lv-dial__track {
    stroke: rgba(255, 255, 255, 0.16);
}

.lv-dial__arc {
    stroke: #34d399;
    stroke-linecap: round;
    stroke-dasharray: 88;
    stroke-dashoffset: 88;
    filter: drop-shadow(0 0 4px rgba(52, 211, 153, 0.8));
    animation: lvArc 6s ease-in-out infinite;
}

@keyframes lvArc {
    0%, 46% { stroke-dashoffset: 88; stroke: #ef4444; filter: none; }
    58% { stroke-dashoffset: 70; stroke: #34d399; }
    88%, 96% { stroke-dashoffset: 0; stroke: #34d399; filter: drop-shadow(0 0 4px rgba(52, 211, 153, 0.8)); }
    100% { stroke-dashoffset: 88; stroke: #ef4444; filter: none; }
}

.lv-dial__bolt {
    position: absolute;
    inset: 28%;
    animation: lvBoltColor 6s ease-in-out infinite;
}

@keyframes lvBoltColor {
    0%, 46% { color: #fca5a5; }
    58%, 96% { color: #fde68a; }
    100% { color: #fca5a5; }
}

.lv-usbc {
    position: absolute;
    bottom: 7px;
    left: 50%;
    z-index: 2;
    width: 26%;
    height: 7px;
    border-radius: 4px;
    background: #05070c;
    box-shadow: inset 0 0 0 1.5px #4b5563, inset 0 1px 2px #000;
    transform: translateX(-50%);
}

.lv-usbc::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 46%;
    height: 2px;
    border-radius: 1px;
    background: #1f2937;
    transform: translate(-50%, -50%);
}

.lv-lead {
    position: absolute;
    top: calc(100% - 2px);
    left: 50%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22px;
    transform: translateX(-50%);
    animation: lvLead 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.lv-lead__plug {
    position: relative;
    width: 16px;
    height: 14px;
    border-radius: 3px 3px 4px 4px;
    background: linear-gradient(180deg, #f3f4f6, #9ca3af);
    box-shadow: 0 1px 0 #fff inset, 0 2px 4px rgba(0, 0, 0, 0.35);
}

.lv-lead__plug::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    width: 10px;
    height: 4px;
    border-radius: 1px;
    background: #111827;
    transform: translateX(-50%);
}

.lv-lead__wire {
    width: 5px;
    height: 22px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, #d1d5db, #f9fafb 40%, #9ca3af);
}

@keyframes lvLead {
    0%, 40% { transform: translate(-50%, 10px); }
    52%, 94% { transform: translate(-50%, -8px); }
    100% { transform: translate(-50%, 10px); }
}

/* ---------- spate de telefon (cameră, carcasă) ---------- */
.lv-device--back {
    background:
        linear-gradient(155deg, rgba(255, 255, 255, 0.22) 0%, transparent 28%),
        linear-gradient(165deg, #3f4c63 0%, #1e293b 42%, #0f172a 100%);
    overflow: hidden;
}

.lv-cam {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 54%;
    aspect-ratio: 1;
    border-radius: 22%;
    background: linear-gradient(160deg, #1f2937, #030712 70%);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    box-shadow:
        0 10px 18px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.lv-cam__lens {
    position: absolute;
    width: 38%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
        radial-gradient(circle at 50% 50%, #1d4ed8 0 18%, #020617 42%, #000 70%);
    box-shadow:
        inset 0 0 0 3px #111827,
        inset 0 0 0 5px #4b5563,
        0 2px 4px rgba(0, 0, 0, 0.4);
}

.lv-cam__lens::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(186, 230, 253, 0.45);
    animation: lvFrost 6s ease-in-out infinite;
}

.lv-cam__lens--a { top: 10%; left: 10%; }
.lv-cam__lens--b { top: 52%; left: 10%; }
.lv-cam__lens--c { top: 31%; left: 52%; }

@keyframes lvFrost {
    0%, 42% { opacity: 1; }
    55%, 94% { opacity: 0; }
    100% { opacity: 1; }
}

.lv-cam__flash {
    position: absolute;
    top: 14%;
    right: 10%;
    width: 12%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #fff, #fde68a 45%, #d6d3d1);
    box-shadow: inset 0 0 0 1px #57534e;
}

.lv-cam__crack {
    position: absolute;
    inset: 8%;
    width: 84%;
    height: 84%;
    fill: none;
    stroke: rgba(255, 255, 255, 0.85);
    stroke-width: 1.4;
    stroke-linecap: round;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.8));
    animation: lvShowBefore 6s ease-in-out infinite;
}

.lv-brackets {
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(54% + 12px);
    aspect-ratio: 1;
    opacity: 0;
    background:
        linear-gradient(#34d399, #34d399) left top / 14px 3px no-repeat,
        linear-gradient(#34d399, #34d399) left top / 3px 14px no-repeat,
        linear-gradient(#34d399, #34d399) right top / 14px 3px no-repeat,
        linear-gradient(#34d399, #34d399) right top / 3px 14px no-repeat,
        linear-gradient(#34d399, #34d399) left bottom / 14px 3px no-repeat,
        linear-gradient(#34d399, #34d399) left bottom / 3px 14px no-repeat,
        linear-gradient(#34d399, #34d399) right bottom / 14px 3px no-repeat,
        linear-gradient(#34d399, #34d399) right bottom / 3px 14px no-repeat;
    filter: drop-shadow(0 0 6px rgba(52, 211, 153, 0.7));
    animation: lvShowAfter 6s ease-in-out infinite;
}

/* ---------- carcasă / sticlă spate ---------- */
.lv-cam--small {
    width: 34%;
    border-radius: 28%;
}

.lv-cam--small .lv-cam__lens {
    width: 46%;
}

.lv-cam--small .lv-cam__lens::after {
    animation: none;
    opacity: 0;
}

.lv-cam--small .lv-cam__lens--a { top: 8%; left: 27%; }
.lv-cam--small .lv-cam__lens--b { top: 52%; left: 27%; }

.lv-cracks {
    position: absolute;
    inset: 8% 10%;
    width: 80%;
    height: 84%;
    fill: none;
    stroke: rgba(255, 255, 255, 0.8);
    stroke-width: 1.1;
    stroke-linecap: round;
    animation: lvShowBefore 6s ease-in-out infinite;
}

.lv-shine {
    position: absolute;
    inset: -20% -60%;
    background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.28) 50%, transparent 58%);
    transform: translateX(-60%);
    animation: lvShine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lvShine {
    0%, 52% { transform: translateX(-60%); opacity: 0; }
    56% { opacity: 1; }
    74% { transform: translateX(60%); opacity: 1; }
    78%, 100% { transform: translateX(60%); opacity: 0; }
}

/* ---------- telefon ud ---------- */
.lv-drops {
    position: absolute;
    inset: 0;
    z-index: 2;
    animation: lvShowBefore 6s ease-in-out infinite;
}

.lv-water {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.35), rgba(14, 116, 144, 0.82) 28%, #0e7490);
    border-radius: 50% 50% 0 0 / 18px 18px 0 0;
    animation: lvWater 6s ease-in-out infinite;
}

.lv-water::before {
    content: '';
    position: absolute;
    top: -7px;
    left: -8%;
    width: 116%;
    height: 14px;
    border-radius: 50%;
    background: rgba(224, 242, 254, 0.55);
    animation: lvWave 1.4s ease-in-out infinite alternate;
}

@keyframes lvWater {
    0%, 8% { height: 0; }
    36%, 46% { height: 58%; }
    62%, 100% { height: 0; }
}

@keyframes lvWave {
    from { transform: translateX(-4%); }
    to { transform: translateX(4%); }
}

.lv-drop {
    position: absolute;
    top: 6%;
    width: 7px;
    height: 10px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    background: linear-gradient(#e0f2fe, #38bdf8);
    animation: lvDrop 1.15s linear infinite;
}

.lv-drop--1 { left: 22%; }
.lv-drop--2 { left: 48%; animation-delay: 0.35s; }
.lv-drop--3 { left: 70%; animation-delay: 0.7s; }

@keyframes lvDrop {
    0% { transform: translateY(0); opacity: 0; }
    12% { opacity: 1; }
    100% { transform: translateY(220px); opacity: 0.2; }
}

.lv-dry {
    position: relative;
    z-index: 2;
    width: 44%;
    aspect-ratio: 1;
    padding: 10%;
    border-radius: 50%;
    background: #34d399;
    color: #022c22;
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.7);
    opacity: 0;
    animation: lvShowAfter 6s ease-in-out infinite;
}

/* ---------- secțiuni de conținut ---------- */
.lv-section {
    padding: 3.25rem 0;
}

.lv-h2 {
    margin-bottom: 1.4rem;
    font-size: clamp(1.55rem, 3.2vw, 2.25rem);
    text-shadow: 0 2px 12px rgba(2, 6, 23, 0.8);
}

.lv-section p {
    color: #fff;
}

.lv-answer {
    padding-top: 1rem;
}

.lv-answer__card {
    max-width: 900px;
    padding: 1.5rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(110, 231, 183, 0.35);
    border-left: 5px solid #34d399;
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(10px);
}

.lv-answer__label {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fbbf24;
}

.lv-answer__card p {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.65;
}

.lv-focus__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.lv-focus__text {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.lv-focus__text p {
    margin: 0 0 1rem;
    font-size: 1.06rem;
    font-weight: 500;
    line-height: 1.75;
}

.lv-focus__text p:last-child {
    margin-bottom: 0;
}

.lv-checklist {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lv-checklist li {
    position: relative;
    padding: 1rem 1rem 1rem 3.1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(110, 231, 183, 0.45);
    background: rgba(2, 6, 23, 0.78);
    color: #fff;
    font-weight: 700;
    line-height: 1.4;
}

.lv-checklist li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
    background: #34d399;
    color: #022c22;
    font-size: 0.85rem;
    font-weight: 900;
    box-shadow: 0 0 12px rgba(52, 211, 153, 0.6);
}

.lv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.lv-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(10px);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.lv-card:hover {
    transform: translateY(-3px);
    border-color: rgba(110, 231, 183, 0.5);
}

.lv-card h3 {
    margin: 0 0 0.55rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #6ee7b7;
}

.lv-card p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
}

.lv-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lv-chips li {
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(110, 231, 183, 0.4);
    background: rgba(2, 6, 23, 0.75);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.lv-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lv-steps li {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(2, 6, 23, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lv-steps__num {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: #34d399;
}

.lv-steps h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
    color: #fff;
}

.lv-steps p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.lv-narrow {
    max-width: 900px;
}

.lv-faq {
    display: grid;
    gap: 0.75rem;
}

.lv-faq details {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(2, 6, 23, 0.78);
}

.lv-faq details[open] {
    border-color: rgba(110, 231, 183, 0.5);
}

.lv-faq summary {
    position: relative;
    padding: 1.1rem 3rem 1.1rem 1.25rem;
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    color: #fff;
}

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

.lv-faq summary::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    font-size: 1.4rem;
    color: #34d399;
    transform: translateY(-50%);
}

.lv-faq details[open] summary::after {
    content: '−';
}

.lv-faq details p {
    margin: 0;
    padding: 0 1.25rem 1.2rem;
    line-height: 1.65;
}

.lv-local__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 2rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(2, 6, 23, 0.78);
    border: 1px solid rgba(110, 231, 183, 0.3);
}

.lv-local p {
    line-height: 1.7;
}

.lv-nap {
    margin: 1rem 0 1.5rem;
    font-style: normal;
    line-height: 1.8;
    color: #fff;
}

.lv-nap a {
    color: #6ee7b7;
}

.lv-local__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lv-related h3 {
    margin: 0 0 0.75rem;
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lv-related ul {
    display: grid;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lv-related a {
    display: block;
    padding: 0.7rem 0.9rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.lv-related a:hover {
    background: rgba(16, 185, 129, 0.25);
}

.lv-hub {
    padding-top: 0;
}

.lv-hub__title {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    color: #d1fae5;
}

.lv-hub__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lv-hub__list a,
.lv-hub__list span {
    font-size: 0.92rem;
    font-weight: 600;
    color: #a7f3d0;
}

.lv-hub__list span {
    color: #fff;
}

@media (max-width: 968px) {
    .lv-focus__grid,
    .lv-local__grid {
        grid-template-columns: 1fr;
    }

    .lv-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .lv-hero {
        overflow-x: clip;
        padding-top: 5.25rem;
        padding-bottom: 1.5rem;
    }

    .lv-hero .hero-content {
        grid-template-columns: minmax(0, 1fr) 6.6rem;
        column-gap: 0.7rem;
        row-gap: 0.55rem;
        align-items: start;
        width: 100%;
    }

    .lv-hero .hero-title,
    .lv-hero .hero-offer,
    .lv-hero .hero-description,
    .lv-hero .hero-buttons,
    .lv-hero .trust-badges {
        min-width: 0;
        max-width: 100%;
    }

    .lv-hero .hero-title {
        align-self: start;
        margin-bottom: 0;
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    .lv-hero .hero-offer {
        width: 100%;
        max-width: 100%;
    }

    .lv-hero .hero-offer__nowrap {
        white-space: normal;
    }

    .lv-hero .hero-visual {
        align-self: start;
        width: 6.6rem;
        margin: 0;
    }

    .lv-hero .hero-buttons {
        margin-top: 0.35rem;
    }

    .lv-hero .hero-buttons .btn {
        min-width: 0;
        padding: 0.75rem 0.85rem;
        font-size: 0.95rem;
    }

    .lv-hero .trust-badges {
        flex-wrap: wrap;
        justify-content: flex-start;
        row-gap: 0.4rem;
    }

    .lv-breadcrumb {
        margin-bottom: 0.75rem;
        font-size: 0.75rem;
    }

    .lv-hero .hero-btn-service {
        background: none;
        border: none;
    }

    .lv-hero .lv-device,
    .lv-hero .phone-model {
        width: 104px;
        height: auto;
        padding: 6px;
        border-radius: 22px;
    }

    .lv-device:not(.lv-device--back)::before {
        top: 11px;
        height: 9px;
    }

    .lv-screen {
        gap: 8px;
        border-radius: 18px;
    }

    .lv-battery {
        border-width: 3px;
        border-radius: 10px;
        padding: 3px;
    }

    .lv-battery::before {
        top: -8px;
        height: 5px;
    }

    .lv-battery__fill {
        border-radius: 6px;
    }

    .lv-battery__pct::after {
        font-size: 1.15rem;
    }

    .lv-battery__label,
    .lv-port__label {
        font-size: 0.55rem;
    }

    .lv-device--port {
        margin-bottom: 28px;
    }

    .lv-lead {
        width: 16px;
    }

    .lv-lead__plug {
        width: 12px;
        height: 10px;
    }

    .lv-lead__wire {
        height: 14px;
    }

    .lv-cam {
        top: 10px;
        left: 10px;
    }

    .lv-drop {
        width: 5px;
        height: 8px;
    }

    .lv-section {
        padding: 2.25rem 0;
    }

    .lv-focus__text,
    .lv-local__grid {
        padding: 1.25rem;
    }

    .lv-answer__card {
        padding: 1.2rem;
    }

    .lv-answer__card p {
        font-size: 1.02rem;
    }

    .lv-steps {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lv-device,
    .lv-device *,
    .lv-device *::before,
    .lv-device *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
