:root {
    --warm-white: #f6f3eb;
    --white: #fffcf7;
    --charcoal: #171614;
    --graphite: #2a2a28;
    --yellow: #f2c500;
    --border: rgba(23, 22, 20, 0.1);
    --muted: rgba(23, 22, 20, 0.68);
    --shell: 1280px;
    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-lg: 1.75rem;
    --radius-pill: 999px;
    --shadow-soft: 0 10px 30px rgba(23, 22, 20, 0.05);
    --shadow-lift: 0 18px 40px rgba(23, 22, 20, 0.09);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--charcoal);
    background: var(--warm-white);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
    height: auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 1000;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-pill);
}

.site-shell {
    max-width: var(--shell);
    padding-left: 2rem;
    padding-right: 2rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(246, 243, 235, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(23, 22, 20, 0.06);
}

.promo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    flex-shrink: 0;
    min-height: 2.6rem;
    padding: 0.45rem 1.25rem;
    background: var(--charcoal);
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.35;
    text-align: center;
}

.promo-bar:hover {
    color: var(--white);
}

.promo-bar-badge {
    flex: 0 0 auto;
    padding: 0.12rem 0.5rem;
    border-radius: var(--radius-pill);
    background: var(--yellow);
    color: var(--charcoal);
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.promo-bar-copy {
    min-width: 0;
}

.promo-bar-short {
    display: none;
}

.promo-bar-copy strong {
    font-weight: 600;
}

.promo-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    flex: 0 0 auto;
    font-weight: 600;
    color: var(--yellow);
    white-space: nowrap;
}

.promo-bar:hover .promo-bar-cta {
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    min-height: 5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: 15.5rem;
    flex: 0 0 auto;
}

.brand img {
    display: block;
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.92rem;
}

.site-nav a {
    position: relative;
    padding: 0.25rem 0;
}

.site-nav a[aria-current='page']::after,
.site-nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.15rem;
    width: 100%;
    height: 2px;
    background: var(--yellow);
}

.nav-toggle {
    display: none;
    border: 0;
    background: rgba(255, 255, 255, 0.7);
    padding: 0;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
}

.nav-toggle span {
    display: block;
    width: 1.4rem;
    height: 2px;
    margin: 0.3rem auto;
    background: var(--charcoal);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.8rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button .bi {
    font-size: 0.95em;
    line-height: 1;
}

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

.button-dark {
    background: var(--charcoal);
    color: var(--white);
    box-shadow: 0 10px 22px rgba(23, 22, 20, 0.16);
}

.button-dark:hover {
    box-shadow: 0 16px 28px rgba(23, 22, 20, 0.2);
}

.button-accent {
    background: var(--yellow);
    color: var(--charcoal);
    box-shadow: 0 10px 22px rgba(242, 197, 0, 0.28);
}

.button-link {
    color: var(--charcoal);
    border-bottom: 1px solid var(--yellow);
    border-radius: 0;
    min-height: auto;
    padding: 0;
    box-shadow: none;
}

.button-outline-light {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.button-outline-dark {
    border-color: var(--border);
    background: transparent;
    color: var(--charcoal);
    box-shadow: none;
}

.header-cta {
    position: relative;
}

.cta-badge {
    position: absolute;
    top: -0.55rem;
    right: -0.4rem;
    padding: 0.22rem 0.48rem;
    border-radius: var(--radius-pill);
    background: var(--yellow);
    color: var(--charcoal);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    white-space: nowrap;
}

.hero,
.page-hero,
.section {
    padding: 4.25rem 0;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 18%, rgba(242, 197, 0, 0.14), transparent 28%),
        linear-gradient(180deg, #fffdf8 0%, var(--white) 100%);
    padding: 2.9rem 0 3.25rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(21, 21, 21, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px);
    background-size: 5rem 5rem;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    opacity: 0.42;
}

.hero .site-shell {
    position: relative;
    z-index: 2;
}

.hero-motion {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.motion-ring,
.motion-line,
.motion-dot {
    position: absolute;
    display: block;
}

.motion-ring {
    border: 1px solid rgba(21, 21, 21, 0.12);
    border-radius: 50%;
    animation: motionFloat 15s ease-in-out infinite;
}

.motion-ring::after {
    content: '';
    position: absolute;
    width: 0.62rem;
    height: 0.62rem;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 0.35rem rgba(242, 197, 0, 0.12);
}

.motion-ring-one {
    width: 17rem;
    height: 17rem;
    left: -4rem;
    top: 4rem;
}

.motion-ring-one::after {
    right: 2.8rem;
    top: 2.2rem;
}

.motion-ring-two {
    width: 24rem;
    height: 24rem;
    right: 23rem;
    bottom: -12rem;
    animation-delay: -6s;
}

.motion-ring-two::after {
    left: 4.4rem;
    top: 3.2rem;
}

.motion-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(21, 21, 21, 0.24), transparent);
    transform-origin: center;
    animation: motionDrift 18s linear infinite;
}

.motion-line-one {
    width: 22rem;
    right: 4rem;
    top: 7rem;
    transform: rotate(-12deg);
}

.motion-line-two {
    width: 18rem;
    left: 38%;
    bottom: 5rem;
    transform: rotate(9deg);
    animation-delay: -8s;
}

.motion-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--charcoal);
    opacity: 0.45;
    animation: motionPulse 6s ease-in-out infinite;
}

.motion-dot-one {
    left: 47%;
    top: 22%;
}

.motion-dot-two {
    right: 10%;
    top: 34%;
    background: var(--yellow);
    opacity: 0.85;
    animation-delay: -2s;
}

.motion-dot-three {
    left: 28%;
    bottom: 18%;
    animation-delay: -4s;
}

@keyframes motionFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(1rem, -0.8rem, 0) rotate(10deg);
    }
}

@keyframes motionDrift {
    0% {
        opacity: 0.12;
        translate: -1rem 0;
    }

    50% {
        opacity: 0.38;
    }

    100% {
        opacity: 0.12;
        translate: 1rem 0;
    }
}

@keyframes motionPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.38;
    }

    50% {
        transform: scale(1.6);
        opacity: 0.82;
    }
}

.hero-grid,
.two-column,
.about-grid,
.footer-main {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(33rem, 1fr);
    align-items: center;
    min-height: auto;
    padding: 1.1rem 0 0;
    gap: 3rem;
}

.hero-copy h1,
.page-hero h1,
.section h2,
.footer-cta h2 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.01;
}

.hero-copy h1 {
    font-size: clamp(3rem, 3.7vw, 4.05rem);
    max-width: 12.5ch;
    letter-spacing: -0.065em;
    line-height: 0.98;
    text-wrap: balance;
}

.headline-highlight {
    position: relative;
    display: inline;
    z-index: 0;
}

.headline-highlight::before {
    content: '';
    position: absolute;
    left: -0.06em;
    right: -0.06em;
    bottom: 0.08em;
    height: 0.34em;
    background: rgba(242, 197, 0, 0.78);
    border-radius: var(--radius-pill);
    z-index: -1;
}

.page-hero h1,
.section h2,
.footer-cta h2 {
    font-size: clamp(1.9rem, 2.5vw, 2.65rem);
    max-width: 20ch;
    text-wrap: balance;
}

.hero-kicker {
    max-width: 36rem;
    margin: 0 0 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.65;
}

.hero-kicker span {
    color: #8b7400;
    font-weight: 700;
}

