:root {
    --bg: #f7f8fa;
    --surface: #ffffff;
    --surface-soft: #f0f4f7;
    --text: #17202a;
    --muted: #667085;
    --line: #e4e7ec;
    --blue: #1456d9;
    --blue-dark: #0d3fa6;
    --teal: #0f766e;
    --dark: #101828;
    --max: 1160px;
    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

nav {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 850;
    letter-spacing: -.035em;
    white-space: nowrap;
}

.brand span {
    color: var(--blue);
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: .94rem;
}

.navlinks a {
    text-decoration: none;
    color: #344054;
    font-weight: 600;
}

.navlinks a:hover {
    color: var(--blue);
}

.languages {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 5px;
}

.languages a,
.languages span {
    padding: 5px 7px;
    border-radius: 7px;
    text-decoration: none;
    font-size: .82rem;
    font-weight: 700;
}

.languages .active {
    background: var(--dark);
    color: white;
}

.hero {
    padding: 92px 0 72px;
    background:
        radial-gradient(circle at 85% 20%, rgba(20,86,217,.10), transparent 30%),
        linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #e9f6f4;
    color: var(--teal);
    font-size: .84rem;
    font-weight: 800;
}

h1,
h2,
h3 {
    color: var(--text);
}

h1 {
    max-width: 900px;
    margin: 19px 0 22px;
    font-size: clamp(2.65rem, 6vw, 5rem);
    line-height: .98;
    letter-spacing: -.055em;
}

h2 {
    margin: 0 0 13px;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: 1.08;
    letter-spacing: -.035em;
}

h3 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.lead {
    max-width: 760px;
    margin: 0;
    color: #475467;
    font-size: 1.14rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    margin-top: 22px;
    color: #475467;
    font-size: .93rem;
    font-weight: 650;
}

.hero-points span::before {
    content: "✓";
    margin-right: 6px;
    color: var(--teal);
    font-weight: 900;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 19px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: .2s ease;
}

.btn.primary {
    background: var(--blue);
    color: white;
}

.btn.primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.btn.secondary {
    background: white;
    border: 1px solid var(--line);
}

section {
    padding: 70px 0;
}

.section-head {
    max-width: 720px;
    margin-bottom: 30px;
}

.section-head p {
    margin: 0;
    color: var(--muted);
}

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

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
}

.card p {
    margin: 0;
    color: var(--muted);
}

.service-card {
    min-height: 185px;
    transition: .2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    box-shadow: 0 12px 30px rgba(16,24,40,.06);
}

.service-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 11px;
    background: var(--surface-soft);
    font-size: 1.25rem;
}

.service-card a {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    color: var(--blue);
    font-weight: 750;
    font-size: .9rem;
}

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

.step {
    position: relative;
    padding: 26px;
}

.step-number {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    font-size: .88rem;
    font-weight: 800;
}

.pricing {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: stretch;
}

.price-box {
    background: var(--dark);
    color: white;
    border-radius: 22px;
    padding: 32px;
}

.price-box h2,
.price-box h3 {
    color: white;
}

.price-main {
    margin: 18px 0 2px;
    font-size: 2.8rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
}

.price-label {
    color: #d0d5dd;
}

.price-extra {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.16);
}

.price-note {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px;
}

.price-note p {
    color: var(--muted);
}

.two {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: start;
}

.highlight {
    background: #edf4ff;
    border: 1px solid #d7e6ff;
    border-radius: 22px;
    padding: 30px;
}

.highlight strong {
    display: block;
    margin-bottom: 8px;
    color: var(--blue);
    font-size: 1.15rem;
}

.dark-band {
    background: var(--dark);
    color: white;
}

.dark-band h2,
.dark-band h3 {
    color: white;
}

.dark-band p {
    color: #d0d5dd;
}

.clean-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.clean-list li {
    padding-left: 24px;
    position: relative;
}

.clean-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5eead4;
    font-weight: 900;
}

.about-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 32px;
}

.faq {
    max-width: 820px;
}

details {
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 10px;
    padding: 0 18px;
}

summary {
    cursor: pointer;
    padding: 18px 0;
    font-weight: 750;
}

details p {
    color: var(--muted);
    margin: 0 0 18px;
}

.final-cta {
    text-align: center;
}

.final-cta .lead {
    margin-left: auto;
    margin-right: auto;
}

footer {
    background: white;
    border-top: 1px solid var(--line);
    padding: 34px 0;
    color: var(--muted);
    font-size: .9rem;
}

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 120;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-size: 1.55rem;
    box-shadow: 0 10px 28px rgba(16,24,40,.20);
}

@media (max-width: 850px) {
    .grid,
    .steps,
    .pricing,
    .two {
        grid-template-columns: 1fr;
    }

    .navlinks > a {
        display: none;
    }

    .hero {
        padding: 65px 0 55px;
    }

    section {
        padding: 55px 0;
    }
}

