:root {
    --brand-purple: #2D3278;
    --brand-purple-deep: #160d27;
    --brand-ink: #151020;
    --brand-coral: #f0684c;
    --brand-coral-dark: #d94b34;
    --brand-sand: #e1ddd1;
    --brand-mint: #2fb6a3;
    --background: #fcfbf8;
    --foreground: #211a2e;
    --muted: #6d6578;
    --card: #ffffff;
    --border: #e7e1d6;
    --input: #ddd5ca;
    --shadow-brand: 0 24px 60px -30px rgba(45, 50, 120, 0.55);
    --shadow-soft: 0 14px 40px -24px rgba(20, 16, 32, 0.3);
    --shadow-coral: 0 20px 45px -22px rgba(240, 104, 76, 0.7);
    --radius: 18px;
    --container: 1180px;
    --font-sans: "Inter", system-ui, sans-serif;
    --font-display: "Archivo", "Akzidenz-Grotesk", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--foreground);
    background: var(--background);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "ss01", "cv11";
}

body.menu-open {
    overflow: hidden;
}

body.has-consent-modal {
    overflow: hidden;
}

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

.icon-sprite {
    display: none;
}

.icon {
    width: 1em;
    height: 1em;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

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

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

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: var(--font-display);
    font-stretch: 125%;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

.skip-link {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 999;
    transform: translateY(-140%);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-purple);
    padding: 0.75rem 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

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

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.narrow {
    width: min(100% - 2rem, 860px);
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 60;
    border-bottom: 1px solid transparent;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(252, 251, 248, 0.85);
    border-color: rgba(231, 225, 214, 0.88);
    box-shadow: var(--shadow-soft);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
}

.site-header.is-open {
    background: rgba(22, 13, 39, 0.88);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 12px 30px rgba(20, 16, 32, 0.18);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    gap: 1rem;
}

.brand-link {
    display: grid;
    align-items: center;
    flex: 0 0 auto;
    width: 196px;
    aspect-ratio: 1920 / 247;
    position: relative;
}

.brand-logo {
    grid-area: 1 / 1;
    width: 100%;
    transition: opacity 180ms ease;
}

.brand-logo-color {
    opacity: 0;
}

.site-header.is-scrolled:not(.is-open) .brand-logo-white {
    opacity: 0;
}

.site-header.is-scrolled:not(.is-open) .brand-logo-color {
    opacity: 1;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.05rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    font-weight: 500;
}

.desktop-nav a,
.mobile-nav a {
    transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
    color: #fff;
}

.site-header.is-scrolled:not(.is-open) .desktop-nav {
    color: rgba(45, 50, 120, 0.82);
}

.site-header.is-scrolled:not(.is-open) .desktop-nav a:hover,
.site-header.is-scrolled:not(.is-open) .desktop-nav a:focus-visible {
    color: var(--brand-purple);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 12px;
    color: #fff;
    background: transparent;
}

.site-header.is-scrolled:not(.is-open) .menu-toggle {
    border-color: rgba(45, 50, 120, 0.2);
    color: var(--brand-purple);
}

.menu-toggle .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.mobile-nav {
    display: grid;
    gap: 0.25rem;
    padding: 0 1rem 1rem;
    background: rgba(22, 13, 39, 0.96);
    color: rgba(255, 255, 255, 0.88);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav[hidden] {
    display: none;
}

.mobile-nav a {
    padding: 0.85rem 0.25rem;
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    padding: 0.78rem 1.25rem;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.1;
    transition: transform 160ms ease, filter 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-1px);
}

.btn .icon,
.solution-card a .icon,
.segment-grid a .icon {
    width: 1rem;
    height: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-coral), var(--brand-coral-dark));
    color: #fff;
    box-shadow: var(--shadow-coral);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    filter: brightness(1.06);
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    background: rgba(255, 255, 255, 0.12);
}

.btn-outline {
    border: 2px solid var(--brand-purple);
    background: transparent;
    color: var(--brand-purple);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: var(--brand-purple);
    color: #fff;
}

.btn-email {
    background: #25a98f;
    color: #fff;
}

.btn-whatsapp {
    background: #25a98f;
    color: #fff;
    max-width: 224px;
}

.section {
    padding-block: clamp(4.75rem, 8vw, 7rem);
}

.section-dark {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(120% 80% at 80% 0%, oklch(36% .16 275) 0%, oklch(18% .06 275) 55%, oklch(12% .04 275) 100%);
}

