:root {
    --ich-bg: #f7f8f6;
    --ich-surface: #ffffff;
    --ich-surface-soft: #eef1ee;
    --ich-text: #16201d;
    --ich-muted: #5c6862;
    --ich-border: rgba(22, 32, 29, 0.12);
    --ich-dark: #111917;
    --ich-dark-soft: #17231f;
    --ich-accent: #37d6a3;
    --ich-accent-dark: #10a977;
    --ich-silver: #adb5b1;
    --ich-gold: #d3ae55;
    --ich-platinum: #c9d8df;
    --ich-radius-sm: 12px;
    --ich-radius-md: 22px;
    --ich-radius-lg: 34px;
    --ich-shadow: 0 20px 60px rgba(17, 25, 23, 0.08);
    --ich-max: 1180px;
    --ich-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--ich-bg);
    color: var(--ich-text);
    font-family: var(--ich-font);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 1rem;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

h1 {
    font-size: clamp(3rem, 8vw, 6.9rem);
    max-width: 13ch;
}

h2 {
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    max-width: 12ch;
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

ul {
    margin: 0;
    padding: 0;
}

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

.narrow {
    width: min(100% - 40px, 880px);
}

.centered {
    text-align: center;
}

.centered h1,
.centered h2,
.centered p,
.narrow h1,
.narrow h2 {
    margin-inline: auto;
}

.section {
    padding: clamp(72px, 9vw, 132px) 0;
}

.section--hero {
    padding-top: clamp(96px, 14vw, 184px);
    padding-bottom: clamp(84px, 11vw, 152px);
    position: relative;
    overflow: hidden;
}

.section--hero::before {
    content: "";
    position: absolute;
    inset: -30% -20% auto auto;
    width: min(70vw, 760px);
    height: min(70vw, 760px);
    border-radius: 999px;
    background: radial-gradient(circle, rgba(55, 214, 163, 0.28), rgba(55, 214, 163, 0));
    pointer-events: none;
}

.section--muted {
    background: var(--ich-surface-soft);
}

.section--dark {
    background: var(--ich-dark);
    color: #f5fbf8;
}

.section--cta {
    background: linear-gradient(135deg, var(--ich-dark), #20332d);
    color: #f5fbf8;
}

.site-main {
    overflow-x: clip;
}

:is(h1, h2, h3, h4, p, a, strong, span, li) {
    overflow-wrap: anywhere;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 248, 246, 0.86);
    border-bottom: 1px solid var(--ich-border);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    font-weight: 800;
    letter-spacing: -0.045em;
    white-space: nowrap;
}

.site-brand__name {
    font-size: 1.45rem;
}

.site-brand__suffix {
    font-size: 0.88rem;
    color: var(--ich-muted);
}

.custom-logo-link img {
    max-height: 52px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.95rem;
    color: var(--ich-muted);
}

.main-nav__list a {
    transition: color 160ms ease;
}

.main-nav__list a:hover,
.main-nav__list .current-menu-item > a {
    color: var(--ich-text);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ich-border);
    border-radius: 999px;
    background: var(--ich-surface);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span:not(.screen-reader-text) {
    width: 18px;
    height: 2px;
    background: var(--ich-text);
    border-radius: 99px;
    transition: transform 160ms ease, opacity 160ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.button-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button-row--center {
    justify-content: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 750;
    line-height: 1;
    border: 1px solid transparent;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.9rem;
    background: var(--ich-text);
    color: #fff;
}

.button--primary {
    background: var(--ich-text);
    color: #fff;
}

.button--primary:hover {
    background: var(--ich-accent-dark);
}

.button--secondary {
    background: transparent;
    color: var(--ich-text);
    border-color: var(--ich-border);
}

.section--dark .button--secondary,
.section--cta .button--secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ich-accent-dark);
    font-weight: 750;
}

.text-link::after {
    content: "→";
    transition: transform 160ms ease;
}

.text-link:hover::after {
    transform: translateX(3px);
}

.eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--ich-accent-dark);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.section--dark .eyebrow,
.section--cta .eyebrow {
    color: var(--ich-accent);
}