.hero-copy-narrow .lead,
.hero-copy .lead,
.section-copy p,
.article-prose p,
.detail-card p,
.content-card p,
.industry-card p,
.step-card p,
.form-note {
    color: var(--muted);
}

.lead {
    margin-top: 1.15rem;
    max-width: 32rem;
    font-size: 0.98rem;
    line-height: 1.62;
}

.eyebrow {
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 600;
    color: #846d00;
}

.eyebrow-box {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius-pill);
    background: rgba(242, 197, 0, 0.18);
    color: #6f5b00;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin: 1.45rem 0 1rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.78rem;
    border: 1px solid rgba(23, 22, 20, 0.1);
    border-radius: var(--radius-pill);
    background: rgba(255, 252, 247, 0.9);
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.hero-badge-accent {
    border-color: var(--yellow);
    background: var(--yellow);
    color: var(--charcoal);
    box-shadow: 0 8px 18px rgba(242, 197, 0, 0.28);
    animation: heroBadgePulse 2.4s ease-out infinite;
}

.hero-visual {
    position: relative;
    min-height: auto;
}

.hero-image {
    width: min(100%, 42rem);
    margin: 0 0 0 auto;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: multiply;
    border-radius: var(--radius-lg);
}

.hero-hc-chip {
    position: absolute;
    left: 0.85rem;
    bottom: 0.95rem;
    z-index: 2;
    display: grid;
    gap: 0.18rem;
    max-width: 16.8rem;
    padding: 0.95rem 1.05rem 1.05rem;
    border-radius: var(--radius-md);
    background: var(--charcoal);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(23, 22, 20, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-hc-chip:hover,
.hero-hc-chip:focus-visible {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(23, 22, 20, 0.34);
}

.hero-hc-chip-badge {
    width: fit-content;
    padding: 0.14rem 0.48rem;
    border-radius: var(--radius-pill);
    background: var(--yellow);
    color: var(--charcoal);
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-hc-chip strong {
    font-family: 'Manrope', sans-serif;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hero-hc-chip span:last-child {
    color: rgba(255, 252, 247, 0.72);
    font-size: 0.86rem;
    line-height: 1.4;
}

@keyframes heroBadgePulse {
    0% {
        box-shadow: 0 8px 18px rgba(242, 197, 0, 0.28), 0 0 0 0 rgba(242, 197, 0, 0.4);
    }
    70% {
        box-shadow: 0 8px 18px rgba(242, 197, 0, 0.28), 0 0 0 0.55rem rgba(242, 197, 0, 0);
    }
    100% {
        box-shadow: 0 8px 18px rgba(242, 197, 0, 0.28), 0 0 0 0 rgba(242, 197, 0, 0);
    }
}

.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    color: var(--muted);
    font-size: 0.89rem;
}

.trust-line span {
    color: var(--yellow);
}

.site-footer {
    background: linear-gradient(180deg, #1c1b19, #121110);
    color: var(--white);
    padding-top: 3.5rem;
}

.credibility-bar {
    position: relative;
    z-index: 3;
    padding: 0 0 0.5rem;
    margin-top: -1.35rem;
    background: transparent;
    color: var(--white);
}

.stats-panel {
    padding: 1.7rem 1.4rem 1.55rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 12% 0%, rgba(242, 197, 0, 0.16), transparent 32%),
        linear-gradient(180deg, #1f1d1a, #141312);
    box-shadow: 0 22px 48px rgba(23, 22, 20, 0.16);
}

.stats-kicker {
    margin: 0 0 1.25rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(242, 197, 0, 0.86);
}

.stats-grid,
.services-grid,
.framework-grid,
.approach-grid,
.article-grid,
.industry-grid,
.detail-grid {
    display: grid;
    gap: 1.5rem;
}

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

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 10.5rem;
    padding: 1.4rem 1.1rem 1.3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
}

.stat-icon {
    width: 2.6rem;
    height: 2.6rem;
    margin-bottom: 0.55rem;
    border: 1px solid rgba(242, 197, 0, 0.28);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--yellow);
    background: rgba(242, 197, 0, 0.12);
}

.stat-icon .bi {
    font-size: 1.1rem;
}

.stat-card strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 3vw, 2.75rem);
    letter-spacing: -0.06em;
    line-height: 1;
}

.stat-card span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}

.section-impact {
    padding: 4.75rem 0 5rem;
    background:
        linear-gradient(180deg, rgba(255, 252, 247, 0.35), var(--warm-white) 18%),
        var(--warm-white);
}

.impact-intro {
    max-width: 38rem;
    margin: 0 auto 2.75rem;
    text-align: center;
}

.impact-intro h2 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
    letter-spacing: -0.045em;
    line-height: 1.15;
    max-width: 18ch;
    margin-left: auto;
    margin-right: auto;
}

.impact-intro p {
    margin: 0.9rem 0 0;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.55;
}

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

.impact-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    grid-column: span 2;
    padding: 1.85rem 1.5rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

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

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

.impact-value {
    margin: 0 0 0.85rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.8rem, 4.2vw, 3.85rem);
    letter-spacing: -0.07em;
    line-height: 0.92;
    color: var(--charcoal);
}

.impact-value::after {
    content: '';
    display: block;
    width: 1.65rem;
    height: 0.16rem;
    margin-top: 0.85rem;
    background: var(--yellow);
}

.impact-card h3 {
    margin: 0 0 0.45rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.impact-card p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.impact-note {
    max-width: 40rem;
    margin: 1.75rem auto 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
    text-align: center;
}

.impact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2.4rem;
    text-align: center;
}

.impact-cta p {
    margin: 0;
    max-width: 28rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.35;
}

.impact-cta .button {
    min-height: 2.85rem;
}

.section-border {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-outcomes {
    padding: 4.5rem 0 4.25rem;
}

.section-copy {
    max-width: 48rem;
}

.section-copy h2 {
    max-width: 19ch;
}

.section-title,
.footer-cta-title {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(1.9rem, 2.5vw, 2.65rem);
    line-height: 1.01;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.section-head {
    margin-bottom: 2rem;
}

.section-services {
    padding: 4rem 0;
}

.services-banner {
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden;
    min-height: 26rem;
    margin-bottom: 2.4rem;
    padding: 3.2rem 3rem 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lift);
}

.services-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
}

.services-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 15, 13, 0.84) 0%, rgba(17, 15, 13, 0.58) 38%, rgba(17, 15, 13, 0.22) 68%, rgba(17, 15, 13, 0.28) 100%),
        linear-gradient(180deg, rgba(17, 15, 13, 0.12), rgba(17, 15, 13, 0.38));
    pointer-events: none;
}

.services-banner-copy {
    position: relative;
    z-index: 1;
    max-width: 36rem;
}

.services-banner-copy .eyebrow {
    color: var(--yellow);
}

.services-banner-copy h2 {
    max-width: 16ch;
    color: var(--white);
}

.services-banner-copy p {
    margin: 1rem 0 0;
    max-width: 34rem;
    color: rgba(255, 252, 247, 0.82);
    font-size: 1.02rem;
    line-height: 1.7;
}

.services-head {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.55fr);
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.2rem;
}

.services-head .section-copy {
    max-width: 54rem;
}

.services-head h2 {
    max-width: 18ch;
}

