/* ============================================================
   plusmatic — v2
   Dark + Electric Lime. Broken grid. No AI slop.
   ============================================================ */

:root {
    --bg: #050505;
    --bg-alt: #0a0a0a;
    --text: #e8e4de;
    --text-dim: rgba(232, 228, 222, 0.62);
    --text-mute: rgba(232, 228, 222, 0.58);
    --text-ghost: rgba(232, 228, 222, 0.1);
    --nav-h: clamp(72px, 8vw, 96px);
    --accent: #e8ff45;
    --border: rgba(255, 255, 255, 0.07);
    --border-h: rgba(255, 255, 255, 0.15);
    --r: 12px;
    --font-d: 'Space Grotesk', sans-serif;
    --font-b: 'Inter', sans-serif;
    --font-m: 'Space Mono', 'Courier New', monospace;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --container: min(1280px, 88vw);
    --gap: clamp(100px, 14vw, 180px);
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { position: relative; font-family: var(--font-b); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
/* The custom cursor only replaces the real one where it actually runs — the
   class is set by main.js after its pointer checks. */
html.has-custom-cursor body,
html.has-custom-cursor button { cursor: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
::selection { background: var(--accent); color: #000; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* Skip link — first tab stop, visible only when focused. */
.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 2000;
    padding: 12px 20px; background: var(--accent); color: #000;
    font-family: var(--font-m); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Visually hidden but readable by screen readers. */
.screen-reader-text {
    position: absolute; width: 1px; height: 1px; overflow: hidden;
    clip-path: inset(50%); white-space: nowrap;
}
body p:empty { display: none; }

/* ── Accent ──────────────────────────────────── */
.accent { color: var(--accent); }

/* ── Mono Label ──────────────────────────────── */
.label-mono {
    font-family: var(--font-m);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
}

.section-title {
    font-family: var(--font-d);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    margin-top: 16px;
}


/* ── Cursor ──────────────────────────────────── */
.cursor { pointer-events: none; position: fixed; top: 0; left: 0; z-index: 10000; }
.cursor__dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.25s;
    mix-blend-mode: difference;
}
.cursor__circle {
    width: 48px; height: 48px;
    border: 1px solid rgba(200, 255, 0, 0.3);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--ease), height 0.35s var(--ease), border-color 0.3s;
    mix-blend-mode: difference;
}
body.cursor-hover .cursor__dot { width: 0; height: 0; opacity: 0; }
body.cursor-hover .cursor__circle { width: 72px; height: 72px; border-color: rgba(200, 255, 0, 0.5); }


/* ── Grain ───────────────────────────────────── */
.grain {
    position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
}


/* ── Nav ─────────────────────────────────────── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 24px 0;
    transition: background 0.5s, padding 0.4s var(--ease), backdrop-filter 0.5s;
}
.nav--scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}
.nav--scrolled .nav__logo-img { height: clamp(25px, 2.7vw, 34px); }
.nav__inner {
    max-width: var(--container); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
    display: flex; align-items: center;
}
.nav__logo-img { height: clamp(30px, 3.4vw, 43px); width: auto; }
.nav__links { display: flex; gap: 32px; }
.nav__link {
    white-space: nowrap;
    font-family: var(--font-m); font-size: 0.6875rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--text-dim);
    transition: color 0.3s;
}
.nav__link:hover { color: var(--accent); }
.nav__cta {
    white-space: nowrap;
    font-family: var(--font-m); font-size: 0.6875rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 10px 24px;
    border: 1px solid var(--accent);
    color: var(--accent);
    border-radius: 0;
    transition: background 0.3s, color 0.3s;
}
.nav__cta:hover { background: var(--accent); color: #000; }
.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.nav__burger span { display: block; width: 24px; height: 1.5px; background: var(--text); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__burger.is-active span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__burger.is-active span:last-child { transform: translateY(-3.75px) rotate(-45deg); }


/* ── Mobile Menu ─────────────────────────────── */
.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(5, 5, 5, 0.97);
    backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0s linear 0.4s;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; visibility: visible; transition-delay: 0s; }
.mobile-menu__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu__link {
    font-family: var(--font-d); font-size: clamp(1.8rem, 6vw, 3rem); font-weight: 600;
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), color 0.3s;
}
.mobile-menu.is-open .mobile-menu__link { opacity: 1; transform: none; }
.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu__link:hover { color: var(--accent); }
.mobile-menu__link--cta { color: var(--accent); }


/* ── Buttons ─────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-m); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.08em;
    padding: 16px 32px;
    transition: all 0.3s var(--ease);
}
.btn--primary {
    background: var(--accent); color: #000; border: 1px solid var(--accent);
}
.btn--primary:hover { background: #fff; border-color: #fff; }
.btn--ghost {
    background: transparent; color: var(--text-dim);
    border: 1px solid var(--border-h);
}
.btn--ghost:hover { color: var(--text); border-color: var(--text); }
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }


/* ── Reveal ──────────────────────────────────
   Deliberately NOT clip-path: an element hidden with
   clip-path: inset(0 0 100% 0) reports intersectionRatio 0 to the
   IntersectionObserver that is supposed to reveal it — it hides itself from its
   own trigger and stays invisible forever. Measured: all 12 elements never got
   .is-visible. opacity/transform do not affect intersection, so the reveal fires.
   Without JS nothing is hidden in the first place (see html:not(.js) below). */