.home-hero,
.services-hero,
.compact-hero {
    background: linear-gradient(180deg, #f7f8f6, #eef1ee);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    align-items: center;
    gap: clamp(36px, 7vw, 92px);
}

.hero-copy p,
.services-hero p,
.compact-hero p {
    max-width: 680px;
    color: var(--ich-muted);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.hero-panel {
    position: relative;
    display: grid;
    gap: 16px;
}

.signal-card {
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--ich-border);
    border-radius: var(--ich-radius-md);
    padding: 24px;
    box-shadow: var(--ich-shadow);
    backdrop-filter: blur(14px);
}

.signal-card--main {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    background: var(--ich-dark);
    color: #fff;
}

.signal-card span {
    display: block;
    color: var(--ich-accent-dark);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 850;
    margin-bottom: 12px;
}

.signal-card--main span {
    color: var(--ich-accent);
}

.signal-card strong {
    display: block;
    font-size: clamp(1.45rem, 3vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.split-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(32px, 7vw, 92px);
    align-items: start;
}

.split-intro p {
    color: var(--ich-muted);
    font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.section-heading {
    display: grid;
    gap: 8px;
    margin-bottom: clamp(32px, 5vw, 56px);
}

.section-heading h2,
.section-heading p {
    max-width: 780px;
}

.section-heading p {
    color: var(--ich-muted);
    font-size: 1.12rem;
}

.section--dark .section-heading p {
    color: rgba(245, 251, 248, 0.72);
}

.card-grid {
    display: grid;
    gap: 20px;
}

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

.service-card,
.package-card,
.contact-card,
.post-card {
    background: var(--ich-surface);
    border: 1px solid var(--ich-border);
    border-radius: var(--ich-radius-md);
    padding: clamp(24px, 3vw, 36px);
    box-shadow: 0 14px 40px rgba(17, 25, 23, 0.045);
}

.service-card--large {
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.service-card--large .text-link {
    margin-top: auto;
}

.service-card__number {
    display: inline-flex;
    color: var(--ich-accent-dark);
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    margin-bottom: 42px;
}

.service-card p,
.package-card p,
.contact-card p {
    color: var(--ich-muted);
}

.package-section {
    scroll-margin-top: 86px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.package-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: var(--ich-silver);
}

.package-card--gold::before {
    background: var(--ich-gold);
}

.package-card--platinum::before {
    background: var(--ich-platinum);
}

.section--dark .package-card {
    background: var(--ich-dark-soft);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f5fbf8;
}

.section--dark .package-card p,
.section--dark .package-card__ideal,
.section--dark .package-card__note {
    color: rgba(245, 251, 248, 0.72);
}

.package-card__header {
    margin-bottom: 22px;
}

.check-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: var(--ich-muted);
}

.section--dark .check-list li {
    color: rgba(245, 251, 248, 0.8);
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 10px;
    height: 10px;
    border-radius: 99px;
    background: var(--ich-accent);
}

.package-card__ideal,
.package-card__note {
    font-size: 0.92rem;
}

.package-card .text-link {
    margin-top: auto;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.module-pill {
    background: var(--ich-surface);
    border: 1px solid var(--ich-border);
    border-radius: 999px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.module-pill strong {
    font-size: 0.92rem;
}

.module-pill span {
    color: var(--ich-muted);
    font-size: 0.82rem;
    white-space: nowrap;
}

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

.steps article {
    border-top: 1px solid var(--ich-border);
    padding-top: 20px;
}

.steps span {
    display: inline-block;
    color: var(--ich-accent-dark);
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    margin-bottom: 24px;
}

.steps h3 {
    font-size: 1.2rem;
}

.steps p {
    color: var(--ich-muted);
    font-size: 0.94rem;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: var(--ich-dark);
    color: #f5fbf8;
    border-radius: var(--ich-radius-lg);
    padding: clamp(28px, 5vw, 56px);
}

.cta-band h2 {
    max-width: 760px;
}

.cta-band p {
    color: rgba(245, 251, 248, 0.72);
    max-width: 760px;
}

.cta-band .button {
    flex: 0 0 auto;
    background: var(--ich-accent);
    color: var(--ich-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    gap: 24px;
}

.contact-card--muted {
    background: var(--ich-surface-soft);
}

.form-placeholder {
    margin-top: 28px;
    padding: 24px;
    border: 1px dashed var(--ich-border);
    border-radius: var(--ich-radius-sm);
    background: rgba(255, 255, 255, 0.5);
}

.form-placeholder code {
    display: block;
    padding: 12px;
    overflow-x: auto;
    background: var(--ich-dark);
    color: #fff;
    border-radius: 8px;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 12px;
    color: var(--ich-muted);
}

.content-stack {
    display: grid;
    gap: 20px;
}

.prose {
    font-size: 1.1rem;
}

.prose a {
    color: var(--ich-accent-dark);
    font-weight: 750;
}

.site-footer {
    background: var(--ich-dark);
    color: #f5fbf8;
    padding: 72px 0 28px;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 36px;
}

.site-footer h2 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 251, 248, 0.54);
    margin-bottom: 18px;
}

.site-footer p,
.footer-list a {
    color: rgba(245, 251, 248, 0.68);
}

.site-brand--footer .site-brand__suffix {
    color: var(--ich-accent);
}

.footer-list {
    list-style: none;
    display: grid;
    gap: 10px;
}

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

.site-footer__bottom {
    margin-top: 54px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(245, 251, 248, 0.52);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .hero-grid,
    .split-intro,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .card-grid--three,
    .package-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 760px) {
    .container,
    .narrow {
        width: min(100% - 28px, var(--ich-max));
    }

    h1 {
        font-size: clamp(2.55rem, 13vw, 4.8rem);
    }

    .site-header__inner {
        min-height: 68px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: fixed;
        inset: 68px 0 auto;
        display: grid;
        align-items: start;
        gap: 24px;
        padding: 24px 20px 36px;
        background: rgba(247, 248, 246, 0.98);
        border-bottom: 1px solid var(--ich-border);
        transform: translateY(-110%);
        transition: transform 200ms ease;
        z-index: 49;
    }

    .nav-open .main-nav {
        transform: translateY(0);
    }

    .main-nav__list {
        display: grid;
        gap: 18px;
        font-size: 1.15rem;
    }

    .main-nav .button {
        justify-self: start;
    }

    .card-grid--three,
    .package-grid,
    .module-grid,
    .steps,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .module-pill {
        border-radius: var(--ich-radius-sm);
        align-items: flex-start;
        flex-direction: column;
    }

    .module-pill span {
        white-space: normal;
    }

    .service-card--large {
        min-height: 0;
    }

    .section {
        padding: 64px 0;
    }

    .section--hero {
        padding-top: 88px;
    }
}

/* v0.3 Platform extensions */
.intro-stack {
    display: grid;
    gap: 16px;
}

.intro-stack p {
    color: var(--ich-muted);
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.section--dark .intro-stack p,
.split-intro--dark p {
    color: rgba(245, 251, 248, 0.74);
}

.hero-panel--platform .signal-card--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hero-panel--platform .signal-card--split > div {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: var(--ich-radius-sm);
    background: rgba(238, 241, 238, 0.86);
    padding: 18px;
}

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

.layer-card,
.pillar-card,
.decision-card {
    background: var(--ich-surface);
    border: 1px solid var(--ich-border);
    border-radius: var(--ich-radius-md);
    padding: clamp(22px, 3vw, 34px);
    box-shadow: 0 14px 40px rgba(17, 25, 23, 0.045);
}

.layer-card span {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--ich-accent-dark);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.layer-card p,
.pillar-card p,
.decision-card p {
    color: var(--ich-muted);
}

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

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

.section--dark .decision-card {
    background: var(--ich-dark-soft);
    border-color: rgba(255, 255, 255, 0.12);
    color: #f5fbf8;
}

.section--dark .decision-card p {
    color: rgba(245, 251, 248, 0.74);
}

.section--quick-choice {
    padding-bottom: 0;
}

.package-card--featured {
    border-color: rgba(55, 214, 163, 0.65);
    box-shadow: 0 22px 70px rgba(55, 214, 163, 0.13);
    transform: translateY(-8px);
}

.package-card__badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--ich-accent);
    color: var(--ich-dark);
    font-size: 0.72rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.package-card--featured .package-card__header {
    padding-right: 96px;
}

@media (max-width: 1024px) {
    .layer-grid,
    .pillar-grid,
    .decision-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .hero-panel--platform .signal-card--split,
    .layer-grid,
    .pillar-grid,
    .decision-grid {
        grid-template-columns: 1fr;
    }

    .package-card--featured {
        transform: none;
    }

    .package-card--featured .package-card__header {
        padding-right: 0;
        padding-top: 34px;
    }
}


/* v0.4 Mobile stability pass */
@media (max-width: 760px) {
    .container,
    .narrow {
        width: min(100% - 28px, var(--ich-max));
    }

    .site-header__inner {
        min-height: 64px;
        gap: 12px;
    }

    .site-brand {
        min-width: 0;
        max-width: calc(100vw - 86px);
        overflow: hidden;
    }

    .site-brand__name {
        font-size: 1.18rem;
    }

    .site-brand__suffix {
        font-size: 0.74rem;
    }

    .custom-logo-link img {
        max-width: 188px;
        max-height: 42px;
        object-fit: contain;
    }

    .nav-toggle {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: auto;
        max-height: calc(100dvh - 64px);
        overflow-y: auto;
        display: grid;
        gap: 18px;
        padding: 22px 20px 28px;
        background: rgba(247, 248, 246, 0.99);
        border-bottom: 1px solid var(--ich-border);
        box-shadow: 0 22px 54px rgba(17, 25, 23, 0.16);
        transform: translate3d(0, -120%, 0);
        transition: transform 220ms ease;
        z-index: 49;
    }

    .nav-open .main-nav {
        transform: translate3d(0, 0, 0);
    }

    .main-nav__list {
        display: grid;
        gap: 6px;
        font-size: 1.1rem;
    }

    .main-nav__list a {
        display: block;
        padding: 10px 0;
    }

    .main-nav .button {
        width: 100%;
        justify-self: stretch;
    }

    h1 {
        max-width: none;
        font-size: clamp(2.05rem, 10.5vw, 3.2rem);
        line-height: 1.02;
        letter-spacing: -0.052em;
    }

    h2 {
        max-width: none;
        font-size: clamp(1.85rem, 8.5vw, 2.7rem);
        line-height: 1.05;
    }

    h3 {
        font-size: clamp(1.22rem, 5.2vw, 1.55rem);
    }

    .section-heading h2,
    .section-heading p,
    .hero-copy p,
    .services-hero p,
    .compact-hero p {
        max-width: none;
    }

    .hero-copy p,
    .services-hero p,
    .compact-hero p,
    .split-intro p,
    .intro-stack p,
    .section-heading p {
        font-size: 1.02rem;
    }

    .section {
        padding: 56px 0;
    }

    .section--hero {
        padding-top: 72px;
        padding-bottom: 58px;
    }

    .section--hero::before {
        width: 92vw;
        height: 92vw;
        opacity: 0.7;
    }

    .hero-grid,
    .split-intro,
    .contact-grid,
    .card-grid--three,
    .package-grid,
    .module-grid,
    .steps,
    .site-footer__grid,
    .layer-grid,
    .pillar-grid,
    .decision-grid,
    .hero-panel--platform .signal-card--split {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-grid,
    .split-intro {
        gap: 26px;
    }

    .hero-panel {
        gap: 12px;
        margin-top: 8px;
    }

    .signal-card,
    .service-card,
    .package-card,
    .contact-card,
    .post-card,
    .layer-card,
    .pillar-card,
    .decision-card {
        border-radius: 20px;
        padding: 22px;
    }

    .signal-card--main {
        min-height: 128px;
    }

    .hero-panel--platform .signal-card--split > div {
        min-height: 110px;
        padding: 16px;
    }

    .signal-card strong {
        font-size: clamp(1.25rem, 7vw, 1.7rem);
    }

    .service-card--large {
        min-height: 0;
    }

    .service-card__number {
        margin-bottom: 28px;
    }

    .button-row,
    .button-row--center {
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        gap: 10px;
        margin-top: 24px;
    }

    .button-row .button,
    .section--cta .button,
    .compact-hero .button,
    .services-hero .button,
    .home-hero .button {
        width: 100%;
    }

    .button {
        min-height: 48px;
        padding: 12px 18px;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
    }

    .package-card--featured {
        transform: none;
    }

    .package-card__badge {
        position: static;
        width: fit-content;
        margin-bottom: 14px;
    }

    .package-card--featured .package-card__header {
        padding-right: 0;
        padding-top: 0;
    }

    .check-list {
        gap: 9px;
    }

    .check-list li {
        padding-left: 22px;
    }

    .module-pill {
        border-radius: 18px;
        align-items: flex-start;
        flex-direction: column;
        padding: 16px;
    }

    .module-pill span {
        white-space: normal;
    }

    .steps {
        gap: 22px;
    }

    .steps article {
        padding-top: 18px;
    }

    .cta-band {
        border-radius: 22px;
        padding: 26px 20px;
    }

    .site-footer {
        padding-top: 54px;
    }
}

@media (max-width: 420px) {
    .container,
    .narrow {
        width: min(100% - 22px, var(--ich-max));
    }

    .main-nav {
        padding-left: 16px;
        padding-right: 16px;
    }

    .custom-logo-link img {
        max-width: 164px;
    }

    .site-brand__name {
        font-size: 1.08rem;
    }

    .site-brand__suffix {
        font-size: 0.7rem;
    }

    .signal-card,
    .service-card,
    .package-card,
    .contact-card,
    .post-card,
    .layer-card,
    .pillar-card,
    .decision-card {
        padding: 20px;
    }
}


/* v0.5 Contact Form 7 integration */
.contact-section {
    padding-top: clamp(56px, 7vw, 96px);
}

.contact-grid--form {
    align-items: start;
}

.contact-card--form h2,
.contact-sidebar h2 {
    max-width: 14ch;
}

.contact-form-shell {
    margin-top: 30px;
}

.contact-form-shell .wpcf7-form {
    display: grid;
    gap: 18px;
}

.contact-form-shell .wpcf7-form p {
    margin: 0;
}

.contact-form-shell label {
    display: grid;
    gap: 8px;
    color: var(--ich-text);
    font-weight: 760;
    font-size: 0.94rem;
}

.contact-form-shell input[type="text"],
.contact-form-shell input[type="email"],
.contact-form-shell input[type="tel"],
.contact-form-shell input[type="url"],
.contact-form-shell select,
.contact-form-shell textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--ich-border);
    border-radius: 16px;
    background: #fff;
    color: var(--ich-text);
    padding: 14px 16px;
    font: inherit;
    font-weight: 500;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form-shell textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-shell input:focus,
.contact-form-shell select:focus,
.contact-form-shell textarea:focus {
    border-color: rgba(55, 214, 163, 0.85);
    box-shadow: 0 0 0 4px rgba(55, 214, 163, 0.16);
}

.contact-form-shell input[type="submit"] {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 999px;
    background: var(--ich-text);
    color: #fff;
    padding: 0 24px;
    font: inherit;
    font-weight: 820;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.contact-form-shell input[type="submit"]:hover {
    background: var(--ich-accent-dark);
    transform: translateY(-1px);
}

.contact-form-shell .wpcf7-list-item {
    margin: 0;
}

.contact-form-shell .wpcf7-acceptance label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ich-muted);
    font-size: 0.9rem;
    font-weight: 520;
    line-height: 1.4;
}

.contact-form-shell input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 18px;
}

.contact-form-shell .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: #b3261e;
    font-size: 0.86rem;
    font-weight: 650;
}

.contact-form-shell .wpcf7-response-output {
    margin: 8px 0 0 !important;
    border-radius: 16px;
    padding: 14px 16px !important;
    border-color: var(--ich-border) !important;
    color: var(--ich-text);
}

.form-placeholder--active {
    color: var(--ich-muted);
}

.form-placeholder--active code {
    display: inline-block;
    padding: 2px 6px;
    background: rgba(17, 25, 23, 0.08);
    color: var(--ich-text);
    border-radius: 6px;
}

.contact-list--steps {
    margin-top: 24px;
}

.contact-list--steps li {
    display: grid;
    gap: 4px;
    padding: 18px 0;
    border-top: 1px solid var(--ich-border);
}

.contact-list--steps li:first-child {
    border-top: 0;
    padding-top: 0;
}

.contact-list--steps span {
    color: var(--ich-muted);
}

.contact-highlight {
    margin-top: 26px;
    display: grid;
    gap: 8px;
    border-radius: 20px;
    padding: 20px;
    background: var(--ich-dark);
    color: #fff;
}

.contact-highlight strong {
    color: var(--ich-accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
}

.contact-highlight span {
    color: rgba(245, 251, 248, 0.78);
}

@media (min-width: 780px) {
    .contact-form-shell .wpcf7-form {
        grid-template-columns: 1fr 1fr;
    }

    .contact-form-shell .wpcf7-form p:nth-last-child(-n + 3),
    .contact-form-shell .wpcf7-form p:has(textarea),
    .contact-form-shell .wpcf7-form p:has(input[type="submit"]) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .contact-form-shell {
        margin-top: 22px;
    }

    .contact-form-shell input[type="text"],
    .contact-form-shell input[type="email"],
    .contact-form-shell input[type="tel"],
    .contact-form-shell input[type="url"],
    .contact-form-shell select,
    .contact-form-shell textarea {
        border-radius: 14px;
        min-height: 50px;
    }

    .contact-form-shell textarea {
        min-height: 130px;
    }
}


/* v0.7 Readability + public-facing hero cleanup */
:is(h1, h2, h3, h4, p, a, strong, span, li) {
    overflow-wrap: break-word;
    word-break: normal;
}

h1 {
    font-size: clamp(2.8rem, 5.2vw, 5.35rem);
    max-width: 16ch;
    line-height: 0.98;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.45rem);
    max-width: 18ch;
    line-height: 1.02;
}

h3 {
    font-size: clamp(1.25rem, 1.55vw, 1.62rem);
    line-height: 1.1;
}

.section {
    padding: clamp(64px, 7vw, 104px) 0;
}

.section--hero {
    padding-top: clamp(86px, 10vw, 138px);
    padding-bottom: clamp(68px, 8vw, 112px);
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: clamp(30px, 5vw, 68px);
}

.hero-copy p,
.services-hero p,
.compact-hero p {
    font-size: clamp(1.04rem, 1.55vw, 1.22rem);
    max-width: 620px;
}

.section-heading {
    margin-bottom: clamp(26px, 4vw, 44px);
}

.section-heading h2 {
    max-width: 20ch;
}

.section-heading p,
.split-intro p,
.intro-stack p {
    font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.signal-card {
    padding: 22px;
}

.signal-card--main {
    min-height: 150px;
}

.signal-card strong {
    font-size: clamp(1.35rem, 2.15vw, 2rem);
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.hero-panel--platform .signal-card--split > div {
    min-height: 128px;
}

.service-card--large {
    min-height: 300px;
}

.service-card__number {
    margin-bottom: 28px;
}

.layer-card span {
    margin-bottom: 18px;
}

.cta-band h2,
.contact-card--form h2,
.contact-sidebar h2 {
    max-width: 18ch;
}

@media (max-width: 1024px) {
    h1 {
        font-size: clamp(2.45rem, 7vw, 4.05rem);
        max-width: 18ch;
    }

    h2 {
        font-size: clamp(1.9rem, 5vw, 2.9rem);
        max-width: 22ch;
    }

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

    .hero-panel {
        max-width: 720px;
    }
}

@media (max-width: 760px) {
    h1 {
        font-size: clamp(2.05rem, 8.8vw, 2.85rem);
        line-height: 1.02;
        letter-spacing: -0.046em;
    }

    h2 {
        font-size: clamp(1.58rem, 6.8vw, 2.15rem);
        line-height: 1.06;
        letter-spacing: -0.036em;
    }

    h3 {
        font-size: clamp(1.15rem, 4.8vw, 1.38rem);
    }

    .section {
        padding: 46px 0;
    }

    .section--hero {
        padding-top: 58px;
        padding-bottom: 48px;
    }

    .hero-panel {
        display: none;
    }

    .hero-copy p,
    .services-hero p,
    .compact-hero p,
    .split-intro p,
    .intro-stack p,
    .section-heading p {
        font-size: 0.98rem;
    }

    .service-card,
    .package-card,
    .contact-card,
    .post-card,
    .layer-card,
    .pillar-card,
    .decision-card {
        padding: 20px;
    }

    .service-card__number {
        margin-bottom: 18px;
    }

    .package-card__header {
        margin-bottom: 16px;
    }
}

/* v0.8 Readability + MVP simplification pass */
:root {
    --ich-max: 1160px;
    --ich-radius-md: 20px;
    --ich-radius-lg: 28px;
}

body {
    font-size: 16px;
}

h1,
h2,
h3,
h4 {
    letter-spacing: -0.032em;
}

h1 {
    font-size: clamp(2.7rem, 5.4vw, 5.35rem);
    line-height: 1.01;
    max-width: 15ch;
}

h2 {
    font-size: clamp(2rem, 3.8vw, 3.55rem);
    line-height: 1.06;
    max-width: 16ch;
}

h3 {
    font-size: clamp(1.22rem, 1.75vw, 1.62rem);
    line-height: 1.12;
}

.section {
    padding: clamp(58px, 7vw, 104px) 0;
}

.section--hero {
    padding-top: clamp(76px, 9vw, 128px);
    padding-bottom: clamp(62px, 7vw, 106px);
}

.section-heading {
    margin-bottom: clamp(26px, 4vw, 44px);
}

.section-heading h2,
.section-heading p {
    max-width: 860px;
}

.section-heading p,
.hero-copy p,
.services-hero p,
.compact-hero p,
.split-intro p,
.intro-stack p {
    font-size: clamp(1rem, 1.35vw, 1.16rem);
    line-height: 1.58;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
    gap: clamp(34px, 5vw, 72px);
}

.hero-panel {
    max-width: 440px;
    justify-self: end;
}

.signal-card {
    padding: 22px;
    box-shadow: 0 14px 42px rgba(17, 25, 23, 0.065);
}

.signal-card--main {
    min-height: 142px;
}

.signal-card strong {
    font-size: clamp(1.3rem, 2.25vw, 2rem);
}

.hero-panel--platform .signal-card--split > div {
    min-height: 112px;
}

.card-grid,
.package-grid,
.layer-grid,
.pillar-grid,
.decision-grid {
    gap: 16px;
}

.service-card,
.package-card,
.contact-card,
.post-card,
.layer-card,
.pillar-card,
.decision-card {
    padding: clamp(22px, 2.4vw, 30px);
    box-shadow: 0 10px 30px rgba(17, 25, 23, 0.04);
}

.service-card--large {
    min-height: 300px;
}

.service-card__number,
.layer-card span,
.steps span {
    margin-bottom: 20px;
}

.package-card__header {
    margin-bottom: 18px;
}

.package-card__header p,
.package-card__ideal,
.check-list li {
    font-size: 0.94rem;
}

.check-list {
    gap: 8px;
    margin-bottom: 22px;
}

.check-list li {
    padding-left: 22px;
    line-height: 1.42;
}

.check-list li::before {
    width: 8px;
    height: 8px;
    top: 0.6em;
}

.package-card__note {
    display: none;
}

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

.module-pill {
    border-radius: 16px;
}

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

.steps article {
    padding-top: 16px;
}

.steps p {
    line-height: 1.48;
}

.site-footer {
    padding: 56px 0 24px;
}

.site-footer__bottom {
    margin-top: 38px;
}

@media (max-width: 1024px) {
    .hero-panel {
        justify-self: start;
        max-width: none;
    }

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

@media (max-width: 760px) {
    h1 {
        font-size: clamp(2rem, 8.7vw, 2.95rem);
        line-height: 1.05;
        letter-spacing: -0.042em;
    }

    h2 {
        font-size: clamp(1.65rem, 7vw, 2.35rem);
        line-height: 1.08;
        letter-spacing: -0.035em;
    }

    .section {
        padding: 48px 0;
    }

    .section--hero {
        padding-top: 56px;
        padding-bottom: 46px;
    }

    .home-hero .hero-panel {
        display: none;
    }

    .section-heading {
        margin-bottom: 24px;
    }

    .service-card,
    .package-card,
    .contact-card,
    .post-card,
    .layer-card,
    .pillar-card,
    .decision-card {
        padding: 20px;
    }

    .service-card--large {
        min-height: 0;
    }

    .package-card__header p,
    .package-card__ideal,
    .check-list li {
        font-size: 0.92rem;
    }

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


/* v0.10 Contact Form 7 polish + Italian select fallback */
.contact-form-shell .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-shell select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 46px;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--ich-text) 50%),
        linear-gradient(135deg, var(--ich-text) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 16px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact-form-shell select:invalid,
.contact-form-shell select option[value=""] {
    color: var(--ich-muted);
}

.contact-form-shell input::placeholder,
.contact-form-shell textarea::placeholder {
    color: rgba(92, 104, 98, 0.72);
}

.contact-form-shell .wpcf7-spinner {
    margin: 12px auto 0;
    display: block;
}

.contact-form-shell .wpcf7-form p:has(select),
.contact-form-shell .wpcf7-form p:has(.wpcf7-select),
.contact-form-shell .wpcf7-form p:has(.wpcf7-acceptance) {
    grid-column: 1 / -1;
}

.contact-form-shell .wpcf7-form p:has(.wpcf7-acceptance) {
    margin-top: 2px;
}

.contact-form-shell .wpcf7-form p:has(input[type="submit"]) {
    margin-top: 4px;
}

@media (min-width: 780px) {
    .contact-form-shell .wpcf7-form p:has(input[name*="telefono" i]),
    .contact-form-shell .wpcf7-form p:has(input[name*="phone" i]) {
        grid-column: auto;
    }
}

@media (max-width: 760px) {
    .contact-card--form h2,
    .contact-sidebar h2 {
        max-width: 100%;
    }

    .contact-form-shell label {
        font-size: 0.9rem;
    }

    .contact-form-shell select {
        background-position:
            calc(100% - 21px) 50%,
            calc(100% - 15px) 50%;
    }
}


/* v0.11 Form cleanup + sprint finishing pass */
.contact-form-shell select option:first-child {
    color: var(--ich-muted);
}

.contact-form-shell .wpcf7-form-control-wrap[data-name="interest"] select,
.contact-form-shell select[name*="interest" i],
.contact-form-shell select[name*="area" i] {
    width: 100%;
}

.contact-form-shell input[type="submit"] {
    letter-spacing: -0.01em;
}

@media (min-width: 780px) {
    .contact-card--form {
        position: relative;
    }

    .contact-sidebar {
        position: sticky;
        top: 104px;
    }
}

@media (max-width: 760px) {
    .contact-section {
        padding-top: 34px;
    }

    .contact-highlight {
        padding: 18px;
    }
}

/* v0.12 Launch sprint: content density, about page, cleaner hierarchy */
.compact-hero h1,
.services-hero h1,
.contact-hero h1 {
    font-size: clamp(2.35rem, 4.25vw, 4.2rem);
    max-width: 17ch;
}

.home-hero h1 {
    max-width: 16ch;
}

.package-card h3,
.service-card h3,
.layer-card h3,
.decision-card h3,
.about-card h3 {
    letter-spacing: -0.025em;
}

.package-card__ideal {
    margin-top: auto;
    padding-top: 6px;
}

.package-card .text-link {
    margin-top: 16px;
}

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

.about-card {
    background: var(--ich-surface);
    border: 1px solid var(--ich-border);
    border-radius: var(--ich-radius-md);
    padding: clamp(26px, 4vw, 44px);
    box-shadow: 0 14px 40px rgba(17, 25, 23, 0.045);
}

.about-card h3 {
    font-size: clamp(1.55rem, 2.5vw, 2.25rem);
    max-width: 16ch;
}

.about-card p {
    color: var(--ich-muted);
    font-size: 1.05rem;
}

@media (max-width: 980px) {
    .main-nav {
        gap: 16px;
    }

    .main-nav__list {
        gap: 16px;
        font-size: 0.9rem;
    }

    .button--small {
        padding-inline: 13px;
        font-size: 0.84rem;
    }
}

@media (max-width: 760px) {
    .compact-hero h1,
    .services-hero h1,
    .contact-hero h1,
    .home-hero h1 {
        max-width: none;
        font-size: clamp(2rem, 8.5vw, 2.75rem);
    }

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

    .about-card {
        padding: 22px;
    }

    .about-card h3 {
        max-width: none;
        font-size: clamp(1.35rem, 6vw, 1.85rem);
    }

    .package-card__ideal {
        margin-top: 0;
    }
}

/* v0.13 Legal pages + release-candidate polish */
.legal-hero h1 {
    max-width: 14ch;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.22fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.legal-content {
    display: grid;
    gap: 28px;
}

.legal-section {
    background: var(--ich-surface);
    border: 1px solid var(--ich-border);
    border-radius: var(--ich-radius-md);
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 14px 40px rgba(17, 25, 23, 0.04);
}

.legal-section h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
    max-width: none;
}

.legal-section h3 {
    margin-top: 18px;
}

.legal-section p,
.legal-section li {
    color: var(--ich-muted);
}

.legal-section ul {
    display: grid;
    gap: 10px;
    margin: 12px 0 0 1.1rem;
    padding-left: 1rem;
}

.legal-note {
    background: rgba(55, 214, 163, 0.12);
    border: 1px solid rgba(55, 214, 163, 0.35);
    border-radius: var(--ich-radius-md);
    padding: 22px;
}

.legal-note strong {
    display: block;
    margin-bottom: 8px;
}

.legal-toc {
    position: sticky;
    top: 104px;
    background: var(--ich-dark);
    color: #f5fbf8;
    border-radius: var(--ich-radius-md);
    padding: 24px;
}

.legal-toc h2 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ich-accent);
    margin-bottom: 16px;
}

.legal-toc ul {
    display: grid;
    gap: 10px;
    list-style: none;
}

.legal-toc a {
    color: rgba(245, 251, 248, 0.76);
}

.legal-toc a:hover {
    color: #fff;
}

.site-footer .text-link {
    color: var(--ich-accent);
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-toc {
        position: static;
        order: -1;
    }
}

@media (max-width: 760px) {
    .legal-section {
        padding: 22px;
    }
}

/* v0.14 Gestisci privacy + MVP consent banner */
.privacy-banner {
    position: fixed;
    inset: auto 0 0;
    z-index: 1000;
    padding: 18px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.privacy-banner--active {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

.privacy-banner__panel {
    width: min(100% - 28px, 980px);
    margin-inline: auto;
    background: rgba(17, 25, 23, 0.97);
    color: #f5fbf8;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    box-shadow: 0 24px 80px rgba(17, 25, 23, 0.28);
    padding: clamp(20px, 3vw, 30px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px 28px;
    align-items: center;
}

.privacy-banner__intro h2 {
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    max-width: none;
    margin-bottom: 8px;
    color: #fff;
}

.privacy-banner__intro p {
    color: rgba(245, 251, 248, 0.76);
    max-width: 70ch;
    margin-bottom: 0;
}

.privacy-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.privacy-banner__actions .button {
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.privacy-banner__actions .button--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #f5fbf8;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.privacy-banner__choices {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.privacy-choice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    padding: 14px;
    cursor: pointer;
}

.privacy-choice--locked {
    cursor: default;
    opacity: 0.82;
}

.privacy-choice input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--ich-accent);
    flex: 0 0 auto;
}

.privacy-choice strong,
.privacy-choice small {
    display: block;
}

.privacy-choice strong {
    color: #fff;
    margin-bottom: 3px;
}

.privacy-choice small {
    color: rgba(245, 251, 248, 0.66);
    line-height: 1.35;
}

.privacy-banner__links {
    grid-column: 1 / -1;
    margin: 0;
    color: rgba(245, 251, 248, 0.6);
    font-size: 0.88rem;
}

.privacy-banner__links a {
    color: var(--ich-accent);
}

.privacy-manage-hero .hero-actions {
    justify-content: center;
}

.privacy-manage-layout .legal-section .button {
    border: 0;
    cursor: pointer;
}

.privacy-toc-button {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--ich-accent);
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.privacy-toc-button:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .privacy-banner__panel {
        grid-template-columns: 1fr;
    }

    .privacy-banner__actions {
        justify-content: flex-start;
    }

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

@media (max-width: 620px) {
    .privacy-banner {
        padding: 10px;
    }

    .privacy-banner__panel {
        width: 100%;
        border-radius: 20px;
        max-height: calc(100vh - 20px);
        overflow: auto;
    }

    .privacy-banner__actions,
    .privacy-banner__actions .button {
        width: 100%;
    }

    .privacy-banner__actions .button {
        justify-content: center;
        text-align: center;
    }

    .privacy-banner__choices {
        grid-template-columns: 1fr;
    }
}


/* v0.15 release-candidate refinements */
.main-nav__list a.is-active,
.main-nav__list a[aria-current="page"] {
    color: var(--ich-text);
    font-weight: 750;
}

.hero-actions--left {
    justify-content: flex-start;
}

.privacy-status {
    margin: 24px 0;
    padding: 22px;
    border: 1px solid var(--ich-border);
    border-radius: var(--ich-radius-md);
    background: var(--ich-surface-soft);
}

.privacy-status p {
    margin: 8px 0 0;
    color: var(--ich-muted);
}

.privacy-banner__panel {
    max-height: min(86vh, 760px);
    overflow: auto;
}

.privacy-banner__actions .button[hidden] {
    display: none !important;
}

.privacy-choice input {
    accent-color: var(--ich-accent-dark);
}

@media (max-width: 760px) {
    .main-nav__list a.is-active,
    .main-nav__list a[aria-current="page"] {
        background: rgba(55, 214, 163, 0.12);
        border-color: rgba(55, 214, 163, 0.28);
    }

    .privacy-status {
        padding: 18px;
    }
}


/* v0.16 — hard mobile repair
   Obiettivo: niente overflow, header stabile, menu leggibile, card in una colonna.
*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
    height: auto;
}

table {
    max-width: 100%;
}

a,
p,
li,
h1,
h2,
h3,
h4,
h5,
h6,
span,
strong {
    overflow-wrap: anywhere;
}

@media (max-width: 900px) {
    :root {
        --ich-container: 100%;
    }

    body {
        min-width: 0;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        border-bottom: 1px solid var(--ich-border);
        backdrop-filter: blur(14px);
    }

    .site-header__inner {
        min-height: 66px;
        padding: 12px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        width: 100%;
    }

    .site-branding {
        min-width: 0;
        max-width: calc(100vw - 88px);
        flex: 1 1 auto;
    }

    .site-branding__name {
        display: block;
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-branding__tagline {
        display: none;
    }

    .menu-toggle {
        position: relative;
        z-index: 1102;
        display: inline-flex;
        flex: 0 0 auto;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        border: 1px solid var(--ich-border);
        background: var(--ich-surface);
        color: var(--ich-text);
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        position: relative;
        border-radius: 999px;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
        content: "";
        position: absolute;
        left: 0;
        width: 20px;
        height: 2px;
        background: currentColor;
        border-radius: 999px;
        transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
    }

    .menu-toggle span::before {
        top: -7px;
    }

    .menu-toggle span::after {
        top: 7px;
    }

    .nav-open .menu-toggle span {
        background: transparent;
    }

    .nav-open .menu-toggle span::before {
        top: 0;
        transform: rotate(45deg);
    }

    .nav-open .menu-toggle span::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        z-index: 1100;
        top: 66px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 18px;
        border: 1px solid var(--ich-border);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 22px 70px rgba(16, 24, 40, 0.18);
    }

    .nav-open .main-nav {
        display: flex;
    }

    .main-nav__list {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .main-nav__list li {
        width: 100%;
        margin: 0;
    }

    .main-nav__list a {
        display: block;
        width: 100%;
        padding: 13px 14px;
        border: 1px solid var(--ich-border);
        border-radius: 14px;
        background: var(--ich-surface-soft);
        font-size: 1rem;
        line-height: 1.2;
        text-decoration: none;
    }

    .main-nav .button,
    .main-nav > .button {
        width: 100%;
        justify-content: center;
        text-align: center;
        min-height: 48px;
        margin: 0;
    }

    .nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 1090;
        background: rgba(10, 17, 32, 0.24);
    }

    .container,
    .section,
    .site-footer__inner,
    .hero__inner {
        width: 100%;
        max-width: 100%;
    }

    .section {
        padding: 48px 0;
    }

    .section--tight {
        padding: 36px 0;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero {
        padding: 56px 0 42px;
        overflow: hidden;
    }

    .hero__inner,
    .split,
    .contact-layout,
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .hero__content {
        min-width: 0;
    }

    .hero__visual {
        display: none !important;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 0.98;
        letter-spacing: -0.055em;
        max-width: 100%;
    }

    .section-heading h2,
    .split h2,
    .card h2 {
        font-size: clamp(1.65rem, 7vw, 2.25rem);
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    h3,
    .card h3,
    .package-card h3 {
        font-size: clamp(1.1rem, 4.8vw, 1.35rem);
        line-height: 1.16;
    }

    .lead,
    .hero p,
    .page-hero p,
    .section-heading p,
    .card p,
    .package-card p {
        font-size: 1rem;
        line-height: 1.55;
        max-width: 100%;
    }

    .hero-actions,
    .card-actions,
    .cta-actions,
    .privacy-banner__actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .hero-actions .button,
    .card-actions .button,
    .cta-actions .button,
    .privacy-banner__actions .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .grid,
    .cards-grid,
    .service-grid,
    .package-grid,
    .three-grid,
    .two-grid,
    .method-grid,
    .quick-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 18px;
        width: 100%;
    }

    .card,
    .package-card,
    .method-card,
    .quick-card,
    .feature-card,
    .contact-card,
    .legal-card {
        width: 100%;
        min-width: 0;
        padding: 22px;
        border-radius: 22px;
    }

    .package-card--highlight {
        transform: none !important;
    }

    .package-badge,
    .badge {
        position: static !important;
        display: inline-flex;
        margin-bottom: 12px;
        max-width: 100%;
        white-space: normal;
    }

    .card ul,
    .package-card ul,
    .method-card ul {
        padding-left: 1.15rem;
    }

    .card li,
    .package-card li,
    .method-card li {
        margin-bottom: 8px;
    }

    .contact-layout aside,
    .contact-sidebar,
    .contact-aside {
        position: static !important;
        width: 100%;
    }

    .wpcf7 form,
    .wpcf7,
    .contact-form,
    .form-card {
        width: 100%;
        max-width: 100%;
    }

    .wpcf7 input,
    .wpcf7 select,
    .wpcf7 textarea,
    .wpcf7-form-control {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        font-size: 16px;
    }

    .wpcf7 textarea {
        min-height: 132px;
    }

    .privacy-banner {
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        padding: 10px;
        z-index: 2000;
    }

    .privacy-banner__panel {
        width: 100%;
        max-width: none;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
        border-radius: 20px;
        padding: 20px;
    }

    .privacy-banner__choices {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .privacy-choice {
        width: 100%;
        min-width: 0;
    }

    .site-footer {
        overflow: hidden;
    }
}

@media (max-width: 420px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(1.85rem, 12vw, 2.6rem);
    }

    .section-heading h2,
    .split h2 {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }

    .card,
    .package-card,
    .method-card,
    .quick-card,
    .feature-card,
    .contact-card,
    .legal-card {
        padding: 18px;
        border-radius: 18px;
    }
}


/* v0.16.2 — CHIRURGICO: fix hero mobile.
   Il problema era la griglia desktop della hero che tornava attiva dopo i media query
   e costringeva la prima colonna a pochi pixel. */
@media (max-width: 900px) {
    .section--hero,
    .home-hero,
    .services-hero,
    .compact-hero,
    .contact-hero {
        overflow: hidden !important;
    }

    .section--hero .container,
    .home-hero .container,
    .services-hero .container,
    .compact-hero .container,
    .contact-hero .container,
    .hero-grid {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-grid {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;
        grid-auto-columns: minmax(0, 1fr) !important;
        gap: 22px !important;
        align-items: start !important;
    }

    .hero-copy {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        grid-column: 1 / -1 !important;
    }

    .hero-copy > *,
    .hero-copy h1,
    .hero-copy p,
    .hero-copy .eyebrow {
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .hero-copy h1,
    .section--hero h1,
    .home-hero h1,
    .services-hero h1,
    .compact-hero h1,
    .contact-hero h1 {
        display: block !important;
        width: 100% !important;
        max-width: 12.5ch !important;
        font-size: clamp(2.35rem, 10.5vw, 3.25rem) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.052em !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        hyphens: none !important;
        text-wrap: balance;
    }

    .hero-copy .eyebrow,
    .section--hero .eyebrow {
        display: inline-block !important;
        width: auto !important;
        max-width: 100% !important;
        white-space: normal !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        letter-spacing: 0.12em !important;
    }

    .hero-copy p,
    .section--hero p {
        width: 100% !important;
        max-width: 34rem !important;
        font-size: 1rem !important;
        line-height: 1.55 !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        hyphens: none !important;
    }

    .hero-panel,
    .hero-panel--platform {
        display: none !important;
    }

    .button-row,
    .hero-actions {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
    }

    .button-row .button,
    .hero-actions .button {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* Annulla il global overflow-wrap:anywhere introdotto nei fix precedenti:
       su mobile spezzava eyebrow e titoli lettera per lettera. */
    :is(h1, h2, h3, h4, h5, h6, p, a, strong, span, li) {
        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    .service-card p,
    .package-card p,
    .contact-card p,
    .module-chip,
    .footer-list a {
        overflow-wrap: break-word !important;
    }
}

@media (max-width: 420px) {
    .section--hero .container,
    .home-hero .container,
    .services-hero .container,
    .compact-hero .container,
    .contact-hero .container,
    .hero-grid {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-copy h1,
    .section--hero h1,
    .home-hero h1,
    .services-hero h1,
    .compact-hero h1,
    .contact-hero h1 {
        font-size: clamp(2.05rem, 11vw, 2.75rem) !important;
        max-width: 12ch !important;
    }
}


/* v0.16.3 — mobile menu click fix
   Il problema era l'overlay generato con .nav-open::before: poteva stare sopra al menu
   e bloccare i click sui link. Lo spostiamo su body::before e assicuriamo z-index/pointer corretti.
*/
@media (max-width: 900px) {
    body.nav-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 1080;
        background: rgba(10, 17, 32, 0.24);
        pointer-events: auto;
    }

    .nav-open::before {
        pointer-events: none !important;
    }

    .main-nav {
        z-index: 1200 !important;
        pointer-events: auto !important;
    }

    .main-nav,
    .main-nav * {
        pointer-events: auto !important;
    }

    .nav-toggle {
        z-index: 1300 !important;
        pointer-events: auto !important;
    }

    .main-nav__list a,
    .main-nav .button {
        position: relative;
        z-index: 1201;
    }
}


/* v0.16.4 — mobile menu hard fix: remove overlay completely.
   Il menu deve essere cliccabile prima di tutto. Nessun pseudo-overlay sopra la pagina.
*/
@media (max-width: 900px) {
    body.nav-open::before,
    .nav-open::before,
    html.nav-open::before {
        content: none !important;
        display: none !important;
        pointer-events: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    body.nav-open {
        overflow: auto !important;
    }

    .main-nav {
        position: fixed !important;
        top: 78px !important;
        left: 16px !important;
        right: 16px !important;
        z-index: 99999 !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        filter: none !important;
        transform: none !important;
        pointer-events: auto !important;
        background: #ffffff !important;
        border: 1px solid rgba(15, 23, 42, 0.14) !important;
        box-shadow: 0 18px 44px rgba(15, 23, 42, 0.18) !important;
    }

    body.nav-open .main-nav {
        display: flex !important;
    }

    .main-nav,
    .main-nav__list,
    .main-nav__list li,
    .main-nav__list a,
    .main-nav .button {
        pointer-events: auto !important;
        opacity: 1 !important;
        filter: none !important;
    }

    .main-nav__list a,
    .main-nav .button {
        cursor: pointer !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(55, 214, 163, 0.18);
    }

    .nav-toggle {
        z-index: 100000 !important;
        pointer-events: auto !important;
    }

    .site-header {
        z-index: 99998 !important;
    }
}


/* v0.16.5 — native mobile navigation, no JS, no overlay, no hamburger.
   Emergency fix: link normali, sempre cliccabili.
*/
@media (max-width: 900px) {
    body.nav-open::before,
    .nav-open::before,
    html.nav-open::before {
        content: none !important;
        display: none !important;
    }

    .nav-toggle,
    .menu-toggle {
        display: none !important;
    }

    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: #fff !important;
    }

    .site-header__inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 14px !important;
        padding: 18px !important;
        min-height: auto !important;
    }

    .site-brand {
        display: flex !important;
        align-items: baseline !important;
        justify-content: flex-start !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .main-nav {
        position: static !important;
        inset: auto !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        pointer-events: auto !important;
        z-index: auto !important;
    }

    .main-nav__list {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        width: 100% !important;
        margin: 0 0 10px !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .main-nav__list li {
        width: auto !important;
        flex: 1 1 calc(50% - 8px) !important;
        margin: 0 !important;
        min-width: 0 !important;
    }

    .main-nav__list a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 44px !important;
        width: 100% !important;
        padding: 10px 12px !important;
        border: 1px solid rgba(15, 23, 42, 0.14) !important;
        border-radius: 999px !important;
        background: #fff !important;
        color: var(--ich-text) !important;
        text-decoration: none !important;
        font-size: 0.92rem !important;
        line-height: 1.15 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        opacity: 1 !important;
    }

    .main-nav__list a.is-active,
    .main-nav__list a[aria-current="page"] {
        background: rgba(55, 214, 163, 0.12) !important;
        border-color: rgba(55, 214, 163, 0.36) !important;
    }

    .main-nav > .button,
    .main-nav .button {
        display: flex !important;
        width: 100% !important;
        min-height: 46px !important;
        justify-content: center !important;
        text-align: center !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }
}

@media (max-width: 420px) {
    .site-header__inner {
        padding: 16px !important;
    }

    .main-nav__list {
        gap: 7px !important;
    }

    .main-nav__list li {
        flex-basis: calc(50% - 7px) !important;
    }

    .main-nav__list a {
        font-size: 0.86rem !important;
        padding: 9px 8px !important;
    }
}


/* v0.17 — mobile polish on stable native navigation */
@media (max-width: 900px) {
    .site-header {
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important;
    }

    .site-header__inner {
        gap: 10px !important;
        padding: 14px 16px 12px !important;
    }

    .site-brand {
        justify-content: center !important;
        text-align: center !important;
        letter-spacing: -0.02em;
    }

    .site-brand__name,
    .site-brand__suffix {
        font-size: 1.06rem !important;
        font-weight: 800 !important;
    }

    .main-nav {
        display: grid !important;
        gap: 8px !important;
    }

    .main-nav__list {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 6px !important;
        margin: 0 !important;
    }

    .main-nav__list li {
        flex: none !important;
        width: 100% !important;
    }

    .main-nav__list a {
        min-height: 38px !important;
        padding: 8px 6px !important;
        border-radius: 13px !important;
        font-size: 0.78rem !important;
        font-weight: 700 !important;
        letter-spacing: -0.01em;
        background: rgba(248, 250, 252, 0.96) !important;
        border-color: rgba(15, 23, 42, 0.10) !important;
    }

    .main-nav > .button,
    .main-nav .button {
        min-height: 40px !important;
        border-radius: 13px !important;
        font-size: 0.86rem !important;
        padding: 9px 14px !important;
    }

    .hero {
        padding-top: 42px !important;
    }

    .hero h1,
    .page-hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.15rem) !important;
        line-height: 1.01 !important;
    }

    .eyebrow {
        font-size: 0.72rem !important;
        letter-spacing: 0.09em !important;
    }
}

@media (max-width: 520px) {
    .main-nav__list {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .main-nav__list a {
        min-height: 39px !important;
        font-size: 0.84rem !important;
    }
}

@media (max-width: 380px) {
    .site-brand__name,
    .site-brand__suffix {
        font-size: 0.98rem !important;
    }

    .main-nav__list a {
        font-size: 0.79rem !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .main-nav > .button,
    .main-nav .button {
        font-size: 0.82rem !important;
    }
}


/* v0.18 — Services hub and service detail templates */
.service-hub-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-hub-card { position: relative; padding: 30px; border: 1px solid var(--ich-border); border-radius: var(--ich-radius-lg); background: var(--ich-surface); box-shadow: var(--ich-shadow-soft); min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; }
.service-hub-card__number { display: inline-flex; width: fit-content; margin-bottom: 18px; padding: 6px 10px; border-radius: 999px; background: rgba(55, 214, 163, 0.12); color: var(--ich-accent-dark); font-size: 0.75rem; font-weight: 800; }
.service-hub-card h2 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.05; letter-spacing: -0.035em; margin: 0 0 14px; }
.service-hub-card p { color: var(--ich-muted); margin-bottom: 24px; }
.text-link { font-weight: 800; color: var(--ich-accent-dark); text-decoration: none; }
.text-link::after { content: " →"; }
.service-detail-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-detail-card { padding: 24px; border: 1px solid var(--ich-border); border-radius: var(--ich-radius-md); background: var(--ich-surface); }
.service-detail-card h3 { margin: 0 0 10px; font-size: 1.15rem; }
.service-detail-card p { margin: 0; color: var(--ich-muted); }
.check-list { list-style: none; padding: 0; margin: 18px 0 0; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 12px; color: var(--ich-text); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--ich-accent-dark); font-weight: 900; }
.related-services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.related-service-card { display: block; padding: 24px; border: 1px solid var(--ich-border); border-radius: var(--ich-radius-md); background: var(--ich-surface); text-decoration: none; color: inherit; transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
.related-service-card:hover { transform: translateY(-2px); border-color: rgba(55, 214, 163, 0.55); box-shadow: var(--ich-shadow-soft); }
.related-service-card h3 { margin: 0 0 10px; }
.related-service-card p { margin: 0 0 16px; color: var(--ich-muted); }
.related-service-card span { color: var(--ich-accent-dark); font-weight: 800; }
.hero-actions--left { justify-content: flex-start; }
@media (max-width: 900px) { .service-hub-grid, .service-detail-grid, .related-services-grid { grid-template-columns: 1fr !important; gap: 16px; } .service-hub-card { min-height: auto; padding: 22px; } .service-detail-card, .related-service-card { padding: 20px; } }


/* v0.19 — clean mobile hamburger, no overlay */
@media (max-width: 900px) {
    body.nav-open::before,
    .nav-open::before,
    html.nav-open::before {
        content: none !important;
        display: none !important;
        pointer-events: none !important;
    }

    .site-header {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--ich-border);
        box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06) !important;
    }

    .site-header__inner {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 14px 16px !important;
        min-height: auto !important;
    }

    .site-brand {
        display: inline-flex !important;
        align-items: baseline !important;
        justify-content: flex-start !important;
        max-width: 100% !important;
        width: auto !important;
        min-width: 0 !important;
        text-align: left !important;
        text-decoration: none !important;
    }

    .site-brand__name,
    .site-brand__suffix {
        display: inline !important;
        font-size: 1.04rem !important;
        line-height: 1.1 !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
    }

    .site-brand__suffix {
        margin-left: 3px !important;
    }

    .nav-toggle {
        display: inline-flex !important;
        position: relative !important;
        width: 44px !important;
        height: 44px !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid rgba(15, 23, 42, 0.14) !important;
        border-radius: 999px !important;
        background: #ffffff !important;
        color: var(--ich-text) !important;
        padding: 0 !important;
        z-index: 2 !important;
        cursor: pointer !important;
        touch-action: manipulation !important;
    }

    .nav-toggle span:not(.screen-reader-text) {
        position: absolute !important;
        display: block !important;
        width: 19px !important;
        height: 2px !important;
        background: currentColor !important;
        border-radius: 999px !important;
        transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
    }

    .nav-toggle span:not(.screen-reader-text):nth-child(1) {
        top: 15px !important;
    }

    .nav-toggle span:not(.screen-reader-text):nth-child(2) {
        top: 21px !important;
    }

    .nav-toggle span:not(.screen-reader-text):nth-child(3) {
        top: 27px !important;
    }

    body.nav-open .nav-toggle span:not(.screen-reader-text):nth-child(1) {
        top: 21px !important;
        transform: rotate(45deg) !important;
    }

    body.nav-open .nav-toggle span:not(.screen-reader-text):nth-child(2) {
        opacity: 0 !important;
    }

    body.nav-open .nav-toggle span:not(.screen-reader-text):nth-child(3) {
        top: 21px !important;
        transform: rotate(-45deg) !important;
    }

    .main-nav {
        grid-column: 1 / -1 !important;
        position: static !important;
        inset: auto !important;
        display: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 12px !important;
        border: 1px solid rgba(15, 23, 42, 0.10) !important;
        border-radius: 18px !important;
        background: #ffffff !important;
        box-shadow: 0 14px 36px rgba(15, 23, 42, 0.10) !important;
        pointer-events: auto !important;
    }

    body.nav-open .main-nav {
        display: grid !important;
        gap: 10px !important;
    }

    .main-nav__list {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .main-nav__list li {
        width: 100% !important;
        margin: 0 !important;
        min-width: 0 !important;
        flex: none !important;
    }

    .main-nav__list a {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        min-height: 44px !important;
        padding: 11px 13px !important;
        border: 1px solid rgba(15, 23, 42, 0.10) !important;
        border-radius: 13px !important;
        background: rgba(248, 250, 252, 0.96) !important;
        color: var(--ich-text) !important;
        text-decoration: none !important;
        font-size: 0.96rem !important;
        font-weight: 750 !important;
        line-height: 1.15 !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }

    .main-nav__list a.is-active,
    .main-nav__list a[aria-current="page"] {
        background: rgba(55, 214, 163, 0.12) !important;
        border-color: rgba(55, 214, 163, 0.36) !important;
    }

    .main-nav > .button,
    .main-nav .button {
        display: flex !important;
        width: 100% !important;
        min-height: 44px !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 13px !important;
        font-size: 0.92rem !important;
        padding: 10px 14px !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
    }

    .hero {
        padding-top: 44px !important;
    }
}

@media (max-width: 420px) {
    .site-header__inner {
        padding: 13px 15px !important;
    }

    .site-brand__name,
    .site-brand__suffix {
        font-size: 0.99rem !important;
    }

    .nav-toggle {
        width: 42px !important;
        height: 42px !important;
    }
}
