:root {
    --hw-bg: #f6f8fc;
    --hw-ink: #101828;
    --hw-muted: #5b6577;
    --hw-panel: #ffffff;
    --hw-line: #dfe6f0;
    --hw-navy: #07142f;
    --hw-blue: #1257e5;
    --hw-cyan: #14c8d8;
    --hw-lime: #b8f14a;
    --hw-orange: #ff8b35;
    --hw-shadow: 0 22px 70px rgba(16, 24, 40, .14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    color: var(--hw-ink) !important;
    background:
        linear-gradient(180deg, #ffffff 0%, var(--hw-bg) 44%, #eef4ff 100%) !important;
    line-height: 1.55;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(18, 87, 229, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 87, 229, .045) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
    pointer-events: none;
}

a { color: inherit; }

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

.hw-topbar {
    background: var(--hw-navy);
    color: #dbeafe;
    font-size: .88rem;
}

.hw-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hw-topbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.hw-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #07142f;
    border-bottom: 1px solid rgba(226, 232, 240, .12);
    box-shadow: 0 12px 40px rgba(2, 6, 23, .28);
    backdrop-filter: none;
}

.hw-nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.hw-logo {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.hw-logo-mark {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    color: var(--hw-navy);
    background: linear-gradient(135deg, #6366f1, #0ea5e9);
    box-shadow: 0 10px 28px rgba(99, 102, 241, .30);
    flex-shrink: 0;
}

.hw-logo-mark::before {
    content: "";
    width: 18px;
    height: 13px;
    border: 2.5px solid rgba(255,255,255,0.85);
    border-radius: 3px;
    background: rgba(255,255,255,0.15);
}

.hw-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .35rem;
    flex-wrap: wrap;
}

.hw-links a {
    color: #dbeafe;
    text-decoration: none;
    font-size: .92rem;
    font-weight: 800;
    border-radius: 8px;
    padding: .62rem .78rem;
}

.hw-links a:hover {
    background: rgba(125, 211, 252, .11);
    color: #ffffff;
}

.hw-button,
.hw-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 10px;
    padding: .82rem 1.08rem;
    font-weight: 900;
    text-decoration: none;
}

.hw-button {
    color: #fff !important;
    background: linear-gradient(135deg, #2563eb, #0891b2);
    box-shadow: 0 14px 34px rgba(37, 99, 235, .28);
}

.hw-button-secondary {
    color: var(--hw-navy) !important;
    background: #fff;
    border: 1px solid var(--hw-line);
}

.hw-hero {
    padding: 4.5rem 0 3rem;
}

.hw-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
    gap: 3rem;
    align-items: center;
}

.hw-hero-grid > *,
.hw-page-grid > * {
    min-width: 0;
}

.hw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--hw-blue);
    background: #eaf2ff;
    border: 1px solid #cfe0ff;
    border-radius: 999px;
    padding: .4rem .75rem;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hw-hero h1,
.hw-page-hero h1 {
    color: var(--hw-navy);
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: .92;
    letter-spacing: -.06em;
    margin: 1rem 0 1.25rem;
}

.hw-hero h1 span,
.hw-page-hero h1 span {
    color: var(--hw-blue);
}

.hw-lead {
    color: var(--hw-muted);
    font-size: 1.15rem;
    max-width: 62ch;
    margin: 0 0 1.5rem;
}

.hw-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
    align-items: center;
}

.hw-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .7rem;
    margin-top: 1.6rem;
    max-width: 680px;
}

.hw-proof div {
    background: rgba(255,255,255,.72);
    border: 1px solid var(--hw-line);
    border-radius: 12px;
    padding: .85rem;
}

.hw-proof strong {
    display: block;
    color: var(--hw-navy);
    font-size: .96rem;
}

.hw-proof span {
    color: var(--hw-muted);
    font-size: .82rem;
}

.hw-visual {
    position: relative;
}

.hw-visual::before {
    content: "";
    position: absolute;
    inset: 8% -3% -3% 18%;
    z-index: -1;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(99,102,241,.35), rgba(14,165,233,.30));
    filter: blur(18px);
}

.hw-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--hw-shadow);
}

.hw-section {
    padding: 4.5rem 0;
}

.hw-section-alt {
    background: var(--hw-navy);
    color: #fff;
}

.hw-section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 1.75rem;
}

.hw-section h2,
.hw-section-alt h2 {
    color: inherit;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -.045em;
    margin: 0;
}

