:root {
    --font-main: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --ink: #07152f;
    --muted: #5b6680;
    --line: #dce5f3;
    --surface: #ffffff;
    --soft: #f4f8fc;
    --navy: #06142c;
    --blue: #1068ff;
    --blue-dark: #0d47b9;
    --green: #22b857;
    --teal: #0eb6bc;
    --amber: #ffb02e;
    --red: #fa4f61;
    --shadow: 0 18px 55px rgba(7, 21, 47, .14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: var(--font-main);
    line-height: 1.5;
}

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

img,
svg {
    display: block;
}

.icon {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
}

.wm-container {
    width: min(1280px, calc(100% - 36px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 12px 0;
    color: #fff;
    background: rgba(5, 18, 42, .92);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0;
}

.brand span span {
    color: #52b6ff;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 30px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 7px;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 25% 100%);
    font-size: .95rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 30px);
    font-size: .9rem;
    font-weight: 700;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .84);
}

.site-nav a .icon,
.mobile-nav-head,
.app-header-meta,
.nav-backdrop {
    display: none;
}

.site-nav a:hover {
    color: #fff;
}

.nav-cta {
    padding: 10px 16px;
    color: #fff !important;
    background: var(--blue);
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(16, 104, 255, .3);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 42px;
    min-height: 42px;
    padding: 9px;
    color: #fff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    font: inherit;
    font-weight: 900;
}

.nav-toggle span {
    display: inline;
}

.hero {
    min-height: 690px;
    padding: 82px 0 56px;
    color: #fff;
    background:
        radial-gradient(circle at 74% 28%, rgba(14, 182, 188, .22), transparent 24%),
        radial-gradient(circle at 20% 20%, rgba(16, 104, 255, .28), transparent 30%),
        linear-gradient(135deg, #06142c 0%, #08234c 54%, #06142c 100%);
    overflow: hidden;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
    align-items: center;
    gap: clamp(28px, 5vw, 72px);
}

.hero-content {
    position: relative;
    max-width: 760px;
    animation: fadeSlideUp .75s ease both;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1,
.section h2,
.audit-section h2,
.cta-band h2 {
    margin: 0;
    font-weight: 900;
    letter-spacing: 0;
    line-height: .98;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3rem, 6vw, 6.4rem);
}

.hero h1 span {
    display: block;
    color: #38df86;
}

.hero-copy {
    max-width: 680px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: clamp(1.02rem, 1.3vw, 1.22rem);
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .28) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .55s ease;
}

.button:hover::after {
    transform: translateX(120%);
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 14px 30px rgba(16, 104, 255, .25);
}

.button.secondary {
    color: #fff;
    background: linear-gradient(135deg, var(--green), #168b43);
    box-shadow: 0 14px 30px rgba(34, 184, 87, .24);
}

.button.outline {
    color: var(--blue-dark);
    background: transparent;
    border-color: rgba(16, 104, 255, .45);
}

.button.full {
    width: 100%;
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-strip span {
    padding: 9px 14px;
    color: rgba(255, 255, 255, .88);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 800;
    animation: fadeSlideUp .55s ease both;
}

.trust-strip span:nth-child(2) { animation-delay: .08s; }
.trust-strip span:nth-child(3) { animation-delay: .16s; }
.trust-strip span:nth-child(4) { animation-delay: .24s; }

.dashboard {
    position: relative;
    padding: 18px;
    background: rgba(7, 22, 51, .86);
    border: 1px solid rgba(111, 183, 255, .28);
    border-radius: 8px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .32);
    animation: fadeSlideUp .85s .12s ease both, floatPanel 6s ease-in-out infinite;
}

.dashboard::before {
    content: "";
    position: absolute;
    inset: -18px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(16, 104, 255, .18), rgba(34, 184, 87, .12));
    filter: blur(22px);
}

.dashboard-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    color: rgba(255, 255, 255, .85);
    font-size: .88rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6070;
}

.dot:nth-child(2) {
    background: var(--amber);
}

.dot:nth-child(3) {
    background: var(--green);
}

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

