:root {
    --bg: #07140f;
    --bg2: #050b08;
    --txt: #efe7d7;
    --muted: #c7bca9;
    --gold: #d6b25e;
    --emerald: #18a06b;
    --panel: rgba(255, 255, 255, .04);
    --border: rgba(214, 178, 94, .16);
    --shadow: 0 18px 55px rgba(0, 0, 0, .55);
    --r: 20px;
    --topbar-h: 52px;
    --header-h: 74px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    color: var(--txt);
    background: linear-gradient(180deg, var(--bg), var(--bg2));
    font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
}

h1,
h2,
h3 {
    font-family: Marcellus, Georgia, serif;
    margin: 0;
    letter-spacing: .2px;
}

p {
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
summary:focus-visible {
    outline: 2px solid rgba(214, 178, 94, .92);
    outline-offset: 3px;
}

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

.muted {
    color: var(--muted);
}

.section {
    position: relative;
    z-index: 2;
    padding: 3.1rem 0;
    scroll-margin-top: calc(var(--topbar-h) + var(--header-h) + 18px);
}

#sky {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}


/* Orbes */

.bg-orb {
    position: fixed;
    width: 760px;
    height: 760px;
    border-radius: 999px;
    filter: blur(55px);
    opacity: .26;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

.bg-orb.o1 {
    left: -320px;
    top: -360px;
    background: radial-gradient(circle, rgba(24, 160, 107, .55), transparent 62%);
}

.bg-orb.o2 {
    right: -340px;
    bottom: -360px;
    background: radial-gradient(circle, rgba(214, 178, 94, .52), transparent 62%);
}


/* Grano */

.grain {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .10;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
    background-size: 260px 260px;
    mix-blend-mode: overlay;
}


/* Topbar */

.topbar {
    position: sticky;
    top: 0;
    z-index: 80;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    background: rgba(4, 10, 7, .82);
    border-bottom: 1px solid rgba(24, 160, 107, .18);
    backdrop-filter: blur(10px) saturate(1.1);
}

.topbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    font-weight: 800;
    color: rgba(239, 231, 215, .92);
}

.topbar-wrap span {
    font-size: .85rem;
    letter-spacing: .5px;
}

.topbar-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(24, 160, 107, .30), rgba(214, 178, 94, .18));
    border: 1px solid rgba(214, 178, 94, .18);
    color: var(--txt);
    font-weight: 900;
    white-space: nowrap;
    transition: transform .15s ease, filter .2s ease, background-color .2s ease, border-color .2s ease;
}

.topbar-cta:hover {
    transform: translateY(-1px);
    filter: saturate(1.05);
}


/* Header */

.header {
    position: sticky;
    top: var(--topbar-h);
    height: var(--header-h);
    z-index: 70;
    background: rgba(6, 12, 9, .82);
    border-bottom: 1px solid rgba(214, 178, 94, .14);
    backdrop-filter: blur(12px) saturate(1.15);
}

.h-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 0;
}

.brandMark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(24, 160, 107, .18), rgba(214, 178, 94, .12));
    border: 1px solid rgba(214, 178, 94, .18);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .45);
    padding: 5px;
}

.brandLogo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.brandTxt strong {
    font-size: 1.02rem;
}

.brandTxt em {
    color: var(--gold);
    font-style: normal;
}

.brandTxt span {
    display: block;
    font-size: .80rem;
    color: rgba(199, 188, 169, .95);
    margin-top: .15rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: .35rem;
}

.nav a {
    padding: .58rem .72rem;
    border-radius: 12px;
    color: rgba(199, 188, 169, .95);
    border: 1px solid transparent;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .15s ease;
}

.nav a:hover {
    color: var(--txt);
    background: rgba(255, 255, 255, .03);
    border-color: rgba(214, 178, 94, .10);
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .88rem 1.05rem;
    border-radius: 999px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: transform .15s ease, filter .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    filter: saturate(1.05);
}

.btn.primary {
    color: #06110c;
    background: linear-gradient(135deg, rgba(214, 178, 94, .95), rgba(24, 160, 107, .35));
    border: 1px solid rgba(214, 178, 94, .22);
    box-shadow: 0 16px 44px rgba(214, 178, 94, .10), 0 16px 44px rgba(24, 160, 107, .10);
}

.btn.ghost {
    background: rgba(255, 255, 255, .03);
    border-color: rgba(214, 178, 94, .14);
    color: var(--txt);
}

.btn.small {
    padding: .62rem .9rem;
    font-size: .92rem;
}


/* Burger + Drawer */

.burger {
    display: none;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(214, 178, 94, .14);
    border-radius: 12px;
    padding: .55rem .75rem;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, transform .15s ease;
}

