:root {
    --color-primary: #059669;
    --color-primary-dark: #047857;
    --color-primary-deeper: #065f46;
    --color-primary-soft: #ecfdf5;
    --color-primary-border: #a7f3d0;
    --color-ink: #0f172a;
    --color-body: #475569;
    --color-muted: #64748b;
    --color-border: #e2e8f0;
    --color-surface: #ffffff;
    --color-background: #f8fafc;
    --color-background-deep: #f1f5f9;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 18px 45px rgba(15, 23, 42, 0.08);
    --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.06);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --container: 1180px;
    --header-height: 76px;
    color-scheme: light;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
}

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

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

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

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--color-ink);
    line-height: 1.15;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 800;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 3.15rem);
    font-weight: 780;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 750;
}

p {
    color: var(--color-body);
}

:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
    box-shadow: 0 0 0 6px var(--color-primary-dark);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    border-radius: 10px;
    background: var(--color-ink);
    color: white;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding-block: 96px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--color-primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(5, 150, 105, 0.1);
}

.eyebrow--light {
    color: #a7f3d0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(226, 232, 240, 0.88);
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    min-height: var(--header-height);
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--color-ink);
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.brand-mark {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border-radius: 11px;
    background: var(--color-primary);
    color: white;
    box-shadow: 0 9px 20px rgba(5, 150, 105, 0.2);
}

.brand-icon {
    width: 23px;
    height: 23px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-left: auto;
}

.desktop-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--color-body);
    font-size: 0.9rem;
    font-weight: 650;
    transition: color 160ms ease;
}

.desktop-nav a:hover {
    color: var(--color-primary-dark);
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid var(--color-primary-dark);
    border-radius: var(--radius-sm);
    background: var(--color-primary-dark);
    color: #fff;
    font-size: 0.94rem;
    font-weight: 750;
    box-shadow: var(--shadow-sm), 0 12px 25px rgba(4, 120, 87, 0.16);
    transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    border-color: var(--color-primary-deeper);
    background: var(--color-primary-deeper);
    box-shadow: var(--shadow-sm), 0 15px 30px rgba(4, 120, 87, 0.22);
    transform: translateY(-1px);
}

.button-small {
    min-height: 42px;
    padding-inline: 17px;
    font-size: 0.87rem;
}

.button-secondary {
    border-color: var(--color-border);
    background: var(--color-surface);
    color: var(--color-ink);
    box-shadow: var(--shadow-sm);
}

.button-secondary:hover {
    border-color: #cbd5e1;
    background: var(--color-background-deep);
    color: var(--color-primary-dark);
    box-shadow: var(--shadow-sm);
}

.button-icon {
    width: 19px;
    height: 19px;
    transition: transform 160ms ease;
}

.button:hover .button-icon {
    transform: translateX(3px);
}

.mobile-menu {
    display: none;
    position: relative;
    margin-left: auto;
}

.mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 11px;
    background: var(--color-surface);
    color: var(--color-ink);
    cursor: pointer;
    list-style: none;
}

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

.menu-icon {
    width: 22px;
    height: 22px;
}

.mobile-menu nav {
    position: absolute;
    top: 54px;
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-md);
}

.mobile-menu nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding-inline: 13px;
    border-radius: 9px;
    color: var(--color-body);
    font-size: 0.92rem;
    font-weight: 650;
}

.mobile-menu nav a:hover {
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-block: 94px 112px;
}

.hero::before,
.hero::after {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    content: "";
    filter: blur(2px);
    pointer-events: none;
}

.hero::before {
    top: -280px;
    right: -180px;
    width: 680px;
    height: 680px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.11), rgba(16, 185, 129, 0) 69%);
}

.hero::after {
    bottom: -310px;
    left: -270px;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, rgba(148, 163, 184, 0.14), rgba(148, 163, 184, 0) 67%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: center;
    gap: clamp(56px, 8vw, 100px);
}

.hero-copy {
    max-width: 650px;
}