.services-head > p {
    margin: 0 0 0.25rem;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.services-subhead {
    display: grid;
    grid-template-columns: minmax(16rem, 0.8fr) minmax(0, 1.2fr);
    align-items: end;
    gap: 2rem;
    max-width: none;
    margin-bottom: 1.4rem;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border);
}

.services-subhead h2 {
    max-width: 18ch;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.services-subhead p {
    margin: 0;
    max-width: 48rem;
}

.split-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.split-head .section-copy {
    max-width: 52rem;
}

.split-head .section-copy h2 {
    max-width: 20ch;
}

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

.services-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card,
.industry-card,
.detail-card,
.article-card,
.step-card,
.form-card,
.consultation-banner,
.list-panel {
    border: 1px solid var(--border);
    background: rgba(255, 252, 247, 0.82);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.content-card,
.industry-card,
.detail-card,
.step-card {
    padding: 1.7rem;
}

.content-card {
    min-height: 100%;
    background: rgba(255, 252, 247, 0.78);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.industry-card,
.detail-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover,
.industry-card:hover,
.detail-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.service-card-refined {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card-refined:hover {
    border-color: rgba(23, 22, 20, 0.16);
    background: var(--white);
    box-shadow: var(--shadow-lift);
    transform: translateY(-3px);
}

.service-media {
    display: grid;
    place-items: center;
    aspect-ratio: 5 / 4;
    overflow: hidden;
    padding: 1.1rem 1rem 0.35rem;
    background: #f3efe4;
}

.service-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.45s ease;
}

.service-card-refined:hover .service-media img {
    transform: scale(1.04);
}

.service-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.2rem 1.3rem 1.35rem;
}

.service-card-body p {
    flex: 1;
    margin: 0 0 1rem;
}

.service-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.service-index {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    color: #8b7400;
}

.service-meta .bi {
    display: grid;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    border: 1px solid rgba(23, 22, 20, 0.1);
    border-radius: 50%;
    color: #8b7400;
    font-size: 0.95rem;
    background: rgba(242, 197, 0, 0.12);
}

.content-card h3,
.industry-card h2,
.detail-card h3,
.article-card h3,
.article-card h2,
.step-card h3,
.step-card h2 {
    margin: 0 0 0.85rem;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.content-card a,
.article-card-body a,
.industry-card a,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--charcoal);
    font-weight: 600;
    border-bottom: 1px solid var(--yellow);
}

.content-card a .bi,
.article-card-body a .bi,
.industry-card a .bi,
.text-link .bi {
    font-size: 0.85em;
}

.section-sectors {
    padding-top: 3.25rem;
    padding-bottom: 4.25rem;
    border-top: 1px solid var(--border);
}

.sector-index-heading {
    margin: 0 0 1.1rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.45rem;
}

.sector-index {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.5rem;
    border-top: 1px solid var(--border);
}

.sector-index li {
    display: grid;
    gap: 0.4rem;
    padding: 1.25rem 0 1.3rem;
    border-bottom: 1px solid var(--border);
}

.sector-index a {
    width: fit-content;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.08rem;
    letter-spacing: -0.03em;
}

.sector-index p {
    margin: 0;
    max-width: 38rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.outcome-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.outcome-points > article {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.45rem 1.5rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.9);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.outcome-points > article:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 22, 20, 0.16);
    box-shadow: var(--shadow-lift);
}

.outcome-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.15rem;
}

.outcome-index,
.framework-step {
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #8b7400;
}

.outcome-icon {
    display: inline-grid;
    place-items: center;
    width: 2.7rem;
    height: 2.7rem;
    color: #8b7400;
    border: 1px solid rgba(23, 22, 20, 0.1);
    border-radius: 0.85rem;
    background: rgba(242, 197, 0, 0.16);
    font-size: 1.2rem;
}

.outcome-points h3 {
    margin: 0 0 0.7rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.18rem;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.outcome-list {
    display: grid;
    gap: 0.55rem;
    margin: 1.15rem 0 0;
    padding: 1.05rem 0 0;
    border-top: 1px solid var(--border);
    list-style: none;
}

.outcome-list li {
    display: flex;
    align-items: start;
    gap: 0.55rem;
    color: var(--charcoal);
    font-size: 0.9rem;
    line-height: 1.4;
}

.outcome-list .bi {
    margin-top: 0.12rem;
    color: #8b7400;
    font-size: 0.95rem;
}

.framework-title {
    margin: 0 0 1.25rem;
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(242, 197, 0, 0.86);
}

.framework {
    padding: 1.7rem 1.4rem 1.45rem;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 12% 0%, rgba(242, 197, 0, 0.16), transparent 32%),
        linear-gradient(180deg, #1f1d1a, #141312);
    color: var(--white);
    box-shadow: 0 22px 48px rgba(23, 22, 20, 0.12);
}

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

.framework-grid div {
    position: relative;
    min-height: 8.6rem;
    padding: 1.25rem 1.3rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
}

.framework-grid div:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -0.7rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: grid;
    place-items: center;
    width: 1.25rem;
    height: 1.25rem;
    color: var(--yellow);
    background: #171614;
    border-radius: 50%;
    font-size: 0.72rem;
}

.framework-step {
    display: block;
    margin-bottom: 0.85rem;
    color: var(--yellow);
}

.framework-grid strong,
.outcome-points strong {
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Manrope', sans-serif;
    line-height: 1.15;
}

.framework-grid span:not(.framework-step),
.outcome-points p {
    display: block;
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.framework-grid span:not(.framework-step) {
    color: rgba(255, 255, 255, 0.68);
}

.section-dark {
    background: linear-gradient(180deg, #1c1b19, #121110);
    color: var(--white);
    border-radius: 0;
}

.section-dark .eyebrow,
.section-dark p {
    color: rgba(255, 255, 255, 0.78);
}

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

.approach-grid-refined {
    gap: 1rem;
}

.approach-grid-page {
    margin-top: 0;
}

.approach-grid-page .step-card {
    min-height: 0;
}

.step-card-light a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    font-weight: 600;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    min-height: 17rem;
    box-shadow: none;
}

.step-card-light {
    background: rgba(255, 252, 247, 0.86);
    border-color: var(--border);
    box-shadow: var(--shadow-soft);
}

.step-number {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--yellow);
    font-family: 'Manrope', sans-serif;
    font-size: 1.7rem;
}

.consultation-banner {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-width: 1px;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(242, 197, 0, 0.16), transparent 42%),
        rgba(255, 252, 247, 0.92);
}

.consult-points {
    display: grid;
    gap: 0.8rem;
}

.consult-points span {
    position: relative;
    padding-left: 1.1rem;
}

.consult-points span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.4rem;
    height: 0.4rem;
    background: var(--yellow);
    border-radius: 50%;
}

.consult-cta small {
    display: block;
    margin-top: 0.75rem;
    color: var(--muted);
}

.consultation-copy {
    max-width: 34rem;
    margin: 0.9rem 0 0;
    color: var(--muted);
}

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

.article-grid-large {
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.article-card {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.article-media {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #ece7db;
}

.article-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.article-card:hover .article-media img {
    transform: scale(1.04);
}

.article-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.4rem 1.45rem 1.5rem;
}

.article-card-body p {
    margin: 0 0 1.15rem;
    flex: 1;
}

.article-card-body .article-meta {
    margin-bottom: 0.75rem;
}

.article-grid-large .article-card {
    display: grid;
    grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 1.18fr);
    align-items: stretch;
}