.mesh-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(42rem 26rem at 12% 16%, rgba(240, 104, 76, 0.18), transparent 62%),
        radial-gradient(32rem 30rem at 82% 78%, rgba(47, 182, 163, 0.12), transparent 60%);
}

.hero .mesh-bg {
    background:
        radial-gradient(44rem 26rem at 52% 18%, rgba(45, 50, 120, 0.38), transparent 64%),
        radial-gradient(34rem 24rem at 88% 4%, rgba(240, 104, 76, 0.16), transparent 66%),
        radial-gradient(38rem 24rem at 88% 86%, rgba(47, 182, 163, 0.08), transparent 66%);
}

.mesh-bg.subtle {
    opacity: 0.58;
}

.glow {
    position: absolute;
    width: 22rem;
    height: 22rem;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(54px);
}

.glow-coral {
    top: -9rem;
    right: 0;
    background: rgba(240, 104, 76, 0.2);
}

.glow.bottom {
    top: auto;
    bottom: -10rem;
}

.hero {
    padding-block: 8.5rem 5.5rem;
}

.hero-grid,
.solution-grid,
.split-grid,
.about-grid,
.contact-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2.25rem, 5vw, 4rem);
}

.hero-grid {
    gap: clamp(3.5rem, 7vw, 6rem);
}

.hero-grid>*,
.solution-grid>*,
.split-grid>*,
.about-grid>*,
.contact-grid>* {
    min-width: 0;
}

.hero-copy {
    display: grid;
    gap: 1.5rem;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-purple);
    font-family: var(--font-display);
    font-stretch: 125%;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pill {
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    padding: 0.52rem 0.8rem;
    backdrop-filter: blur(12px);
}

.pill .icon {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--brand-coral);
}

.text-coral {
    color: var(--brand-coral);
}

.hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 5.1vw, 4.5rem);
    font-weight: 800;
}

.hero h1 span,
.section-heading h2 span,
.solution-grid h2 span,
.section-punch span {
    color: var(--brand-coral);
}

.lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.02rem, 2vw, 1.16rem);
    line-height: 1.7;
}

.muted-light {
    max-width: 620px;
    margin-block: 1.3rem 2rem;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-note {
    max-width: 34rem;
    border-left: 2px solid var(--brand-coral);
    color: rgba(255, 255, 255, 0.64);
    padding-left: 1rem;
    font-size: 0.92rem;
    font-style: italic;
}

.hero-media {
    position: relative;
    --dashboard-frame-pad: 0.65rem;
    width: min(112%, 720px);
    margin-inline: auto 0;
    isolation: isolate;
    border: 1px solid rgba(108, 123, 255, 0.34);
    border-radius: calc(var(--radius) + 8px);
    background:
        radial-gradient(115% 90% at 8% 2%, rgba(59, 74, 211, 0.62), transparent 55%),
        radial-gradient(85% 72% at 96% 100%, rgba(240, 104, 76, 0.48), transparent 66%),
        linear-gradient(145deg, #202060 0%, #0d0f2f 48%, #231527 100%);
    padding: var(--dashboard-frame-pad);
    box-shadow:
        0 34px 80px -38px rgba(9, 12, 65, 0.86),
        0 28px 70px -42px rgba(240, 104, 76, 0.86),
        0 0 0 0.55rem rgba(45, 47, 134, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(240, 104, 76, 0.3);
}

.hero-media img,
.image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-brand);
}

.hero-media img {
    border-radius: calc(var(--radius) - 4px);
    box-shadow: none;
}

.hero-media::before,
.image-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background:
        linear-gradient(135deg, rgba(122, 132, 255, 0.34), transparent 42%, rgba(240, 104, 76, 0.48)),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.12), transparent 26%);
    pointer-events: none;
}

.hero-media::after,
.image-frame::after {
    content: "";
    position: absolute;
    inset: var(--dashboard-frame-pad);
    border-radius: calc(var(--radius) - 4px);
    background:
        linear-gradient(135deg, rgba(88, 103, 255, 0.16), transparent 36%),
        linear-gradient(to top, rgba(21, 16, 32, 0.26), transparent 44%),
        radial-gradient(78% 46% at 82% 100%, rgba(240, 104, 76, 0.32), transparent 72%);
    pointer-events: none;
    z-index: 2;
}

.metric-card {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    width: fit-content;
    border-radius: 18px;
    background: #fff;
    color: var(--foreground);
    padding: 0.95rem 1.1rem;
    box-shadow: var(--shadow-brand);
}