.reveal-clip {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
    will-change: opacity, transform;
}
.reveal-clip.is-visible {
    opacity: 1;
    transform: none;
}
/* No JavaScript, no hiding — content must never depend on a script to exist. */
html:not(.js) .reveal-clip,
html:not(.js) .scroll-reveal {
    opacity: 1;
    transform: none;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex; align-items: flex-end;
    padding: 0 0 72px;
}
.hero__loop { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__loop video { width: 100%; height: 100%; object-fit: cover; opacity: .22; filter: saturate(.6);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,0) 92%); mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,0) 92%); }
@media (prefers-reduced-motion: reduce) { .hero__loop video { display: none; } }
.hero__grid {
    position: relative; z-index: 2;
    width: 100%; max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 88px);
    align-items: end;
}

.hero__bg-seven {
    position: absolute;
    right: -8vw; top: 50%; transform: translateY(-55%);
    /* Fade the glyph towards its loose ends – the radial variant centred on the
       mostly off-screen element never reached them, the stroke still ended in a
       hard cut. Directional fade towards the top-left where the lines terminate. */
    -webkit-mask-image: linear-gradient(315deg, #000 30%, transparent 75%);
    mask-image: linear-gradient(315deg, #000 30%, transparent 75%);
    font-family: var(--font-d); font-size: clamp(40rem, 70vw, 70rem);
    font-weight: 700; line-height: 0.8;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-ghost);
    user-select: none; pointer-events: none;
    opacity: 0.22;
}

.hero__content { position: relative; z-index: 2; padding-top: 180px; min-width: 0; }


.hero__title {
    font-family: var(--font-d);
    /* Sized so "und KI-Automatisierung." stays one line from 320px up –
       no hyphens: "Soft-ware" and "Automatisie-rung" are not a look. */
    font-size: clamp(2rem, 5.4vw, 4.9rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 0.98;
    text-wrap: balance;
    opacity: 0; animation: fadeIn 0.6s 0.1s var(--ease) forwards;
}

.hero__sub {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    color: var(--text-dim); line-height: 1.8;
    margin-top: 40px; max-width: 440px;
    opacity: 0; animation: fadeIn 0.8s 0.6s var(--ease) forwards;
}

.hero__meta {
    display: flex; flex-wrap: wrap; gap: 8px 22px;
    margin-top: 40px; padding: 0; list-style: none;
    font-family: var(--font-m); font-size: 0.72rem; letter-spacing: 0.04em;
    color: var(--text-dim);
    opacity: 0; animation: fadeIn 0.8s 0.9s var(--ease) forwards;
}
.hero__link {
    display: inline-flex; align-items: center; gap: 8px; align-self: center;
    font-family: var(--font-m); font-size: 0.8rem; letter-spacing: 0.04em; color: var(--text);
    text-decoration: none; border-bottom: 1px solid var(--border-h); padding-bottom: 2px;
    transition: border-color .3s var(--ease), color .3s var(--ease);
}
.hero__link:hover { color: var(--accent); border-color: var(--accent); }
.hero__link:hover span { transform: translate(2px, -2px); }
.hero__link span { display: inline-block; transition: transform .3s var(--ease); }

/* the work as hero image: three real sites, scattered like prints on a desk.
   Each one is a slow screen recording (object-position scroll, as on bnkgroup.de). */
.hero__media {
    position: relative; z-index: 2; min-width: 0; aspect-ratio: 1 / 1;
    opacity: 0; animation: fadeIn 1s 0.5s var(--ease) forwards;
}
.hero__shot {
    position: absolute; margin: 0; aspect-ratio: 16 / 10;
    border-radius: 10px; border: 1px solid var(--border-h); background: #0c0c0c; overflow: hidden;
    box-shadow: 0 26px 64px rgba(0,0,0,.55);
    transition: transform .7s var(--ease), border-color .4s var(--ease);
}
.hero__shot--1 { width: 74%; left: 13%; top: 45%; z-index: 3; transform: rotate(-2.2deg); }
.hero__shot--2 { width: 52%; left: 0;   top: 10%; z-index: 2; transform: rotate(3.4deg); }
.hero__shot--3 { width: 47%; right: 0;  top: 0;   z-index: 1; transform: rotate(-4.6deg); }
.hero__media:hover .hero__shot--1 { transform: rotate(-2.2deg) translateY(-8px); }
.hero__media:hover .hero__shot--2 { transform: rotate(3.4deg) translate(-6px, 6px); }
.hero__media:hover .hero__shot--3 { transform: rotate(-4.6deg) translate(6px, -6px); }
.hero__shot:hover { border-color: var(--border-h); z-index: 4; }
.hero__shot img {
    position: absolute; top: 22px; left: 0; width: 100%; height: calc(100% - 22px);
    object-fit: cover; object-position: top; filter: saturate(.85);
    animation: shotScroll 30s ease-in-out infinite; animation-delay: calc(var(--i, 0) * -7s);
}
.hero__shot--2 img { animation-delay: -10s; }
.hero__shot--3 img { animation-delay: -20s; }
@keyframes shotScroll { 0%, 6% { object-position: top; } 46%, 54% { object-position: bottom; } 94%, 100% { object-position: top; } }
@media (prefers-reduced-motion: reduce) { .hero__shot img { animation: none; } }
.hero__sub strong { color: var(--text); font-weight: 500; }

.hero__actions {
    display: flex; align-items: center; gap: 28px; margin-top: 48px; flex-wrap: wrap;
    opacity: 0; animation: fadeIn 0.8s 0.8s var(--ease) forwards;
}

.hero__scroll {
    position: absolute; bottom: 40px; right: 6vw;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    opacity: 0; animation: fadeIn 0.8s 1.2s var(--ease) forwards;
}
.hero__scroll span {
    font-family: var(--font-m); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--text-dim);
    writing-mode: vertical-lr;
}
.hero__scroll-line {
    width: 1px; height: 60px;
    background: var(--border-h);
    position: relative; overflow: hidden;
}
.hero__scroll-line::after {
    content: ''; position: absolute; top: -100%; left: 0;
    width: 100%; height: 100%;
    background: var(--accent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}
@keyframes fadeIn {
    to { opacity: 1; }
}



/* ============================================================
   SHARED — section chrome
   ============================================================ */
.section-sub {
    font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-dim);
    margin-top: 16px; max-width: 58ch;
}
.tiles__sub, .pricing__sub, .cases__sub { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-dim); margin-top: 16px; max-width: 58ch; }
.tiles__header, .steps__header, .compare__header, .pricing__header, .cases__header, .faq__header { margin-bottom: clamp(40px, 6vw, 64px); }
/* section eyebrow: lime dash + mono uppercase (the bracket style is reserved for the hero meta line) */
.tiles__header > .label-mono, .steps__header > .label-mono, .compare__header > .label-mono, .pricing__header > .label-mono, .cases__header > .label-mono, .quotes__header > .label-mono, .team__body > .label-mono, .faq__header > .label-mono, .logos__label {
    display: inline-flex; align-items: center; gap: 14px; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.68rem;
}
.tiles__header > .label-mono::before, .steps__header > .label-mono::before, .compare__header > .label-mono::before, .pricing__header > .label-mono::before, .cases__header > .label-mono::before, .quotes__header > .label-mono::before, .team__body > .label-mono::before, .faq__header > .label-mono::before, .logos__label::before {
    content: ''; width: 28px; height: 1px; background: var(--accent); flex: none;
}
/* editorial split header (bnkgroup pattern): eyebrow full width, title left, lead right */
.tiles__header, .pricing__header, .cases__header { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 16px clamp(32px, 5vw, 80px); align-items: end; }
.tiles__header .section-title, .pricing__header .section-title, .cases__header .section-title { text-wrap: balance; }
.tiles__header > .label-mono, .pricing__header > .label-mono, .cases__header > .label-mono { grid-column: 1 / -1; }
.tiles__header .tiles__sub, .pricing__header .pricing__sub, .cases__header .cases__sub { margin-top: 0; padding-bottom: 6px; }
@media (max-width: 900px) { .tiles__header, .pricing__header, .cases__header { grid-template-columns: 1fr; } .tiles__header .tiles__sub, .pricing__header .pricing__sub, .cases__header .cases__sub { padding-bottom: 0; } }
/* optional photo header per tile — desaturated, lime-tinted on hover, never louder than the text */
.tile--media { padding-top: 0; }
.tile__media { display: block; margin: 0 calc(-1 * (clamp(24px, 3vw, 32px))) 24px; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--r) var(--r) 0 0; position: relative; }
.tile__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.7) contrast(1.05) brightness(.8); transition: filter .8s var(--ease), transform 1.2s var(--ease); }
.tile__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,5,.05), rgba(5,5,5,.6)); }
.tile:hover .tile__media img { filter: grayscale(.2) contrast(1.05) brightness(.9); transform: scale(1.03); }
/* circuit canvas behind the tiles */
.tiles { position: relative; overflow: hidden; }
.tiles__fx { position: absolute; inset: 0; pointer-events: none; }
.tiles__fx canvas { width: 100%; height: 100%; display: block; opacity: .7; }
.tiles__container { position: relative; z-index: 1; }
.tiles__container, .steps__container, .compare__container, .pricing__container, .cases__container, .team__container, .faq__container { max-width: var(--container); margin: 0 auto; }
.tiles, .steps, .compare, .pricing, .cases, .team, .faq { padding: var(--gap) 0; }