@media (max-width: 520px) {
    .wrap {
        width: min(100% - 28px, var(--max));
    }

    nav {
        min-height: 64px;
    }

    .brand {
        font-size: 1.05rem;
    }

    .languages a,
    .languages span {
        padding: 4px 5px;
    }

    h1 {
        font-size: 2.55rem;
    }

    .hero-points {
        display: grid;
        gap: 7px;
    }

    .btn {
        width: 100%;
    }

    .price-box,
    .price-note,
    .about-card {
        padding: 24px;
    }

    .footer-row {
        display: grid;
    }
}


/* ===== HERO VISUAL V2 ===== */

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(360px, .8fr);
    gap: 55px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.65rem, 5vw, 4.4rem);
    max-width: 850px;
}

.hero-visual {
    position: relative;
    min-height: 440px;
    isolation: isolate;
}

.hero-orbit {
    position: absolute;
    width: 390px;
    height: 390px;
    right: 15px;
    top: 10px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 45% 42%,
        rgba(20,86,217,.17),
        rgba(20,86,217,.05) 45%,
        rgba(20,86,217,0) 72%);
    border: 1px solid rgba(20,86,217,.07);
    z-index: -1;
}

.hero-orbit::before,
.hero-orbit::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(20,86,217,.08);
}

.hero-orbit::before {
    inset: 48px;
}

.hero-orbit::after {
    inset: 100px;
}

.mini-service {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 255px;
    padding: 17px 19px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(208,213,221,.85);
    border-radius: 17px;
    box-shadow: 0 16px 45px rgba(16,24,40,.10);
    backdrop-filter: blur(10px);
}

.mini-service strong {
    display: block;
    margin-bottom: 2px;
    font-size: .98rem;
    color: var(--text);
}

.mini-service span {
    display: block;
    font-size: .79rem;
    color: var(--muted);
}

.mini-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: #f0f4f8;
    border-radius: 12px;
    font-size: 1.25rem;
}

.mini-one {
    top: 46px;
    left: 16px;
    transform: rotate(-1.5deg);
}

.mini-two {
    top: 175px;
    right: 0;
    transform: rotate(1.5deg);
}

.mini-three {
    top: 302px;
    left: 5px;
    transform: rotate(-1deg);
}

.hero-badge {
    position: absolute;
    right: 42px;
    bottom: 6px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: #475467;
    font-size: .78rem;
    font-weight: 700;
    box-shadow: 0 7px 20px rgba(16,24,40,.06);
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
}


/* ===== LANGUAGE FLAGS ===== */

.languages .flag {
    padding: 0;
    margin-right: 3px;
    background: transparent;
    font-size: .95rem;
}


/* ===== WHATSAPP ===== */

.whatsapp-float svg {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
}


/* ===== MOBILE ===== */

@media (max-width: 1000px) {

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 28px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .mini-service {
        min-width: 230px;
    }

    .mini-two {
        right: -10px;
    }
}

@media (max-width: 850px) {

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 350px;
        max-width: 520px;
        width: 100%;
        margin: 10px auto 0;
    }

    .hero-orbit {
        width: 330px;
        height: 330px;
        right: 50%;
        transform: translateX(50%);
    }

    .mini-one {
        top: 35px;
        left: 0;
    }

    .mini-two {
        top: 145px;
        right: 0;
    }

    .mini-three {
        top: 255px;
        left: 25px;
    }

    .hero-badge {
        display: none;
    }
}

@media (max-width: 520px) {

    .languages .flag {
        display: none;
    }

    .hero-visual {
        min-height: 325px;
    }

    .mini-service {
        min-width: 215px;
        padding: 14px 15px;
    }

    .mini-one {
        left: 0;
    }

    .mini-two {
        right: 0;
    }

    .mini-three {
        left: 8px;
    }

    .mini-icon {
        width: 39px;
        height: 39px;
    }
}

/* ===== SPAIN / VALENCIA HERO MAP ===== */