.burger:hover {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(214, 178, 94, .22);
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #efe7d7;
    margin: 5px 0;
    border-radius: 2px;
}

.drawer {
    position: fixed;
    inset: 0;
    background: rgba(3, 8, 6, .96);
    backdrop-filter: blur(14px);
    transform: translateY(-100%);
    transition: transform .25s ease;
    z-index: 100;
    padding: 14px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.drawer.open {
    transform: translateY(0);
}

.drawerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    padding: .5rem 0 1rem;
    border-bottom: 1px solid rgba(214, 178, 94, .16);
}

.drawerTop strong {
    font-size: 1rem;
}

.drawerBg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 90;
}

.drawerBg.show {
    opacity: 1;
    pointer-events: auto;
}


/* Hero */

.hero {
    position: relative;
    z-index: 2;
    padding: 2.2rem 0 1.2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 1.25rem;
    align-items: stretch;
}

.hero-copy {
    padding: 1.1rem 0;
}

.kicker {
    text-transform: uppercase;
    letter-spacing: .55em;
    color: rgba(24, 160, 107, .85);
    font-weight: 800;
    font-size: .78rem;
    margin-bottom: .75rem;
}

.hero h1 {
    color: var(--gold);
    font-size: clamp(2.1rem, 5.2vw, 3.4rem);
    line-height: 1.06;
    margin: .2rem 0 .8rem;
}

.hero-cta {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-top: 1.1rem;
}

.trustRow {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.trust {
    padding: .35rem .6rem;
    border-radius: 999px;
    border: 1px solid rgba(24, 160, 107, .18);
    background: rgba(255, 255, 255, .02);
    color: rgba(199, 188, 169, .95);
    font-weight: 800;
    font-size: .92rem;
}

.trust span {
    margin-right: .3rem;
}


/* Hero panel */

.hero-panel {
    border-radius: 22px;
    border: 1px solid rgba(214, 178, 94, .16);
    background: rgba(255, 255, 255, .03);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.panelTop {
    padding: 1rem 1rem .75rem;
    border-bottom: 1px solid rgba(214, 178, 94, .14);
}

.panelTitle {
    font-weight: 950;
    color: var(--gold);
}

.panelVisual {
    position: relative;
    flex: 1;
    min-height: clamp(220px, 36vw, 280px);
    overflow: hidden;
    background: rgba(0, 0, 0, .10);
}

.panelPhoto {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(.72) contrast(1.06) saturate(.92);
}

.scan {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.sigilRing {
    position: absolute;
    inset: 18%;
    border-radius: 999px;
    border: 1px solid rgba(24, 160, 107, .18);
    box-shadow: inset 0 0 0 1px rgba(214, 178, 94, .10);
}

.glyph {
    position: absolute;
    font-size: 36px;
    opacity: .55;
    color: rgba(214, 178, 94, .9);
}

.g1 {
    left: 18px;
    top: 18px;
}

.g2 {
    right: 18px;
    top: 34px;
}

.g3 {
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    opacity: .33;
}

.scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(214, 178, 94, .12) 45%, rgba(24, 160, 107, .10) 55%, transparent 100%);
    transform: translateX(-60%);
    animation: scan 4.6s ease-in-out infinite;
    filter: blur(8px);
}

@keyframes scan {
    0% {
        transform: translateX(-60%);
        opacity: .16;
    }
    50% {
        transform: translateX(10%);
        opacity: .48;
    }
    100% {
        transform: translateX(70%);
        opacity: .16;
    }
}

.panelBottom {
    padding: 1rem;
    border-top: 1px solid rgba(214, 178, 94, .14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
}


/* Section head */

.sectionHead {
    margin-bottom: 1.1rem;
}

.sectionHead.center {
    text-align: center;
}

.sectionHead h2 {
    color: var(--gold);
    font-size: 2.1rem;
    margin-top: .35rem;
}

.sectionHead p {
    margin: .55rem 0 0;
}


/* Problem list */

.problem-list {
    display: grid;
    gap: .9rem;
    margin-top: 1.4rem;
    max-width: 860px;
    margin-inline: auto;
}

.problem-item {
    position: relative;
    padding: 1.05rem 1rem 1.05rem 3.05rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(24, 160, 107, .20);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
    transition: border-color .2s ease, transform .2s ease, background-color .2s ease;
}

.problem-item::before {
    content: "✦";
    position: absolute;
    left: 1.05rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(24, 160, 107, .95);
    font-size: 1.1rem;
}

.problem-item:hover {
    border-color: rgba(214, 178, 94, .22);
}


/* Mid CTA */

.mid-cta {
    margin-top: 1.6rem;
    border-radius: 18px;
    border: 1px solid rgba(214, 178, 94, .16);
    background: rgba(255, 255, 255, .03);
    padding: 1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}


/* Banner */

.banner {
    position: relative;
    z-index: 2;
    padding: 3.5rem 0;
    background: radial-gradient(900px 520px at 50% 30%, rgba(24, 160, 107, .10), transparent 65%), radial-gradient(900px 520px at 50% 80%, rgba(214, 178, 94, .10), transparent 65%), rgba(2, 6, 4, .55);
    border-top: 1px solid rgba(24, 160, 107, .14);
    border-bottom: 1px solid rgba(24, 160, 107, .14);
    overflow: hidden;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .04) 0 2px, transparent 2px), radial-gradient(circle at 70% 55%, rgba(255, 255, 255, .03) 0 2px, transparent 2px);
    background-size: 240px 240px;
    opacity: .35;
    pointer-events: none;
}