/* ============================================================
   LOGOS — one row of client wordmarks
   ============================================================ */
.logos { padding: 40px 0 8px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos__inner { max-width: var(--container); margin: 0 auto; }
.logos__label { margin-bottom: 20px; }
.logos__list {
    display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: baseline;
    padding-bottom: 32px;
}
.logos__item {
    font-family: var(--font-d); font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 600;
    letter-spacing: -0.02em; color: var(--text-mute); white-space: nowrap;
    transition: color 0.3s;
}
.logos__item:hover { color: var(--text); }


/* ============================================================
   TILES — the four service areas
   ============================================================ */
.tiles__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.tile {
    display: flex; flex-direction: column;
    padding: clamp(24px, 3vw, 32px);
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r);
    transition: border-color 0.3s, transform 0.3s var(--ease);
}
.tile:hover { border-color: var(--border-h); }
.tile__num { color: var(--accent); margin-bottom: 20px; }
.tile__price { display: block; margin-top: 8px; color: var(--accent); letter-spacing: 0.06em; }
.tile__title {
    font-family: var(--font-d); font-size: 1.25rem; font-weight: 600;
    letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 12px;
}
.tile__text { font-size: 0.9375rem; color: var(--text-dim); line-height: 1.65; margin-bottom: 18px; }
.tile__items { margin-top: auto; display: grid; gap: 6px; }
.tile__items li {
    font-size: 0.875rem; color: var(--text-dim);
    display: flex; gap: 10px; align-items: baseline;
}
.tile__items li::before { content: '→'; color: var(--accent); font-size: 0.75rem; flex-shrink: 0; }
.tile--cta {
    background: transparent; border-style: dashed; justify-content: center;
    color: inherit;
    grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; gap: 24px;
}
.tile--cta:hover { border-color: var(--accent); border-style: solid; }
.tile--cta .tile__title { color: var(--accent); }
.tile--cta .tile__num { font-size: 2rem; line-height: 1; margin-bottom: 24px; }