.article-grid-large .article-media {
    aspect-ratio: auto;
    min-height: 14rem;
    height: 100%;
}

.article-grid-large .article-card-body {
    padding: 1.7rem 1.8rem 1.75rem;
    justify-content: center;
}

.article-feature {
    margin: 0 0 1.6rem;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ece7db;
}

.article-media.is-placeholder,
.article-feature.is-placeholder {
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 82% 18%, rgba(242, 197, 0, 0.2), transparent 46%),
        #ece7db;
}

.article-cover-fallback {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: inherit;
    padding: 1.6rem;
}

.article-media.is-placeholder img,
.article-feature.is-placeholder img,
.article-cover-fallback img {
    width: min(14.5rem, 58%);
    height: auto;
    object-fit: contain;
}

.article-card:hover .article-media.is-placeholder img {
    transform: none;
}

.article-feature.is-placeholder {
    min-height: 16rem;
    aspect-ratio: 16 / 8;
}

.article-feature img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.article-meta,
.breadcrumb-trail {
    color: var(--muted);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.article-body {
    padding-top: 2rem;
}

.article-prose {
    max-width: 50rem;
}

.article-prose h2 {
    margin: 2rem 0 0.75rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.03em;
}

.article-prose p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.article-prose h3 {
    margin: 1.5rem 0 0.6rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.article-prose ul,
.article-prose ol {
    margin: 0 0 1.2rem 1.2rem;
}

.article-prose li {
    margin-bottom: 0.4rem;
}

.article-prose a {
    font-weight: 600;
}

.article-prose .legal-updated {
    margin: 0 0 1.6rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.article-prose button.text-link {
    display: inline;
    min-height: 0;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--yellow);
    border-radius: 0;
    background: none;
    box-shadow: none;
    font: inherit;
    font-weight: 600;
    color: inherit;
    cursor: pointer;
    transform: none;
}

.article-prose button.text-link:hover {
    transform: none;
}

.article-prose code {
    font-size: 0.9em;
}

.article-prose blockquote {
    margin: 0 0 1.2rem;
    padding: 0.2rem 0 0.2rem 1.1rem;
    border-left: 3px solid var(--yellow);
    color: var(--muted);
}

.article-related {
    margin-top: 2.5rem;
}

.article-hc-strip {
    display: grid;
    gap: 0.85rem;
    margin: 2rem 0 0;
    padding: 1.25rem 1.4rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 92% 12%, rgba(242, 197, 0, 0.18), transparent 46%),
        rgba(255, 252, 247, 0.94);
}

.article-hc-strip .eyebrow {
    margin: 0;
}

.article-hc-strip p:not(.eyebrow) {
    margin: 0;
    max-width: 46rem;
    color: var(--muted);
}

.article-hc-strip a:not(.button) {
    font-weight: 600;
    color: var(--charcoal);
    border-bottom: 1px solid var(--yellow);
}

.article-hc-strip .button {
    width: fit-content;
}

.article-hc-banner {
    margin-top: 2.4rem;
}

.article-more {
    padding-top: 0;
}

.section-faq {
    padding-top: 1.5rem;
}

.faq-list {
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.15rem 1.35rem;
    cursor: pointer;
    list-style: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

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

.faq-item summary::marker {
    content: '';
}

.faq-item summary i {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(242, 197, 0, 0.18);
    color: var(--charcoal);
    font-size: 1.1rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item summary:hover i,
.faq-item[open] summary i {
    background: var(--yellow);
}

.faq-item[open] summary i {
    transform: rotate(45deg);
}

.faq-item summary:focus-visible {
    outline: 2px solid var(--yellow);
    outline-offset: -2px;
    border-radius: var(--radius-md);
}

.faq-answer {
    padding: 0 1.35rem 1.3rem;
}

.faq-answer p {
    margin: 0;
    max-width: 62rem;
    color: var(--muted);
}

.faq-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
    margin-top: 0.95rem !important;
}

.faq-links a {
    font-weight: 600;
    color: var(--charcoal);
    border-bottom: 1px solid var(--yellow);
}

.faq-links a:hover {
    color: var(--graphite);
}

.page-hero {
    padding-bottom: 1.25rem;
}

.contact-page {
    padding: 0 0 4.5rem;
}

.contact-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 2.8rem;
    padding: 2.4rem 0 2.7rem;
    background:
        radial-gradient(circle at 88% 12%, rgba(242, 197, 0, 0.16), transparent 32%),
        linear-gradient(180deg, #fffdf8 0%, var(--white) 100%);
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(21, 21, 21, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px);
    background-size: 5rem 5rem;
    mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
    opacity: 0.38;
}

.contact-hero .site-shell {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    margin: 1rem 0 0;
    max-width: 18ch;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.15rem, 3.5vw, 3.35rem);
    letter-spacing: -0.06em;
    line-height: 0.98;
    text-wrap: balance;
}

.contact-hero .lead {
    max-width: 38rem;
    font-size: 1.08rem;
    line-height: 1.65;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.95fr);
    gap: 2.6rem 3.2rem;
    align-items: start;
}

.contact-outcomes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    margin: 0 0 1.4rem;
}

.contact-outcomes article {
    display: grid;
    align-content: start;
    gap: 0.7rem;
    min-height: 100%;
    padding: 1.15rem 1.15rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.9);
    box-shadow: var(--shadow-soft);
}

.contact-outcomes strong {
    font-family: 'Manrope', sans-serif;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.contact-outcomes p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-proof div {
    padding: 1rem 1rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.82);
}

.contact-proof strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

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

.contact-steps {
    margin: 0 0 1.5rem;
    padding: 0.35rem 1.25rem 0.45rem;
    list-style: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.88);
}

.contact-steps li {
    display: grid;
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    padding: 1rem 0;
}

.contact-steps li + li {
    border-top: 1px solid var(--border);
}

.contact-steps span {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: -0.04em;
    color: #8b7400;
}

.contact-steps strong {
    display: block;
    margin-bottom: 0.2rem;
    font-family: 'Manrope', sans-serif;
    letter-spacing: -0.03em;
}

.contact-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.contact-hc-card {
    display: grid;
    gap: 0.85rem;
    padding: 1.35rem 1.4rem 1.45rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at 92% 12%, rgba(242, 197, 0, 0.2), transparent 46%),
        rgba(255, 252, 247, 0.96);
    box-shadow: var(--shadow-soft);
}

.contact-hc-card h2 {
    margin: 0;
    max-width: none;
    font-size: 1.45rem;
}

.contact-hc-card p:not(.eyebrow) {
    margin: 0;
    color: var(--muted);
}

.contact-hc-card .button {
    width: fit-content;
}

.contact-layout .form-card {
    position: sticky;
    top: 7.2rem;
}

.contact-form-card {
    padding: 1.7rem 1.7rem 1.8rem;
    border-top: 4px solid var(--yellow);
    background: var(--white);
    box-shadow: var(--shadow-lift);
}

.contact-form-card h2 {
    max-width: none;
    font-size: 1.7rem;
}

.contact-form-card .form-actions {
    flex-direction: column;
    align-items: flex-start;
}

.contact-page .article-hc-banner {
    margin-top: 2.8rem;
}

#consultation-form {
    scroll-margin-top: 7.4rem;
}

.form-note a {
    font-weight: 600;
    color: var(--charcoal);
    border-bottom: 1px solid var(--yellow);
}

.breadcrumb-trail {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.2rem;
    font-size: 0.92rem;
}