.banner-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.banner-inner h2 {
    font-size: 2.3rem;
}

.divider-line {
    width: 120px;
    height: 2px;
    margin: 1.6rem auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: .9;
}

.micro-cta {
    margin-top: 1.2rem;
    display: flex;
    gap: .8rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.micro-cta.left {
    justify-content: flex-start;
}


/* Services */

.services-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
    background: rgba(255, 255, 255, .03);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(214, 178, 94, .14);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(214, 178, 94, .24);
}

.service-card:focus-visible {
    outline: 2px solid rgba(214, 178, 94, .92);
    outline-offset: 3px;
    transform: translateY(-2px);
    border-color: rgba(214, 178, 94, .24);
}

.service-media {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform .45s ease, filter .45s ease;
    filter: contrast(1.07) saturate(1.05);
}

.service-card:hover .service-media img {
    transform: scale(1.08);
    filter: contrast(1.10) saturate(1.12);
}

.service-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: .26rem .75rem;
    border-radius: 999px;
    font-weight: 900;
    font-size: .78rem;
    color: #07110c;
    background: linear-gradient(135deg, rgba(214, 178, 94, .95), rgba(24, 160, 107, .35));
    border: 1px solid rgba(255, 255, 255, .10);
}

.service-badge.soft {
    color: #07110c;
    background: linear-gradient(135deg, rgba(214, 178, 94, .85), rgba(214, 178, 94, .35));
}

.service-badge.warn {
    color: #ffeedd;
    background: linear-gradient(135deg, rgba(24, 160, 107, .25), rgba(24, 160, 107, .65));
}

.service-body {
    padding: 1rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    flex: 1;
}

.service-body h3 {
    color: var(--gold);
    font-size: 1.22rem;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: .15rem;
    font-size: .92rem;
}

.service-meta .price {
    font-weight: 900;
    color: rgba(214, 178, 94, .95);
}

.service-meta .note {
    color: var(--muted);
}

.btn-compact {
    margin-top: .65rem;
    width: fit-content;
    padding: .66rem 1rem;
}


/* CTA strip after services */

.cta-strip {
    margin-top: 1.4rem;
    border-radius: 18px;
    border: 1px solid rgba(24, 160, 107, .18);
    background: rgba(255, 255, 255, .02);
    padding: 1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}


/* Timeline */

.timeline {
    margin-top: 1.4rem;
    display: grid;
    gap: 1.4rem;
    max-width: 860px;
    margin-inline: auto;
}

.t-step {
    text-align: center;
    padding: 1.2rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(214, 178, 94, .14);
    box-shadow: var(--shadow);
}

.t-num {
    width: 72px;
    height: 72px;
    margin: 0 auto .85rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-family: Marcellus, serif;
    font-size: 1.55rem;
    color: var(--gold);
    background: radial-gradient(circle, rgba(24, 160, 107, .10), rgba(0, 0, 0, .10));
    border: 1px solid rgba(214, 178, 94, .18);
    box-shadow: 0 14px 40px rgba(0, 0, 0, .35);
}

.t-step h3 {
    color: var(--gold);
    margin-bottom: .35rem;
    font-size: 1.35rem;
}


/* Safe box */

.safe-box {
    max-width: 860px;
    margin: 1.2rem auto 0;
    padding: 1.2rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(24, 160, 107, .18);
    box-shadow: var(--shadow);
    text-align: left;
}

.safe-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .75rem;
}

.safe-list li {
    position: relative;
    padding-left: 2.1rem;
    color: rgba(239, 231, 215, .92);
}

.safe-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(24, 160, 107, .95);
}


/* FAQ */

details.faq {
    border-radius: 16px;
    border: 1px solid rgba(214, 178, 94, .14);
    background: rgba(255, 255, 255, .02);
    padding: 1rem;
    box-shadow: var(--shadow);
}

details.faq+details.faq {
    margin-top: .7rem;
}

details.faq summary {
    cursor: pointer;
    font-weight: 900;
    color: rgba(239, 231, 215, .95);
    list-style: none;
}

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