/* ============================================================
   STEPS — how it works
   ============================================================ */
/* timeline instead of three numbered cards: hairline, mono number, lime time label */
.steps__body { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(32px, 4vw, 64px); align-items: start; }
.steps__body--media { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
.steps__media { position: relative; aspect-ratio: 4 / 5; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.steps__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.05); }
.steps__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5,5,5,0) 55%, rgba(5,5,5,.75)); }
.steps__media-cap { position: absolute; left: 16px; bottom: 14px; z-index: 1; font-family: var(--font-m); font-size: 0.66rem; letter-spacing: 0.04em; color: rgba(232,228,222,.85); }
.steps__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(20px, 3vw, 40px); counter-reset: step; }
.steps__body--media .steps__list { grid-template-columns: 1fr; gap: 0; }
.step {
    position: relative; padding: 28px 0 8px; border-top: 1px solid var(--border-h);
    display: grid; grid-template-columns: auto 1fr; gap: 6px 22px; align-items: baseline;
}
.step::before { content: ''; position: absolute; top: -1px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width 1.2s var(--ease); }
.step.is-visible::before, .step.reveal-clip.is-visible::before { width: 44px; }
.step__num { grid-row: 1 / span 3; font-family: var(--font-m); font-size: 0.8rem; letter-spacing: 0.06em; color: var(--text-mute); padding-top: 6px; }
.step__title { font-family: var(--font-d); font-size: clamp(1.35rem, 1.8vw, 1.7rem); font-weight: 600; letter-spacing: -0.02em; }
.step__time { color: var(--accent); font-size: 0.72rem; }
.step__text { font-size: 0.9375rem; color: var(--text-dim); line-height: 1.7; margin-top: 8px; max-width: 46ch; }
.steps__body--media .step { padding: 26px 0 26px; }
.steps__body--media .step:last-child { border-bottom: 1px solid var(--border-h); }


/* ============================================================
   COMPARE — plusmatic vs. agency vs. builder
   ============================================================ */
/* The table scrolls inside its own box; the section clips, so a 720px-wide table
   on a 320px phone never widens the document itself. */
.compare { overflow: hidden; }
.compare__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
.compare__table {
    width: 100%; min-width: 720px; border-collapse: separate; border-spacing: 0;
    font-size: 0.9375rem; line-height: 1.5;
}
.compare__table th, .compare__table td {
    padding: 18px 20px; text-align: left; vertical-align: top;
    border-bottom: 1px solid var(--border);
}
.compare__table thead th {
    font-family: var(--font-m); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-mute); font-weight: 400; padding-top: 20px;
}
.compare__table tbody th { font-family: var(--font-d); font-weight: 600; color: var(--text); width: 18%; }
.compare__table td { color: var(--text-dim); }
.compare__table td:not(.compare__us) { opacity: .62; }
@media (max-width: 820px) { .compare__table tbody th, .compare__table thead th:first-child { position: sticky; left: 0; background: rgba(5,5,5,.94); z-index: 1; } }
.compare__table tbody tr:hover td:not(.compare__us) { opacity: .85; }
.compare__table .compare__us { color: var(--text); background: rgba(232, 255, 69, 0.04); }
.compare__table thead .compare__us { border-radius: 10px 10px 0 0; }
.compare__table tbody tr:last-child .compare__us { border-radius: 0 0 10px 10px; }
.compare__table thead .compare__us { color: var(--accent); }
.compare__table tbody tr:last-child th, .compare__table tbody tr:last-child td { border-bottom: 0; }


/* ============================================================
   PRICING — three packages
   ============================================================ */
/* four areas as a radio-driven tab set: no JavaScript, no flash of all panels */
.tiers { position: relative; }
.tiers__radio { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.tiers__tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(28px, 3vw, 40px); }
.tiers__tab {
    display: inline-flex; align-items: baseline; gap: 10px; cursor: pointer;
    padding: 12px 20px; border: 1px solid var(--border); border-radius: 100px;
    font-family: var(--font-m); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text-dim); transition: color .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.tiers__tab:hover { color: var(--text); border-color: var(--border-h); }