.spain-map-wrap {
    position: absolute;
    width: 390px;
    height: 285px;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.spain-map {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 22px;

    opacity: .26;

    filter:
        saturate(.70)
        contrast(.90);

    user-select: none;
    pointer-events: none;
}

.valencia-marker {
    position: absolute;

    /* Ще го наместим точно след screenshot */
    right: 69px;
    top: 137px;

    display: flex;
    align-items: center;
    gap: 8px;
}

.marker-dot {
    position: relative;
    width: 12px;
    height: 12px;

    background: var(--blue);
    border: 3px solid #fff;
    border-radius: 50%;

    box-shadow:
        0 0 0 4px rgba(20,86,217,.16),
        0 3px 10px rgba(16,24,40,.16);
}

.marker-dot::after {
    content: "";
    position: absolute;
    inset: -8px;

    border: 1px solid rgba(20,86,217,.28);
    border-radius: 50%;
}

.marker-label {
    padding: 5px 9px;

    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    border-radius: 8px;

    color: var(--text);
    font-size: .74rem;
    font-weight: 800;

    box-shadow: 0 5px 16px rgba(16,24,40,.08);
}

/* Старите кръгове вече не ни трябват */
.hero-orbit {
    display: none;
}


/* ===== TABLET ===== */

@media (max-width: 1000px) {

    .spain-map-wrap {
        width: 340px;
        height: 250px;
    }

    .valencia-marker {
        right: 60px;
        top: 122px;
    }
}


/* ===== MOBILE ===== */

@media (max-width: 850px) {

    .spain-map-wrap {
        width: 330px;
        top: 43px;
    }

    .valencia-marker {
        right: 58px;
        top: 116px;
    }
}


@media (max-width: 520px) {

    .spain-map-wrap {
        width: 290px;
        opacity: .85;
    }

    .valencia-marker {
        right: 51px;
        top: 105px;
    }

    .marker-label {
        display: none;
    }
}


/* ===== FIX HERO MAP LAYER ===== */

.hero-visual {
    isolation: auto;
}

.spain-map-wrap {
    z-index: 0 !important;
}

.mini-service,
.hero-badge {
    z-index: 2;
}

.spain-map {
    opacity: .32;
}


/* ===== HERO MAP FINAL TUNING ===== */

.hero-visual {
    position: relative;
    overflow: hidden;
}

/* Larger map, shifted right */
.spain-map-wrap {
    width: 500px !important;
    height: 390px !important;
    top: 45px !important;
    left: 64% !important;
    transform: translateX(-50%) !important;
    z-index: 1 !important;
}

/* Map itself */
.spain-map {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    opacity: .42 !important;
    filter:
        saturate(.95)
        contrast(1.08) !important;
}

/* Floating service cards always above map */
.mini-service {
    z-index: 3 !important;
}

/* We no longer need the extra Valencia marker */
.valencia-marker {
    display: none !important;
}

/*
   Cover the Canary Islands inset that is part of the original SVG.
   This sits over the lower-left corner of the map but below the cards.
*/
.spain-map-wrap::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 155px;
    height: 95px;
    background: #f7f9fc;
    z-index: 2;
}


/* Slight repositioning of the three cards */

.mini-one {
    top: 42px;
    left: 0;
}

.mini-two {
    top: 172px;
    right: 0;
}

.mini-three {
    top: 305px;
    left: 0;
}


/* ===== TABLET ===== */

@media (max-width: 1000px) {

    .spain-map-wrap {
        width: 430px !important;
        left: 62% !important;
    }
}


/* ===== MOBILE ===== */

@media (max-width: 850px) {

    .spain-map-wrap {
        width: 390px !important;
        left: 57% !important;
        top: 35px !important;
    }

    .spain-map {
        opacity: .32 !important;
    }
}


/* ===== SMALL HERO POSITION TWEAK ===== */

.spain-map-wrap {
    left: 64% !important;
}

EOFcat >> /var/www/fixitvalencia/assets/css/site.css <<'EOF'

/* ===== SMALL HERO POSITION TWEAK ===== */

.spain-map-wrap {
    left: 64% !important;
}


/* ===== SMART CARD SMALL MOVE ===== */

.mini-two {
    right: -18px !important;
    top: 182px !important;
}


/* ===== HERO POSITION FIX ===== */

.hero-visual {
    overflow: visible !important;
}

/* Spain map slightly left */
.spain-map-wrap {
    left: 58% !important;
}

/* Move Smart & Technical clearly LEFT */
.mini-two {
    right: 55px !important;
    top: 182px !important;
}

/* Keep other two where they are */
.mini-one {
    left: 0 !important;
}

.mini-three {
    left: 0 !important;
}


/* ===== MOVE SMART CARD AWAY FROM VALENCIA ===== */

.mini-two {
    right: 165px !important;
    top: 182px !important;
}



/* =====================================================
   FIX IT VALENCIA — VISUAL LIFE PASS
   ===================================================== */

:root {
    --valencia-orange: #f28a4b;
    --warm-soft: #fff5ee;
    --blue-soft: #eef4ff;
    --green-soft: #edf8f4;
}


/* ===== HERO DETAILS ===== */

.hero {
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(20,86,217,.12),
        rgba(242,138,75,.20),
        transparent
    );
}

.kicker {
    box-shadow: inset 3px 0 0 var(--valencia-orange);
}

.btn.primary {
    position: relative;
    box-shadow: 0 8px 22px rgba(20,86,217,.16);
}