.metric-card.floating {
    position: absolute;
    left: -1.4rem;
    bottom: -1.4rem;
}

.metric-card strong {
    display: block;
    color: var(--brand-purple);
    font-family: var(--font-display);
    font-stretch: 125%;
    font-size: 1.5rem;
    line-height: 1;
}

.metric-card small {
    color: var(--muted);
}

.metric-icon,
.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 14px;
    background: rgba(240, 104, 76, 0.12);
    color: var(--brand-coral);
    font-weight: 900;
}

.metric-icon .icon,
.card-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.stats-strip {
    padding-block: 2.8rem;
    background: var(--brand-sand);
}

.stats-strip .eyebrow {
    display: flex;
    justify-content: center;
    margin-bottom: 1.6rem;
    text-align: center;
}

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

.stats-grid article {
    display: grid;
    gap: 0.45rem;
    padding: 1.25rem 1rem;
    text-align: center;
}

.stats-grid article+article {
    border-left: 1px solid rgba(45, 50, 120, 0.16);
}

.stats-grid strong {
    color: var(--brand-purple);
    font-family: var(--font-display);
    font-stretch: 125%;
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
}

.stats-grid span {
    color: rgba(45, 50, 120, 0.72);
    font-size: 0.92rem;
}

.section-heading {
    max-width: 760px;
}

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

.section-heading h2,
.solution-grid h2,
.split-grid h2,
.about-grid h2,
.contact-grid h2,
.cta-content h2 {
    margin-top: 0.75rem;
    color: var(--brand-purple);
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 800;
}

.section-dark .solution-grid h2,
.section-dark .cta-content h2 {
    color: #fff;
}

.section-heading p,
.split-grid p,
.about-grid p,
.contact-grid p,
.cta-content p {
    margin-top: 1.15rem;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.problem-grid,
.cards-grid,
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.compact-card,
.solution-card,
.segment-grid article,
.training-grid article,
.differentials-grid article,
.before-after article,
.faq-item,
.contact-form {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.compact-card {
    display: grid;
    gap: 1rem;
    padding: 1.45rem;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.compact-card:hover {
    border-color: rgba(240, 104, 76, 0.62);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.compact-card h3,
.solution-card h3,
.segment-grid h3,
.training-grid h3,
.differentials-grid h3,
.before-after h3 {
    color: var(--brand-purple);
    font-size: 1.22rem;
    font-weight: 700;
}

.compact-card h3 {
    font-size: 1rem;
    font-weight: 600;
}

.section-punch {
    max-width: 780px;
    margin-top: 3rem;
    color: var(--brand-purple);
    font-family: var(--font-display);
    font-stretch: 125%;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2;
}

.section-punch.compact {
    max-width: 720px;
    margin-top: 2rem;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
}

.solution-section {
    isolation: isolate;
    background:
        radial-gradient(42rem 28rem at 7% 12%, rgba(240, 104, 76, 0.18), transparent 62%),
        radial-gradient(40rem 28rem at 96% 90%, rgba(47, 182, 163, 0.17), transparent 62%),
        linear-gradient(135deg, #24122a 0%, #101326 46%, #061425 100%);
    padding-block: clamp(5.5rem, 8vw, 7.5rem);
}

.solution-section::before,
.solution-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
}

.solution-section::before {
    right: 0;
    top: -6rem;
    width: 30rem;
    height: 30rem;
    background: rgba(240, 104, 76, 0.18);
    filter: blur(90px);
}

.solution-section::after {
    right: 2rem;
    bottom: -12rem;
    width: 34rem;
    height: 34rem;
    background: rgba(47, 182, 163, 0.12);
    filter: blur(100px);
}

.solution-section .mesh-bg {
    z-index: 0;
}

.solution-section .solution-grid {
    z-index: 1;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(3rem, 7vw, 5.5rem);
}

.solution-grid h2 {
    max-width: 640px;
    font-size: clamp(2.45rem, 3.6vw, 3.25rem);
    line-height: 1.04;
}

.solution-section .eyebrow {
    position: relative;
    padding-bottom: 0.85rem;
}

.solution-section .eyebrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.1rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.solution-section .muted-light {
    max-width: 540px;
    margin-block: 1.65rem 2rem;
    font-weight: 600;
}

.solution-section .btn-primary {
    min-width: 12.25rem;
}

.solution-map {
    position: relative;
    width: min(100%, 476px);
    min-height: 21.75rem;
    margin-inline: auto;
    padding-bottom: 3.35rem;
}

.solution-map-heading {
    position: relative;
    z-index: 3;
    display: grid;
    min-height: 3rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: linear-gradient(135deg, #f45f4b 0%, #f06b4d 48%, #ef5942 100%);
    color: #fff;
    font-family: var(--font-display);
    font-stretch: 125%;
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.solution-map-lines {
    position: absolute;
    inset: 2.75rem 0 4.4rem;
    z-index: 0;
    pointer-events: none;
}

.solution-map-lines::before,
.solution-map-lines::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
}

.solution-map-lines::before {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
}

.solution-map-lines::after {
    left: 9%;
    right: 9%;
    top: 48%;
    height: 1px;
}

.solution-map-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
        "system advisor"
        "consulting training"
        "outsourcing .";
    gap: 0.75rem 0.95rem;
    margin-top: 0.95rem;
}

.solution-map-cards::before,
.solution-map-cards::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 25%;
    top: -0.95rem;
    width: 1px;
    height: calc(100% + 0.95rem);
    background: rgba(255, 255, 255, 0.12);
}

.solution-map-cards::after {
    left: 75%;
}

.solution-map-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 0.72rem;
    min-height: 4.45rem;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 12px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.075)),
        rgba(30, 34, 51, 0.76);
    color: #fff;
    padding: 0.72rem 0.85rem;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 13px 34px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.solution-map-card>div {
    min-width: 0;
}

.solution-map-card.is-system {
    grid-area: system;
}

.solution-map-card.is-advisor {
    grid-area: advisor;
}

.solution-map-card.is-consulting {
    grid-area: consulting;
}

.solution-map-card.is-training {
    grid-area: training;
}

.solution-map-card.is-outsourcing {
    grid-area: outsourcing;
}

.solution-map-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
        rgba(255, 255, 255, 0.08);
    color: var(--brand-coral);
    box-shadow: inset 0 0 0 1px rgba(240, 104, 76, 0.18), 0 10px 24px rgba(0, 0, 0, 0.22);
}