.metric,
.activity,
.status {
    min-height: 112px;
    padding: 16px;
    color: rgba(255, 255, 255, .82);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
}

.metric.large,
.activity {
    grid-column: span 2;
}

.metric span,
.mini-chart span,
.score span {
    display: block;
    color: rgba(255, 255, 255, .68);
    font-size: .78rem;
    font-weight: 800;
}

.metric strong {
    display: block;
    margin: 6px 0;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
}

.metric small,
.status span {
    color: #5af39c;
    font-weight: 800;
}

.sparkline,
.line-chart {
    display: flex;
    align-items: end;
    gap: 7px;
    height: 44px;
    margin-top: 10px;
}

.sparkline i,
.line-chart i {
    display: block;
    width: 100%;
    min-width: 10px;
    background: linear-gradient(180deg, var(--teal), var(--blue));
    border-radius: 5px 5px 0 0;
    transform-origin: bottom;
    animation: barGrow .8s ease both;
}

.sparkline i:nth-child(1) { height: 26%; animation-delay: .05s; }
.sparkline i:nth-child(2) { height: 38%; animation-delay: .1s; }
.sparkline i:nth-child(3) { height: 32%; animation-delay: .15s; }
.sparkline i:nth-child(4) { height: 58%; animation-delay: .2s; }
.sparkline i:nth-child(5) { height: 47%; animation-delay: .25s; }
.sparkline i:nth-child(6) { height: 76%; animation-delay: .3s; }
.sparkline i:nth-child(7) { height: 92%; animation-delay: .35s; }

.activity p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: .9rem;
}

.status {
    min-height: 88px;
    font-weight: 900;
}

.status span {
    display: block;
    margin-top: 8px;
    font-size: .82rem;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    width: min(1180px, calc(100% - 36px));
    margin: -28px auto 0;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.stats-band div {
    padding: 20px;
    background: #fff;
    animation: fadeSlideUp .55s ease both;
}

.stats-band div:nth-child(2) { animation-delay: .06s; }
.stats-band div:nth-child(3) { animation-delay: .12s; }
.stats-band div:nth-child(4) { animation-delay: .18s; }

.stats-band strong {
    display: block;
    color: var(--blue-dark);
    font-size: clamp(1.3rem, 2.2vw, 2rem);
}

.stats-band span {
    color: var(--muted);
    font-size: .92rem;
    font-weight: 700;
}

.section,
.audit-section,
.site-footer {
    padding-inline: max(18px, calc((100% - 1280px) / 2 + 18px));
}

.cta-band {
    padding-inline: clamp(18px, 4vw, 42px);
}

.section {
    padding-top: 78px;
    padding-bottom: 78px;
}

.section.tinted {
    background: var(--soft);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 32px;
    text-align: center;
}

.section-intro {
    max-width: 720px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: 1.05rem;
    font-weight: 650;
}

.section h2,
.audit-section h2,
.cta-band h2 {
    font-size: clamp(2rem, 4vw, 4rem);
}

.section-heading p + h2 {
    margin-top: 6px;
}

.problem-grid,
.service-grid,
.pricing-grid,
.process-grid {
    display: grid;
    gap: 18px;
    width: min(1220px, 100%);
    margin: 0 auto;
}

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

.service-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.problem-card,
.service-card,
.price-card,
.process-grid article,
.score,
.mini-chart,
.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 10px 32px rgba(7, 21, 47, .06);
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.problem-card:hover,
.service-card:hover,
.price-card:hover,
.process-grid article:hover,
.faq details:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 104, 255, .32);
    box-shadow: 0 18px 44px rgba(7, 21, 47, .11);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .62s ease, transform .62s ease, box-shadow .24s ease, border-color .24s ease;
}

.problem-card {
    position: relative;
    min-height: 240px;
    padding: 22px;
    overflow: hidden;
}

.problem-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--red), var(--amber), var(--blue));
    opacity: .78;
}