.tiers__tab-num { color: var(--text-mute); font-size: 0.68rem; }
.tiers__panels > .tiers__panel { display: none; }
.tiers__intro { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px 28px; margin-bottom: clamp(24px, 3vw, 32px); }
.tiers__lead { font-size: clamp(1rem, 1.5vw, 1.0625rem); color: var(--text-dim); line-height: 1.7; max-width: 62ch; }
.tiers__terms { color: var(--accent); }
#area-website:checked ~ .tiers__panels > #panel-website { display: block; }
#area-website:checked ~ .tiers__tabs > [for="area-website"] { color: var(--bg); background: var(--accent); border-color: var(--accent); }
#area-website:checked ~ .tiers__tabs > [for="area-website"] .tiers__tab-num { color: rgba(5,5,5,.6); }
#area-website:focus-visible ~ .tiers__tabs > [for="area-website"] { outline: 2px solid var(--accent); outline-offset: 3px; }
#area-sichtbarkeit:checked ~ .tiers__panels > #panel-sichtbarkeit { display: block; }
#area-sichtbarkeit:checked ~ .tiers__tabs > [for="area-sichtbarkeit"] { color: var(--bg); background: var(--accent); border-color: var(--accent); }
#area-sichtbarkeit:checked ~ .tiers__tabs > [for="area-sichtbarkeit"] .tiers__tab-num { color: rgba(5,5,5,.6); }
#area-sichtbarkeit:focus-visible ~ .tiers__tabs > [for="area-sichtbarkeit"] { outline: 2px solid var(--accent); outline-offset: 3px; }
#area-software:checked ~ .tiers__panels > #panel-software { display: block; }
#area-software:checked ~ .tiers__tabs > [for="area-software"] { color: var(--bg); background: var(--accent); border-color: var(--accent); }
#area-software:checked ~ .tiers__tabs > [for="area-software"] .tiers__tab-num { color: rgba(5,5,5,.6); }
#area-software:focus-visible ~ .tiers__tabs > [for="area-software"] { outline: 2px solid var(--accent); outline-offset: 3px; }
#area-automatisierung:checked ~ .tiers__panels > #panel-automatisierung { display: block; }
#area-automatisierung:checked ~ .tiers__tabs > [for="area-automatisierung"] { color: var(--bg); background: var(--accent); border-color: var(--accent); }
#area-automatisierung:checked ~ .tiers__tabs > [for="area-automatisierung"] .tiers__tab-num { color: rgba(5,5,5,.6); }
#area-automatisierung:focus-visible ~ .tiers__tabs > [for="area-automatisierung"] { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (max-width: 640px) { .tiers__tab { padding: 10px 14px; font-size: 0.68rem; } }

.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.plan {
    position: relative;
    padding: clamp(28px, 3vw, 40px);
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r);
    display: flex; flex-direction: column;
}
.plan--featured { border-color: rgba(232, 255, 69, 0.35); background: #0b0c05; margin-top: 12px; }
.plan__badge {
    position: absolute; top: -12px; left: clamp(28px, 3vw, 40px);
    padding: 5px 12px; background: var(--accent); color: #000; border-radius: 999px;
}
.plan__name { font-family: var(--font-d); font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; }
.plan__claim { font-size: 0.9375rem; color: var(--text-dim); margin-top: 8px; min-height: 3em; }
.plan__price { margin: 24px 0; display: grid; grid-template-columns: auto 1fr; column-gap: 10px; align-items: baseline; }
.plan__from { grid-column: 1 / -1; font-size: 0.875rem; color: var(--text-dim); }
.plan__amount { font-family: var(--font-d); font-size: clamp(2.4rem, 4vw, 3.25rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1; }
.plan__period { font-size: 0.875rem; color: var(--text-dim); }
.plan__gross { grid-column: 1 / -1; font-size: 0.8125rem; color: var(--text-mute); margin-top: 6px; }
.plan__cta { width: 100%; justify-content: center; }
.plan__rows { margin-top: 28px; display: grid; }
.plan__row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    padding: 10px 0; border-top: 1px solid var(--border);
    font-size: 0.875rem;
}
.plan__row dt { color: var(--text-mute); }
.plan__row dd { color: var(--text); }
.plan__row--off dd { color: var(--text-ghost); }
.plan__row--off dt { color: var(--text-ghost); }

.pricing__terms {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    margin-top: 32px;
}
.pricing__term { padding: 22px 24px; border: 1px solid var(--border); border-radius: var(--r); }
.pricing__term .label-mono { display: block; margin-bottom: 10px; color: var(--accent); }
.pricing__term p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; }

.pricing__addons { margin-top: 32px; padding: 26px 28px; border: 1px dashed var(--border-h); border-radius: var(--r); }
.pricing__addons .label-mono { display: block; margin-bottom: 14px; }
.pricing__addon-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 32px; }
.pricing__addon-list li { font-size: 0.9375rem; color: var(--text-dim); position: relative; padding-left: 20px; line-height: 1.6; }
.pricing__addon-list li::before { content: '+'; color: var(--accent); position: absolute; left: 0; top: 0; }
.pricing__addon-list strong { color: var(--text); font-weight: 500; }