.hw-section-header p,
.hw-section .hw-muted,
.hw-section-alt .hw-muted {
    color: var(--hw-muted);
    max-width: 56ch;
    margin: 0;
}

.hw-section-alt .hw-muted { color: #b8c3d8; }

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

.hw-card,
.hw-panel {
    background: var(--hw-panel);
    border: 1px solid var(--hw-line);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 12px 34px rgba(16,24,40,.06);
}

.hw-section-alt .hw-card,
.hw-section-alt .hw-panel {
    color: #fff;
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.13);
    box-shadow: none;
}

.hw-card-kicker {
    color: var(--hw-orange);
    font-weight: 900;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hw-card h3,
.hw-panel h3 {
    color: inherit;
    font-size: 1.12rem;
    line-height: 1.22;
    margin: .55rem 0 .45rem;
}

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

.hw-section-alt .hw-card p,
.hw-section-alt .hw-panel p {
    color: #b8c3d8;
}

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

.hw-process-step {
    position: relative;
    padding: 1.2rem;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
}

.hw-process-step span {
    display: inline-flex;
    color: var(--hw-navy);
    background: var(--hw-lime);
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 900;
    margin-bottom: 1rem;
}

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

.hw-price-card {
    background: #fff;
    border: 1px solid var(--hw-line);
    border-radius: 18px;
    padding: 1.4rem;
    position: relative;
}

.hw-price-card.featured {
    border-color: rgba(18,87,229,.45);
    box-shadow: var(--hw-shadow);
    transform: translateY(-8px);
}

.hw-price {
    color: var(--hw-navy);
    font-size: 2.55rem;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
    margin: 1rem 0 .3rem;
}

.hw-price small {
    color: var(--hw-muted);
    font-size: .95rem;
    letter-spacing: 0;
}

.hw-list {
    display: grid;
    gap: .55rem;
    margin: 1.1rem 0;
    padding: 0;
    list-style: none;
}

.hw-list li {
    color: var(--hw-muted);
    display: flex;
    gap: .55rem;
}

.hw-list li::before {
    content: "";
    width: .55rem;
    height: .55rem;
    flex: 0 0 auto;
    margin-top: .45rem;
    border-radius: 50%;
    background: var(--hw-cyan);
}

.hw-industry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.hw-industry {
    min-height: 190px;
    color: #fff !important;
    text-decoration: none;
    border-radius: 18px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        linear-gradient(160deg, rgba(7,20,47,.24), rgba(7,20,47,.92)),
        linear-gradient(135deg, var(--tone-a), var(--tone-b));
    box-shadow: 0 18px 48px rgba(16, 24, 40, .15);
}

.hw-industry strong {
    font-size: 1.25rem;
    line-height: 1.05;
}

.hw-industry span {
    color: rgba(255,255,255,.84);
    font-size: .92rem;
}

.hw-locations {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.hw-locations a {
    color: var(--hw-navy) !important;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--hw-line);
    border-radius: 999px;
    padding: .55rem .78rem;
    font-size: .9rem;
    font-weight: 800;
}

.hw-cta {
    margin: 4rem 0 0;
    border-radius: 24px;
    padding: 2rem;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(18,87,229,.95), rgba(101,54,255,.92)),
        var(--hw-blue);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    box-shadow: var(--hw-shadow);
}

.hw-cta h2 {
    margin: 0 0 .45rem;
    color: #fff;
}

.hw-cta p {
    margin: 0;
    color: rgba(255,255,255,.84);
}

.hw-footer {
    background: #07142f;
    color: #b8c3d8;
    padding: 2.5rem 0;
}

.hw-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
}

.hw-footer a {
    color: #dbeafe;
    text-decoration: none;
}

.hw-footer a:hover { color: #fff; }

.hw-footer ul {
    list-style: none;
    padding: 0;
    margin: .8rem 0 0;
    display: grid;
    gap: .5rem;
}

.hw-footer h3 {
    color: #fff;
    margin: 0;
    font-size: .92rem;
}

.hw-page-hero {
    padding: 5rem 0 3rem;
    background: radial-gradient(circle at 75% 0%, rgba(20,200,216,.2), transparent 32%);
}

.hw-page-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 2rem;
    align-items: start;
}

.hw-form-frame {
    overflow: hidden;
    border: 1px solid var(--hw-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--hw-shadow);
}

.hw-form-frame iframe {
    display: block;
    width: 100%;
    min-height: 720px;
    border: 0;
}