.two-column {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    margin-bottom: 2rem;
}

.list-panel,
.form-card {
    padding: 1.9rem;
    border-radius: var(--radius-lg);
}

.list-panel p:not(:last-child) {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 3rem;
}

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

.industry-card ul {
    padding-left: 1.25rem;
    color: var(--muted);
}

.about-page {
    padding: 2.4rem 0 4.5rem;
}

.about-grid {
    grid-template-columns: minmax(16rem, 24rem) minmax(0, 1fr);
    align-items: start;
    gap: 3.2rem;
}

.about-portrait {
    position: sticky;
    top: 6.2rem;
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #ece7db;
    box-shadow: var(--shadow-lift);
}

.about-portrait img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-copy h1 {
    margin: 0 0 1.1rem;
    max-width: 16ch;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.1rem, 3.2vw, 3.15rem);
    letter-spacing: -0.06em;
    line-height: 0.98;
    text-wrap: balance;
}

.about-copy .lead {
    max-width: 38rem;
    margin-bottom: 1.15rem;
}

.about-copy p {
    max-width: 40rem;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    max-width: 32rem;
    margin: 1.8rem 0 1.6rem;
}

.about-facts div {
    padding: 1rem 0.95rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.82);
}

.about-facts strong {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.about-facts span {
    color: var(--muted);
    font-size: 0.88rem;
}

.about-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    margin-top: 1.25rem;
}

.about-links a {
    font-weight: 600;
}

.section-growth {
    padding: 4.5rem 0 4.25rem;
}

.growth-positioning {
    margin: 0 0 1.8rem;
    max-width: 40rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--charcoal);
}

.growth-benefits,
.growth-tools-grid {
    display: grid;
    gap: 1rem;
}

.growth-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 1.8rem;
}

.growth-benefits article,
.growth-tool-card,
.tool-result-panel {
    padding: 1.45rem 1.5rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.9);
    box-shadow: var(--shadow-soft);
}

.growth-benefits h3,
.growth-tool-card h3 {
    margin: 0.9rem 0 0.65rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.18rem;
    letter-spacing: -0.04em;
    line-height: 1.15;
}

.growth-hero {
    padding: 2.4rem 0 1.5rem;
}

.growth-hero h1,
.tool-copy h1,
.tool-page h1 {
    margin: 0 0 1.1rem;
    max-width: 16ch;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.1rem, 3.2vw, 3.15rem);
    letter-spacing: -0.06em;
    line-height: 0.98;
    text-wrap: balance;
}

.growth-hero .lead,
.tool-copy .lead,
.tool-page .lead {
    max-width: 42rem;
}

.tool-subhead {
    margin: 1.5rem 0 0.6rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
}

.tool-related-note {
    margin: 1rem 0 0;
    font-size: 0.95rem;
}

.industry-body {
    max-width: 46rem;
    margin: 2rem 0 0;
}

.industry-body p {
    margin-bottom: 1.1rem;
}

.industry-page {
    padding: 2.4rem 0 4.5rem;
}

.industry-hero {
    max-width: 46rem;
    margin-bottom: 2.6rem;
}

.industry-hero h1 {
    margin: 0.85rem 0 1.1rem;
    max-width: 16ch;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 3.6vw, 3.4rem);
    letter-spacing: -0.065em;
    line-height: 0.96;
    text-wrap: balance;
}

.industry-hero .lead {
    max-width: 38rem;
    font-size: 1.12rem;
    line-height: 1.65;
}

.industry-keyword {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 1.1rem 0 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.92rem;
    letter-spacing: -0.02em;
    color: #8b7400;
}

.industry-keyword .bi {
    font-size: 1.1rem;
}

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

.industry-focus article {
    display: grid;
    gap: 1rem;
    min-height: 12.5rem;
    padding: 1.35rem 1.35rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.88);
    box-shadow: var(--shadow-soft);
}

.industry-focus p {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
    line-height: 1.35;
}

.industry-editorial {
    display: grid;
    gap: 0;
    margin-bottom: 3.2rem;
    border-top: 1px solid var(--border);
}

.industry-editorial article {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 1.4rem;
    padding: 1.7rem 0;
    border-bottom: 1px solid var(--border);
}

.industry-index {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.04em;
    color: var(--yellow);
}

.industry-editorial h2 {
    margin: 0 0 0.55rem;
    max-width: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    letter-spacing: -0.045em;
    line-height: 1.15;
}

.industry-editorial p {
    margin: 0;
    max-width: 40rem;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.industry-help {
    margin-bottom: 2.6rem;
}

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

.industry-help-grid a,
.industry-more-grid a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    min-height: 4.6rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.88);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-help-grid a:hover,
.industry-more-grid a:hover,
.industry-hub-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
}

.industry-help-grid strong,
.industry-more-grid a span:last-child {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: -0.03em;
}

.industry-page .consultation-banner {
    margin-bottom: 3rem;
}

.industry-page .consultation-banner h2 {
    max-width: 16ch;
    margin: 0.7rem 0 0;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.industry-more h2,
.industry-hub-card h2 {
    margin: 0 0 1rem;
    max-width: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    letter-spacing: -0.04em;
}

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

.industry-hub-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.industry-hub-card {
    display: grid;
    align-content: start;
    gap: 0.85rem;
    min-height: 16rem;
    padding: 1.5rem 1.45rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 252, 247, 0.9);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-hub-card h2 {
    margin: 0;
    font-size: 1.28rem;
    line-height: 1.2;
}

.industry-hub-card p {
    margin: 0;
    color: var(--muted);
}

.industry-hub-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
}

.sector-index a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sector-index a .bi {
    color: #8b7400;
}

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

.growth-tools-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.growth-tools-grid.home-tools {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-tools {
    margin: 0 0 1.25rem;
}

.home-tools .growth-tool-card a {
    margin-top: auto;
}

.home-automation-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.6rem;
    padding: 1.5rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #1f1d1a, #141312);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.home-automation-card .eyebrow {
    color: var(--yellow);
}

.home-automation-card h3 {
    margin: 0.35rem 0 0.55rem;
    max-width: 18ch;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.home-automation-card p {
    margin: 0;
    max-width: 38rem;
    color: rgba(255, 255, 255, 0.78);
}

.home-automation-card .button {
    flex: 0 0 auto;
}

.growth-tool-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.growth-tool-card:hover {
    transform: translateY(-3px);
    border-color: rgba(23, 22, 20, 0.16);
    box-shadow: var(--shadow-lift);
}

.growth-tool-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.35rem;
}

.growth-tool-name {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8b7400;
}

.growth-tool-card .outcome-list {
    margin-top: 1rem;
    flex: 1;
}

.growth-tool-card a,
.tool-result-panel a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1.15rem;
    color: var(--charcoal);
    font-weight: 600;
    border-bottom: 1px solid var(--yellow);
}

.automation-band {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
    gap: 2.5rem;
    align-items: start;
}

.automation-band h2,
.automation-detail h2 {
    max-width: 16ch;
}

.automation-message {
    margin: 1.1rem 0 1.4rem;
    max-width: 38rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.automation-scenarios {
    display: grid;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.automation-scenarios li {
    display: grid;
    grid-template-columns: 1.4rem minmax(0, 1fr);
    gap: 0.7rem;
    align-items: start;
}

.automation-scenarios .bi {
    margin-top: 0.15rem;
    color: var(--yellow);
}

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

.growth-process article {
    min-height: 9rem;
    padding: 1.25rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.9);
}

.growth-process span {
    display: block;
    margin-bottom: 0.85rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #8b7400;
}

.growth-process h3 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
    line-height: 1.25;
}