.solution-map-icon .icon {
    width: 1.05rem;
    height: 1.05rem;
}

.solution-map-card h3 {
    color: #fff;
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    font-weight: 800;
    line-height: 1.1;
}

.solution-map-card p {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.33;
}

.solution-map-circuit {
    position: absolute;
    right: 0.8rem;
    bottom: 0.1rem;
    z-index: 1;
    width: min(42%, 14.9rem);
    color: rgba(255, 255, 255, 0.2);
}

.solution-map-circuit svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}

.solution-map-circuit path,
.solution-map-circuit circle {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.2;
}

.solution-map-circuit circle {
    fill: rgba(240, 104, 76, 0.7);
    stroke: rgba(255, 255, 255, 0.18);
    filter: drop-shadow(0 0 7px rgba(240, 104, 76, 0.62));
}

.solution-map-spark {
    position: absolute;
    right: -0.3rem;
    bottom: 1.35rem;
    z-index: 1;
    width: 2.35rem;
    height: 2.35rem;
    color: rgba(255, 255, 255, 0.48);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-card {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 1.6rem;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.solution-card:hover {
    border-color: rgba(45, 50, 120, 0.42);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.solution-card .purple {
    background: rgba(45, 50, 120, 0.1);
    color: var(--brand-purple);
    font-size: 0.82rem;
}

.card-icon.purple {
    background: rgba(45, 50, 120, 0.1);
    color: var(--brand-purple);
}

.solution-card h3 {
    margin-top: 1.2rem;
}

.solution-card p,
.segment-grid p,
.training-grid p,
.differentials-grid p,
.before-after li,
.faq-panel p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.solution-card p {
    margin-top: 0.65rem;
}

.solution-card a,
.segment-grid a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    width: fit-content;
    margin-top: auto;
    padding-top: 1.3rem;
    color: var(--brand-purple);
    font-weight: 600;
}

.system-section {
    background: #f2eee5;
}

.image-frame {
    position: relative;
    --dashboard-frame-pad: 0.7rem;
    width: min(100%, 640px);
    margin-inline: auto;
    isolation: isolate;
    border: 1px solid rgba(108, 123, 255, 0.34);
    border-radius: calc(var(--radius) + 8px);
    background:
        radial-gradient(115% 90% at 8% 2%, rgba(59, 74, 211, 0.62), transparent 55%),
        radial-gradient(85% 72% at 96% 100%, rgba(240, 104, 76, 0.48), transparent 66%),
        linear-gradient(145deg, #202060 0%, #0d0f2f 48%, #231527 100%);
    padding: var(--dashboard-frame-pad);
    box-shadow:
        0 34px 80px -38px rgba(9, 12, 65, 0.5),
        0 30px 70px -42px rgba(240, 104, 76, 0.64),
        0 0 0 0.55rem rgba(45, 47, 134, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        inset 0 -1px 0 rgba(240, 104, 76, 0.3);
}

.image-frame img {
    border-radius: calc(var(--radius) - 4px);
    box-shadow: none;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-block: 1.5rem 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border-radius: 14px;
    background: #fff;
    color: var(--brand-purple);
    padding: 0.85rem 0.95rem;
    font-weight: 700;
    box-shadow: 0 10px 24px -20px rgba(21, 16, 32, 0.34);
}

.feature-list .icon {
    width: 0.9rem;
    height: 0.9rem;
    color: var(--brand-coral);
}

.training-section {
    background: var(--background);
}

.training-section .container {
    width: min(100% - 2rem, 1230px);
}

.faq-section {
    background: rgba(225, 221, 209, 0.48);
}

.training-grid,
.segment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.training-grid article,
.segment-grid article {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 1.5rem;
}

.training-grid article {
    min-height: 0;
    border-radius: 1rem;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.training-grid article:not(.is-featured):hover {
    border-color: rgba(45, 50, 120, 0.4);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.training-grid article.is-featured {
    border-color: transparent;
    background: linear-gradient(135deg, var(--brand-coral), var(--brand-coral-dark));
    color: #fff;
    box-shadow: var(--shadow-coral);
}

.training-grid span {
    width: fit-content;
    color: var(--brand-coral);
    font-family: var(--font-display);
    font-stretch: 125%;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.35;
    text-transform: uppercase;
}

.training-grid article.is-featured span {
    color: rgba(255, 255, 255, 0.8);
}

.training-grid h3,
.segment-grid h3,
.differentials-grid h3 {
    margin-top: 1rem;
}

.training-grid h3 {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.training-grid article.is-featured h3 {
    color: #fff;
}

.training-grid p,
.segment-grid p,
.differentials-grid p {
    margin-top: 0.65rem;
}

.training-grid p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.625;
}

.training-grid article.is-featured p {
    color: rgba(255, 255, 255, 0.85);
}

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

.segment-section,
.differentials-section {
    background: rgba(225, 221, 209, 0.6);
}

.segment-grid {
    gap: 1.25rem;
}

.segment-grid article {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0 1rem;
    min-height: 0;
    padding: clamp(1.5rem, 2.4vw, 2rem);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.segment-grid article:hover {
    border-color: rgba(45, 50, 120, 0.4);
    box-shadow: var(--shadow-soft);
}

.segment-grid .card-icon {
    grid-row: 1 / span 3;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--brand-purple);
    color: #fff;
}

.segment-grid .card-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.segment-grid h3,
.segment-grid p,
.segment-grid a {
    grid-column: 2;
}

.segment-grid h3 {
    margin-top: 0;
    font-size: 1.25rem;
}

.segment-grid p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.625;
}

.segment-grid a {
    margin-top: 1rem;
    padding-top: 0;
    color: var(--brand-coral);
    font-size: 0.875rem;
}

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

.results-section .section-heading h2 {
    color: var(--brand-purple);
}

.method-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
    position: relative;
}

.method-list::before {
    content: "";
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: linear-gradient(90deg, var(--brand-purple), var(--brand-coral), var(--brand-purple));
}

.method-list li {
    position: relative;
    display: block;
    padding: 0;
    min-height: 0;
    color: var(--brand-purple);
    font-family: var(--font-display);
    font-stretch: 125%;
    font-weight: 600;
    line-height: 1.35;
}

.method-list span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--brand-coral), var(--brand-coral-dark));
    color: #fff;
    font-family: var(--font-display);
    font-stretch: 125%;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: var(--shadow-coral);
}

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

.before-after article {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 2.4vw, 2rem);
}