/* Feature detail pages */
.feature-page {
    background: #f6f8fc !important;
    color: var(--hw-ink) !important;
}

.feature-page::before {
    display: none;
}

.feature-hero {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(7,20,47,.96) 0%, rgba(7,20,47,.86) 48%, rgba(7,20,47,.52) 100%),
        var(--feature-image) center right / cover no-repeat;
}

.feature-hero-grid {
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
    gap: 2.5rem;
    align-items: center;
    padding: 5.4rem 0 4.4rem;
}

.feature-eyebrow {
    display: inline-flex;
    color: #dff9ff;
    background: rgba(20,200,216,.14);
    border: 1px solid rgba(20,200,216,.35);
    border-radius: 8px;
    padding: .48rem .7rem;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.feature-hero h1 {
    max-width: 820px;
    margin: 1.1rem 0 1rem;
    color: #fff;
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: .98;
    font-weight: 900;
    letter-spacing: 0;
}

.feature-lead {
    max-width: 680px;
    color: #d7e4f7;
    font-size: 1.14rem;
    line-height: 1.72;
    margin: 0 0 1.5rem;
}

.feature-actions {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.feature-panel {
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: rgba(7,20,47,.82);
    backdrop-filter: blur(12px);
    padding: 1rem;
    box-shadow: 0 22px 70px rgba(2, 6, 23, .28);
}

.feature-panel h2 {
    margin: 0 0 .8rem;
    color: #fff;
    font-size: 1rem;
}

.feature-panel ul {
    display: grid;
    gap: .62rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.feature-panel li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: #bcd0ea;
    font-size: .9rem;
}

.feature-panel li strong {
    color: #fff;
    text-align: right;
}

.feature-section {
    padding: 5rem 0;
}

.feature-section.white {
    background: #fff;
}

.feature-section.dark {
    color: #fff;
    background: var(--hw-navy);
}

.feature-section-head {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, .72fr);
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.6rem;
}

.feature-kicker {
    display: inline-flex;
    color: var(--hw-blue);
    background: #eaf2ff;
    border: 1px solid #cfe0ff;
    border-radius: 8px;
    padding: .45rem .68rem;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.feature-section h2 {
    margin: .9rem 0 0;
    color: inherit;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0;
}

.feature-section-head p,
.feature-copy {
    color: var(--hw-muted);
    font-size: 1.04rem;
    line-height: 1.72;
    margin: 0;
}

.feature-section.dark .feature-section-head p,
.feature-section.dark .feature-copy {
    color: #b8c7dc;
}

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

.feature-card,
.feature-link-card {
    border: 1px solid var(--hw-line);
    border-radius: 8px;
    background: #fff;
    padding: 1.15rem;
    box-shadow: 0 12px 34px rgba(16,24,40,.06);
}

.feature-card img {
    display: block;
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature-card span,
.feature-link-card span {
    color: var(--hw-orange);
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.feature-card h3,
.feature-link-card h3 {
    margin: .5rem 0 .45rem;
    color: var(--hw-navy);
    font-size: 1.14rem;
    line-height: 1.22;
}

.feature-card p,
.feature-link-card p {
    color: var(--hw-muted);
    margin: 0;
}

.feature-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .85rem;
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
}

.feature-checks li {
    display: flex;
    gap: .7rem;
    color: var(--hw-ink);
    font-weight: 800;
}

.feature-checks li::before {
    content: "";
    width: .68rem;
    height: .68rem;
    flex: 0 0 auto;
    margin-top: .45rem;
    border-radius: 50%;
    background: var(--hw-cyan);
}

.feature-links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.feature-link-card {
    color: inherit;
    text-decoration: none;
    min-height: 185px;
}

.feature-link-card:hover {
    border-color: rgba(18,87,229,.42);
    transform: translateY(-2px);
}

.feature-cta {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(18,87,229,.95), rgba(8,145,178,.92)),
        var(--hw-blue);
    border-radius: 8px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.4rem;
    align-items: center;
    box-shadow: var(--hw-shadow);
}

.feature-cta h2 {
    margin: 0 0 .5rem;
    color: #fff;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.feature-cta p {
    margin: 0;
    color: rgba(255,255,255,.86);
}

@media (max-width: 940px) {
    .feature-hero-grid,
    .feature-section-head,
    .feature-cta {
        grid-template-columns: 1fr;
    }
    .feature-grid,
    .feature-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .feature-hero {
        background:
            linear-gradient(180deg, rgba(7,20,47,.95), rgba(7,20,47,.88)),
            var(--feature-image) center / cover no-repeat;
    }
    .feature-hero-grid {
        min-height: auto;
        padding: 3.6rem 0;
    }
    .feature-grid,
    .feature-links,
    .feature-checks {
        grid-template-columns: 1fr;
    }
    .feature-section {
        padding: 3.4rem 0;
    }
    .feature-actions > *,
    .feature-cta .hw-button,
    .feature-cta .hw-button-secondary {
        width: 100%;
    }
}

@media (max-width: 940px) {
    .hw-hero-grid,
    .hw-page-grid,
    .hw-footer-grid,
    .hw-cta {
        grid-template-columns: 1fr;
    }
    .hw-card-grid,
    .hw-pricing,
    .hw-process,
    .hw-industry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hw-section-header {
        display: block;
    }
    .hw-section-header p { margin-top: .8rem; }
}

@media (max-width: 720px) {
    .hw-container {
        width: min(100% - 28px, 1180px);
        overflow: hidden;
    }
    .hw-topbar-inner,
    .hw-nav {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: .8rem 0;
    }
    .hw-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        justify-content: stretch;
    }
    .hw-links a { padding: .56rem; }
    .hw-links .hw-button {
        grid-column: 1 / -1;
        width: 100%;
    }
    .hw-hero { padding-top: 2.5rem; }
    .hw-hero h1,
    .hw-page-hero h1 {
        font-size: 1.58rem;
        line-height: 1;
        letter-spacing: -.02em;
        overflow-wrap: break-word;
    }
    .hw-hero h1 span,
    .hw-page-hero h1 span {
        display: block;
    }
    .hw-lead {
        font-size: .98rem;
        max-width: 32ch;
    }
    .hw-visual {
        overflow: hidden;
        border-radius: 22px;
    }
    .hw-proof,
    .hw-card-grid,
    .hw-pricing,
    .hw-process,
    .hw-industry-grid {
        grid-template-columns: 1fr;
    }
    .hw-price-card.featured { transform: none; }
    .hw-actions > *,
    .hw-cta .hw-button-secondary,
    .hw-cta .hw-button {
        width: 100%;
    }
}

/* Legacy page refresh: applied to older static pages without changing their content model. */
body > nav:not(.hw-nav) {
    background: #07142f !important;
    border-bottom: 1px solid rgba(226,232,240,.12) !important;
    box-shadow: 0 12px 40px rgba(2,6,23,.28) !important;
    backdrop-filter: none !important;
}

.nav-container {
    max-width: 1180px !important;
}

.logo {
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    letter-spacing: 0;
}

.logo::before {
    content: "";
    width: 34px;
    height: 34px;
    display: inline-block;
    vertical-align: middle;
    margin-right: .6rem;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--hw-blue), #0891b2);
    box-shadow: 0 10px 28px rgba(37, 99, 235, .24);
}