details.faq>div {
    margin-top: .7rem;
}


/* Footer */

.footer {
    padding: 2rem 0 3rem;
    border-top: 1px solid rgba(214, 178, 94, .12);
    color: var(--muted);
}


/* Sticky CTA móvil */

.stickyCta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 65;
    display: none;
}


/* Soft CTA móvil */

.softCta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 74px;
    z-index: 64;
    display: none;
}

.softCta.show {
    display: block;
}

.softCta-inner {
    border-radius: 16px;
    border: 1px solid rgba(214, 178, 94, .14);
    background: rgba(4, 10, 7, .84);
    backdrop-filter: blur(10px) saturate(1.1);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .55);
    padding: .75rem .8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
}

.softCta-text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.softCta-text strong {
    color: var(--txt);
}

.softCta-text .muted {
    font-size: .88rem;
}


/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(7px);
    transition: opacity .85s ease, transform .85s ease, filter .85s ease;
}

.reveal.show {
    opacity: 1;
    transform: none;
    filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .reveal,
    .btn,
    .topbar-cta,
    .service-media img,
    .scan,
    .nav a,
    .problem-item,
    .service-card,
    .burger {
        transition: none;
        animation: none;
    }
}


/* ===== Drawer estilo Jonas ===== */

.drawer-igor .drawerSection {
    padding: .8rem 0;
}

.drawer-igor .drawerTitle {
    color: rgba(199, 188, 169, .95);
    font-weight: 900;
    font-size: .95rem;
    margin: .2rem 0 .6rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .9;
}

.drawer-igor .drawerItem {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem;
    border-radius: 16px;
    margin: .45rem 0;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(214, 178, 94, .12);
    transition: border-color .2s ease, background-color .2s ease, transform .15s ease;
}

.drawer-igor .drawerItem:hover {
    border-color: rgba(214, 178, 94, .22);
}

.drawer-igor .dot {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(24, 160, 107, .18), rgba(214, 178, 94, .14));
    border: 1px solid rgba(24, 160, 107, .18);
    color: rgba(24, 160, 107, .95);
}

.drawer-igor .drawerHr {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(214, 178, 94, .22), transparent);
    margin: .6rem 0;
    opacity: .9;
}

.drawer-igor .drawerBtn {
    width: 100%;
}


/* ===== Floating WhatsApp escritorio ===== */

.waDesk {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 66;
    display: none;
}

.waDesk a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .9rem 1.05rem;
    border-radius: 999px;
    font-weight: 950;
    color: var(--txt);
    background: linear-gradient(135deg, rgba(24, 160, 107, .32), rgba(214, 178, 94, .16));
    border: 1px solid rgba(214, 178, 94, .18);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .55);
    backdrop-filter: blur(8px);
    transition: transform .15s ease, filter .2s ease, border-color .2s ease, background-color .2s ease;
}

.waDesk a:hover {
    transform: translateY(-1px);
    filter: saturate(1.08);
}


/* Responsive */

@media (max-width: 980px) {
     :root {
        --topbar-h: auto;
        --header-h: 74px;
    }
    .nav {
        display: none;
    }
    .burger {
        display: block;
    }
    .stickyCta {
        display: block;
    }
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .mid-cta,
    .cta-strip,
    .panelBottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .topbar {
        height: auto;
        padding: .55rem 0;
    }
    .topbar-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: .45rem;
    }
    .topbar-cta {
        width: 100%;
        text-align: center;
    }
    .micro-cta {
        justify-content: center;
    }
    .footer {
        padding: 2rem 0 7rem;
    }
    .waDesk {
        display: none;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 2.7rem 0;
    }
    .sectionHead h2,
    .banner-inner h2 {
        font-size: 1.8rem;
    }
    .hero h1 {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }
}

@media (max-width: 560px) {
    .kicker {
        letter-spacing: .22em;
        font-size: .72rem;
    }
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-cta .btn,
    .stickyCta .btn,
    .softCta .btn,
    .cta-strip .btn,
    .mid-cta .btn {
        width: 100%;
    }
    .btn-compact,
    .panelBottom .btn.small,
    .micro-cta .btn.small {
        width: auto;
    }
    .brandTxt span {
        display: none;
    }
    .trust {
        font-size: .86rem;
    }
    .problem-item {
        padding: .95rem .9rem .95rem 2.8rem;
    }
    .problem-item::before {
        left: .95rem;
    }
    .service-media {
        height: 220px;
    }
    .softCta-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .brandMark {
        width: 42px;
        height: 42px;
        padding: 4px;
    }
}


/* Desktop */

@media (min-width: 981px) {
    .waDesk {
        display: block;
    }
    .stickyCta,
    .softCta {
        display: none !important;
    }
}