.problem-card::after {
    content: "";
    position: absolute;
    right: -46px;
    top: -46px;
    width: 118px;
    height: 118px;
    background: radial-gradient(circle, rgba(250, 79, 97, .12), transparent 68%);
    border-radius: 50%;
    pointer-events: none;
}

.problem-top,
.service-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.warning {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--red);
    background: #fff4f5;
    border-radius: 7px;
}

.impact,
.service-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    color: #9e1c2d;
    background: #fff2f4;
    border: 1px solid #ffd7dd;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 900;
    white-space: nowrap;
}

.problem-card h3,
.service-card h3,
.price-card h3,
.process-grid h3 {
    margin: 12px 0 8px;
    font-size: 1rem;
    line-height: 1.2;
}

.problem-card h3 {
    margin-top: 18px;
    font-size: 1.1rem;
}

.problem-card p,
.service-card p,
.process-grid p,
.price-card p,
.score p,
.audit-copy p,
.cta-band p,
.site-footer p,
.faq p {
    margin: 0;
    color: var(--muted);
}

.fix-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 18px;
    padding-top: 16px;
    color: #116b34;
    border-top: 1px solid var(--line);
    font-size: .9rem;
    font-weight: 900;
}

.fix-row svg {
    width: 18px;
    height: 18px;
}

.support-promise {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    width: min(980px, 100%);
    margin: 28px auto 0;
    padding: 18px 20px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, rgba(16, 104, 255, .5), rgba(34, 184, 87, .5)) border-box;
    border: 1px solid transparent;
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(7, 21, 47, .08);
}

.support-promise strong {
    color: var(--ink);
    font-size: 1.02rem;
}

.support-promise span {
    color: var(--muted);
    font-weight: 650;
}

.support-promise a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    color: #fff;
    background: var(--blue);
    border-radius: 7px;
    font-size: .9rem;
    font-weight: 900;
    white-space: nowrap;
}

.service-card {
    position: relative;
    min-height: 260px;
    padding: 24px;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(16, 104, 255, .08), transparent 34%),
        radial-gradient(circle at 94% 14%, rgba(14, 182, 188, .14), transparent 26%);
    opacity: 0;
    transition: opacity .24s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
}

.service-card h3 {
    margin-top: 20px;
    font-size: 1.16rem;
}

.service-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--teal));
    border-radius: 8px;
    animation: iconPulse 3.8s ease-in-out infinite;
}

.service-tag {
    color: var(--blue-dark);
    background: #edf5ff;
    border-color: #cfe3ff;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.service-features li {
    padding: 7px 10px;
    color: var(--ink);
    background: #f6f9fd;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 850;
}

.split {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    width: min(1220px, 100%);
    margin: 0 auto;
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .2rem;
    width: 18px;
    height: 18px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: inset 0 0 0 5px #fff;
}

.check-list.light li {
    color: rgba(255, 255, 255, .86);
}

.check-list.light li::before {
    box-shadow: inset 0 0 0 5px rgba(5, 18, 42, .95);
}

.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
}

.score {
    min-height: 250px;
    padding: 24px;
    text-align: center;
}

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

.score strong {
    display: grid;
    place-items: center;
    width: 118px;
    height: 118px;
    margin: 16px auto;
    border: 12px solid;
    border-radius: 50%;
    font-size: 2rem;
}

.before strong {
    color: var(--red);
    border-color: #ffd2d8;
}

.after strong {
    color: var(--green);
    border-color: #bff2cf;
}

.versus {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--blue-dark);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-weight: 900;
    box-shadow: 0 10px 25px rgba(7, 21, 47, .08);
}

.mini-chart {
    grid-column: 1 / -1;
    padding: 20px;
}

.mini-chart span {
    color: var(--muted);
}

.mini-chart strong {
    color: var(--green);
    font-size: 2rem;
}

.line-chart i:nth-child(1) { height: 20%; animation-delay: .05s; }
.line-chart i:nth-child(2) { height: 32%; animation-delay: .1s; }
.line-chart i:nth-child(3) { height: 48%; animation-delay: .15s; }
.line-chart i:nth-child(4) { height: 36%; animation-delay: .2s; }
.line-chart i:nth-child(5) { height: 88%; animation-delay: .25s; }