.before-after article:first-child {
    border-color: var(--border);
    background: var(--card);
}

.before-after article:last-child {
    border-color: transparent;
    background: var(--brand-ink);
    color: #fff;
    box-shadow: var(--shadow-brand);
}

.before-after article:last-child::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(60% 60% at 20% 20%, rgba(240, 104, 76, 0.15), transparent 60%),
        radial-gradient(50% 50% at 80% 80%, rgba(45, 50, 120, 0.25), transparent 60%);
    opacity: 0.4;
    pointer-events: none;
}

.before-after ul {
    position: relative;
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.before-after li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted);
}

.before-after article:last-child li {
    color: rgba(255, 255, 255, 0.9);
}

.before-after .icon {
    width: 1rem;
    height: 1rem;
    color: var(--brand-coral);
}

.before-after h3 {
    position: relative;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.before-after article:last-child h3 {
    color: var(--brand-coral);
}

.section-punch.compact {
    color: var(--muted);
    max-width: 42rem;
    margin-top: 3.5rem;
}

.section-punch.compact span {
    color: var(--brand-purple);
    font-weight: 700;
}

.differentials-grid article {
    padding: 1.5rem;
    transition: box-shadow 160ms ease;
}

.differentials-grid article:hover {
    box-shadow: var(--shadow-soft);
}

.differentials-grid .card-icon.purple {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.65rem;
    background: rgba(240, 104, 76, 0.1);
    color: var(--brand-coral);
}

.differentials-grid .card-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.differentials-grid h3 {
    margin-top: 1rem;
    font-size: 1rem;
}

.differentials-grid p {
    margin-top: 0.4rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.about-grid {
    align-items: center;
}

.about-grid strong {
    color: var(--brand-purple);
}

.about-grid .btn {
    margin-top: 2rem;
}

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

.about-images img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.about-images img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.about-images img:nth-child(n + 2) {
    aspect-ratio: 4 / 3;
}

.cta-section {
    background: var(--brand-purple);
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    max-width: 56rem;
    text-align: center;
}

.cta-content .eyebrow {
    justify-content: center;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 42rem;
    margin-inline: auto;
}

.cta-actions {
    justify-content: center;
    margin-top: 2rem;
}

.cta-note {
    margin-top: 2rem;
    max-width: 36rem;
    font-size: 0.93rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
}

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

.faq-item {
    overflow: hidden;
    transition: border-color 160ms ease;
}

.faq-item.is-open {
    border-color: rgba(45, 50, 120, 0.3);
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    border: 0;
    background: transparent;
    color: var(--brand-purple);
    padding: clamp(1.25rem, 2vw, 1.5rem);
    text-align: left;
    font-family: var(--font-display);
    font-stretch: 125%;
    font-weight: 600;
}

.faq-icon {
    color: var(--brand-coral);
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 160ms ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

.faq-panel {
    padding: 0 1.25rem 1.25rem;
}

.contact-grid {
    align-items: start;
    grid-template-columns: 2fr 3fr;
    width: min(100% - 2rem, 1120px);
}

.contact-box {
    display: grid;
    gap: 1rem;
    width: min(100%, 32rem);
    margin-top: 1.5rem;
    border-radius: var(--radius);
    background: rgba(225, 221, 209, 0.72);
    padding: clamp(1.4rem, 2vw, 1.65rem);
}

.contact-box p {
    margin-top: 0;
    color: var(--brand-purple);
    font-family: var(--font-display);
    font-size: 1.1rem;
    line-height: 1.2;
}

.contact-box small {
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 1rem;
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: var(--shadow-soft);
}

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

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

.contact-form label.full {
    grid-column: 1 / -1;
}

.contact-form label span {
    color: var(--brand-purple);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--input);
    border-radius: 13px;
    background: var(--background);
    color: var(--foreground);
    padding: 0.82rem 0.9rem;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--brand-purple);
    box-shadow: 0 0 0 3px rgba(45, 50, 120, 0.13);
}

.form-status {
    min-height: 1.4rem;
    color: var(--brand-purple);
    font-size: 0.9rem;
    font-weight: 700;
}

.submit-btn {
    width: 100%;
}

.consent-banner {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 180;
    padding: 0 1.25rem max(1.25rem, env(safe-area-inset-bottom));
    pointer-events: none;
}

.consent-banner__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 1.35rem;
    width: min(100%, 1040px);
    margin-inline: auto;
    border: 1px solid rgba(231, 225, 214, 0.96);
    border-radius: var(--radius);
    background: rgba(252, 251, 248, 0.96);
    box-shadow:
        0 30px 70px -34px rgba(45, 50, 120, 0.48),
        0 16px 36px -28px rgba(21, 16, 32, 0.42);
    padding: 1.15rem;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: auto;
}

