: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;
    }
}