/* ============================================================
   CASES — compact grid
   ============================================================ */
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
/* real project screenshots in a slim browser frame; hover pans the page like a slow scroll */
.case__shot {
    display: block; position: relative; overflow: hidden; aspect-ratio: 16 / 10;
    border-radius: 10px; border: 1px solid var(--border); background: #0c0c0c; margin-bottom: 22px;
}
.case__bar { position: absolute; inset: 0 0 auto 0; height: 22px; display: flex; align-items: center; gap: 5px; padding: 0 10px; background: #161616; z-index: 1; }
.case__bar i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.18); }
.case__shot img { position: absolute; top: 22px; left: 0; width: 100%; height: auto; object-fit: cover; object-position: top; transform: translateY(0); transition: transform 6s linear; filter: saturate(.9); }
.case:hover .case__shot img { transform: translateY(calc(-100% + (100% * 10 / 16) + 22px)); }
.case:hover .case__shot { border-color: var(--border-h); }
@media (prefers-reduced-motion: reduce) { .case:hover .case__shot img { transform: none; } }

.case {
    position: relative; display: flex; flex-direction: column; gap: 10px;
    padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px);
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r);
    transition: border-color 0.3s, transform 0.3s var(--ease);
}
.case:hover { border-color: var(--border-h); transform: translateY(-3px); }
.case__meta { color: var(--text-mute); }
.case__title { font-family: var(--font-d); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; padding-right: 32px; }
.case__desc { font-size: 0.9rem; color: var(--text-dim); line-height: 1.6; }
.case__arrow {
    position: absolute; top: clamp(24px, 3vw, 32px); right: clamp(24px, 3vw, 32px);
    color: var(--text-mute); transition: color 0.3s, transform 0.3s var(--ease);
}
.case:hover .case__arrow { color: var(--accent); transform: translate(2px, -2px); }


/* ═══════════════════════════════════════════════════════════════════════════
   PAGE FX — the slow wave gradient shared with bnkgroup.de (assets/js/gradient.js),
   tinted towards the lime. Sections stay transparent so the gradient has no seams;
   the veil darkens the lower page so long text stays readable.
   ═══════════════════════════════════════════════════════════════════════════ */
.page-fx { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }
.page-fx-veil { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,5,0) 0, rgba(5,5,5,0) 120vh, rgba(5,5,5,.7) 220vh, rgba(5,5,5,.7) 100%); }
#gradient-canvas {
    --gradient-color-1: #050505; --gradient-color-2: #0d1106; --gradient-color-3: #0a0a0a; --gradient-color-4: #1a2408;
    position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.6s ease;
}
#gradient-canvas.isLoaded { opacity: 1; }
@media (prefers-reduced-motion: reduce) { #gradient-canvas { display: none; } }

/* ============================================================
   QUOTES — testimonials
   ============================================================ */
.quotes { padding: var(--gap) 0; }
.quotes__container { max-width: var(--container); margin: 0 auto; }
.quotes__header { margin-bottom: clamp(40px, 6vw, 64px); }
.quotes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote {
    display: flex; flex-direction: column; gap: 22px;
    padding: clamp(28px, 3vw, 36px);
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r);
}
.quote__text { position: relative; padding-top: 44px; }
/* Low-9 quote glyph carries its ink at the baseline, so it needs its own row
   above the text instead of a negative offset that lands on the first word. */
.quote__text::before {
    content: '\201E'; position: absolute; top: -40px; left: -2px;
    font-family: var(--font-d); font-size: 4.5rem; line-height: 1; color: var(--accent); opacity: 0.6;
}
.quote__text p { font-size: clamp(1rem, 1.5vw, 1.125rem); color: var(--text); line-height: 1.6; }
.quote__by { margin-top: auto; display: grid; gap: 4px; }
.quote__name { font-family: var(--font-d); font-weight: 600; letter-spacing: -0.01em; }
.quote__meta { color: var(--text-mute); }

/* Draft state: placeholder quotes are visibly marked so they cannot be mistaken
   for real ones while the section waits for JK's material. */
.quotes--draft .quote { border-style: dashed; }
.quotes--draft .quote__text p { color: var(--text-dim); font-style: italic; }
.quotes__draft-note { display: inline-block; margin-top: 18px; padding: 6px 12px; border: 1px dashed var(--accent); color: var(--accent); }


/* ============================================================
   TEAM — one person
   ============================================================ */
