:root {
    --color-primary: #c40000;
    --color-primary-dark: #9d0000;

    --color-dark: #1a1a1a;
    --color-text: #2f2f2f;
    --color-muted: #686868;

    --color-light: #f6f7f9;
    --color-border: #e8e8e8;
    --color-white: #ffffff;

    --font-heading: "Outfit", Arial, sans-serif;
    --font-body: "Inter", Arial, sans-serif;

    --container-width: 1320px;
    --content-width: 760px;

    --radius-small: 8px;
    --radius-medium: 10px;
    --radius-large: 24px;

    --transition: 250ms ease;

    --shadow-small: 0 12px 35px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 24px 70px rgba(0, 0, 0, 0.1);

    --section-space-desktop: 88px;
    --section-space-tablet: 64px;
    --section-space-mobile: 48px;

    --section-intro-gap: 52px;
    --card-gap: 22px;

    --content-radius: 20px;

    --hero-space-top-desktop: 56px;
    --hero-space-bottom-desktop: 72px;

    --hero-space-top-tablet: 48px;
    --hero-space-bottom-tablet: 56px;

    --hero-space-top-mobile: 40px;
    --hero-space-bottom-mobile: 48px;

    --hero-eyebrow-gap: 22px;
    --hero-title-gap: 28px;
    --hero-actions-gap: 34px;
    --hero-trust-gap: 36px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
}

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

a {
    color: inherit;
}

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

.container {
    width: min(var(--container-width), calc(100% - 48px));
    margin-inline: auto;
}
.navigation-list > li > a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

.navigation-list > li > a::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}

.navigation-list > li > a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
.section-bridge {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 34px 40px;
    border-left: 4px solid var(--color-primary);
    background: var(--color-white);
    box-shadow: var(--shadow-small);
}

.section-bridge p {
    margin: 0;
    color: var(--color-dark);
    font-size: clamp(1.35rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.45;
}
.competence-card {
    height: 100%;
}
.competence-grid {
    align-items: stretch;
}
.competence-number {
    margin-bottom: 28px;
}

.competence-card h3 {
    font-size: 1.7rem;
}
.competence-card:hover {
    transform: translateY(-8px);
}

.competence-card:hover .competence-link {
    transform: translateX(4px);
}

.competence-link {
    display: inline-block;
    transition: transform var(--transition);
}
.partner-card {
    background: transparent;
    box-shadow: none;
}

.partner-card:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--color-primary);
}
/* Wertebereich */

.values-section {
    padding: 130px 0;
    background: var(--color-dark);
}

.values-container {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 90px;
    align-items: start;
}

.values-intro {
    position: sticky;
    top: 140px;
}

.values-section .section-kicker {
    color: #ff4a4a;
}

.values-title {
    max-width: 700px;
    margin: 0 0 28px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.values-lead {
    max-width: 650px;
    margin: 0 0 22px;
    color: var(--color-white);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 600;
    line-height: 1.5;
}

.values-text {
    max-width: 650px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.8;
}

.values-section .button-secondary {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.45);
}

.values-section .button-secondary:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

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

.value-card {
    min-height: 290px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.055);
    transition:
        transform var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

.value-card:hover {
    border-color: rgba(255, 74, 74, 0.55);
    background: rgba(255, 255, 255, 0.085);
    transform: translateY(-6px);
}

.value-number {
    display: block;
    margin-bottom: 54px;
    color: #ff4a4a;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.value-card h3 {
    margin: 0 0 14px;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.6rem;
}

.value-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.92rem;
    line-height: 1.75;
}
.navigation-dropdown {
    transition:
        opacity 180ms ease,
        visibility 180ms ease,
        transform 220ms ease;
}
.navigation-dropdown {
    transform: translate(-50%, 8px);
}

.navigation-item-dropdown:hover .navigation-dropdown,
.navigation-item-dropdown.is-open .navigation-dropdown {
    transform: translate(-50%, 0);
}
.site-header.is-scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.partner-card:hover {
    border-color: rgba(196, 0, 0, 0.35);
    transform: translateY(-3px);
}
.competence-card {
    transition:
        transform 240ms ease,
        border-color 240ms ease,
        box-shadow 260ms ease;
}