.consent-banner__copy {
    display: grid;
    gap: 0.48rem;
}

.consent-banner__eyebrow,
.consent-modal__eyebrow {
    margin: 0;
    color: var(--brand-coral);
    font-family: var(--font-display);
    font-stretch: 125%;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    line-height: 1.2;
    text-transform: uppercase;
}

.consent-banner h2,
.consent-modal h2 {
    color: var(--brand-purple);
    letter-spacing: 0;
}

.consent-banner h2 {
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.18;
}

.consent-banner__summary {
    display: grid;
    gap: 0.45rem;
    max-width: 720px;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.consent-banner__summary :is(p, div, ul, ol),
.consent-modal__body :is(p, div, ul, ol) {
    margin: 0;
}

.consent-banner__summary :is(ul, ol),
.consent-modal__body :is(ul, ol) {
    padding-left: 1.2rem;
}

.consent-banner__summary li,
.consent-modal__body li {
    list-style: disc;
}

.consent-banner__link {
    width: fit-content;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--brand-purple);
    padding: 0;
    font-size: 0.83rem;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: underline;
    text-decoration-color: rgba(45, 50, 120, 0.26);
    text-underline-offset: 4px;
}

.consent-banner__link:hover,
.consent-banner__link:focus-visible {
    color: var(--brand-coral-dark);
    text-decoration-color: currentColor;
}