.team__container { display: grid; gap: clamp(28px, 4vw, 44px); }
.team__id { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 28px); margin-top: 20px; }
.team__photo {
    width: clamp(88px, 9vw, 116px); height: auto; aspect-ratio: 1 / 1; object-fit: cover; flex: none;
    border-radius: var(--r); border: 1px solid var(--border); filter: grayscale(1) contrast(1.05);
}
.team__placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #0f110a, #0a0a0a); }
.team__placeholder span { font-family: var(--font-d); font-size: 2.5rem; font-weight: 700; color: var(--text-ghost); letter-spacing: -0.05em; }
.team__name { font-family: var(--font-d); font-size: clamp(1.75rem, 3.2vw, 2.6rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
.team__role { font-family: var(--font-m); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); margin-top: 8px; }
.team__text { font-size: clamp(1rem, 1.6vw, 1.125rem); color: var(--text-dim); line-height: 1.75; max-width: 62ch; }
.team__contact { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 26px; }
.team__link {
    font-family: var(--font-d); font-size: 1.25rem; font-weight: 500; letter-spacing: -0.02em;
    border-bottom: 1px solid rgba(232, 255, 69, 0.35); padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}
.team__link:hover { color: var(--accent); border-color: var(--accent); }
/* the three facts carry the trust, so they get their own row of cards */
.team__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.team__facts li { display: grid; gap: 10px; padding: clamp(20px, 2.4vw, 26px); background: var(--bg); }
.team__fact-text { font-size: 0.95rem; line-height: 1.6; color: var(--text-dim); }
@media (max-width: 860px) { .team__facts { grid-template-columns: 1fr; } }


/* ============================================================
   FAQ — accordion
   ============================================================ */
.faq__container { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq__header { margin-bottom: 0; position: sticky; top: calc(var(--nav-h) + 24px); }
.faq__list { border-top: 1px solid var(--border); }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__trigger {
    width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px;
    padding: 22px 0; text-align: left;
    font-family: var(--font-d); font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-weight: 500; letter-spacing: -0.01em;
    transition: color 0.3s;
}
.faq__trigger:hover { color: var(--accent); }
.faq__icon { flex-shrink: 0; color: var(--text-mute); transition: transform 0.3s var(--ease); }
.faq__trigger[aria-expanded="true"] .faq__icon { transform: rotate(180deg); color: var(--accent); }
.faq__body { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq__body-inner { padding: 0 0 24px; }
.faq__body-inner p { font-size: 0.9375rem; color: var(--text-dim); line-height: 1.7; max-width: 60ch; }

/* ============================================================
   CTA
   ============================================================ */
.cta {
    padding: var(--gap) 0;
    text-align: center;
    min-height: 70vh;
    display: flex; align-items: center; justify-content: center;
}
.cta__container { max-width: var(--container); margin: 0 auto; }
.cta__pre {
    font-size: 0.9375rem; color: var(--text-dim);
    margin-bottom: 32px;
}
.cta__title {
    font-family: var(--font-d);
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 700; letter-spacing: -0.035em;
    line-height: 0.95;
    margin-bottom: 48px;
}
.cta__word { display: inline-block; }
.cta__contact {
    display: flex; flex-wrap: wrap; gap: 16px;
    justify-content: center; align-items: stretch;
}
.cta__email-link,
.cta__phone-link {
    display: inline-flex; align-items: center;
    font-family: var(--font-b); font-size: clamp(1rem, 2vw, 1.375rem);
    font-weight: 500; letter-spacing: 0.01em;
    white-space: nowrap;
    padding: 16px 40px;
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.cta__email-link {
    border: 1px solid var(--accent);
    color: var(--accent);
}
.cta__email-link:hover { background: var(--accent); color: #000; }
.cta__phone-link {
    border: 1px solid var(--border-h);
    color: var(--text);
}
.cta__phone-link:hover { border-color: var(--accent); color: var(--accent); }
.cta__booking {
    max-width: 860px; margin: 0 auto;
    border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
    background: var(--bg-alt);
}
.cta__booking iframe { display: block; width: 100%; height: 720px; border: 0; background: #fff; }

.cta__meta {
    margin-top: 48px;
    display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: center;
}


.cta__host {
    display: flex; align-items: center; gap: 18px;
    max-width: 640px; margin: 0 auto 36px; text-align: left;
}
.cta__host-photo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex: none; border: 1px solid var(--border-h); }
.cta__host-text { margin: 0; font-size: 0.98rem; line-height: 1.55; color: var(--text-dim); }
.cta__host-text strong { color: var(--text); font-weight: 600; }
@media (max-width: 640px) { .cta__host { flex-direction: column; text-align: center; gap: 12px; } }

/* ============================================================
   BOOKING — self-hosted appointment widget
   ============================================================ */
.booking {
    max-width: 860px; margin: 0 auto; text-align: left;
    padding: clamp(24px, 3vw, 36px);
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--r);
}
.booking__step { display: block; color: var(--accent); margin: 0 0 14px; font-weight: 400; }
.booking__tz, .booking__loading { color: var(--text-mute); margin: 10px 0 0; }
.booking__status--inline { margin-top: 4px; }
/* Desktop/tablet: all days visible, wrapping. Phones: one scrolling row with a
   fade at the right edge so the cut-off chip reads as "more", not as a bug. */
.booking__days { display: flex; flex-wrap: wrap; gap: 8px; }
@media (max-width: 640px) {
    .booking__days {
        flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none;
        -webkit-mask-image: linear-gradient(to right, #000 88%, transparent);
        mask-image: linear-gradient(to right, #000 88%, transparent);
    }
    .booking__days::-webkit-scrollbar { display: none; }
}
.booking__day {
    flex: 0 0 auto; min-width: 104px; padding: 12px 14px; text-align: left;
    border: 1px solid var(--border); border-radius: 8px; background: transparent;
    display: grid; gap: 4px; transition: border-color 0.2s, background 0.2s;
}
.booking__day:hover { border-color: var(--border-h); }
.booking__day.is-active { border-color: var(--accent); background: rgba(232, 255, 69, 0.06); }
.booking__day-wd { font-family: var(--font-d); font-weight: 600; font-size: 1rem; }
.booking__day-n { color: var(--text-mute); }
.booking__slots { margin-top: 24px; }
.booking__times { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 8px; }
.booking__time {
    padding: 12px 10px; border: 1px solid var(--border); border-radius: 8px;
    font-family: var(--font-m); font-size: 0.8125rem; letter-spacing: 0.04em;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.booking__time:hover { border-color: var(--border-h); }
.booking__time.is-active { border-color: var(--accent); background: var(--accent); color: #000; }
.booking__form { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); display: grid; gap: 16px; }
.booking__when { color: var(--text); font-size: 0.9375rem; }
.booking__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking__field { display: grid; gap: 6px; }
.booking__field label { font-family: var(--font-m); font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mute); }
.booking__input {
    width: 100%; padding: 12px 14px; font: inherit; color: var(--text);
    background: var(--bg); border: 1px solid var(--border); border-radius: 8px;
    transition: border-color 0.2s;
}
.booking__input:focus { outline: none; border-color: var(--accent); }
.booking__input::placeholder { color: var(--text-mute); }
.booking__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.booking__consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.875rem; color: var(--text-dim); }
.booking__consent input { margin-top: 4px; accent-color: var(--accent); }
.booking__consent a { color: var(--text); border-bottom: 1px solid var(--border-h); }
.booking__submit { justify-self: start; }
.booking__status { margin: 14px 0 0; min-height: 1.4em; font-size: 0.9rem; color: var(--text-dim); text-align: left; }
.booking__status--error { color: #ff8a80; }
.booking__done { display: grid; gap: 10px; padding: 8px 0; }
.booking__done h3 { font-family: var(--font-d); font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.02em; }
.booking__done p { color: var(--text-dim); }
.booking__done-note { font-size: 0.875rem; color: var(--text-mute); }
.booking__fallback .cta__contact { justify-content: center; }


/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--border); padding: 80px 0 40px; }
.footer__top {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
    padding-bottom: 60px; border-bottom: 1px solid var(--border);
}
.footer__logo-img { height: 41px; width: auto; }
.footer__tagline { font-size: 0.875rem; color: var(--text-dim); margin-top: 16px; line-height: 1.6; }
.footer__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__heading {
    font-family: var(--font-m); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--text-mute); margin-bottom: 20px;
}
.footer__link {
    display: block; font-size: 0.875rem; color: var(--text-dim);
    margin-bottom: 10px; transition: color 0.3s;
}
.footer__link:hover { color: var(--accent); }
.footer__text { font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; }
.footer__bottom {
    max-width: var(--container); margin: 0 auto; padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-m); font-size: 0.6875rem; color: var(--text-mute);
    text-transform: uppercase; letter-spacing: 0.08em;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: var(--text-dim); transition: color 0.3s; }
.footer__legal a:hover { color: var(--accent); }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .tiles__grid { grid-template-columns: repeat(2, 1fr); }
    .pricing__terms { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 40px; }
    .hero__content { padding-top: 130px; }
    .hero__title { font-size: clamp(2rem, 8.2vw, 4.2rem); }
    .pricing__grid { grid-template-columns: 1fr; max-width: 560px; }
    .cases__grid { grid-template-columns: repeat(2, 1fr); }
    .quotes__grid { grid-template-columns: 1fr; max-width: 640px; }
    .team__container, .faq__container { grid-template-columns: 1fr; }
    .faq__header { position: static; margin-bottom: 32px; }
    .team__media { max-width: 360px; }
}

@media (max-width: 768px) {
    .nav__links, .nav__cta { display: none; }
    .nav__burger { display: flex; }
    .hero__bg-seven { font-size: 50rem; right: -20vw; }
    .hero__scroll { display: none; }
    .hero__actions { flex-direction: column; align-items: flex-start; }
    .hero__proof { flex-direction: column; gap: 10px; }
    .steps__list { grid-template-columns: 1fr; gap: 0; }
    .steps__body--media { grid-template-columns: 1fr; }
    .steps__media { aspect-ratio: 16 / 10; }
    .tiles__grid { grid-template-columns: 1fr; }
    .pricing__terms { grid-template-columns: 1fr; }
    .pricing__addon-list { grid-template-columns: 1fr; }
    .cases__grid { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 48px; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
    .cursor { display: none !important; }
    body, button, a { cursor: auto; }
    .cta__title { font-size: clamp(2.5rem, 12vw, 5rem); }
    .booking__row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .footer__grid { grid-template-columns: 1fr; }
    .cta__meta { flex-direction: column; gap: 4px; }
    .plan__row { grid-template-columns: 1fr; gap: 2px; }
}

.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .reveal-clip { opacity: 1 !important; transform: none !important; }
    .cursor { display: none; }
}