.btn.primary::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-radius: 50%;
    background: #ffb17c;
}

.btn.primary:hover {
    box-shadow: 0 12px 28px rgba(20,86,217,.23);
}


/* ===== TRUST STRIP ===== */

.trust-strip {
    position: relative;
    background: #fff;
    border-top: 1px solid rgba(228,231,236,.7);
    border-bottom: 1px solid var(--line);
}

.trust-row {
    min-height: 92px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 52px;
    padding: 0 24px;
    border-right: 1px solid var(--line);
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--blue-soft);
    color: var(--blue);
}

.trust-item:nth-child(2) .trust-icon {
    background: var(--warm-soft);
    color: var(--valencia-orange);
}

.trust-item:nth-child(3) .trust-icon {
    background: var(--green-soft);
    color: var(--teal);
}

.trust-item:nth-child(4) .trust-icon {
    background: #f3f0ff;
    color: #6941c6;
}

.trust-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item strong {
    display: block;
    color: var(--text);
    font-size: .88rem;
    line-height: 1.2;
}

.trust-item small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: .76rem;
    line-height: 1.25;
}


/* ===== SERVICES SECTION ===== */

#services {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 7% 8%, rgba(15,118,110,.055), transparent 22%),
        radial-gradient(circle at 94% 85%, rgba(242,138,75,.07), transparent 22%),
        #f8fafc;
}

#services::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    right: -100px;
    top: -80px;
    border: 1px solid rgba(20,86,217,.08);
    border-radius: 50%;
}

#services .section-head h2 {
    position: relative;
    display: inline-block;
}

#services .section-head h2::after {
    content: "";
    display: block;
    width: 46px;
    height: 4px;
    margin-top: 13px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--blue),
        var(--valencia-orange)
    );
}


/* ===== SERVICE CARDS ===== */

.service-card {
    position: relative;
    overflow: hidden;
    transition:
        transform .24s ease,
        box-shadow .24s ease,
        border-color .24s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    border-radius: 0 0 6px 6px;
    background: var(--blue);
    opacity: .75;
}

.service-card:nth-child(2)::before {
    background: var(--teal);
}

.service-card:nth-child(3)::before {
    background: var(--valencia-orange);
}

.service-card:nth-child(4)::before {
    background: #6941c6;
}

.service-card:nth-child(5)::before {
    background: #1570ef;
}

.service-card:nth-child(6)::before {
    background: #0e9384;
}

.service-card:nth-child(1) .service-icon {
    background: var(--blue-soft);
}

.service-card:nth-child(2) .service-icon {
    background: var(--green-soft);
}

.service-card:nth-child(3) .service-icon {
    background: var(--warm-soft);
}

.service-card:nth-child(4) .service-icon {
    background: #f4f0ff;
}

.service-card:nth-child(5) .service-icon {
    background: #eff8ff;
}

.service-card:nth-child(6) .service-icon {
    background: #ecfdf3;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16,24,40,.09);
    border-color: #d0d5dd;
}

.service-card a {
    position: relative;
}

.service-card a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--valencia-orange);
    transition: width .2s ease;
}

.service-card:hover a::after {
    width: 100%;
}


/* ===== HERO FLOATING CARDS ===== */

.mini-service {
    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.mini-service:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 48px rgba(16,24,40,.14);
}

.mini-one {
    border-top: 3px solid rgba(20,86,217,.55);
}

.mini-two {
    border-top: 3px solid rgba(242,138,75,.70);
}

.mini-three {
    border-top: 3px solid rgba(15,118,110,.60);
}


/* ===== SUBTLE ENTRY ANIMATION ===== */

@keyframes softIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy {
    animation: softIn .55s ease both;
}

.mini-one {
    animation: softIn .55s .10s ease both;
}

.mini-two {
    animation: softIn .55s .20s ease both;
}

.mini-three {
    animation: softIn .55s .30s ease both;
}


/* ===== MOBILE ===== */

@media (max-width: 900px) {

    .trust-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 12px 0;
    }

    .trust-item {
        padding: 15px;
        border-right: 0;
    }
}

@media (max-width: 520px) {

    .trust-row {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-bottom: 1px solid var(--line);
        padding: 14px 0;
    }

    .trust-item:last-child {
        border-bottom: 0;
    }
}


/* ===== HERO COPY REFINEMENT ===== */

.hero-copy h1 {
    max-width: 790px;
    font-size: clamp(3rem, 4.7vw, 4.65rem);
    line-height: 1.01;
    letter-spacing: -.052em;
}

.hero-accent {
    color: var(--blue);
    position: relative;
}

.hero-accent::after {
    content: "";
    position: absolute;
    left: 3px;
    bottom: -7px;
    width: 72px;
    height: 5px;
    border-radius: 99px;
    background: var(--valencia-orange);
}