.hero-description {
    max-width: 620px;
    margin-bottom: 31px;
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.75;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-supporting {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 23px 0 0;
    color: var(--color-muted);
    font-size: 0.86rem;
    font-weight: 560;
}

.supporting-icon {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.diagnostic-panel {
    position: relative;
    padding: 26px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.diagnostic-panel::before {
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(145deg, rgba(5, 150, 105, 0.19), transparent 35%, rgba(148, 163, 184, 0.18));
    content: "";
    transform: translate(13px, 13px);
}

.diagnostic-panel__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 2px 2px 22px;
    border-bottom: 1px solid var(--color-border);
}

.panel-kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.diagnostic-panel__header h2 {
    margin: 0;
    font-size: 1.14rem;
    letter-spacing: -0.02em;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid var(--color-primary-border);
    border-radius: 999px;
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-weight: 750;
    white-space: nowrap;
}

.availability > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.diagnostic-list {
    display: grid;
    gap: 7px;
    padding-top: 12px;
}

.diagnostic-list a {
    display: grid;
    grid-template-columns: 40px 1fr auto 17px;
    align-items: center;
    gap: 12px;
    min-height: 62px;
    padding: 8px 10px;
    border-radius: 12px;
    transition: background-color 150ms ease, color 150ms ease;
}

.diagnostic-list a:hover {
    background: var(--color-primary-soft);
}

.diagnostic-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid var(--color-border);
    border-radius: 11px;
    background: var(--color-background);
    color: var(--color-primary-dark);
}

.diagnostic-icon svg {
    width: 21px;
    height: 21px;
}

.diagnostic-name {
    display: grid;
    line-height: 1.25;
}

.diagnostic-name strong {
    font-size: 0.85rem;
    letter-spacing: -0.01em;
}

.diagnostic-name small {
    margin-top: 3px;
    color: var(--color-muted);
    font-size: 0.75rem;
}

.diagnostic-ready {
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-weight: 750;
}

.diagnostic-arrow {
    width: 16px;
    height: 16px;
    color: #94a3b8;
    transition: transform 150ms ease;
}

.diagnostic-list a:hover .diagnostic-arrow {
    color: var(--color-primary-dark);
    transform: translateX(2px);
}

.tools-section {
    border-block: 1px solid var(--color-border);
    background: var(--color-surface);
}

.section-heading {
    max-width: 650px;
    margin-bottom: 45px;
}

.section-heading > p:last-child,
.why-intro > p:last-child,
.faq-intro > p:last-child {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.tool-card {
    position: relative;
    display: flex;
    min-height: 335px;
    flex-direction: column;
    grid-column: span 2;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
    isolation: isolate;
    transition: border-color 170ms ease, box-shadow 170ms ease, transform 170ms ease;
}

.tool-card:nth-child(4):nth-last-child(2) {
    grid-column: 2 / span 2;
}

.tool-card:nth-child(5):last-child {
    grid-column: 4 / span 2;
}

.tool-card::after {
    position: absolute;
    top: -62px;
    right: -62px;
    z-index: -1;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--color-primary-soft);
    content: "";
    opacity: 0.7;
    transition: transform 220ms ease;
}

.tool-card:hover {
    border-color: #cbd5e1;
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.tool-card:hover::after {
    transform: scale(1.17);
}

.tool-card__topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 26px;
}

.tool-card__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid var(--color-primary-border);
    border-radius: 14px;
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
}

.tool-card__icon svg {
    width: 27px;
    height: 27px;
}

.tool-card__number {
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.tool-card__category {
    margin-bottom: 8px;
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tool-card h3 {
    font-size: 1.32rem;
}

.tool-card p {
    margin-bottom: 24px;
    font-size: 0.91rem;
    line-height: 1.7;
}

.tool-card__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--color-primary-dark);
    font-size: 0.88rem;
    font-weight: 780;
}

.tool-card__arrow {
    width: 18px;
    height: 18px;
    transition: transform 160ms ease;
}

.tool-card:hover .tool-card__arrow {
    transform: translateX(4px);
}

.why-section {
    background: var(--color-background);
}

.why-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
    gap: clamp(55px, 8vw, 110px);
}

.why-intro {
    position: sticky;
    top: calc(var(--header-height) + 45px);
}

.benefit-grid {
    display: grid;
    gap: 15px;
}

.benefit-card {
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 18px;
    padding: 25px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    display: grid;
    width: 52px;
    height: 52px;
    grid-row: span 2;
    place-items: center;
    border-radius: 14px;
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
}

.benefit-icon svg {
    width: 27px;
    height: 27px;
}

.benefit-card h3 {
    align-self: end;
    margin-bottom: 6px;
    font-size: 1.07rem;
}

.benefit-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.how-section {
    border-block: 1px solid var(--color-border);
    background: var(--color-surface);
}

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

.step-card {
    position: relative;
    padding: 30px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-background);
}

.step-card:not(:last-child)::after {
    position: absolute;
    top: 51px;
    right: -19px;
    z-index: 2;
    width: 18px;
    border-top: 1px dashed #94a3b8;
    content: "";
}