.tool-page {
    padding: 2.4rem 0 4.5rem;
}

.tool-layout,
.automation-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 3rem;
}

.tool-copy .growth-tool-name {
    margin-bottom: 0.75rem;
}

.tool-result-panel .framework-title {
    text-align: left;
    color: #8b7400;
}

.consult-cta {
    display: grid;
    gap: 0.85rem;
    justify-items: start;
}

.consultation-banner .button-link {
    justify-self: start;
}

.consultation-banner.growth-final-cta {
    grid-template-columns: minmax(0, 1.4fr) auto;
}

.section-dark .automation-scenarios li {
    color: rgba(255, 255, 255, 0.82);
}

.section-calculator {
    padding: 4.5rem 0 4.25rem;
}

.value-calculator {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
    gap: 1.5rem;
    align-items: stretch;
}

.value-calculator-form,
.value-calculator-stage {
    padding: 1.6rem 1.55rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: rgba(255, 252, 247, 0.9);
    box-shadow: var(--shadow-soft);
}

.value-calculator-stage {
    background: linear-gradient(180deg, #1f1d1a, #141312);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.08);
    min-height: 22rem;
}

.value-calculator-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.value-calculator-form label {
    display: grid;
    gap: 0.4rem;
}

.value-calculator-form label span {
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.35;
}

.value-input-prefix {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
}

.value-input-prefix span {
    display: grid;
    place-items: center;
    min-height: 3.2rem;
    padding: 0 0.85rem;
    background: rgba(23, 22, 20, 0.05);
    border: 1px solid rgba(23, 22, 20, 0.14);
    border-right: 0;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-weight: 600;
}

.value-input-prefix .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.value-input-prefix:has(input + span) {
    grid-template-columns: minmax(0, 1fr) auto;
}

.value-input-prefix:has(input + span) span {
    border: 1px solid rgba(23, 22, 20, 0.14);
    border-left: 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.value-input-prefix:has(input + span) .form-control {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.value-calculator-form .button:disabled {
    opacity: 0.65;
    transform: none;
    cursor: wait;
}

.value-calculator-stage .eyebrow {
    color: var(--yellow);
}

.value-idle p,
.value-result-note,
.value-loading-step {
    color: rgba(255, 255, 255, 0.78);
}

.value-progress {
    height: 0.45rem;
    margin: 1.1rem 0 0.45rem;
    overflow: hidden;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.08);
}

.value-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--yellow);
    transition: width 0.45s ease;
}

.value-progress-label {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.55);
}

.value-log {
    display: grid;
    gap: 0.45rem;
    max-height: 9.5rem;
    margin: 0;
    padding: 0.9rem 1rem;
    overflow: auto;
    list-style: none;
    border-radius: var(--radius-md);
    background: rgba(0, 0, 0, 0.22);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 252, 247, 0.82);
}

.value-log li::before {
    content: '> ';
    color: var(--yellow);
}

.value-result-kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.value-result-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.55rem;
    margin: 0.35rem 0 1.2rem;
}

.value-result-hero strong {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    letter-spacing: -0.06em;
    line-height: 0.9;
    color: var(--yellow);
}

.value-result-grid {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.value-result-grid div {
    padding: 0.9rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
}

.value-result-grid strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.04em;
}

.value-result-grid span,
.value-result-hero span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.value-results .button {
    margin-top: 0.5rem;
}

.value-results .button-link {
    color: var(--white);
}

.calculator-page {
    padding: 2.4rem 0 4.5rem;
}

.calculator-page h1 {
    margin: 0 0 1.1rem;
    max-width: 16ch;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(2.1rem, 3.2vw, 3.15rem);
    letter-spacing: -0.06em;
    line-height: 0.98;
    text-wrap: balance;
}

.calculator-page .lead {
    max-width: 44rem;
    margin-bottom: 2rem;
}

.calculator-notes {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.calculator-notes article {
    padding: 1.5rem 1.55rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.9);
}

.calculator-notes h2 {
    max-width: none;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.calculator-notes .button {
    margin-top: 1rem;
}

.form-alert {
    padding: 1rem 1.1rem;
    margin-bottom: 1.25rem;
    border-radius: var(--radius-sm);
}

.form-alert-success {
    background: rgba(43, 123, 53, 0.1);
    border: 1px solid rgba(43, 123, 53, 0.25);
}

.form-alert-error {
    background: rgba(160, 47, 36, 0.08);
    border: 1px solid rgba(160, 47, 36, 0.18);
}

.form-alert ul {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
}

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

.form-control,
.form-select,
textarea.form-control {
    min-height: 3.2rem;
    border-radius: var(--radius-sm);
    border-color: rgba(23, 22, 20, 0.14);
    background: rgba(255, 252, 247, 0.9);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--yellow);
    box-shadow: 0 0 0 0.16rem rgba(242, 197, 0, 0.2);
}

.form-check-input {
    border-radius: 0.35rem;
}

.consent-check {
    display: flex;
    gap: 0.75rem;
    padding-left: 0;
}

.consent-check .form-check-input {
    margin-left: 0;
    margin-top: 0.35rem;
}

.turnstile-wrap {
    margin-top: 0.35rem;
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 2.6rem 2.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0%, rgba(242, 197, 0, 0.18), transparent 38%),
        linear-gradient(180deg, #24221e, #191816);
}

.footer-cta-copy {
    max-width: 40rem;
}

.footer-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.footer-cta-actions .button-outline-light:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.footer-cta .eyebrow {
    color: rgba(242, 197, 0, 0.9);
}

.footer-cta-title {
    color: var(--white);
}

.footer-cta-note {
    max-width: 34rem;
    margin: 0.9rem 0 0;
    color: rgba(255, 255, 255, 0.68);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(16rem, 1.2fr) repeat(4, minmax(7.5rem, 1fr));
    gap: 2.4rem 2rem;
    padding: 3rem 0 2.4rem;
}

.footer-brand-block {
    max-width: 24rem;
}

.footer-nav-title {
    margin: 0 0 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(242, 197, 0, 0.86);
}

.footer-nav a {
    display: block;
    width: fit-content;
    padding: 0.28rem 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-contact-note {
    max-width: 16rem;
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    line-height: 1.55;
}

.footer-note {
    max-width: 22rem;
    margin-top: 1.1rem;
    color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
    width: 14.5rem;
    filter: invert(1) brightness(2.2) grayscale(1);
    opacity: 0.94;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0 2.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.88rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.cookie-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 60;
    max-width: 42rem;
    margin: 0 auto;
    padding: 1.15rem 1.25rem 1.2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.97);
    box-shadow: var(--shadow-lift);
}

.cookie-banner-inner {
    display: grid;
    gap: 1rem;
}

.cookie-banner-title {
    margin: 0 0 0.35rem;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.cookie-banner-copy p:last-child {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.cookie-banner-actions .button {
    min-height: 2.55rem;
    padding: 0.55rem 1.1rem;
}

.cookie-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: end center;
    padding: 1rem;
    background: rgba(23, 22, 20, 0.42);
}

.cookie-overlay[hidden] {
    display: none;
}

.cookie-dialog {
    width: min(36rem, 100%);
    max-height: min(92vh, 40rem);
    overflow: auto;
    padding: 1.4rem 1.35rem 1.45rem;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-lift);
}