.nav-links a {
    color: #dbeafe !important;
    font-weight: 800 !important;
}

.nav-links a:hover { color: #ffffff !important; }

.nav-cta,
.btn-primary,
.cta-button,
button[type="submit"] {
    background: linear-gradient(135deg, #2563eb, #0891b2) !important;
    color: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 14px 34px rgba(37, 99, 235, .24) !important;
}

.page-header {
    background:
        radial-gradient(circle at 18% 10%, rgba(34,211,238,.20), transparent 32%),
        radial-gradient(circle at 74% 18%, rgba(37,99,235,.20), transparent 30%),
        linear-gradient(135deg, #07142f, #0f172a) !important;
    color: #ffffff !important;
    padding-top: 8rem !important;
}

.page-header::before,
.hero-glow,
.hero-glow-2 { display: none !important; }

.page-header h1,
.hero h1 {
    color: #ffffff !important;
    letter-spacing: -.05em;
}

.section-header h2,
.content h2 {
    color: var(--hw-navy) !important;
    letter-spacing: -.04em;
}

.page-header p,
.hero p {
    color: #d7e4f6 !important;
}

.section-header p,
.content p,
.info-card p,
.value-card p,
.feature-card p,
.pain-card p,
.team-section p,
.faq-answer,
.help-card p {
    color: var(--hw-muted) !important;
}

.content,
.features,
.pain-points,
.stats-bar,
.process,
.faq-section,
.contact-section {
    background: transparent !important;
}

.info-card,
.contact-form-container,
.value-card,
.feature-card,
.pain-card,
.pricing-card,
.help-card,
.faq-item,
.team-member,
.team-value,
.stats-section {
    background: #fff !important;
    color: var(--hw-ink) !important;
    border: 1px solid var(--hw-line) !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 34px rgba(16,24,40,.06) !important;
}

.cta-section {
    background:
        radial-gradient(circle at 10% 20%, rgba(52,211,153,.18), transparent 32%),
        linear-gradient(135deg, #07142f, #12305f 58%, #0f766e) !important;
    color: #fff !important;
    border: 1px solid rgba(226,232,240,.12) !important;
    box-shadow: 0 24px 64px rgba(7,20,47,.22) !important;
}

.cta-section h2,
.cta-section p {
    color: #fff !important;
}

.story-image,
.stat-item,
.info-icon,
.value-icon,
.feature-icon,
.pain-icon {
    background: #eaf2ff !important;
    color: var(--hw-blue) !important;
}

footer {
    background: #07142f !important;
    color: #b8c3d8 !important;
    border-top: none !important;
}

footer a { color: #dbeafe !important; }

@media (max-width: 768px) {
    body > nav:not(.hw-nav) { position: sticky !important; }
    .nav-links { display: none !important; }
    .page-header { padding-top: 4rem !important; }
}

/* ===================================================
   Visual Polish & Enhancement Layer
   =================================================== */

/* Gradient text for hero h1 accent span */
.hw-hero h1 span {
    background: linear-gradient(135deg, var(--hw-blue) 20%, var(--hw-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Button hover lift */
.hw-button {
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.hw-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(18, 87, 229, .42);
    filter: brightness(1.07);
}

.hw-button-secondary {
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .15s ease;
}
.hw-button-secondary:hover {
    background: #f0f5ff;
    border-color: rgba(18, 87, 229, .32);
    color: var(--hw-blue) !important;
    transform: translateY(-2px);
}

/* Card hover elevation */
.hw-card {
    transition: transform .2s ease, box-shadow .2s ease;
}
.hw-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(16, 24, 40, .12);
}

/* Icon container for feature cards */
.hw-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #eaf2ff, #dbeafe);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    color: var(--hw-blue);
    flex-shrink: 0;
}

/* Proof strip hover */
.hw-proof div {
    transition: transform .15s ease;
    cursor: default;
}
.hw-proof div:hover {
    transform: translateY(-2px);
}

/* Featured pricing card visual upgrade */
.hw-price-card.featured {
    background: linear-gradient(175deg, #f0f6ff 0%, #fff 55%);
    border-color: var(--hw-blue);
    border-width: 2px;
}
.hw-price-card.featured .hw-card-kicker {
    display: inline-block;
    background: var(--hw-blue);
    color: #fff;
    border-radius: 999px;
    padding: .2rem .68rem;
    font-size: .74rem;
}

/* Industry card hover */
.hw-industry {
    transition: transform .2s ease, box-shadow .2s ease;
}
.hw-industry:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 72px rgba(16, 24, 40, .26);
}

/* Location pill hover */
.hw-locations a {
    transition: background .15s, border-color .15s, color .15s;
}
.hw-locations a:hover {
    background: #eaf2ff;
    border-color: rgba(18, 87, 229, .32);
    color: var(--hw-blue) !important;
}

/* ---- Testimonials ---- */
.hw-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.hw-testimonial {
    background: #fff;
    border: 1px solid var(--hw-line);
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: 0 12px 34px rgba(16, 24, 40, .06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .2s ease, box-shadow .2s ease;
}
.hw-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(16, 24, 40, .1);
}

.hw-testimonial-stars {
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: .06em;
}

.hw-testimonial-text {
    color: var(--hw-muted);
    font-size: .97rem;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.hw-testimonial-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-top: 1px solid var(--hw-line);
    padding-top: 1rem;
}

.hw-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hw-blue), var(--hw-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: .8rem;
    flex-shrink: 0;
}

.hw-testimonial-name {
    font-weight: 800;
    color: var(--hw-navy);
    font-size: .9rem;
    display: block;
}
.hw-testimonial-role {
    color: var(--hw-muted);
    font-size: .8rem;
    display: block;
}

/* ---- Footer bottom strip ---- */
.hw-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 2rem;
    padding-top: 1.25rem;
    text-align: center;
    color: #3d4f6a;
    font-size: .82rem;
}

@media (max-width: 940px) {
    .hw-testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 720px) {
    .hw-testimonials-grid {
        grid-template-columns: 1fr;
    }
}