.consent-banner__link:focus-visible,
.consent-modal__close:focus-visible {
    outline: 3px solid rgba(240, 104, 76, 0.25);
    outline-offset: 3px;
}

.consent-banner__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.62rem;
    min-width: 9.5rem;
}

.consent-banner__actions .btn {
    width: 100%;
    min-height: 44px;
    white-space: nowrap;
}

.consent-modal__footer .btn {
    min-width: 8.75rem;
    min-height: 44px;
    white-space: nowrap;
}

.consent-banner__feedback,
.consent-modal__feedback {
    margin: 0.15rem 0 0;
    color: var(--brand-coral-dark);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.45;
}

.consent-banner [data-consent-decision].is-loading,
.consent-modal [data-consent-decision].is-loading {
    cursor: progress;
    opacity: 0.72;
}

.consent-banner button:disabled,
.consent-modal button:disabled {
    cursor: not-allowed;
}

.consent-modal[hidden] {
    display: none;
}

.consent-modal {
    position: fixed;
    inset: 0;
    z-index: 240;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    pointer-events: auto;
}

.consent-modal__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(21, 16, 32, 0.62);
    cursor: pointer;
}

.consent-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    width: min(100%, 720px);
    max-height: min(720px, calc(100vh - 3rem));
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 36px 90px -42px rgba(21, 16, 32, 0.62);
}

.consent-modal__header {
    position: relative;
    display: grid;
    gap: 0.48rem;
    border-bottom: 1px solid var(--border);
    padding: 1.45rem 4.25rem 1.15rem 1.45rem;
}

.consent-modal h2 {
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.14;
}

.consent-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--background);
    color: var(--brand-purple);
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.consent-modal__close:hover,
.consent-modal__close:focus-visible {
    border-color: rgba(240, 104, 76, 0.4);
    background: rgba(240, 104, 76, 0.1);
    color: var(--brand-coral-dark);
}

.consent-modal__close .icon {
    width: 1.1rem;
    height: 1.1rem;
}

.consent-modal__body {
    display: grid;
    gap: 0.9rem;
    overflow-y: auto;
    padding: 1.35rem 1.45rem;
    color: var(--muted);
    font-size: 0.96rem;
    line-height: 1.7;
}

.consent-modal__body article {
    display: grid;
    gap: 0.9rem;
}

.consent-modal__body h2,
.consent-modal__body h3 {
    margin: 0 0 0.18rem;
    color: var(--brand-purple);
    font-size: 1.22rem;
    line-height: 1.24;
    letter-spacing: 0;
}