.competence-card::before {
    transition:
        opacity 180ms ease,
        transform 300ms ease;
}
.competence-link {
    display: inline-block;
    transition: transform 220ms ease;
}

.competence-card:hover .competence-link {
    transform: translateX(5px);
}
.value-card:hover {
    transform: translateY(-4px);
}
.partner-section {
    padding-bottom: 40px;
}

.section-bridge {
    margin-bottom: 70px;
}

.competence-section {
    padding-top: 105px;
    padding-bottom: 110px;
}

.values-section {
    padding-top: 115px;
}
.customer-logo-overlay {
    position: absolute;
    right: 10px;
    bottom: 12px;
    left: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 58px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(10px);
    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.customer-logo-domain {
    margin-bottom: 2px;
    color: var(--color-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.customer-logo-action {
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
}
a.customer-logo-card:hover img,
a.customer-logo-card:focus-visible img {
    opacity: 0.22;
    transform: scale(1.03);
}
.customer-logos-footer {
    margin-top: 64px;
    text-align: center;
}
.customer-logo-overlay {
    position: absolute;
    right: 18px;
    bottom: 12px;
    left: 18px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: 58px;
    padding: 10px 14px;

    border-radius: 12px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);

    opacity: 0;
    transform: translateY(10px);

    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.customer-logo-domain {
    margin-bottom: 2px;
    color: var(--color-dark);
    font-size: 0.8rem;
    font-weight: 700;
}

.customer-logo-action {
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 700;
}

a.customer-logo-card:hover img,
a.customer-logo-card:focus-visible img {
    opacity: 0.18;
    transform: scale(1.03);
}

.customer-logos-footer {
    margin-top: 42px;
    text-align: center;
}

.customer-logos-footer p {
    margin: 0 0 22px;
    color: var(--color-muted);
    font-size: 1rem;
}
a.customer-logo-card:hover img,
a.customer-logo-card:focus-visible img {
    opacity: 0.12;
    transform: scale(1.02);
}
/* =========================================================
   SO ARBEITEN WIR
   ========================================================= */

.work-process-section {
    padding: 40px 0 120px;
    background: var(--color-light);
}

.work-process-intro {
    max-width: 820px;
    margin-bottom: 58px;
}

.work-process-intro h2 {
    max-width: 760px;
    margin: 14px 0 22px;
}

.work-process-intro p {
    max-width: 760px;
    margin: 0;
    color: var(--color-muted);
    font-size: 1.08rem;
    line-height: 1.75;
}

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

.work-process-card {
    position: relative;
    min-height: 270px;
    padding: 32px 34px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: var(--color-white);
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 240ms ease;
}

.work-process-card:hover {
    border-color: rgba(196, 0, 0, 0.25);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.work-process-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
}

.work-process-number {
    color: var(--color-primary);
    font-family: "JetBrains Mono", monospace;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.work-process-icon {
    width: 34px;
    height: 34px;
    color: var(--color-primary);
    opacity: 0.22;
    stroke-width: 1.6;
    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.work-process-card:hover .work-process-icon {
    opacity: 0.5;
    transform: scale(1.06);
}

.work-process-card h3 {
    margin: 0 0 16px;
    color: var(--color-dark);
    font-size: 1.45rem;
    line-height: 1.25;
}

.work-process-card p {
    max-width: 520px;
    margin: 0;
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.work-process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 32px;
    padding: 30px 36px;
    border: 1px solid rgba(196, 0, 0, 0.12);
    border-radius: 18px;
    background: var(--color-white);
}

.work-process-cta h3 {
    margin: 0 0 8px;
    color: var(--color-dark);
    font-size: 1.35rem;
}

.work-process-cta p {
    max-width: 720px;
    margin: 0;
    color: var(--color-muted);
    line-height: 1.65;
}

.work-process-cta .button {
    flex-shrink: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
    .work-process-section {
        padding: 90px 0;
    }

    .work-process-grid {
        grid-template-columns: 1fr;
    }

    .work-process-card {
        min-height: auto;
    }

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

@media (max-width: 640px) {
    .work-process-section {
        padding: 72px 0;
    }

    .work-process-intro {
        margin-bottom: 38px;
    }

    .work-process-intro p {
        font-size: 1rem;
    }

    .work-process-card {
        padding: 26px;
    }

    .work-process-card-header {
        margin-bottom: 38px;
    }

    .work-process-card h3 {
        font-size: 1.28rem;
    }

    .work-process-cta {
        margin-top: 28px;
        padding: 26px;
    }

    .work-process-cta .button {
        width: 100%;
        text-align: center;
    }
}
.work-process-intro .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.work-process-intro h2 {
    max-width: 760px;
    margin: 0 0 22px;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.025em;
}
.work-process-number {
    color: var(--color-primary);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.work-process-icon {
    width: 30px;
    height: 30px;
    color: var(--color-primary);
    opacity: 0.25;
    stroke-width: 1.7;
}
.work-process-card:hover .work-process-icon {
    opacity: 0.65;
    transform: translateY(-2px);
}

.work-process-cta p {
    max-width: 650px;
}
/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    position: relative;
    padding: 88px 0 34px;
    background: #191919;
    color: rgba(255, 255, 255, 0.88);
}

.site-footer-statement {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
    align-items: center;
    gap: 72px;

    margin-bottom: 90px;
    padding-bottom: 90px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-statement-main {
    max-width: 920px;
}

.site-footer-statement .section-eyebrow {
    display: inline-block;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-footer-statement h2 {
    max-width: 900px;
    margin: 0;

    color: #fff;
    font-size: clamp(2.8rem, 4.1vw, 4.35rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.site-footer-statement-copy {
    max-width: 430px;
    padding: 0;
}

.site-footer-statement-copy p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.75;
}
.site-footer-statement-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 200ms ease,
        gap 200ms ease;
}

.site-footer-statement-link span {
    color: var(--color-primary);
}

.site-footer-statement-link:hover {
    gap: 16px;
    color: var(--color-primary);
}
.site-footer-grid {
    display: grid;
    grid-template-columns:
        minmax(240px, 1.7fr)
        repeat(4, minmax(130px, 1fr));
    gap: 52px;
    padding-top: 56px;
    padding-bottom: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.site-footer-logo-mark {
    color: var(--color-primary);
}

.site-footer-brand p {
    max-width: 320px;
    color: rgba(255,255,255,.68);
    line-height: 1.75;
}
.site-footer-column h3 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 1rem;
}

.site-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer-column li+li {
    margin-top: 12px;
}

.site-footer-column a,
.site-footer-contact a,
.site-footer-contact span {
    color: rgba(255,255,255,.68);
    text-decoration: none;
    transition: color .2s ease;
}

.site-footer-column a:hover,
.site-footer-contact a:hover {
    color: #fff;
}
.site-footer-contact address {
    display: flex;
    flex-direction: column;
    gap: 12px;

    font-style: normal;
}
.site-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 28px;
}

.site-footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.5);
}

.site-footer-bottom nav {
    display: flex;
    gap: 28px;
}

.site-footer-bottom a {
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color .2s ease;
}

.site-footer-bottom a:hover {
    color: #fff;
}
.back-to-top {
    position: fixed;

    right: 34px;
    bottom: 34px;

    width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--color-dark);
    color: #fff;

    box-shadow: 0 16px 36px rgba(0,0,0,.18);

    transition:
        transform .22s ease,
        background .22s ease;

    z-index: 999;
}

.back-to-top:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
}

.back-to-top svg {
    width: 22px;
    height: 22px;
}
.site-footer-contact a {
    overflow-wrap: anywhere;
}

.site-footer-contact address {
    max-width: 210px;
}
.back-to-top {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #242424;
}
.work-process-section {
    padding-bottom: 88px;
}
.site-footer-brand img,
.site-footer-logo {
    transform: scale(0.95);
}
.site-footer-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    white-space: nowrap;
    color: var(--color-white);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.site-footer-logo-mark,
.site-footer-logo-text {
    display: inline-block;
    line-height: 1;
}

.site-footer-logo-mark {
    color: var(--color-primary);
}

.site-footer-logo-text {
    color: var(--color-white);
    white-space: nowrap;
}
.site-footer-logo-mark{
    color: var(--color-primary);
    margin-right: 2px;
}
.site-footer-logo{
    margin-left: -9px;
}
:root{
    --footer-logo-size: 2.4rem;
    --footer-logo-offset: -9px;
}
/* =========================================================
   TYPISCHE SHOPIFY-PROJEKTE
   ========================================================= */

.shopify-projects-section {
    padding: 40px 0;
    background: var(--color-white);
}

.shopify-projects-intro {
    max-width: 900px;
    margin-bottom: 46px;
}

.shopify-projects-intro .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.shopify-projects-intro h2 {
    max-width: 940px;
    margin: 0 0 22px;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.shopify-projects-intro p {
    max-width: 760px;
    margin: 0;
    color: var(--color-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

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

.shopify-project-card {
    position: relative;
    min-height: 250px;
    padding: 34px;
    border: 1px solid #e7e1da;
    border-radius: 18px;
    background: #f7f5f2;
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 240ms ease;
}

.shopify-project-card:hover {
    border-color: rgba(196, 0, 0, 0.28);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.07);
    transform: translateY(-5px);
}

.shopify-project-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 46px;
}

.shopify-project-number {
    color: var(--color-primary);
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.shopify-project-icon {
    width: 29px;
    height: 29px;
    color: var(--color-primary);
    opacity: 0.24;
    stroke-width: 1.6;
    transition:
        opacity 220ms ease,
        transform 220ms ease;
}

.shopify-project-card:hover .shopify-project-icon {
    opacity: 0.65;
    transform: translateY(-2px);
}

.shopify-project-card h3 {
    margin: 0 0 14px;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: 1.42rem;
    line-height: 1.25;
}

.shopify-project-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.94rem;
    line-height: 1.72;
}
.section-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.integration-floating-data {
    left: 28px;
    bottom: -18px;
    z-index: 5;
}
@media (max-width: 700px) {
    .integration-hero-visual {
        min-height: 910px;
    }

    .integration-platform-plenty {
        right: 20px;
        bottom: 135px;
    }

    .integration-floating-stock {
        right: auto;
        bottom: 24px;
        left: 20px;
        width: calc(100% - 40px);
    }
}
/* Einheitlicher Eyebrow auf allen hellen Sections */
.section-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    color: #d90000;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: 1;
}
:root {
    --color-eyebrow: #d90000;
}
.section-eyebrow {
    color: var(--color-eyebrow);
}
.hero-kicker,
.section-eyebrow {
    display: inline-block;
    margin: 0 0 24px;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: 1;
}
.shopify-partner-section,
.shopify-services-section,
.shopify-experience-section,
.shopify-projects-section,

.plentyone-services-section,
.plentyone-experience-section,
.plentyone-channels-section,
.plentyone-projects-section,

.integration-system-section,
.integration-benefits-section,
.combo-projects {
    padding-top: var(--section-space-desktop);
    padding-bottom: var(--section-space-desktop);
}
.section-intro,
.shopify-partner-intro,
.shopify-services-intro,
.shopify-projects-intro,
.plentyone-services-intro,
.plentyone-projects-intro,
.integration-benefits-intro {
    max-width: 920px;
    margin-bottom: var(--section-intro-gap);
}
.hero-kicker,
.section-kicker,
.section-eyebrow.section-eyebrow {
    display: inline-block;
    margin-top: 0;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: 1;
}
.plentyone-experience-section .section-eyebrow,
.site-footer .section-eyebrow {
    color: #ff4a4a;
}
.section-intro h2,
.shopify-partner-intro h2,
.shopify-services-intro h2,
.shopify-projects-intro h2,
.plentyone-services-intro h2,
.plentyone-projects-intro h2,
.integration-benefits-intro h2,
.combo-projects .section-intro h2 {
    margin: 0 0 22px;
    color: var(--color-dark);
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 4.5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
}
:root {
    --radius-card: 22px;
    --radius-button: 14px;

    --shadow-card: 0 14px 40px rgba(0, 0, 0, 0.05);
    --shadow-card-hover: 0 20px 55px rgba(0, 0, 0, 0.08);
    --shadow-hero: 0 35px 80px rgba(0, 0, 0, 0.10);

    --section-space-desktop: 90px;
    --section-space-tablet: 70px;
    --section-space-mobile: 50px;
}
.button {
    border-radius: var(--radius-button);
    transition:
        transform 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease,
        border-color 220ms ease;
}

.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(196, 0, 0, 0.22);
}

.button-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary);
    background: var(--color-white);
}
.hero-kicker,
.section-kicker,
.section-eyebrow.section-eyebrow {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
    opacity: 1;
}