.hero-lead {
    max-width: 720px;
    margin-top: 28px;
    font-size: 1.08rem;
    line-height: 1.7;
}

.hero-points {
    margin-top: 24px;
}


/* ===== HERO HEADING SIZE FIX ===== */

.hero-copy h1 {
    max-width: 820px;
    font-size: clamp(2.8rem, 4vw, 3.85rem) !important;
    line-height: 1.04;
    letter-spacing: -.045em;
    margin-top: 22px;
    margin-bottom: 20px;
}

.hero-lead {
    margin-top: 20px;
    max-width: 700px;
    font-size: 1.04rem;
}

@media (max-width: 520px) {
    .hero-copy h1 {
        font-size: 2.55rem !important;
    }
}


/* ===== EXTENDED SERVICE AREA ===== */

.extended-area {
    margin-top: 17px;
    color: #667085;
    font-size: .88rem;
    font-weight: 600;
}

.extended-area::before {
    content: "↗";
    margin-right: 7px;
    color: var(--valencia-orange);
    font-weight: 900;
}


/* ===== COLOR CLEANUP / BRAND PASS ===== */

:root {
    --bg: #f6f8fb;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #5f6b7a;
    --line: #e6ebf2;

    --blue: #1d4ed8;
    --blue-dark: #173ea6;

    --teal: #0f766e;
    --teal-soft: #edf7f5;
    --blue-soft: #eef4ff;

    --slate-accent: #94a3b8;
    --slate-soft: #f1f5f9;
}

/* Main button */
.btn.primary {
    background: var(--blue) !important;
    box-shadow: 0 10px 24px rgba(29, 78, 216, .18) !important;
}

.btn.primary:hover {
    background: var(--blue-dark) !important;
    box-shadow: 0 14px 30px rgba(29, 78, 216, .22) !important;
}

/* remove orange button dot feeling */
.btn.primary::after {
    background: #bfdbfe !important;
}

/* top kicker */
.kicker {
    background: var(--teal-soft) !important;
    color: var(--teal) !important;
    box-shadow: inset 4px 0 0 var(--teal) !important;
}

/* hero main accent word */
.hero-accent {
    color: var(--blue) !important;
}

.hero-accent::after {
    background: var(--teal) !important;
    opacity: .22;
    width: 78px;
    height: 5px;
    bottom: -7px;
}

/* remove the orange mini line under title area */
.hero-copy .hero-lead + .hero-points::before,
.hero-copy .hero-points::before {
    background: none !important;
}

/* text tones */
.hero-lead,
.extended-area,
.lead,
.card p,
.small {
    color: var(--muted) !important;
}

/* extended area note */
.extended-area::before {
    color: var(--teal) !important;
}

/* Mini cards on the right */
.mini-service {
    border: 1px solid var(--line) !important;
    border-top: 0 !important;
    border-left: 4px solid transparent !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .08) !important;
}

.mini-one {
    border-left-color: var(--blue) !important;
}

.mini-two {
    border-left-color: var(--teal) !important;
}

.mini-three {
    border-left-color: var(--slate-accent) !important;
}

/* mini icons */
.mini-one .mini-icon {
    background: var(--blue-soft) !important;
}

.mini-two .mini-icon {
    background: var(--teal-soft) !important;
}

.mini-three .mini-icon {
    background: var(--slate-soft) !important;
}

/* trust strip icons - simplify colors */
.trust-icon {
    background: var(--blue-soft) !important;
    color: var(--blue) !important;
}

.trust-item:nth-child(2) .trust-icon,
.trust-item:nth-child(3) .trust-icon,
.trust-item:nth-child(4) .trust-icon {
    background: var(--teal-soft) !important;
    color: var(--teal) !important;
}

/* services section cards - remove rainbow effect */
.service-card::before {
    background: var(--blue) !important;
    opacity: .75 !important;
}

.service-card:nth-child(even)::before {
    background: var(--teal) !important;
}

.service-card:nth-child(1) .service-icon,
.service-card:nth-child(3) .service-icon,
.service-card:nth-child(5) .service-icon {
    background: var(--blue-soft) !important;
}

.service-card:nth-child(2) .service-icon,
.service-card:nth-child(4) .service-icon,
.service-card:nth-child(6) .service-icon {
    background: var(--teal-soft) !important;
}

/* links underline in cards */
.service-card a::after {
    background: var(--blue) !important;
}

/* property/business line under mini card text */
.mini-service span {
    color: var(--muted) !important;
}

/* secondary button cleaner */
.btn.secondary {
    border: 1px solid var(--line) !important;
    background: #fff !important;
    color: var(--text) !important;
}

EOFcat >> /var/www/fixitvalencia/assets/css/site.css <<'EOF'