.cookie-dialog-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.7rem;
}

.cookie-dialog-head h2 {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.04em;
}

.cookie-dialog-close {
    width: 2.2rem;
    height: 2.2rem;
    border: 0;
    border-radius: 50%;
    background: var(--warm-white);
    color: var(--charcoal);
    cursor: pointer;
}

.cookie-dialog-lead {
    margin: 0 0 1.15rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.cookie-groups {
    display: grid;
    gap: 0.75rem;
}

.cookie-group {
    padding: 0.95rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--warm-white);
}

.cookie-group-idle {
    opacity: 0.78;
}

.cookie-group-top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.9rem;
    align-items: start;
}

.cookie-group h3 {
    margin: 0 0 0.3rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
}

.cookie-group p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.cookie-state {
    padding: 0.18rem 0.55rem;
    border-radius: var(--radius-pill);
    background: rgba(23, 22, 20, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.cookie-switch-ui {
    width: 2.5rem;
    height: 1.4rem;
    border-radius: var(--radius-pill);
    background: rgba(23, 22, 20, 0.18);
    transition: background 0.15s ease;
}

.cookie-switch-ui::after {
    content: '';
    display: block;
    width: 1.05rem;
    height: 1.05rem;
    margin: 0.175rem;
    border-radius: 50%;
    background: #fff;
    transition: transform 0.15s ease;
}

.cookie-switch input:checked + .cookie-switch-ui {
    background: var(--charcoal);
}

.cookie-switch input:checked + .cookie-switch-ui::after {
    transform: translateX(1.1rem);
}

.cookie-switch input:focus-visible + .cookie-switch-ui {
    outline: 2px solid var(--yellow);
    outline-offset: 2px;
}

.cookie-dialog-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.1rem;
    margin-top: 1.2rem;
}

.hc-launcher {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 50;
    width: 17.75rem;
    animation: hcLauncherIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both, hcLauncherFloat 3.4s ease-in-out 0.75s infinite;
}

.hc-launcher[hidden],
.hc-launcher.is-parked {
    display: none;
}

.hc-launcher:hover,
.hc-launcher:focus-within {
    animation-play-state: paused;
}

.hc-launcher-glow,
.hc-launcher-ring {
    position: absolute;
    pointer-events: none;
}

.hc-launcher-glow {
    inset: 0.35rem 0.45rem 0.7rem;
    border-radius: 2rem;
    background: rgba(242, 197, 0, 0.38);
    filter: blur(18px);
    animation: hcLauncherGlow 2.6s ease-in-out infinite;
}

.hc-launcher-ring {
    inset: -0.15rem;
    border: 2px solid rgba(242, 197, 0, 0.55);
    border-radius: 2.05rem 2.05rem 0.7rem 2.05rem;
    animation: hcLauncherRipple 2.5s ease-out infinite;
}

.hc-launcher-ring-two {
    animation-delay: 1.15s;
}

.hc-launcher-close {
    position: absolute;
    top: -0.45rem;
    right: -0.45rem;
    z-index: 2;
    width: 1.7rem;
    height: 1.7rem;
    border: 0;
    border-radius: 50%;
    background: var(--white);
    color: var(--charcoal);
    box-shadow: 0 6px 16px rgba(23, 22, 20, 0.16);
    cursor: pointer;
}

.hc-launcher-card {
    position: relative;
    display: grid;
    gap: 0.28rem;
    padding: 1.05rem 1.15rem 1.15rem;
    border-radius: 1.85rem 1.85rem 0.45rem 1.85rem;
    background:
        radial-gradient(circle at 86% 18%, rgba(242, 197, 0, 0.22), transparent 34%),
        var(--charcoal);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(23, 22, 20, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hc-launcher-card::after {
    content: '';
    position: absolute;
    right: 0.85rem;
    bottom: -0.42rem;
    width: 0.85rem;
    height: 0.85rem;
    background: var(--charcoal);
    border-radius: 0 0 0.18rem 0;
    transform: rotate(42deg);
}

.hc-launcher-card:hover,
.hc-launcher-card:focus-visible {
    color: var(--white);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 24px 48px rgba(23, 22, 20, 0.36);
}

.hc-launcher-badge {
    width: fit-content;
    padding: 0.14rem 0.48rem;
    border-radius: var(--radius-pill);
    background: var(--yellow);
    color: var(--charcoal);
    font-family: 'Manrope', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: heroBadgePulse 2.4s ease-out infinite;
}

.hc-launcher-card strong {
    font-family: 'Manrope', sans-serif;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hc-launcher-card > span {
    color: rgba(255, 252, 247, 0.72);
    font-size: 0.86rem;
    line-height: 1.4;
}

.hc-launcher-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.35rem;
    color: var(--yellow);
    font-size: 0.88rem;
    font-weight: 600;
}

.hc-launcher-cta .bi {
    animation: hcLauncherNudge 1.4s ease-in-out infinite;
}

@keyframes hcLauncherIn {
    from {
        opacity: 0;
        transform: translateY(1.4rem) scale(0.82);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hcLauncherFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-0.7rem);
    }
}

@keyframes hcLauncherRipple {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    100% {
        transform: scale(1.16);
        opacity: 0;
    }
}

@keyframes hcLauncherGlow {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(0.96);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.06);
    }
}