.process {
    padding-top: 0;
}

.process-grid article {
    padding: 24px;
    text-align: center;
}

.process-grid span {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto;
    color: var(--blue-dark);
    background: #edf5ff;
    border: 1px solid #cfe3ff;
    border-radius: 50%;
    font-weight: 900;
    transition: transform .24s ease, background .24s ease;
}

.process-grid article:hover span {
    transform: scale(1.08);
    background: #dff0ff;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.price-card.featured {
    border-color: rgba(34, 184, 87, .75);
    box-shadow: 0 20px 60px rgba(34, 184, 87, .16);
}

.badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    color: #fff;
    background: var(--green);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.price {
    display: block;
    margin: 18px 0;
    color: var(--blue-dark);
    font-size: 3rem;
    line-height: 1;
}

.price span {
    color: var(--muted);
    font-size: 1rem;
}

.price-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0 0 24px;
    list-style: none;
}

.price-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
}

.price-card li svg {
    color: var(--green);
}

.price-card .button {
    margin-top: auto;
}

.audit-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
    color: #fff;
    background:
        radial-gradient(circle at 20% 45%, rgba(14, 182, 188, .28), transparent 25%),
        linear-gradient(135deg, #06142c, #0b3672);
}

.audit-form {
    display: grid;
    gap: 16px;
    padding: 24px;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
    animation: fadeSlideUp .75s ease both;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-size: .84rem;
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    color: var(--ink);
    background: #fff;
    border: 1px solid #cfd9ea;
    border-radius: 7px;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(16, 104, 255, .12);
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.form-success,
.form-errors {
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 800;
}

.form-success {
    color: #116b34;
    background: #e8f8ee;
    border: 1px solid #bfeacb;
}

.form-errors {
    color: #9e1c2d;
    background: #fff0f2;
    border: 1px solid #ffd1d8;
}

.form-errors p {
    margin: 0;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.faq details {
    padding: 18px 20px;
}

.faq summary {
    cursor: pointer;
    font-weight: 900;
}

.faq p {
    margin-top: 12px;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(1220px, calc(100% - 36px));
    margin: 0 auto 0;
    padding-top: 34px;
    padding-bottom: 34px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 30%, rgba(34, 184, 87, .34), transparent 24%),
        linear-gradient(135deg, #0a2d67, #06142c);
    border-radius: 8px;
    animation: softGlow 5s ease-in-out infinite;
}

.cta-band p {
    color: rgba(255, 255, 255, .8);
}

.light-outline {
    color: #fff !important;
    border-color: rgba(255, 255, 255, .45) !important;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.4fr .7fr .9fr 1.1fr;
    gap: 34px;
    padding-top: 54px;
    padding-bottom: 26px;
    color: rgba(255, 255, 255, .8);
    background: #06142c;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 1rem;
}

.site-footer a,
.site-footer span {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, .76);
}

.footer-brand {
    color: #fff;
}

.newsletter {
    display: grid;
    gap: 10px;
}

.newsletter label {
    color: #fff;
}

.newsletter button {
    min-height: 42px;
    color: #fff;
    background: var(--blue);
    border: 0;
    border-radius: 7px;
    font-weight: 900;
    cursor: pointer;
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes barGrow {
    from {
        transform: scaleY(.12);
        opacity: .35;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 104, 255, .22);
    }
    50% {
        box-shadow: 0 0 0 9px rgba(16, 104, 255, 0);
    }
}

@keyframes softGlow {
    0%, 100% {
        box-shadow: 0 18px 45px rgba(16, 104, 255, .15);
    }
    50% {
        box-shadow: 0 18px 55px rgba(34, 184, 87, .2);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

@media (max-width: 1100px) {
    .hero,
    .audit-section,
    .split {
        grid-template-columns: 1fr;
    }

    .dashboard {
        max-width: 760px;
    }

    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 820px) {
    body {
        padding-bottom: env(safe-area-inset-bottom);
        background: #eef4fa;
    }

    body.nav-open {
        overflow: hidden;
    }

    .site-header {
        position: sticky;
        top: 0;
        min-height: 64px;
        padding: 8px 0;
        color: var(--ink);
        background: rgba(255, 255, 255, .94);
        border-bottom: 1px solid rgba(207, 217, 234, .85);
        box-shadow: 0 10px 26px rgba(7, 21, 47, .09);
        backdrop-filter: blur(18px);
    }

    .wm-container {
        width: 100%;
        padding-inline: 14px;
    }

    .header-shell {
        gap: 10px;
    }

    .brand {
        font-size: 1rem;
        color: var(--ink);
    }

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

    .brand-mark {
        width: 31px;
        height: 28px;
    }

    .app-header-meta {
        display: grid;
        justify-items: end;
        gap: 1px;
        margin-left: auto;
        margin-right: 8px;
        color: var(--muted);
        font-size: .68rem;
        line-height: 1.15;
    }

    .app-header-meta strong {
        color: #15944a;
        font-size: .78rem;
    }

    .nav-toggle {
        position: static;
        display: inline-flex;
        min-width: 42px;
        min-height: 42px;
        padding: 0 12px;
        color: #fff;
        background: linear-gradient(135deg, var(--blue), var(--teal));
        border: 0;
        border-radius: 8px;
        box-shadow: 0 12px 26px rgba(16, 104, 255, .24);
    }

    .nav-toggle .icon {
        width: 18px;
        height: 18px;
    }

    .nav-toggle span {
        font-size: .78rem;
    }

    .site-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom));
        z-index: 100;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        max-height: min(74dvh, 560px);
        padding: 16px;
        overflow-y: auto;
        color: var(--ink);
        background: rgba(255, 255, 255, .97);
        border: 1px solid rgba(207, 217, 234, .9);
        border-radius: 8px;
        box-shadow: 0 28px 70px rgba(7, 21, 47, .28);
        backdrop-filter: blur(20px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(34px) scale(.98);
        transform-origin: bottom center;
        transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
    }

    .site-nav.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .mobile-nav-head {
        display: grid;
        grid-column: 1 / -1;
        gap: 3px;
        padding: 4px 2px 8px;
    }

    .mobile-nav-head span {
        color: var(--teal);
        font-size: .72rem;
        font-weight: 900;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .mobile-nav-head strong {
        color: var(--ink);
        font-size: 1.08rem;
    }

    .site-nav a {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        align-items: center;
        gap: 10px;
        min-height: 62px;
        padding: 10px;
        color: var(--ink);
        background: #f6f9fd;
        border: 1px solid var(--line);
        border-radius: 8px;
        font-size: .92rem;
        line-height: 1.1;
        text-align: left;
        white-space: normal;
    }

    .site-nav a .icon {
        display: block;
        width: 42px;
        height: 42px;
        padding: 11px;
        color: #fff;
        background: linear-gradient(135deg, var(--blue), var(--teal));
        border-radius: 8px;
        box-shadow: 0 10px 22px rgba(16, 104, 255, .18);
    }

    .site-nav a span {
        overflow: hidden;
        font-weight: 900;
        text-overflow: ellipsis;
    }

    .nav-cta {
        color: #fff !important;
        background: linear-gradient(135deg, var(--blue), var(--teal));
        border-color: transparent !important;
        text-align: center;
        box-shadow: 0 12px 30px rgba(16, 104, 255, .22);
    }

    .nav-cta .icon {
        background: rgba(255, 255, 255, .18) !important;
        box-shadow: none !important;
    }

    .nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 90;
        display: block;
        background: rgba(3, 12, 28, .42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .24s ease, visibility .24s ease;
    }

    body.nav-open .nav-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .hero {
        min-height: auto;
        padding: 28px 0 24px;
        background:
            radial-gradient(circle at 85% 4%, rgba(14, 182, 188, .25), transparent 30%),
            linear-gradient(180deg, #06142c 0%, #0b3672 58%, #eef4fa 58%);
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-content {
        padding: 2px 2px 0;
    }

    .hero .eyebrow {
        margin-bottom: 8px;
        color: #72f0d5;
        font-size: .64rem;
    }

    .hero h1 {
        max-width: 300px;
        font-size: clamp(2.05rem, 10.5vw, 3rem);
        line-height: 1.02;
    }

    .hero-copy {
        max-width: 330px;
        margin-top: 12px;
        font-size: .9rem;
        line-height: 1.45;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .hero-actions .button {
        min-height: 48px;
        border-radius: 8px;
        font-size: .9rem;
    }

    .trust-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 16px;
    }

    .trust-strip span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 8px 9px;
        font-size: .7rem;
        text-align: center;
        border-radius: 8px;
    }

    .dashboard {
        width: 100%;
        margin-top: 2px;
        padding: 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .96);
        border-color: rgba(207, 217, 234, .9);
        box-shadow: 0 16px 38px rgba(7, 21, 47, .18);
        animation: fadeSlideUp .65s .08s ease both;
    }

    .dashboard::before {
        display: none;
    }

    .dashboard-top {
        padding: 0 0 10px;
        color: var(--ink);
    }

    .dashboard-top strong {
        font-size: .78rem;
    }

    .stats-band,
    .problem-grid,
    .service-grid,
    .pricing-grid,
    .process-grid,
    .faq-list,
    .site-footer,
    .field-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .dashboard-grid {
        gap: 9px;
    }

    .metric,
    .activity,
    .status {
        min-height: auto;
        padding: 12px;
        color: var(--ink);
        background: #f6f9fd;
        border-color: var(--line);
        border-radius: 8px;
    }

    .metric.large,
    .activity {
        grid-column: 1 / -1;
    }

    .metric span,
    .mini-chart span,
    .score span {
        color: var(--muted);
    }

    .metric strong {
        color: var(--ink);
        font-size: 1.55rem;
    }

    .activity p {
        color: var(--muted);
        font-size: .78rem;
    }

    .metric small,
    .status span {
        color: #15944a;
    }

    .sparkline,
    .line-chart {
        height: 34px;
    }

    .stats-band {
        grid-template-columns: repeat(2, 1fr);
        width: calc(100% - 28px);
        margin-top: 12px;
        border-radius: 8px;
        box-shadow: 0 12px 28px rgba(7, 21, 47, .1);
    }

    .stats-band div {
        padding: 14px;
    }

    .stats-band strong {
        font-size: 1.05rem;
    }

    .stats-band span {
        font-size: .7rem;
    }

    .section,
    .audit-section,
    .cta-band,
    .site-footer {
        padding-inline: 16px;
    }

    .section {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .section.tinted {
        background:
            linear-gradient(180deg, #eaf1f8, #f7faff);
    }

    .section-heading {
        margin-bottom: 18px;
        text-align: left;
    }

    .section-heading .eyebrow {
        display: inline-flex;
        padding: 7px 10px;
        background: rgba(14, 182, 188, .1);
        border: 1px solid rgba(14, 182, 188, .2);
        border-radius: 999px;
        font-size: .68rem;
    }

    .section h2,
    .audit-section h2,
    .cta-band h2 {
        font-size: clamp(1.7rem, 8vw, 2.25rem);
        line-height: 1.08;
    }

    .section-intro {
        margin-top: 10px;
        font-size: .87rem;
        line-height: 1.45;
    }

    .problem-grid,
    .service-grid,
    .pricing-grid,
    .process-grid,
    .faq-list {
        gap: 12px;
    }

    .problem-card,
    .service-card,
    .price-card,
    .process-grid article,
    .faq details {
        border-radius: 8px;
        box-shadow: 0 8px 22px rgba(7, 21, 47, .07);
    }

    .problem-card {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        column-gap: 12px;
        align-items: start;
        min-height: auto;
        padding: 14px;
    }

    .problem-card::before {
        width: 4px;
        height: 100%;
        inset: 0 auto 0 0;
    }

    .problem-card::after {
        display: none;
    }

    .problem-top {
        display: contents;
    }

    .warning {
        grid-row: 1 / span 3;
        width: 38px;
        height: 38px;
    }

    .impact {
        justify-self: start;
        min-height: 22px;
        margin-bottom: 5px;
        padding: 4px 8px;
        font-size: .62rem;
    }

    .problem-card h3 {
        margin: 0 0 4px;
        font-size: .96rem;
    }

    .problem-card p {
        font-size: .82rem;
        line-height: 1.42;
    }

    .impact,
    .service-tag {
        max-width: 50%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .fix-row {
        grid-column: 2;
        margin-top: 10px;
        padding-top: 9px;
        font-size: .74rem;
    }

    .support-promise {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
        padding: 16px;
    }

    .support-promise strong {
        font-size: .94rem;
    }

    .support-promise span {
        font-size: .82rem;
    }

    .support-promise a {
        width: 100%;
        min-height: 46px;
    }

    .service-card {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: 12px;
        min-height: auto;
        padding: 14px;
    }

    .service-head {
        display: contents;
    }

    .service-icon {
        grid-row: 1 / span 4;
        width: 42px;
        height: 42px;
    }

    .service-tag {
        justify-self: start;
        min-height: 22px;
        margin-bottom: 5px;
        padding: 4px 8px;
        font-size: .62rem;
    }

    .service-card h3 {
        margin: 0 0 4px;
        font-size: .96rem;
    }

    .service-card p {
        font-size: .82rem;
        line-height: 1.42;
    }

    .service-features {
        grid-column: 2;
        gap: 6px;
        margin-top: 10px;
    }

    .service-features li {
        padding: 5px 8px;
        font-size: .66rem;
    }

    .comparison {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .versus {
        margin: 0 auto;
        width: 40px;
        height: 40px;
        font-size: .78rem;
    }

    .score {
        min-height: auto;
        padding: 16px;
    }

    .score strong {
        width: 92px;
        height: 92px;
        margin: 12px auto;
        border-width: 10px;
        font-size: 1.45rem;
    }

    .score p {
        font-size: .82rem;
    }

    .mini-chart {
        padding: 16px;
    }

    .process-grid article {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 6px 12px;
        padding: 14px;
        text-align: left;
    }

    .process-grid span {
        grid-row: 1 / span 2;
        width: 40px;
        height: 40px;
        margin: 0;
    }

    .process-grid h3 {
        margin: 0;
        font-size: .95rem;
    }

    .process-grid p {
        font-size: .8rem;
    }

    .price-card {
        padding: 18px;
    }

    .price {
        margin: 12px 0;
        font-size: 2.25rem;
    }

    .cta-band {
        flex-direction: column;
        align-items: flex-start;
        width: calc(100% - 24px);
        padding: 24px 18px;
        border-radius: 8px;
    }

    .cta-actions {
        width: 100%;
    }

    .audit-section {
        gap: 22px;
        padding-top: 42px;
        padding-bottom: 42px;
        background:
            radial-gradient(circle at 12% 12%, rgba(14, 182, 188, .24), transparent 28%),
            linear-gradient(180deg, #06142c, #0b3672);
    }

    .audit-form {
        padding: 18px;
        border-radius: 8px;
    }

    input,
    select,
    textarea {
        min-height: 50px;
        font-size: 16px;
    }

    .site-footer {
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 520px) {
    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.6rem);
    }

    .button {
        width: 100%;
    }

    .section,
    .audit-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .site-nav a {
        min-width: 0;
        grid-template-columns: 38px minmax(0, 1fr);
        padding: 9px;
        font-size: .86rem;
    }

    .site-nav a .icon {
        width: 38px;
        height: 38px;
        padding: 10px;
    }

    .nav-toggle {
        right: 12px;
        min-width: 104px;
    }

    .site-nav {
        left: 10px;
        right: 10px;
        gap: 8px;
        padding: 14px;
    }

    .stats-band {
        grid-template-columns: 1fr 1fr;
    }

    .price-card {
        padding: 22px;
    }
}