/* ===== COLOR CLEANUP / BRAND PASS ===== */

:root {
    --bg: #f6f8fb;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #5f6b7a;
    --line: #e6ebf2;

    --blue: #1d4ed8;
    --blue-dark: #173ea6;

    --teal: #0f766e;
    --teal-soft: #edf7f5;
    --blue-soft: #eef4ff;

    --slate-accent: #94a3b8;
    --slate-soft: #f1f5f9;
}

/* Main button */
.btn.primary {
    background: var(--blue) !important;
    box-shadow: 0 10px 24px rgba(29, 78, 216, .18) !important;
}

.btn.primary:hover {
    background: var(--blue-dark) !important;
    box-shadow: 0 14px 30px rgba(29, 78, 216, .22) !important;
}

/* remove orange button dot feeling */
.btn.primary::after {
    background: #bfdbfe !important;
}

/* top kicker */
.kicker {
    background: var(--teal-soft) !important;
    color: var(--teal) !important;
    box-shadow: inset 4px 0 0 var(--teal) !important;
}

/* hero main accent word */
.hero-accent {
    color: var(--blue) !important;
}

.hero-accent::after {
    background: var(--teal) !important;
    opacity: .22;
    width: 78px;
    height: 5px;
    bottom: -7px;
}

/* remove the orange mini line under title area */
.hero-copy .hero-lead + .hero-points::before,
.hero-copy .hero-points::before {
    background: none !important;
}

/* text tones */
.hero-lead,
.extended-area,
.lead,
.card p,
.small {
    color: var(--muted) !important;
}

/* extended area note */
.extended-area::before {
    color: var(--teal) !important;
}

/* Mini cards on the right */
.mini-service {
    border: 1px solid var(--line) !important;
    border-top: 0 !important;
    border-left: 4px solid transparent !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 14px 32px rgba(15, 23, 42, .08) !important;
}

.mini-one {
    border-left-color: var(--blue) !important;
}

.mini-two {
    border-left-color: var(--teal) !important;
}

.mini-three {
    border-left-color: var(--slate-accent) !important;
}

/* mini icons */
.mini-one .mini-icon {
    background: var(--blue-soft) !important;
}

.mini-two .mini-icon {
    background: var(--teal-soft) !important;
}

.mini-three .mini-icon {
    background: var(--slate-soft) !important;
}

/* trust strip icons - simplify colors */
.trust-icon {
    background: var(--blue-soft) !important;
    color: var(--blue) !important;
}

.trust-item:nth-child(2) .trust-icon,
.trust-item:nth-child(3) .trust-icon,
.trust-item:nth-child(4) .trust-icon {
    background: var(--teal-soft) !important;
    color: var(--teal) !important;
}

/* services section cards - remove rainbow effect */
.service-card::before {
    background: var(--blue) !important;
    opacity: .75 !important;
}

.service-card:nth-child(even)::before {
    background: var(--teal) !important;
}

.service-card:nth-child(1) .service-icon,
.service-card:nth-child(3) .service-icon,
.service-card:nth-child(5) .service-icon {
    background: var(--blue-soft) !important;
}

.service-card:nth-child(2) .service-icon,
.service-card:nth-child(4) .service-icon,
.service-card:nth-child(6) .service-icon {
    background: var(--teal-soft) !important;
}

/* links underline in cards */
.service-card a::after {
    background: var(--blue) !important;
}

/* property/business line under mini card text */
.mini-service span {
    color: var(--muted) !important;
}

/* secondary button cleaner */
.btn.secondary {
    border: 1px solid var(--line) !important;
    background: #fff !important;
    color: var(--text) !important;
}


/* ===== HERO H1 SLIGHTLY SMALLER ===== */

.hero-copy h1 {
    font-size: clamp(2.6rem, 3.55vw, 3.45rem) !important;
    line-height: 1.06 !important;
}


/* ===== HERO SERVICE SCOPE ===== */

.hero-copy h1 {
    font-size: clamp(2.5rem, 3.4vw, 3.35rem) !important;
    line-height: 1.06 !important;
    max-width: 760px !important;
}

/* Valencia remains blue, without the odd underline */
.hero-accent {
    color: var(--blue) !important;
}

.hero-accent::after {
    display: none !important;
}

.hero-lead {
    max-width: 790px !important;
    font-size: 1.02rem !important;
    line-height: 1.68 !important;
    margin-top: 20px !important;
}

/* Turn the old check-list into clear service tags */
.hero-points.service-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 22px !important;
    max-width: 790px;
}

.hero-points.service-tags span {
    display: inline-flex !important;
    align-items: center;
    padding: 7px 11px;
    border: 1px solid #dde4ee;
    border-radius: 999px;
    background: rgba(255,255,255,.82);
    color: #344054;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
}