@keyframes hcLauncherNudge {
    0%,
    100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(0.22rem);
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (min-width: 720px) {
    .cookie-overlay {
        place-items: center;
    }
}

.footer-legal a,
.footer-legal button {
    color: rgba(255, 255, 255, 0.52);
}

.footer-legal button {
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    cursor: pointer;
}

.footer-legal a:hover,
.footer-legal button:hover {
    color: var(--white);
}

.not-found {
    max-width: 34rem;
}

@media (max-width: 1199.98px) {
    .hero-grid,
    .consultation-banner,
    .footer-cta,
    .footer-main,
    .about-grid,
    .automation-band,
    .tool-layout,
    .automation-detail,
    .value-calculator,
    .calculator-notes {
        grid-template-columns: 1fr;
    }

    .footer-cta-actions {
        justify-content: flex-start;
    }

    .about-portrait {
        position: static;
        max-width: 22rem;
    }

    .services-grid,
    .approach-grid,
    .article-grid,
    .growth-tools-grid,
    .growth-tools-grid.compact,
    .growth-tools-grid.home-tools {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .framework-grid,
    .outcome-points,
    .industry-grid,
    .industry-focus,
    .industry-help-grid,
    .growth-benefits,
    .growth-process {
        grid-template-columns: 1fr 1fr;
    }

    .services-head {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .services-banner {
        min-height: 22rem;
        padding: 2.4rem 2rem 2.2rem;
        align-items: center;
    }

    .services-banner-image {
        object-position: 62% center;
    }

    .services-banner::after {
        background:
            linear-gradient(180deg, rgba(17, 15, 13, 0.72) 0%, rgba(17, 15, 13, 0.58) 100%),
            linear-gradient(90deg, rgba(17, 15, 13, 0.4), transparent 80%);
    }

    .services-subhead {
        grid-template-columns: 1fr;
    }

    .hero-image {
        margin: 0 auto;
    }
}

@media (max-width: 991.98px) {
    .desktop-cta {
        display: none;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        left: 1rem;
        right: 1rem;
        top: calc(100% + 0.75rem);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: rgba(255, 252, 247, 0.98);
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lift);
    }

    .site-nav.is-open {
        display: flex;
    }

    .split-head,
    .form-actions,
    .footer-bottom {
        align-items: start;
        flex-direction: column;
    }

    .hero-grid,
    .two-column,
    .detail-grid,
    .contact-layout,
    .article-grid-large .article-card {
        grid-template-columns: 1fr;
    }

    .contact-outcomes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-layout .form-card {
        position: static;
    }

    .article-grid-large .article-media {
        min-height: 0;
        aspect-ratio: 16 / 9;
        height: auto;
    }

    .hero-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .site-shell {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .header-row {
        min-height: 4.25rem;
    }

    .promo-bar-full {
        display: none;
    }

    .promo-bar-short {
        display: inline;
    }

    .promo-bar-cta {
        margin-left: auto;
    }

    .brand {
        width: 12.25rem;
    }

    .page-hero,
    .section {
        padding: 3.5rem 0;
    }

    .hero {
        padding: 1.2rem 0 1.45rem;
    }

    .hero-motion {
        opacity: 0.28;
    }

    .motion-ring-one {
        left: -9rem;
        top: 8rem;
    }

    .motion-ring-two {
        right: -12rem;
        bottom: 4rem;
    }

    .motion-line-one,
    .motion-line-two {
        display: none;
    }

    .hero-grid {
        min-height: auto;
        gap: 1.15rem;
        padding: 0;
    }

    .hero-kicker,
    .hero .trust-line,
    .hero-hc-chip {
        display: none;
    }

    .hero-copy h1 {
        font-size: 1.88rem;
        max-width: none;
        line-height: 1.08;
        letter-spacing: -0.05em;
    }

    .hero-copy .lead {
        margin-top: 0.6rem;
        font-size: 0.92rem;
        line-height: 1.5;
        max-width: none;
    }

    .hero-badges {
        margin: 0.8rem 0 0;
        gap: 0.35rem;
    }

    .hero-badge {
        padding: 0.26rem 0.55rem;
        font-size: 0.7rem;
    }

    .hero-actions {
        width: 100%;
        margin: 0.95rem 0 0;
        gap: 0.5rem;
    }

    .hero-actions .button {
        width: 100%;
        justify-content: center;
        min-height: 2.7rem;
        padding: 0.7rem 1.1rem;
    }

    .hero-actions .cta-badge {
        display: none;
    }

    .hero-image {
        width: 100%;
        margin: 0;
    }

    .hero-image img {
        max-height: 9.5rem;
        object-fit: cover;
        object-position: center;
    }

    .contact-hero {
        margin-bottom: 1.6rem;
        padding: 1.35rem 0 1.5rem;
    }

    .page-hero h1,
    .contact-hero h1,
    .section h2,
    .footer-cta h2 {
        font-size: 1.8rem;
        max-width: 100%;
    }

    .hero-actions,
    .trust-line {
        flex-direction: column;
        align-items: start;
    }

    .hero-hc-chip {
        position: static;
        max-width: none;
        margin-top: 0.9rem;
    }

    .services-grid,
    .services-grid.compact,
    .approach-grid,
    .article-grid,
    .framework-grid,
    .outcome-points,
    .industry-grid,
    .sector-index,
    .growth-benefits,
    .growth-tools-grid,
    .growth-tools-grid.compact,
    .growth-tools-grid.home-tools,
    .growth-process {
        grid-template-columns: 1fr;
    }

    .industry-focus,
    .industry-help-grid,
    .industry-more-grid,
    .industry-hub-grid,
    .contact-outcomes,
    .contact-proof {
        grid-template-columns: 1fr;
    }

    .industry-editorial article {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }

    .value-calculator-fields {
        grid-template-columns: 1fr;
    }

    .home-automation-card {
        flex-direction: column;
        align-items: start;
    }

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

    .section-services {
        padding: 3.25rem 0;
    }

    .services-banner {
        min-height: 20rem;
        padding: 2rem 1.4rem 1.8rem;
        border-radius: var(--radius-md);
    }

    .service-card-refined {
        min-height: auto;
    }

    .section-outcomes {
        padding: 3.4rem 0;
    }

    .framework {
        padding: 1.4rem 1.1rem 1.2rem;
        border-radius: var(--radius-md);
    }

    .outcome-points > article,
    .framework-grid div {
        min-height: auto;
    }

    .framework-grid div:not(:last-child)::after {
        content: none;
    }

    .stat-card {
        min-height: 8.5rem;
        padding: 1rem 0.55rem 0.95rem;
        gap: 0.2rem;
    }

    .stat-icon {
        width: 2.15rem;
        height: 2.15rem;
        margin-bottom: 0.35rem;
    }

    .stat-card strong {
        font-size: 1.55rem;
    }

    .stat-card span {
        font-size: 0.78rem;
    }

    .stats-panel {
        padding: 1.2rem 0.85rem 1.05rem;
    }

    .stats-kicker {
        margin-bottom: 0.95rem;
        font-size: 0.64rem;
    }

    .section-impact {
        padding: 2.75rem 0 3.1rem;
    }

    .impact-intro {
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .impact-intro h2 {
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        font-size: 1.55rem;
    }

    .impact-intro p {
        margin-top: 0.65rem;
        font-size: 0.94rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .impact-card,
    .impact-card:nth-child(4),
    .impact-card:nth-child(5) {
        grid-column: auto;
        padding: 1.2rem 1.15rem 1.15rem;
    }

    .impact-value {
        font-size: 2.35rem;
        margin-bottom: 0.55rem;
    }

    .impact-value::after {
        margin-top: 0.6rem;
    }

    .impact-note {
        margin-top: 1.25rem;
        text-align: left;
        font-size: 0.78rem;
    }

    .impact-cta {
        align-items: stretch;
        margin-top: 1.65rem;
        text-align: left;
    }

    .impact-cta p {
        font-size: 1.05rem;
    }

    .impact-cta .button {
        width: 100%;
        justify-content: center;
    }

    .footer-cta {
        padding: 1.8rem 1.35rem;
    }

    .site-footer {
        padding-top: 2.4rem;
    }

    .footer-main {
        gap: 1.8rem;
        padding: 2.2rem 0 1.8rem;
    }

    .footer-brand {
        width: 12.5rem;
    }

    .cookie-banner {
        right: 0.75rem;
        bottom: 0.75rem;
        left: 0.75rem;
        padding: 1rem 1rem 1.05rem;
    }

    .cookie-banner-actions,
    .cookie-dialog-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner-actions .button,
    .cookie-dialog-actions .button-dark {
        width: 100%;
        justify-content: center;
    }

    .hc-launcher {
        right: 0.75rem;
        bottom: 0.75rem;
        width: min(16.5rem, calc(100vw - 1.5rem));
    }
}

@media (prefers-reduced-motion: reduce) {
    .motion-ring,
    .motion-line,
    .motion-dot,
    .hero-badge-accent,
    .hc-launcher-badge,
    .hc-launcher-glow,
    .hc-launcher-ring,
    .hc-launcher-cta .bi,
    .cookie-switch-ui,
    .cookie-switch-ui::after {
        animation: none;
        transition: none;
    }

    .hc-launcher,
    .hc-launcher-card,
    .hc-launcher-card:hover {
        animation: none;
        transform: none;
    }
}