.step-number {
    display: inline-grid;
    width: 44px;
    height: 44px;
    margin-bottom: 25px;
    place-items: center;
    border-radius: 12px;
    background: var(--color-ink);
    color: #fff;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.06em;
}

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

.step-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.faq-section {
    background: var(--color-background);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: clamp(50px, 8vw, 105px);
}

.faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 45px);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    color: var(--color-ink);
    cursor: pointer;
    font-size: 0.96rem;
    font-weight: 720;
    list-style: none;
}

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

.faq-chevron {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--color-primary-dark);
    transition: transform 160ms ease;
}

.faq-item[open] .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px 19px;
}

.faq-answer p {
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
}

.final-cta {
    padding-top: 10px;
    background: var(--color-background);
}

.cta-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: clamp(34px, 6vw, 58px);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--color-ink);
    box-shadow: var(--shadow-md);
}

.cta-panel::after {
    position: absolute;
    right: -90px;
    bottom: -160px;
    width: 410px;
    height: 410px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3), transparent 68%);
    content: "";
    pointer-events: none;
}

.cta-panel > * {
    position: relative;
    z-index: 1;
}

.cta-panel h2 {
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.cta-panel p:not(.eyebrow) {
    margin-bottom: 0;
    color: #cbd5e1;
}

.cta-actions {
    flex: 0 0 auto;
}

.button-light {
    border-color: #fff;
    background: #fff;
    color: var(--color-ink);
    box-shadow: none;
}

.button-light:hover {
    border-color: var(--color-primary-soft);
    background: var(--color-primary-soft);
    color: var(--color-primary-dark);
    box-shadow: none;
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    box-shadow: none;
}

.button-ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.site-footer {
    padding-top: 80px;
    border-top: 1px solid var(--color-border);
    background: var(--color-surface);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 0.8fr 0.8fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-brand {
    max-width: 420px;
}

.brand--footer {
    margin-bottom: 20px;
}

.footer-brand p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.footer-grid h2 {
    margin: 7px 0 18px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.footer-grid li,
.footer-grid a {
    color: var(--color-body);
    font-size: 0.87rem;
}

.footer-grid a:hover {
    color: var(--color-primary-dark);
}

.footer-bottom {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--color-border);
}

.footer-bottom p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.78rem;
}

@media (max-width: 1040px) {
    .desktop-nav {
        gap: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr 400px;
        gap: 48px;
    }

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

    .tool-card,
    .tool-card:nth-child(4):nth-last-child(2),
    .tool-card:nth-child(5):last-child {
        grid-column: auto;
    }

    .tool-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc(50% - 9px);
        justify-self: center;
        min-height: 275px;
    }
}

@media (max-width: 900px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding-block: 76px 90px;
    }

    .hero-grid,
    .why-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        max-width: 760px;
    }

    .diagnostic-panel {
        max-width: 620px;
    }

    .why-intro,
    .faq-intro {
        position: static;
        max-width: 650px;
    }

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

    .step-card:not(:last-child)::after {
        display: none;
    }

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

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 35px;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 68px;
    }

    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .section {
        padding-block: 72px;
    }

    h1 {
        font-size: clamp(2.45rem, 13vw, 3.6rem);
    }

    h2 {
        font-size: clamp(1.8rem, 8vw, 2.4rem);
    }

    .hero {
        padding-block: 62px 74px;
    }

    .hero-grid {
        gap: 50px;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .hero-supporting {
        align-items: flex-start;
    }

    .diagnostic-panel {
        display: none;
    }

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

    .tool-card:last-child {
        grid-column: auto;
        width: auto;
    }

    .tool-card {
        min-height: 300px;
        padding: 25px;
    }

    .benefit-card {
        grid-template-columns: 46px 1fr;
        padding: 21px;
    }

    .benefit-icon {
        width: 46px;
        height: 46px;
    }

    .faq-item summary {
        min-height: 64px;
        padding: 14px 17px;
    }

    .faq-answer {
        padding: 0 17px 17px;
    }

    .cta-panel {
        padding: 32px 24px;
    }

    .cta-actions,
    .cta-actions .button {
        width: 100%;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding-block: 20px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-grid ul {
        gap: 2px;
    }

    .footer-grid li a {
        display: inline-flex;
        min-height: 40px;
        align-items: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

@media print {
    .site-header,
    .hero-actions,
    .final-cta,
    .site-footer {
        display: none;
    }

    body,
    .tools-section,
    .how-section {
        background: #fff;
    }

    .section {
        padding-block: 30px;
    }
}