.hero-points.service-tags span::before {
    content: none !important;
}

.hero-points.service-tags span:nth-child(3n+1) {
    border-color: #d8e4fb;
    background: #f4f7fd;
}

.hero-points.service-tags span:nth-child(3n+2) {
    border-color: #d6ebe7;
    background: #f3f9f8;
}

/* Right cards need a little more width for the new wording */
.mini-service {
    min-width: 290px !important;
}

.mini-service strong {
    font-size: .94rem !important;
}

.mini-service span {
    font-size: .75rem !important;
}

/* Second card remains away from the highlighted Valencia region */
.mini-two {
    right: 165px !important;
}

/* On smaller screens don't force the desktop positioning */
@media (max-width: 1000px) {
    .mini-service {
        min-width: 255px !important;
    }

    .mini-two {
        right: 35px !important;
    }
}

@media (max-width: 850px) {
    .hero-points.service-tags {
        gap: 7px !important;
    }

    .hero-points.service-tags span {
        font-size: .75rem;
        padding: 7px 10px;
    }
}


/* ===== HERO CLEANUP V2 ===== */

/* Service list: informational, not button-like */
.hero-points.service-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px 18px !important;
    margin-top: 20px !important;
    max-width: 760px !important;
}

.hero-points.service-tags span {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #475467 !important;
    font-size: .84rem !important;
    font-weight: 650 !important;
    line-height: 1.4 !important;
}

.hero-points.service-tags span::before {
    content: "•" !important;
    margin-right: 7px !important;
    color: var(--teal) !important;
    font-size: 1.1rem !important;
    vertical-align: middle !important;
}

/* Restore map as main visual */
.spain-map-wrap {
    width: 500px !important;
    top: 62px !important;
    left: 61% !important;
    z-index: 0 !important;
    opacity: 1 !important;
}

.spain-map {
    opacity: .34 !important;
    filter: saturate(.9) contrast(1.03) !important;
}

/* Cards smaller so the map remains visible */
.mini-service {
    min-width: 0 !important;
    width: 285px !important;
    padding: 16px 18px !important;
    z-index: 3 !important;
}

/* Position cards around, not on top of, Valencia */
.mini-one {
    top: 35px !important;
    left: -5px !important;
}

.mini-two {
    top: 190px !important;
    right: 120px !important;
}

.mini-three {
    top: 325px !important;
    left: -5px !important;
}

/* Slightly smaller secondary text */
.mini-service span {
    font-size: .73rem !important;
}



/* =========================================================
   HOMEPAGE V2 SECTIONS
   ========================================================= */

.section-eyebrow {
    margin-bottom: 10px;
    color: var(--teal);
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.centered-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.home-services-section {
    background: #f8fafc;
}

.services-intro {
    max-width: 720px;
}

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

.home-service-card {
    position: relative;
    min-height: 230px;
    padding: 27px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    transition: .2s ease;
}

.home-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 38px rgba(15,23,42,.07);
}

.service-number {
    margin-bottom: 30px;
    color: var(--blue);
    font-size: .77rem;
    font-weight: 850;
}

.home-service-card:nth-child(even) .service-number {
    color: var(--teal);
}

.home-service-card h3 {
    font-size: 1.12rem;
}

.home-service-card p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.home-service-card a {
    position: absolute;
    left: 27px;
    bottom: 25px;
    color: var(--blue);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 750;
}

.services-help-line {
    margin-top: 22px;
    padding: 17px 20px;
    text-align: center;
    color: var(--muted);
    font-size: .92rem;
}

.services-help-line strong {
    color: var(--text);
}


/* HOW IT WORKS */

.process-section {
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 45px 1fr 45px 1fr;
    align-items: center;
    gap: 14px;
    margin-top: 38px;
}

.process-step {
    min-height: 190px;
    padding: 27px;
    background: #f8fafc;
    border-radius: 18px;
}

.process-number {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 10px;
    background: var(--blue);
    color: white;
    font-weight: 850;
}

.process-step:nth-of-type(3) .process-number {
    background: var(--teal);
}

.process-step p {
    margin: 0;
    color: var(--muted);
}

.process-arrow {
    color: #cbd5e1;
    text-align: center;
    font-size: 1.5rem;
}


/* PRICING */

.home-pricing-section {
    background: #f4f7fb;
}

.pricing-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.pricing-copy h2 {
    max-width: 500px;
}

.pricing-copy p {
    max-width: 520px;
    color: var(--muted);
}

.pricing-small-note {
    margin-top: 25px;
    color: #64748b;
    font-size: .85rem;
}

.pricing-panel {
    padding: 30px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(15,23,42,.06);
}

.price-line {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
}

.price-line strong,
.price-line span {
    display: block;
}