.consent-modal__body a {
    color: var(--brand-purple);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.consent-modal__feedback {
    padding: 0 1.45rem 1rem;
}

.consent-modal__footer {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
    background: rgba(225, 221, 209, 0.42);
    padding: 1.1rem 1.45rem 1.35rem;
}

.site-footer {
    background: var(--brand-ink);
    color: rgba(255, 255, 255, 0.78);
    padding-block: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand img {
    width: 210px;
}

.footer-brand p {
    max-width: 460px;
    margin-block: 1.1rem 1.5rem;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer h2 {
    margin-bottom: 1rem;
    color: var(--brand-coral);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-footer nav,
.site-footer address {
    display: grid;
    align-content: start;
    gap: 0.65rem;
    font-style: normal;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

.site-footer address a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer address .icon {
    width: 1rem;
    height: 1rem;
    color: var(--brand-coral);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
}

.floating-contact {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 999px;
    background: #25a98f;
    color: #fff;
    padding: 0.85rem 1.05rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 18px 44px -24px rgba(0, 0, 0, 0.5);
}

.floating-contact .icon {
    width: 1.1rem;
    height: 1.1rem;
}

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

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

@media (max-width: 920px) {

    .hero-grid,
    .solution-grid,
    .split-grid,
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 7.5rem;
    }

    .hero-media {
        max-width: 680px;
        margin-inline: auto;
    }

    .solution-section .solution-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solution-section .solution-grid>div:first-child {
        max-width: 720px;
    }

    .problem-grid,
    .cards-grid,
    .differentials-grid,
    .segment-grid,
    .training-grid,
    .method-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .stats-grid article+article {
        border-left: 0;
    }

    .stats-grid article:nth-child(2n) {
        border-left: 1px solid rgba(45, 50, 120, 0.16);
    }

    .stats-grid article:nth-child(n + 3) {
        border-top: 1px solid rgba(45, 50, 120, 0.16);
    }

    .method-list::before {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {

    .container,
    .narrow {
        width: min(100% - 2rem, var(--container));
    }

    .header-shell {
        min-height: 66px;
    }

    .brand-link {
        width: 158px;
    }

    .header-cta {
        display: none;
    }

    .section {
        padding-block: 4rem;
    }

    .hero {
        padding-block: 6.6rem 4rem;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 9vw, 3rem);
    }

    .hero-actions,
    .cta-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .problem-grid,
    .cards-grid,
    .differentials-grid,
    .training-grid,
    .segment-grid,
    .method-list,
    .before-after,
    .form-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid article:nth-child(2n),
    .stats-grid article:nth-child(n + 3) {
        border: 0;
    }

    .stats-grid article+article {
        border-top: 1px solid rgba(45, 50, 120, 0.16);
    }

    .metric-card.floating {
        position: static;
        margin-top: 1rem;
    }

    .hero-media {
        width: 100%;
        padding: 0.45rem;
    }

    .hero-media::after {
        inset: 0.45rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .solution-grid h2 {
        font-size: clamp(2.05rem, 9.2vw, 2.6rem);
    }

    .solution-section .muted-light {
        font-size: 1rem;
    }

    .solution-map {
        width: min(100%, 400px);
        min-height: 0;
        padding-bottom: 0;
    }

    .solution-map-heading {
        min-height: 3.65rem;
        font-size: 1.35rem;
    }

    .solution-map-lines,
    .solution-map-cards::before,
    .solution-map-cards::after,
    .solution-map-circuit,
    .solution-map-spark {
        display: none;
    }

    .solution-map-cards {
        grid-template-columns: 1fr;
        grid-template-areas:
            "system"
            "advisor"
            "consulting"
            "training"
            "outsourcing";
        gap: 0.75rem;
        margin-top: 0.85rem;
    }

    .solution-map-card {
        min-height: 0;
        gap: 0.85rem;
        padding: 0.9rem 1rem;
    }

    .solution-map-icon {
        width: 2.85rem;
        height: 2.85rem;
    }

    .solution-map-icon .icon {
        width: 1.25rem;
        height: 1.25rem;
    }

    .solution-map-card h3 {
        font-size: 1.08rem;
    }

    .solution-map-card p {
        font-size: 0.82rem;
    }

    .about-images {
        gap: 0.75rem;
    }

    .floating-contact {
        right: 0.75rem;
        bottom: 0.75rem;
        max-width: calc(100vw - 1.5rem);
        padding: 0.75rem 0.9rem;
        font-size: 0.8rem;
    }

    .consent-banner {
        padding: 0 0.75rem max(0.75rem, env(safe-area-inset-bottom));
    }

    .consent-banner__panel {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .consent-banner__actions {
        grid-template-columns: 1fr 1fr;
        min-width: 0;
    }

    .consent-modal {
        align-items: end;
        padding: 0.75rem;
    }

    .consent-modal__dialog {
        max-height: calc(100vh - 1.5rem);
    }

    .consent-modal__header {
        padding: 1.25rem 3.75rem 1rem 1.15rem;
    }

    .consent-modal__body {
        padding: 1.15rem;
        font-size: 0.9rem;
    }

    .consent-modal__feedback {
        padding-inline: 1.15rem;
    }

    .consent-modal__footer {
        display: grid;
        grid-template-columns: 1fr;
        padding: 1rem 1.15rem 1.15rem;
    }

    .consent-modal__footer .btn {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .consent-banner__actions {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {

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