.price-line span {
    margin-top: 3px;
    color: var(--muted);
    font-size: .82rem;
}

.price-value {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.small-price {
    font-size: 1.4rem;
}

.price-divider {
    height: 1px;
    margin: 24px 0;
    background: var(--line);
}

.travel-note {
    margin-top: 25px;
    padding: 17px;
    background: var(--teal-soft);
    border-radius: 12px;
}

.travel-note strong,
.travel-note span {
    display: block;
}

.travel-note strong {
    color: var(--teal);
    font-size: .86rem;
}

.travel-note span {
    margin-top: 4px;
    color: var(--muted);
    font-size: .8rem;
}


/* WHY */

.why-section {
    background: #0f172a;
    color: white;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center;
}

.light-eyebrow {
    color: #5eead4;
}

.why-section h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
}

.why-main p {
    color: #cbd5e1;
    max-width: 600px;
}

.why-points {
    display: grid;
    gap: 13px;
}

.why-point {
    display: flex;
    gap: 18px;
    padding: 19px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
}

.why-point > span {
    color: #5eead4;
    font-size: .72rem;
    font-weight: 850;
}

.why-point strong {
    display: block;
    margin-bottom: 3px;
}

.why-point p {
    margin: 0;
    color: #94a3b8;
    font-size: .83rem;
}


/* PROPERTY / BUSINESS */

.property-business-section {
    background: white;
}

.property-business-section .section-head {
    max-width: 770px;
}

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

.property-grid article {
    padding: 27px;
    background: #f8fafc;
    border-radius: 18px;
}

.property-label {
    margin-bottom: 26px;
    color: var(--teal);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .1em;
}

.property-grid p {
    color: var(--muted);
    font-size: .9rem;
}

.section-text-link {
    display: inline-block;
    margin-top: 25px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 750;
}


/* ABOUT */

.about-home-section {
    background: #f7f9fc;
}

.about-home-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 65px;
    align-items: center;
}

.about-placeholder {
    aspect-ratio: 4 / 5;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    background: linear-gradient(145deg,#e8eef7,#f8fafc);
    border: 1px solid var(--line);
    border-radius: 22px;
}

.about-initial {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    font-size: 2rem;
    font-weight: 900;
}

.about-placeholder span {
    color: #94a3b8;
    font-size: .75rem;
}

.about-home-copy {
    max-width: 700px;
}

.about-lead {
    color: #334155;
    font-size: 1.12rem;
}

.about-home-copy p:not(.about-lead) {
    color: var(--muted);
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 25px;
}

.about-skills span {
    color: #475569;
    font-size: .82rem;
    font-weight: 700;
}

.about-skills span::before {
    content: "✓";
    margin-right: 6px;
    color: var(--teal);
}


/* AREAS */

.areas-section {
    background: white;
}

.areas-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.areas-layout > div:first-child p {
    max-width: 520px;
    color: var(--muted);
}

.areas-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.area-primary,
.area-secondary {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.area-primary {
    border-bottom: 1px solid var(--line);
}

.area-primary strong {
    color: var(--blue);
}

.area-secondary strong {
    color: var(--teal);
}

.area-primary span,
.area-secondary span {
    color: var(--muted);
}

.areas-card p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: .82rem;
}


/* FAQ */

.faq-home-section {
    background: #f8fafc;
}

.faq-home-wrap {
    max-width: 900px;
}

.faq-home-section details {
    background: white;
}


/* FINAL CTA */

.final-home-cta {
    background: #0f172a;
}

.final-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.final-cta-box h2 {
    margin-bottom: 8px;
    color: white;
}

.final-cta-box p {
    margin: 0;
    max-width: 600px;
    color: #cbd5e1;
}

.final-cta-actions {
    min-width: 220px;
    text-align: center;
}

.final-whatsapp {
    width: 100%;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-weight: 850;
}

.final-cta-actions span {
    display: block;
    margin-top: 10px;
    color: #64748b;
    font-size: .68rem;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .services-grid,
    .property-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .pricing-layout,
    .why-layout,
    .areas-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-home-layout {
        grid-template-columns: 220px 1fr;
        gap: 35px;
    }

    .final-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 600px) {

    .services-grid,
    .property-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        min-height: 215px;
    }

    .about-home-layout {
        grid-template-columns: 1fr;
    }

    .about-placeholder {
        max-width: 250px;
    }

    .price-line,
    .area-primary,
    .area-secondary {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .final-cta-actions {
        width: 100%;
    }
}


/* ===== SERVICE NUMBERS REFINEMENT ===== */

.service-number {
    color: #94a3b8 !important;
    font-size: .72rem !important;
    font-weight: 800 !important;
    letter-spacing: .08em !important;
}

.home-service-card:nth-child(even) .service-number {
    color: #94a3b8 !important;
}

