:root {
    --ink: #07111f;
    --ink-2: #10233d;
    --ink-3: #173252;
    --paper: #cbd5e1;
    --paper-2: #bfccd9;
    --white: #e8eef6;
    --muted: #627086;
    --line: rgba(7, 17, 31, .12);
    --blue: #235cff;
    --blue-2: #6d8dff;
    --cyan: #00dcff;
    --lime: #caff29;
    --violet: #8f5cff;
    --hot: #ff3f7f;
    --shadow: 0 28px 90px rgba(8, 19, 38, .16);
    --shadow-hard: 10px 10px 0 rgba(7, 17, 31, .95);
    --radius-xl: 36px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #07111f;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 12% 10%, rgba(0, 220, 255, .24), transparent 25%),
        radial-gradient(circle at 84% 6%, rgba(202, 255, 41, .20), transparent 23%),
        radial-gradient(circle at 80% 78%, rgba(143, 92, 255, .18), transparent 27%),
        linear-gradient(180deg, #07111f 0%, #0a1730 38%, #cbd5e1 38.1%, #cbd5e1 100%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.9) 0%, rgba(0,0,0,.6) 42%, transparent 68%);
}

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

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

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

.container {
    width: min(var(--container), calc(100% - 36px));
    margin-inline: auto;
}

.narrow {
    max-width: 900px;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -60px;
    background: var(--lime);
    color: var(--ink);
    padding: 12px 16px;
    border-radius: 12px;
    z-index: 200;
    font-weight: 900;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(7, 17, 31, .78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .92);
    border-radius: 16px;
    background:
        linear-gradient(135deg, var(--lime), var(--cyan));
    color: var(--ink);
    font-weight: 950;
    letter-spacing: -.08em;
    box-shadow: 7px 7px 0 rgba(0,0,0,.75);
}

.brand-copy {
    display: grid;
    line-height: 1.05;
}

.brand-copy span {
    color: #fff;
    font-size: 1.06rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.brand-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .58);
    font-size: .76rem;
    letter-spacing: .10em;
    text-transform: uppercase;
}

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

.main-nav a {
    color: rgba(255, 255, 255, .78);
    font-weight: 720;
    font-size: .94rem;
    padding: 11px 13px;
    border-radius: 999px;
    transition: .2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
    background: rgba(255, 255, 255, .10);
    color: #fff;
}

.main-nav .nav-cta {
    margin-left: 6px;
    background: var(--white);
    color: var(--ink);
    border: 2px solid #fff;
    box-shadow: 6px 6px 0 var(--lime);
}

.main-nav .nav-cta:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--ink);
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--cyan);
}

.nav-toggle,
.nav-button {
    display: none;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.hero-section {
    position: relative;
    min-height: 680px;
    padding: 86px 0 76px;
    color: #fff;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255,255,255,.09) 0 1px, transparent 1px 100%),
        linear-gradient(30deg, transparent 0%, rgba(255,255,255,.035) 45%, transparent 46%);
    background-size: 90px 90px, 100% 100%;
    opacity: .65;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(24px);
    opacity: .65;
    pointer-events: none;
}

.hero-glow-one {
    right: 8%;
    top: 12%;
    background: radial-gradient(circle, rgba(0,220,255,.55), transparent 62%);
}

.hero-glow-two {
    left: 22%;
    bottom: -130px;
    background: radial-gradient(circle, rgba(202,255,41,.34), transparent 62%);
}

.hero-grid {
    position: relative;
    display: grid;
    max-width: 1080px;
    margin-inline: auto;
    grid-template-columns: minmax(0, .96fr) minmax(320px, .70fr);
    gap: 36px;
    align-items: center;
    z-index: 1;
}

.label,
.section-kicker {
    margin: 0 0 17px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cyan);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
}

.label span {
    width: 34px;
    height: 10px;
    border-radius: 999px;
    background: var(--lime);
    box-shadow: 0 0 28px rgba(202,255,41,.58);
}

h1 {
    max-width: 760px;
    font-size: clamp(3rem, 6.8vw, 6.4rem);
    line-height: .9;
    letter-spacing: -.075em;
    margin-bottom: 26px;
}

.hero-section h1 {
    max-width: 660px;
    font-size: clamp(2.8rem, 5.15vw, 4.85rem);
    line-height: .96;
    letter-spacing: -.065em;
    margin-bottom: 22px;
}

h2 {
    font-size: clamp(2.1rem, 4.15vw, 4.45rem);
    line-height: .93;
    letter-spacing: -.075em;
    margin-bottom: 20px;
}

h3 {
    letter-spacing: -.045em;
}

.hero-text {
    max-width: 560px;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(1rem, 1.16vw, 1.14rem);
    line-height: 1.62;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 23px;
    border-radius: 999px;
    font-weight: 900;
    transition: .22s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.button-primary {
    background: linear-gradient(135deg, var(--lime), var(--cyan));
    color: var(--ink);
    box-shadow: 0 24px 70px rgba(0,220,255,.24);
}

.button-ghost {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .18);
    backdrop-filter: blur(14px);
}

.button-dark {
    background: var(--ink);
    color: #fff;
    box-shadow: 7px 7px 0 var(--lime);
}

.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-strip span {
    padding: 10px 13px;
    border-radius: 999px;
    color: rgba(255,255,255,.78);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .13);
    backdrop-filter: blur(14px);
    font-size: .93rem;
}

.hero-board {
    min-height: 500px;
    position: relative;
}

.device-frame {
    position: absolute;
    top: 0;
    right: 0;
    width: min(405px, 100%);
    min-height: 445px;
    padding: 20px;
    border-radius: 34px;
    border: 1px solid rgba(255,255,255,.16);
    background: linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.055));
    box-shadow: 0 40px 110px rgba(0,0,0,.36);
    backdrop-filter: blur(22px);
    transform: rotate(2.5deg);
    overflow: hidden;
}

.device-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 0%, rgba(202,255,41,.23), transparent 34%), radial-gradient(circle at 90% 20%, rgba(0,220,255,.25), transparent 31%);
    pointer-events: none;
}

.browser-dots {
    position: relative;
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    z-index: 1;
}

.browser-dots i {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: rgba(255,255,255,.55);
}

.mock-hero {
    position: relative;
    z-index: 1;
    min-height: 205px;
    padding: 24px;
    border-radius: 26px;
    background: #f4f7fb;
    box-shadow: inset 0 0 0 1px rgba(7,17,31,.08);
}

.mock-chip {
    width: 120px;
    height: 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    margin-bottom: 25px;
}

.mock-headline {
    height: 26px;
    width: 84%;
    border-radius: 999px;
    background: var(--ink);
    margin-bottom: 12px;
}

.mock-headline.small {
    width: 58%;
}

.mock-text {
    width: 90%;
    height: 11px;
    border-radius: 999px;
    background: rgba(7,17,31,.18);
    margin-top: 24px;
}

.mock-text.short {
    width: 63%;
    margin-top: 9px;
}

.mock-cards {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.mock-cards span {
    min-height: 108px;
    border-radius: 22px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.13);
}

.mock-cards span:nth-child(2) {
    background: linear-gradient(160deg, rgba(202,255,41,.85), rgba(0,220,255,.5));
}

.code-card,
.status-card {
    position: absolute;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(6, 12, 25, .78);
    color: #fff;
    box-shadow: 0 28px 90px rgba(0,0,0,.33);
    backdrop-filter: blur(20px);
}

.code-card {
    left: 0;
    bottom: 56px;
    width: min(300px, 78%);
    display: grid;
    gap: 9px;
    padding: 18px;
    border-radius: 22px;
    color: rgba(255,255,255,.76);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: .88rem;
    transform: rotate(-4deg);
}

.code-card span:nth-child(1),
.code-card span:nth-child(4) {
    color: var(--cyan);
}

.code-card span:nth-child(2) {
    color: var(--lime);
}

.status-card {
    display: grid;
    gap: 2px;
    min-width: 138px;
    padding: 15px 17px;
    border-radius: 20px;
}

.status-card strong {
    font-size: 1.45rem;
    letter-spacing: -.05em;
}

.status-card span {
    color: rgba(255,255,255,.62);
    font-size: .86rem;
}

.status-a {
    top: 42px;
    left: 10px;
    transform: rotate(-8deg);
}

.status-b {
    right: 10px;
    bottom: 22px;
    transform: rotate(5deg);
}

.status-c {
    right: -12px;
    top: 220px;
    transform: rotate(9deg);
}

.proof-section {
    position: relative;
    margin-top: -48px;
    padding: 0 0 82px;
    z-index: 2;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.proof-grid article {
    min-height: 220px;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: rgba(226,233,242,.97);
    border: 1px solid rgba(255,255,255,.72);
    box-shadow: var(--shadow);
}

.proof-grid span,
.feature-index,
.package-tag,
.studio-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 32px;
    padding-inline: 10px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    font-size: .79rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 rgba(7,17,31,.93);
    margin-bottom: 28px;
}

.proof-grid h2 {
    font-size: clamp(1.45rem, 2.5vw, 2.35rem);
    line-height: .96;
    letter-spacing: -.06em;
    margin-bottom: 12px;
}

.proof-grid p,
.section-head p,
.split-copy p,
.studio-card p,
.timeline p,
.package-card p,
.legal-card p,
.legal-card li,
.contact-info p,
.form-note {
    color: var(--muted);
    line-height: 1.62;
}

.section-pad {
    padding: 90px 0;
}

.light-panel {
    background:
        radial-gradient(circle at 8% 5%, rgba(0,220,255,.18), transparent 26%),
        radial-gradient(circle at 94% 20%, rgba(202,255,41,.20), transparent 24%),
        var(--paper);
}

.section-head {
    max-width: 820px;
    margin-bottom: 34px;
}

.section-head.compact {
    max-width: 760px;
}

.section-kicker {
    color: var(--blue);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.feature-card {
    min-height: 310px;
    padding: 25px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(7,17,31,.10);
    box-shadow: 0 20px 60px rgba(8, 19, 38, .08);
    transition: .25s ease;
    overflow: hidden;
    position: relative;
}

.feature-card::before {
    content: "";
    position: absolute;
    right: -54px;
    top: -54px;
    width: 148px;
    height: 148px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(35,92,255,.18), transparent 68%);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 90px rgba(35,92,255,.15);
}

.feature-card h3 {
    position: relative;
    font-size: 1.35rem;
    margin: 45px 0 11px;
}

.feature-card p {
    position: relative;
    color: var(--muted);
    line-height: 1.58;
    margin: 0;
}

.split-section {
    padding: 98px 0;
    color: #fff;
    background:
        radial-gradient(circle at 14% 14%, rgba(0,220,255,.18), transparent 28%),
        radial-gradient(circle at 86% 80%, rgba(143,92,255,.2), transparent 30%),
        #07111f;
    overflow: hidden;
}

.split-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 34px;
    align-items: center;
}

.split-copy .section-kicker,
.studio-large .section-kicker,
.cta-box .section-kicker {
    color: var(--cyan);
}

.split-copy p {
    color: rgba(255,255,255,.68);
    margin-bottom: 26px;
}

.compare-card {
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 38px 120px rgba(0,0,0,.25);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.compare-row:last-child {
    border-bottom: 0;
}

.compare-row span {
    padding: 20px 22px;
    color: rgba(255,255,255,.64);
}

.compare-row span + span {
    color: #fff;
    background: rgba(202,255,41,.09);
}

.compare-head span {
    color: #fff;
    font-weight: 950;
    background: rgba(255,255,255,.08);
}

.compare-head span + span {
    color: var(--ink);
    background: var(--lime);
}

.studio-section {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(35,92,255,.32), transparent 34%),
        radial-gradient(circle at 80% 10%, rgba(0,220,255,.24), transparent 26%),
        #0b1730;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
}

.studio-card {
    min-height: 250px;
    padding: 28px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    box-shadow: 0 30px 100px rgba(0,0,0,.22);
    backdrop-filter: blur(18px);
}

.studio-large {
    grid-row: span 2;
    min-height: 525px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        radial-gradient(circle at 22% 15%, rgba(202,255,41,.32), transparent 28%),
        radial-gradient(circle at 82% 0%, rgba(0,220,255,.24), transparent 30%),
        rgba(255,255,255,.08);
}

.studio-card h2,
.studio-card h3 {
    color: #fff;
}

.studio-card p {
    color: rgba(255,255,255,.68);
    margin-bottom: 0;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.timeline article {
    min-height: 250px;
    padding: 25px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid rgba(7,17,31,.10);
    box-shadow: 0 18px 60px rgba(8, 19, 38, .08);
}

.timeline span {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 5px 5px 0 var(--ink);
    font-weight: 950;
    margin-bottom: 48px;
}

.timeline h3 {
    font-size: 1.32rem;
    margin-bottom: 8px;
}

.timeline p {
    margin-bottom: 0;
}

.packages-section {
    padding: 96px 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(202,255,41,.2), transparent 27%),
        radial-gradient(circle at 84% 24%, rgba(35,92,255,.24), transparent 27%),
        var(--paper-2);
}

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

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 545px;
    padding: 29px;
    border-radius: var(--radius-xl);
    background: rgba(218,227,238,.94);
    border: 1px solid rgba(7,17,31,.12);
    box-shadow: 0 24px 80px rgba(8, 19, 38, .10);
    overflow: hidden;
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 88% 8%, rgba(0,220,255,.16), transparent 28%);
    pointer-events: none;
}

.package-highlight {
    background: #07111f;
    color: #fff;
    transform: translateY(-14px);
    border-color: rgba(255,255,255,.16);
    box-shadow: 0 38px 120px rgba(7,17,31,.30);
}

.package-highlight p,
.package-highlight li {
    color: rgba(255,255,255,.72);
}

.package-highlight .package-tag {
    color: #07111f !important;
    text-shadow: none;
}

.package-card h3 {
    position: relative;
    font-size: 1.65rem;
    margin: 0 0 10px;
}

.package-card p {
    position: relative;
    margin-bottom: 20px;
}

.package-price {
    position: relative;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1;
    letter-spacing: -.07em;
    font-weight: 950;
    margin: 8px 0 24px;
}

.package-card ul {
    position: relative;
    list-style: none;
    display: grid;
    gap: 13px;
    padding: 0;
    margin: 0 0 30px;
}

.package-card li {
    display: flex;
    gap: 10px;
    color: var(--muted);
    line-height: 1.45;
}

.package-card li::before {
    content: "✓";
    color: var(--blue);
    font-weight: 950;
}

.package-highlight li::before {
    color: var(--lime);
}

.package-card a {
    position: relative;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    color: #fff;
    background: var(--ink);
    font-weight: 950;
}

.package-highlight a {
    color: var(--ink);
    background: linear-gradient(135deg, var(--lime), var(--cyan));
}

.package-addon-head {
    margin-top: 58px;
    margin-bottom: 26px;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.addon-card {
    min-height: 220px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(218,227,238,.78);
    border: 1px solid rgba(7,17,31,.10);
    box-shadow: 0 18px 60px rgba(8,19,38,.08);
    transition: .25s ease;
}

.addon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 80px rgba(35,92,255,.13);
}

.addon-card span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    font-size: .82rem;
    font-weight: 950;
    margin-bottom: 18px;
}

.addon-card h3 {
    font-size: 1.22rem;
    margin-bottom: 10px;
}

.addon-card p {
    color: var(--muted);
    line-height: 1.56;
    margin: 0;
}

.package-care-head {
    margin-top: 58px;
    margin-bottom: 26px;
}

.package-care-grid .package-card {
    min-height: 445px;
}

.package-note {
    margin: 24px 0 0;
    padding: 18px 22px;
    border-radius: 24px;
    color: var(--muted);
    background: rgba(218,227,238,.78);
    border: 1px solid rgba(7,17,31,.10);
    box-shadow: 0 18px 60px rgba(8,19,38,.08);
    line-height: 1.55;
}

.cta-section {
    padding: 96px 0 110px;
    color: #fff;
    background: #07111f;
}

.cta-box {
    position: relative;
    text-align: center;
    padding: 70px 34px;
    border-radius: 42px;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 20%, rgba(202,255,41,.26), transparent 26%),
        radial-gradient(circle at 84% 8%, rgba(0,220,255,.22), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 38px 120px rgba(0,0,0,.28);
}

.cta-box h2 {
    max-width: 860px;
    margin-inline: auto;
}

.cta-box p:not(.section-kicker) {
    max-width: 690px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.72);
    line-height: 1.62;
    font-size: 1.08rem;
}

.page-hero {
    color: #fff;
    padding: 95px 0 64px;
    background:
        radial-gradient(circle at 18% 15%, rgba(0,220,255,.24), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(202,255,41,.18), transparent 26%),
        #07111f;
}

.page-hero h1 {
    font-size: clamp(3rem, 7vw, 7rem);
    max-width: 900px;
}

.page-hero p:not(.label) {
    max-width: 720px;
    color: rgba(255,255,255,.72);
    font-size: 1.15rem;
    line-height: 1.62;
}

.contact-section,
.legal-page {
    padding: 88px 0 105px;
    background:
        radial-gradient(circle at 8% 7%, rgba(0,220,255,.16), transparent 24%),
        radial-gradient(circle at 92% 8%, rgba(202,255,41,.18), transparent 24%),
        var(--paper);
}

.contact-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 24px;
    align-items: start;
}

.contact-info,
.form-card,
.legal-card {
    border-radius: var(--radius-xl);
    background: rgba(226,233,242,.97);
    border: 1px solid rgba(7,17,31,.10);
    box-shadow: 0 24px 90px rgba(8,19,38,.11);
}

.contact-info {
    padding: 32px;
    position: sticky;
    top: 105px;
}

.contact-info h2 {
    font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.contact-lines {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-lines a {
    display: block;
    padding: 15px 17px;
    border-radius: 16px;
    background: var(--ink);
    color: #fff;
    font-weight: 850;
}

.form-card {
    padding: 31px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

form {
    display: grid;
    gap: 17px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(7,17,31,.16);
    border-radius: 16px;
    background: var(--white);
    color: var(--ink);
    padding: 15px 16px;
    outline: none;
    transition: .2s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(35,92,255,.11);
}

textarea {
    resize: vertical;
}

.hidden-field {
    display: none;
}

.form-message {
    padding: 15px 17px;
    border-radius: 16px;
    margin-bottom: 18px;
    font-weight: 850;
}

.form-message.success {
    background: rgba(202,255,41,.32);
    color: var(--ink);
}

.form-message.error {
    background: rgba(255,63,127,.13);
    color: #a31242;
}

.form-note {
    font-size: .91rem;
    margin: -2px 0 0;
}

.legal-card {
    padding: clamp(26px, 4vw, 54px);
}

.legal-card h1 {
    font-size: clamp(3rem, 6vw, 6rem);
    color: var(--ink);
}

.legal-card h1.legal-agb-title {
    max-width: 100%;
    line-height: .86;
}

.legal-card h1.legal-agb-title .legal-agb-word {
    display: inline-block;
    max-width: 100%;
    font-size: .54em;
    line-height: .92;
    letter-spacing: -.045em;
    vertical-align: baseline;
}

.legal-card h2 {
    font-size: clamp(1.35rem, 2.3vw, 2.2rem);
    line-height: 1.05;
    letter-spacing: -.05em;
    margin-top: 34px;
}

.legal-card a {
    color: var(--blue);
    font-weight: 850;
}

.legal-card ul {
    color: var(--muted);
    line-height: 1.62;
}


.projects-teaser-section {
    background:
        radial-gradient(circle at 10% 10%, rgba(0,220,255,.16), transparent 26%),
        radial-gradient(circle at 92% 20%, rgba(202,255,41,.20), transparent 24%),
        var(--paper);
}

.projects-teaser-grid {
    display: grid;
    grid-template-columns: 1fr minmax(320px, .58fr);
    gap: 28px;
    align-items: stretch;
}

.project-mini-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 360px;
    padding: 28px;
    border-radius: var(--radius-xl);
    color: #fff;
    background:
        radial-gradient(circle at 18% 18%, rgba(202,255,41,.35), transparent 28%),
        radial-gradient(circle at 88% 8%, rgba(0,220,255,.35), transparent 32%),
        #07111f;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: 0 32px 100px rgba(7,17,31,.24);
    overflow: hidden;
    transition: .25s ease;
}

.project-mini-card::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 26px;
    background-image:
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .75;
}

.project-mini-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 44px 120px rgba(35,92,255,.24);
}

.project-mini-label,
.project-mini-title,
.project-mini-text,
.project-mini-link {
    position: relative;
    z-index: 1;
}

.project-mini-label {
    width: fit-content;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    font-weight: 950;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: auto;
}

.project-mini-title {
    font-size: clamp(1.75rem, 3vw, 2.7rem);
    line-height: .95;
    letter-spacing: -.065em;
    font-weight: 950;
    margin-bottom: 12px;
}

.project-mini-text {
    color: rgba(255,255,255,.70);
    line-height: 1.55;
    margin-bottom: 22px;
}

.project-mini-link {
    color: var(--lime);
    font-weight: 950;
}

.project-hero {
    padding-bottom: 90px;
}

.projects-page {
    padding: 88px 0 105px;
    background:
        radial-gradient(circle at 10% 4%, rgba(0,220,255,.18), transparent 26%),
        radial-gradient(circle at 90% 14%, rgba(202,255,41,.19), transparent 26%),
        var(--paper);
}

.project-featured-card {
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    gap: 28px;
    align-items: stretch;
    margin-top: -138px;
    margin-bottom: 82px;
    padding: 22px;
    border-radius: 42px;
    background: rgba(226,233,242,.97);
    border: 1px solid rgba(7,17,31,.12);
    box-shadow: 0 40px 120px rgba(8,19,38,.17);
}

.project-visual {
    position: relative;
    min-height: 580px;
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(202,255,41,.36), transparent 27%),
        radial-gradient(circle at 88% 16%, rgba(0,220,255,.36), transparent 29%),
        linear-gradient(145deg, #07111f, #14254a);
    border: 1px solid rgba(255,255,255,.12);
}

.project-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: .72;
}

.project-browser {
    position: absolute;
    left: 38px;
    right: 38px;
    top: 76px;
    min-height: 390px;
    padding: 18px;
    border-radius: 30px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(18px);
    box-shadow: 0 34px 100px rgba(0,0,0,.26);
    transform: rotate(-2.5deg);
}

.project-screen {
    position: relative;
    z-index: 1;
    min-height: 315px;
    padding: 22px;
    border-radius: 24px;
    background: var(--white);
    overflow: hidden;
}

.aschmann-screen {
    background:
        linear-gradient(135deg, rgba(210,23,34,.11), transparent 38%),
        linear-gradient(160deg, rgba(35,92,255,.08), transparent 40%),
        #e8eef6;
}

.project-screen-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 42px;
    color: var(--ink);
    font-weight: 950;
    letter-spacing: -.03em;
}

.project-screen-top span:first-child {
    padding: 8px 12px;
    border-radius: 999px;
    color: #fff;
    background: #d21722;
}

.project-screen-title {
    height: 25px;
    width: 86%;
    border-radius: 999px;
    background: var(--ink);
    margin-bottom: 12px;
}

.project-screen-title.short {
    width: 58%;
    background: #d21722;
}

.project-screen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 54px;
}

.project-screen-grid span {
    min-height: 84px;
    border-radius: 18px;
    background: rgba(7,17,31,.09);
    border: 1px solid rgba(7,17,31,.08);
}

.project-screen-grid span:nth-child(2) {
    background: linear-gradient(135deg, #d21722, #235cff);
}

.project-floating-pill {
    position: absolute;
    z-index: 2;
    padding: 13px 16px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    border: 2px solid rgba(255,255,255,.76);
    font-weight: 950;
    box-shadow: 8px 8px 0 rgba(0,0,0,.82);
}

.pill-one {
    left: 30px;
    bottom: 95px;
    transform: rotate(-8deg);
}

.pill-two {
    right: 34px;
    top: 34px;
    background: var(--cyan);
    transform: rotate(7deg);
}

.pill-three {
    right: 48px;
    bottom: 42px;
    background: var(--white);
    transform: rotate(4deg);
}


.project-featured-card-followup {
    margin-top: 0;
}

.vietroyal-visual {
    background:
        radial-gradient(circle at 12% 18%, rgba(202,255,41,.30), transparent 27%),
        radial-gradient(circle at 88% 16%, rgba(255,190,86,.35), transparent 29%),
        linear-gradient(145deg, #102018, #2c1c10);
}

.vietroyal-screen {
    background:
        linear-gradient(135deg, rgba(202,255,41,.16), transparent 38%),
        linear-gradient(160deg, rgba(191,141,44,.16), transparent 40%),
        #f4efe3;
}

.vietroyal-screen .project-screen-top span:first-child {
    background: #bf8d2c;
}

.vietroyal-screen .project-screen-title.short {
    background: #bf8d2c;
}

.vietroyal-screen .project-screen-grid span:nth-child(2) {
    background: linear-gradient(135deg, #bf8d2c, #486b39);
}

.project-content {
    padding: clamp(24px, 4vw, 44px) clamp(18px, 3.4vw, 38px);
    align-self: center;
}

.project-content h2 {
    color: var(--ink);
}

.project-content p:not(.section-kicker) {
    color: var(--muted);
    line-height: 1.66;
    font-size: 1.06rem;
}

.project-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0;
}

.project-meta-grid div {
    padding: 18px;
    border-radius: 20px;
    background: var(--paper);
    border: 1px solid rgba(7,17,31,.10);
}

.project-meta-grid span {
    display: block;
    color: var(--muted);
    font-size: .82rem;
    margin-bottom: 7px;
}

.project-meta-grid strong {
    display: block;
    color: var(--ink);
    line-height: 1.25;
}

.project-feature-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.project-feature-list li {
    display: flex;
    gap: 10px;
    color: var(--muted);
    line-height: 1.48;
}

.project-feature-list li::before {
    content: "✓";
    color: var(--blue);
    font-weight: 950;
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.gallery-head {
    max-width: 790px;
    margin-bottom: 30px;
}

.gallery-head p:not(.section-kicker) {
    color: var(--muted);
    line-height: 1.62;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
}

.gallery-placeholder-card {
    min-height: 285px;
    padding: 27px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(7,17,31,.11);
    box-shadow: 0 20px 70px rgba(8,19,38,.10);
}

.gallery-placeholder-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding-inline: 12px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 4px 4px 0 rgba(7,17,31,.93);
    font-weight: 950;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 58px;
}

.gallery-placeholder-card h3 {
    font-size: 1.38rem;
    margin-bottom: 10px;
}

.gallery-placeholder-card p {
    color: var(--muted);
    line-height: 1.58;
    margin-bottom: 0;
}

.project-cta-section {
    padding-top: 0;
}

.site-footer {
    color: #fff;
    background: #07111f;
    padding: 60px 0 36px;
    border-top: 1px solid rgba(255,255,255,.09);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .65fr .75fr .75fr;
    gap: 32px;
    margin-bottom: 42px;
}

.footer-brand .brand-icon {
    width: 44px;
    height: 44px;
}

.site-footer p {
    max-width: 460px;
    color: rgba(255,255,255,.62);
    line-height: 1.62;
    margin: 18px 0 0;
}

.site-footer h3 {
    margin: 0 0 16px;
    font-size: 1.05rem;
    color: rgba(255,255,255,.92);
}

.site-footer a:not(.brand) {
    display: block;
    color: rgba(255,255,255,.66);
    margin-bottom: 10px;
}

.site-footer a:hover {
    color: var(--lime);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    color: rgba(255,255,255,.45);
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: .92rem;
}

@media (max-width: 1040px) {
    .main-nav a:not(.nav-cta) {
        display: none;
    }

    .hero-grid,
    .split-grid,
    .contact-grid,
    .projects-teaser-grid,
    .project-featured-card {
        grid-template-columns: 1fr;
    }

    .hero-board {
        min-height: 500px;
    }

    .feature-grid,
    .timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .proof-grid,
    .package-grid,
    .addon-grid,
    .studio-grid,
    .project-gallery-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .studio-large {
        min-height: 420px;
    }

    .contact-info {
        position: static;
    }

    .project-featured-card {
        margin-top: -118px;
    }

    .project-meta-grid {
        grid-template-columns: 1fr;
    }

    .package-highlight {
        transform: none;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 26px, var(--container));
    }

    .nav-wrap {
        min-height: 72px;
    }

    .brand-copy small {
        display: none;
    }

    .brand-icon {
        width: 43px;
        height: 43px;
        box-shadow: 5px 5px 0 rgba(0,0,0,.78);
    }

    .main-nav .nav-cta {
        padding: 9px 12px;
        font-size: .86rem;
        box-shadow: 4px 4px 0 var(--lime);
    }

    .hero-section {
        min-height: auto;
        padding: 56px 0 66px;
    }

    h1 {
        font-size: clamp(2.7rem, 12.5vw, 4.25rem);
    }

    .hero-section h1 {
        font-size: clamp(2.55rem, 12vw, 3.85rem);
    }

    h2 {
        font-size: clamp(2.1rem, 11vw, 3.4rem);
    }

    .hero-text {
        font-size: 1.04rem;
    }

    .button {
        width: 100%;
        min-height: 52px;
    }

    .hero-board {
        min-height: 425px;
    }

    .device-frame {
        transform: none;
        min-height: 390px;
    }

    .code-card {
        left: 8px;
        bottom: 32px;
        width: 265px;
        transform: rotate(-2deg);
    }

    .status-a {
        top: 20px;
        left: 0;
    }

    .status-b {
        right: 0;
        bottom: 3px;
    }

    .status-c {
        display: none;
    }

    .proof-section {
        margin-top: -24px;
        padding-bottom: 52px;
    }

    .feature-grid,
    .timeline,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .section-pad,
    .split-section,
    .packages-section,
    .contact-section,
    .legal-page,
    .projects-page {
        padding: 62px 0;
    }

    .proof-grid article,
    .feature-card,
    .timeline article,
    .package-card,
    .studio-card,
    .form-card,
    .contact-info,
    .legal-card,
    .project-featured-card,
    .project-visual,
    .project-mini-card,
    .gallery-placeholder-card {
        border-radius: 24px;
    }

    .compare-row {
        grid-template-columns: 1fr;
    }

    .compare-row span + span {
        border-top: 1px solid rgba(255,255,255,.1);
    }

    .cta-box {
        padding: 44px 18px;
        border-radius: 28px;
    }


    .project-featured-card {
        margin-top: -92px;
        padding: 13px;
    }

    .project-visual {
        min-height: 455px;
    }

    .project-browser {
        left: 18px;
        right: 18px;
        top: 72px;
        transform: rotate(-1deg);
    }

    .project-floating-pill {
        font-size: .83rem;
        padding: 10px 12px;
        box-shadow: 5px 5px 0 rgba(0,0,0,.82);
    }

    .pill-one {
        left: 16px;
        bottom: 82px;
    }

    .pill-two {
        right: 16px;
        top: 22px;
    }

    .pill-three {
        right: 20px;
        bottom: 26px;
    }

    .project-actions {
        display: grid;
    }

    .project-mini-card {
        min-height: 315px;
    }


    .footer-bottom {
        display: grid;
    }
}

/* v2.8: Kontakt und Website-Check optisch/funktional trennen */
.small-actions {
    margin-top: 26px;
}

.contact-simple-section {
    background:
        radial-gradient(circle at 16% 10%, rgba(0, 214, 255, .10), transparent 28%),
        linear-gradient(180deg, rgba(203,213,225,.96), rgba(190,203,217,.94));
}

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

.contact-direct-card {
    background:
        linear-gradient(135deg, rgba(8,18,34,.96), rgba(16,36,62,.94));
    color: #fff;
    border-color: rgba(255,255,255,.16);
}

.contact-direct-card p,
.contact-direct-card .muted-small {
    color: rgba(255,255,255,.72);
}

.contact-direct-card .section-kicker {
    color: #87f7ff;
}

.contact-separator {
    height: 1px;
    background: rgba(255,255,255,.16);
    margin: 24px 0;
}

.muted-small {
    font-size: .94rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.compact-form-card {
    border-color: rgba(5,16,32,.12);
}

.check-points {
    display: grid;
    gap: 10px;
    margin: 24px 0;
}

.check-points span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    color: rgba(255,255,255,.82);
    font-weight: 750;
}

.check-points span::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #81f7ff, #b9ff5a);
    box-shadow: 0 0 18px rgba(129,247,255,.45);
}

/* v3.0: zentrierter Website-Rahmen für große Bildschirme */
body {
    background: #060b12;
}

body::before {
    background:
        radial-gradient(circle at 9% 6%, rgba(0, 220, 255, .20), transparent 28%),
        radial-gradient(circle at 88% 4%, rgba(202, 255, 41, .16), transparent 26%),
        radial-gradient(circle at 72% 78%, rgba(143, 92, 255, .14), transparent 30%),
        linear-gradient(180deg, #060b12 0%, #081525 48%, #05080f 100%);
}

body::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.95) 0%, rgba(0,0,0,.55) 46%, transparent 78%);
}

.site-frame {
    width: min(calc(100% - 44px), 1540px);
    margin: 22px auto;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .13);
    background: var(--paper);
    box-shadow: 0 42px 140px rgba(0, 0, 0, .42);
    isolation: isolate;
}

@media (max-width: 900px) {
    .site-frame {
        width: 100%;
        margin: 0;
        border-radius: 0;
        border: 0;
        box-shadow: none;
    }
}

/* v3.1: Mobile-Korrektur Baukasten-Bereich + ruhigere Typografie */
@media (max-width: 720px) {
    h1,
    h2 {
        letter-spacing: -.045em;
        line-height: 1.02;
    }

    .hero-section h1 {
        font-size: clamp(2.15rem, 10vw, 3.1rem);
        line-height: 1.02;
        letter-spacing: -.045em;
        max-width: 100%;
    }

    .hero-text,
    .split-copy p,
    .studio-card p,
    .section-head p {
        font-size: .97rem;
        line-height: 1.58;
    }

    .split-section {
        padding: 54px 0 58px;
    }

    .split-grid {
        gap: 24px;
    }

    .split-copy h2 {
        font-size: clamp(2rem, 9.2vw, 2.75rem);
        line-height: 1.02;
        letter-spacing: -.045em;
        margin-bottom: 16px;
    }

    .split-copy p {
        margin-bottom: 22px;
    }

    .split-copy .button {
        margin-bottom: 2px;
    }

    .compare-card {
        margin-top: 8px;
        border-radius: 22px;
    }

    .compare-row {
        grid-template-columns: 1fr 1fr;
    }

    .compare-row span {
        padding: 14px 13px;
        font-size: .82rem;
        line-height: 1.35;
    }

    .compare-row span + span {
        border-top: 0;
        border-left: 1px solid rgba(255,255,255,.10);
    }

    .compare-head span {
        font-size: .78rem;
        line-height: 1.25;
    }

    .studio-section {
        padding-top: 58px;
    }

    .studio-large {
        min-height: 360px;
    }

    .studio-card h2 {
        font-size: clamp(2rem, 9.5vw, 2.8rem);
        line-height: 1.02;
    }
}

@media (max-width: 420px) {
    .compare-row span {
        padding: 13px 11px;
        font-size: .78rem;
    }

    .compare-head span {
        font-size: .74rem;
    }
}

/* v3.2: Mobile ruhiger, kompakter und besser lesbar */
@media (max-width: 720px) {
    :root {
        --radius-xl: 26px;
        --radius-lg: 20px;
    }

    .container {
        width: min(100% - 30px, var(--container));
    }

    .site-header {
        position: sticky;
    }

    .nav-wrap {
        min-height: 66px;
    }

    .brand {
        gap: 10px;
    }

    .brand-icon {
        width: 38px;
        height: 38px;
        border-radius: 13px;
        font-size: .86rem;
        box-shadow: 4px 4px 0 rgba(0,0,0,.78);
    }

    .brand-copy span {
        font-size: .92rem;
    }

    .main-nav .nav-cta {
        display: none;
    }

    .hero-section {
        padding: 42px 0 46px;
    }

    .label,
    .section-kicker {
        font-size: .68rem;
        letter-spacing: .12em;
        margin-bottom: 12px;
    }

    .label span {
        width: 24px;
        height: 7px;
    }

    h1,
    .page-hero h1,
    .legal-card h1 {
        font-size: clamp(2rem, 8.2vw, 2.65rem);
        line-height: 1.04;
        letter-spacing: -.04em;
    }

    .hero-section h1 {
        font-size: clamp(2rem, 8.7vw, 2.75rem);
        line-height: 1.04;
        letter-spacing: -.04em;
        margin-bottom: 16px;
    }

    h2,
    .split-copy h2,
    .studio-card h2,
    .contact-info h2,
    .cta-box h2 {
        font-size: clamp(1.72rem, 7.2vw, 2.25rem);
        line-height: 1.06;
        letter-spacing: -.04em;
        margin-bottom: 14px;
    }

    h3,
    .timeline h3,
    .gallery-placeholder-card h3 {
        font-size: 1.08rem;
        line-height: 1.16;
        letter-spacing: -.035em;
    }

    .hero-text,
    .section-head p,
    .split-copy p,
    .studio-card p,
    .timeline p,
    .feature-card p,
    .proof-grid p,
    .package-card p,
    .contact-info p,
    .form-note {
        font-size: .92rem;
        line-height: 1.55;
    }

    .hero-actions {
        gap: 10px;
        margin-bottom: 18px;
    }

    .button {
        min-height: 48px;
        padding: 0 18px;
        font-size: .92rem;
    }

    .trust-strip {
        display: none;
    }

    .hero-board {
        min-height: 360px;
    }

    .device-frame {
        min-height: 340px;
        padding: 15px;
        border-radius: 24px;
    }

    .mock-hero {
        min-height: 160px;
        padding: 18px;
        border-radius: 18px;
    }

    .mock-chip {
        width: 94px;
        height: 18px;
        margin-bottom: 18px;
    }

    .mock-headline {
        height: 18px;
        margin-bottom: 9px;
    }

    .mock-text {
        height: 8px;
        margin-top: 16px;
    }

    .mock-cards span {
        min-height: 70px;
        border-radius: 15px;
    }

    .status-card {
        min-width: 112px;
        padding: 11px 12px;
        border-radius: 16px;
    }

    .status-card strong {
        font-size: 1.15rem;
    }

    .status-card span {
        font-size: .72rem;
    }

    .code-card {
        width: 230px;
        padding: 13px;
        gap: 6px;
        border-radius: 16px;
        font-size: .74rem;
        bottom: 22px;
    }

    .proof-section {
        margin-top: 0;
        padding: 26px 0 44px;
    }

    .proof-grid {
        gap: 12px;
    }

    .proof-grid article,
    .feature-card,
    .timeline article,
    .package-card,
    .studio-card,
    .form-card,
    .contact-info,
    .legal-card,
    .project-featured-card,
    .gallery-placeholder-card {
        min-height: auto;
        padding: 19px;
        border-radius: 20px;
    }

    .proof-grid span,
    .feature-index,
    .package-tag,
    .studio-mark,
    .timeline span,
    .gallery-placeholder-card span {
        min-width: 34px;
        height: 26px;
        padding-inline: 8px;
        font-size: .68rem;
        margin-bottom: 18px;
        box-shadow: 3px 3px 0 rgba(7,17,31,.93);
    }

    .proof-grid h2 {
        font-size: 1.35rem;
        line-height: 1.05;
        margin-bottom: 9px;
    }

    .section-pad,
    .split-section,
    .studio-section,
    .packages-section,
    .contact-section,
    .legal-page,
    .projects-page,
    .projects-teaser-section {
        padding: 48px 0;
    }

    .section-head {
        margin-bottom: 22px;
    }

    .feature-grid,
    .timeline,
    .package-grid,
    .studio-grid,
    .project-gallery-grid {
        gap: 12px;
    }

    .feature-card h3 {
        margin: 14px 0 8px;
        font-size: 1.08rem;
    }

    .feature-card::before {
        width: 92px;
        height: 92px;
        right: -34px;
        top: -34px;
    }

    .timeline span {
        width: 38px;
        min-width: 38px;
        height: 38px;
        border-radius: 13px;
        margin-bottom: 18px;
        box-shadow: 3px 3px 0 var(--ink);
    }

    .split-grid {
        gap: 18px;
    }

    .compare-card {
        border-radius: 20px;
    }

    .compare-row span {
        padding: 12px 10px;
        font-size: .76rem;
        line-height: 1.32;
    }

    .compare-head span {
        font-size: .72rem;
    }

    .studio-large {
        min-height: auto;
    }

    .package-card {
        min-height: auto;
    }

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

    .package-price {
        font-size: 1.9rem;
        margin: 4px 0 18px;
    }

    .package-card ul {
        gap: 9px;
        margin-bottom: 22px;
    }

    .package-card li {
        font-size: .92rem;
    }

    .cta-section {
        padding: 52px 0 62px;
    }

    .cta-box {
        padding: 34px 18px;
        border-radius: 22px;
    }

    .page-hero {
        padding: 56px 0 48px;
    }

    .page-hero p:not(.label) {
        font-size: .96rem;
        line-height: 1.55;
    }

    .contact-grid {
        gap: 14px;
    }

    .form-grid {
        gap: 12px;
    }

    form {
        gap: 13px;
    }

    input,
    select,
    textarea {
        padding: 13px 14px;
        border-radius: 13px;
    }
}

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

    .hero-section h1,
    h1,
    .page-hero h1 {
        font-size: clamp(1.88rem, 8.6vw, 2.35rem);
    }

    h2,
    .split-copy h2,
    .studio-card h2,
    .contact-info h2,
    .cta-box h2 {
        font-size: clamp(1.58rem, 7.6vw, 2.05rem);
    }

    .hero-board {
        min-height: 330px;
    }

    .status-b {
        display: none;
    }

    .code-card {
        width: 210px;
    }

    .compare-row span {
        font-size: .72rem;
        padding: 11px 8px;
    }
}

/* v3.3: Hero-Kontrast-Fix nach Site-Frame
   Der Hero bekommt wieder einen eigenen dunklen Tech-Hintergrund,
   damit weiße Überschrift und Texte nicht auf hellem Grau stehen. */
.hero-section {
    background:
        radial-gradient(circle at 14% 18%, rgba(0, 220, 255, .28), transparent 34%),
        radial-gradient(circle at 84% 14%, rgba(202, 255, 41, .18), transparent 32%),
        radial-gradient(circle at 72% 82%, rgba(143, 92, 255, .18), transparent 36%),
        linear-gradient(135deg, #07111f 0%, #0b1830 48%, #06101f 100%);
}

.hero-section h1 {
    color: #fff;
}

.hero-section .hero-text,
.hero-section .trust-strip span {
    color: rgba(255, 255, 255, .76);
}

/* v3.4: Ablauf-Karten mobil klarer strukturieren
   Zahl links, Titel rechts, Beschreibung darunter – dezente farbige Fläche. */
@media (max-width: 720px) {
    .timeline {
        gap: 13px;
    }

    .timeline article {
        display: grid;
        grid-template-columns: 46px 1fr;
        column-gap: 14px;
        row-gap: 5px;
        align-items: start;
        padding: 18px;
        background:
            linear-gradient(135deg, rgba(202, 255, 41, .12), rgba(0, 220, 255, .055) 42%, rgba(251, 252, 255, .96) 100%);
        border: 1px solid rgba(7, 17, 31, .10);
        box-shadow: 0 16px 48px rgba(8, 19, 38, .075);
    }

    .timeline article:nth-child(even) {
        background:
            linear-gradient(135deg, rgba(0, 220, 255, .12), rgba(202, 255, 41, .055) 42%, rgba(251, 252, 255, .96) 100%);
    }

    .timeline span {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 40px;
        min-width: 40px;
        height: 40px;
        margin: 0;
        border-radius: 14px;
        font-size: .78rem;
        box-shadow: 4px 4px 0 var(--ink);
    }

    .timeline h3 {
        grid-column: 2;
        margin: 2px 0 2px;
        font-size: 1.12rem;
        line-height: 1.12;
    }

    .timeline p {
        grid-column: 2;
        margin: 0;
        font-size: .91rem;
        line-height: 1.5;
    }
}

@media (max-width: 420px) {
    .timeline article {
        grid-template-columns: 42px 1fr;
        column-gap: 12px;
        padding: 16px;
    }

    .timeline span {
        width: 37px;
        min-width: 37px;
        height: 37px;
        border-radius: 13px;
    }
}

/* v3.5: Mobile-Hamburger-Menü wieder aktivieren
   Nach den Mobile-Korrekturen war nur noch der CTA sichtbar. Auf kleinen
   Ansichten wird jetzt wieder ein echtes ausklappbares Menü angezeigt. */
@media (max-width: 720px) {
    .nav-wrap {
        position: relative;
    }

    .nav-toggle {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

    .nav-button {
        width: 46px;
        height: 42px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 15px;
        background: rgba(255, 255, 255, .08);
        box-shadow: 4px 4px 0 rgba(0, 0, 0, .45);
        cursor: pointer;
        flex: 0 0 auto;
        z-index: 130;
    }

    .nav-button span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: #fff;
        transition: transform .2s ease, opacity .2s ease;
    }

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

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

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

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
        border-radius: 22px;
        background:
            radial-gradient(circle at 10% 0%, rgba(0, 220, 255, .20), transparent 34%),
            radial-gradient(circle at 92% 0%, rgba(202, 255, 41, .18), transparent 34%),
            rgba(7, 17, 31, .96);
        border: 1px solid rgba(255, 255, 255, .14);
        box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
        backdrop-filter: blur(18px);
        z-index: 120;
    }

    .nav-toggle:checked ~ .main-nav {
        display: grid;
    }

    .main-nav a,
    .main-nav a:not(.nav-cta),
    .main-nav .nav-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0;
        padding: 13px 14px;
        border-radius: 15px;
        color: rgba(255, 255, 255, .88);
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);
        box-shadow: none;
        font-size: .92rem;
    }

    .main-nav a::after {
        content: "→";
        opacity: .45;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
        background: rgba(255, 255, 255, .11);
        color: #fff;
    }

    .main-nav .nav-cta {
        margin-top: 4px;
        background: linear-gradient(135deg, var(--lime), var(--cyan));
        color: var(--ink);
        border-color: rgba(255, 255, 255, .25);
        font-weight: 950;
    }

    .main-nav .nav-cta::after {
        opacity: .75;
    }
}

/* v3.6: Tablet-Menü-Fix
   Ab 1040px blendet die Desktop-Navigation die normalen Menüpunkte aus.
   Deshalb muss ab genau diesem Bereich auch das Hamburger-Menü erscheinen,
   nicht erst ab 720px. So gibt es keinen Zwischenbereich mehr, in dem nur
   der CTA sichtbar ist. */
@media (max-width: 1040px) {
    .nav-wrap {
        position: relative;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

    .nav-button {
        width: 46px;
        height: 42px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 15px;
        background: rgba(255, 255, 255, .08);
        box-shadow: 4px 4px 0 rgba(0, 0, 0, .45);
        cursor: pointer;
        flex: 0 0 auto;
        z-index: 130;
    }

    .nav-button span {
        width: 20px;
        height: 2px;
        border-radius: 999px;
        background: #fff;
        transition: transform .2s ease, opacity .2s ease;
    }

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

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

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

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
        border-radius: 22px;
        background:
            radial-gradient(circle at 10% 0%, rgba(0, 220, 255, .20), transparent 34%),
            radial-gradient(circle at 92% 0%, rgba(202, 255, 41, .18), transparent 34%),
            rgba(7, 17, 31, .96);
        border: 1px solid rgba(255, 255, 255, .14);
        box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
        backdrop-filter: blur(18px);
        z-index: 120;
    }

    .nav-toggle:checked ~ .main-nav {
        display: grid;
    }

    .main-nav a,
    .main-nav a:not(.nav-cta),
    .main-nav .nav-cta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin: 0;
        padding: 13px 14px;
        border-radius: 15px;
        color: rgba(255, 255, 255, .88);
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);
        box-shadow: none;
        font-size: .92rem;
    }

    .main-nav a::after {
        content: "→";
        opacity: .45;
    }

    .main-nav a:hover,
    .main-nav a.is-active {
        background: rgba(255, 255, 255, .11);
        color: #fff;
    }

    .main-nav .nav-cta {
        margin-top: 4px;
        background: linear-gradient(135deg, var(--lime), var(--cyan));
        color: var(--ink);
        border-color: rgba(255, 255, 255, .25);
        font-weight: 950;
    }

    .main-nav .nav-cta::after {
        opacity: .75;
    }
}

/* v3.7: Kontakt und Website-Check in einem klaren Einstieg zusammenführen */
.hero-actions-single {
    align-items: center;
    gap: 13px;
}

.button-hero-main {
    min-height: 58px;
    padding-inline: 27px;
    box-shadow: 0 28px 78px rgba(0, 220, 255, .28), 6px 6px 0 rgba(202, 255, 41, .35);
}

.hero-action-note {
    max-width: 280px;
    padding: 11px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .72);
    font-size: .91rem;
    line-height: 1.38;
    backdrop-filter: blur(14px);
}

.combined-request-section {
    background:
        radial-gradient(circle at 8% 7%, rgba(0,220,255,.16), transparent 24%),
        radial-gradient(circle at 92% 8%, rgba(202,255,41,.18), transparent 24%),
        linear-gradient(180deg, rgba(203, 213, 225, 1), rgba(190, 203, 217, .96));
}

.combined-request-grid {
    align-items: stretch;
}

.combined-contact-card {
    position: sticky;
    top: 105px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 220, 255, .30), transparent 36%),
        radial-gradient(circle at 92% 6%, rgba(202, 255, 41, .22), transparent 34%),
        linear-gradient(135deg, rgba(7, 17, 31, .98), rgba(16, 36, 62, .96));
    border-color: rgba(255,255,255,.16);
}

.combined-contact-card::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -58px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(202,255,41,.28), transparent 64%);
    pointer-events: none;
}

.combined-contact-card p,
.combined-contact-card .muted-small {
    color: rgba(255,255,255,.74);
}

.combined-contact-card .section-kicker {
    color: #87f7ff;
}

.combined-contact-card h2,
.combined-contact-card .contact-lines,
.combined-contact-card .check-points {
    position: relative;
    z-index: 1;
}

.combined-contact-card .contact-lines a {
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
}

.combined-form-card {
    display: grid;
    gap: 22px;
}

.form-intro-card {
    padding: 22px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 220, 255, .16), transparent 36%),
        linear-gradient(135deg, rgba(7, 17, 31, .96), rgba(23, 50, 82, .94));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
}

.form-intro-card span {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 11px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lime), var(--cyan));
    color: var(--ink);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.form-intro-card h2 {
    margin-bottom: 8px;
    font-size: clamp(1.55rem, 2.3vw, 2.45rem);
    line-height: 1;
    letter-spacing: -.055em;
}

.form-intro-card p {
    margin: 0;
    color: rgba(255,255,255,.72);
    line-height: 1.55;
}

.compact-request-fields {
    gap: 14px;
}

.button-full {
    width: 100%;
    min-height: 58px;
    font-size: 1rem;
}

@media (max-width: 1040px) {
    .combined-contact-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 720px) {
    .hero-actions-single {
        display: grid;
    }

    .hero-action-note {
        width: 100%;
        max-width: none;
        text-align: center;
    }

    .button-hero-main,
    .button-full {
        min-height: 52px;
        padding-inline: 18px;
    }

    .form-intro-card {
        padding: 18px;
        border-radius: 20px;
    }
}


/* v4.1: Vor-Ort-Bilder als Zusatzleistung */
.photo-service-section {
    background:
        radial-gradient(circle at 10% 12%, rgba(0,220,255,.16), transparent 28%),
        radial-gradient(circle at 90% 18%, rgba(202,255,41,.18), transparent 26%),
        var(--paper);
}

.photo-service-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 20px;
    align-items: stretch;
}

.photo-service-copy,
.photo-service-card {
    border-radius: var(--radius-xl);
    padding: clamp(25px, 3.4vw, 38px);
    box-shadow: 0 28px 90px rgba(8,19,38,.12);
}

.photo-service-copy {
    color: #fff;
    background:
        radial-gradient(circle at 14% 0%, rgba(0,220,255,.22), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(202,255,41,.18), transparent 28%),
        #07111f;
    border: 1px solid rgba(255,255,255,.12);
}

.photo-service-copy .section-kicker {
    color: var(--cyan);
}

.photo-service-copy h2 {
    color: #fff;
}

.photo-service-copy p {
    color: rgba(255,255,255,.70);
    line-height: 1.64;
    margin-bottom: 24px;
}

.photo-service-card {
    background: rgba(232,238,246,.92);
    border: 1px solid rgba(7,17,31,.11);
}

.photo-service-card h3 {
    font-size: clamp(1.55rem, 2.6vw, 2.55rem);
    line-height: 1;
    letter-spacing: -.055em;
    margin-bottom: 12px;
}

.photo-service-card p {
    color: var(--muted);
    line-height: 1.62;
    margin-bottom: 22px;
}

.photo-point-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.photo-point {
    min-height: 132px;
    padding: 17px;
    border-radius: 22px;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(7,17,31,.10);
}

.photo-point span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 32px;
    margin-bottom: 24px;
    border-radius: 13px;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 4px 4px 0 rgba(7,17,31,.92);
    font-weight: 950;
    font-size: .82rem;
}

.photo-point strong {
    display: block;
    font-size: .98rem;
    line-height: 1.22;
}

/* v4.0: Zusatzmodule für stärkere Webdesign-Agentur-Wirkung */
.check-spotlight-section {
    color: #fff;
    background:
        radial-gradient(circle at 14% 10%, rgba(202,255,41,.20), transparent 26%),
        radial-gradient(circle at 88% 10%, rgba(0,220,255,.22), transparent 28%),
        linear-gradient(135deg, #07111f, #10233d 62%, #07111f);
}

.check-spotlight-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 24px;
    align-items: center;
}

.check-spotlight-copy p:not(.section-kicker) {
    color: rgba(255,255,255,.70);
    line-height: 1.64;
    margin-bottom: 24px;
}

.check-spotlight-copy h2 {
    color: #fff;
}

.check-spotlight-card {
    padding: clamp(22px, 3.4vw, 34px);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 12% 0%, rgba(0,220,255,.18), transparent 30%),
        radial-gradient(circle at 92% 0%, rgba(202,255,41,.18), transparent 32%),
        rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 36px 110px rgba(0,0,0,.25);
    backdrop-filter: blur(18px);
}

.check-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.check-pill-row span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding-inline: 14px;
    border-radius: 999px;
    color: var(--ink);
    background: linear-gradient(135deg, var(--lime), var(--cyan));
    font-weight: 950;
    font-size: .82rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.check-mini-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.check-mini-list article {
    min-height: 218px;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.13);
}

.check-mini-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 36px;
    margin-bottom: 42px;
    border-radius: 14px;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 4px 4px 0 rgba(0,0,0,.82);
    font-weight: 950;
}

.check-mini-list h3 {
    color: #fff;
    font-size: 1.16rem;
    margin-bottom: 9px;
}

.check-mini-list p {
    color: rgba(255,255,255,.68);
    line-height: 1.52;
    margin: 0;
}

.before-after-section {
    background:
        radial-gradient(circle at 10% 12%, rgba(202,255,41,.17), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(35,92,255,.18), transparent 28%),
        var(--paper-2);
}

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

.makeover-card {
    position: relative;
    min-height: 470px;
    padding: clamp(24px, 3vw, 34px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(7,17,31,.11);
    background: rgba(232,238,246,.88);
    box-shadow: 0 28px 90px rgba(8,19,38,.12);
    overflow: hidden;
}

.after-card {
    color: #fff;
    background:
        radial-gradient(circle at 14% 10%, rgba(202,255,41,.22), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(0,220,255,.22), transparent 30%),
        #07111f;
    border-color: rgba(255,255,255,.14);
}

.makeover-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding-inline: 15px;
    border-radius: 999px;
    color: var(--ink);
    background: var(--lime);
    box-shadow: 4px 4px 0 rgba(7,17,31,.92);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.makeover-window {
    position: relative;
    min-height: 215px;
    margin-bottom: 30px;
    border-radius: 28px;
    background:
        linear-gradient(rgba(7,17,31,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7,17,31,.06) 1px, transparent 1px),
        rgba(255,255,255,.72);
    background-size: 26px 26px;
    border: 1px solid rgba(7,17,31,.10);
    overflow: hidden;
}

.after-card .makeover-window {
    background:
        linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
        rgba(255,255,255,.08);
    background-size: 26px 26px;
    border-color: rgba(255,255,255,.13);
}

.makeover-window i {
    position: absolute;
    display: block;
    border-radius: 999px;
}

.makeover-window .line {
    left: 24px;
    height: 16px;
    background: rgba(98,112,134,.44);
}

.makeover-window .wide {
    top: 32px;
    width: 72%;
}

.makeover-window .short {
    top: 62px;
    width: 46%;
}

.makeover-window .mid {
    bottom: 48px;
    width: 58%;
}

.makeover-window .tiny {
    bottom: 22px;
    width: 34%;
}

.makeover-window .box {
    right: 24px;
    top: 84px;
    width: 39%;
    height: 78px;
    border-radius: 18px;
    background: rgba(98,112,134,.24);
}

.makeover-window .hero-line {
    left: 24px;
    top: 34px;
    width: 76%;
    height: 24px;
    background: #fff;
}

.makeover-window .hero-line.small {
    top: 72px;
    width: 52%;
    height: 16px;
    background: rgba(255,255,255,.62);
}

.makeover-window .cta-dot {
    left: 24px;
    top: 110px;
    width: 128px;
    height: 34px;
    background: linear-gradient(135deg, var(--lime), var(--cyan));
    box-shadow: 0 16px 38px rgba(0,220,255,.24);
}

.makeover-window .tile {
    bottom: 22px;
    width: calc((100% - 72px) / 3);
    height: 48px;
    border-radius: 16px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.12);
}

.makeover-window .tile.one { left: 24px; }
.makeover-window .tile.two { left: calc(24px + ((100% - 72px) / 3) + 12px); }
.makeover-window .tile.three { right: 24px; }

.makeover-card h3 {
    font-size: clamp(1.45rem, 2.4vw, 2.35rem);
    line-height: 1;
    letter-spacing: -.055em;
    margin-bottom: 12px;
}

.makeover-card p {
    color: var(--muted);
    line-height: 1.62;
    margin: 0;
}

.after-card p {
    color: rgba(255,255,255,.72);
}

.industry-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}

.industry-card {
    position: relative;
    transition: .25s ease;
}

.industry-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 34px 90px rgba(35,92,255,.14);
}

.industry-card:nth-child(2n) span {
    background: var(--cyan);
}

.industry-card:nth-child(3n) span {
    background: var(--white);
}

.faq-section {
    background:
        radial-gradient(circle at 12% 10%, rgba(0,220,255,.15), transparent 27%),
        radial-gradient(circle at 90% 10%, rgba(202,255,41,.18), transparent 26%),
        var(--paper);
}

.faq-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 34px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    border-radius: 22px;
    background: rgba(232,238,246,.92);
    border: 1px solid rgba(7,17,31,.11);
    box-shadow: 0 18px 55px rgba(8,19,38,.08);
    overflow: hidden;
}

.faq-list summary {
    cursor: pointer;
    padding: 20px 22px;
    color: var(--ink);
    font-weight: 950;
    list-style: none;
}

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

.faq-list summary::after {
    content: "+";
    float: right;
    color: var(--blue);
    font-weight: 950;
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list p {
    padding: 0 22px 22px;
    margin: 0;
    color: var(--muted);
    line-height: 1.62;
}

@media (max-width: 1040px) {
    .check-spotlight-grid,
    .faq-grid,
    .photo-service-grid {
        grid-template-columns: 1fr;
    }

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

    .check-mini-list article {
        min-height: auto;
    }

    .check-mini-list span {
        margin-bottom: 24px;
    }
}

@media (max-width: 820px) {
    .before-after-grid,
    .industry-gallery-grid,
    .photo-point-list {
        grid-template-columns: 1fr;
    }

    .makeover-card {
        min-height: auto;
    }

    .makeover-window {
        min-height: 190px;
    }
}

@media (max-width: 560px) {
    .check-spotlight-card,
    .makeover-card,
    .photo-service-copy,
    .photo-service-card {
        border-radius: 24px;
    }

    .check-pill-row span {
        flex: 1 1 auto;
    }

    .makeover-window .tile {
        height: 38px;
    }

    .faq-list summary {
        padding: 18px;
    }

    .faq-list p {
        padding: 0 18px 18px;
    }
}

.gallery-head-split {
    max-width: 860px;
}

.industry-card {
    overflow: hidden;
}

.industry-visual {
    position: relative;
    min-height: 132px;
    border-radius: 22px;
    margin: -7px -7px 23px;
    background:
        radial-gradient(circle at 18% 18%, rgba(0,220,255,.28), transparent 28%),
        radial-gradient(circle at 82% 22%, rgba(202,255,41,.33), transparent 26%),
        linear-gradient(135deg, rgba(7,17,31,.98), rgba(35,92,255,.55));
    border: 1px solid rgba(255,255,255,.7);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 18px 45px rgba(8,19,38,.10);
    overflow: hidden;
}

.industry-visual::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 17px;
    height: 46px;
    border-radius: 18px;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(10px);
}

.industry-visual i {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
}

.industry-visual i:nth-child(1) {
    width: 44px;
    height: 44px;
    left: 24px;
    top: 22px;
}

.industry-visual i:nth-child(2) {
    width: 82px;
    height: 10px;
    left: 30px;
    bottom: 40px;
}

.industry-visual i:nth-child(3) {
    width: 52px;
    height: 10px;
    left: 30px;
    bottom: 24px;
    opacity: .55;
}

.industry-visual-craft {
    background:
        radial-gradient(circle at 82% 24%, rgba(202,255,41,.30), transparent 28%),
        linear-gradient(135deg, rgba(7,17,31,.98), rgba(255,168,76,.48));
}

.industry-visual-service {
    background:
        radial-gradient(circle at 20% 18%, rgba(202,255,41,.30), transparent 28%),
        linear-gradient(135deg, rgba(7,17,31,.98), rgba(0,220,255,.42));
}

.industry-visual-consulting {
    background:
        radial-gradient(circle at 80% 18%, rgba(0,220,255,.28), transparent 28%),
        linear-gradient(135deg, rgba(7,17,31,.98), rgba(143,92,255,.52));
}

.industry-visual-studio {
    background:
        radial-gradient(circle at 22% 20%, rgba(255,255,255,.28), transparent 26%),
        linear-gradient(135deg, rgba(7,17,31,.98), rgba(238,95,157,.42));
}

.industry-visual-function {
    background:
        radial-gradient(circle at 20% 18%, rgba(0,220,255,.30), transparent 28%),
        linear-gradient(135deg, rgba(7,17,31,.98), rgba(31,223,148,.40));
}

.industry-card-labels {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 26px;
}

.industry-card .industry-card-labels span {
    margin-bottom: 0;
}

.industry-card-labels small {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding-inline: 12px;
    border-radius: 999px;
    color: rgba(7,17,31,.74);
    background: rgba(7,17,31,.07);
    border: 1px solid rgba(7,17,31,.10);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .04em;
}

@media (max-width: 560px) {
    .industry-visual {
        min-height: 118px;
        border-radius: 18px;
    }
}

/* v3.8: Kontaktformular – Eingabefelder kontrastreicher und klarer sichtbar */
.combined-form-card input,
.combined-form-card select,
.combined-form-card textarea {
    background: #f8fbff;
    border: 2px solid rgba(7, 17, 31, .28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .86),
        0 7px 22px rgba(7, 17, 31, .055);
}

.combined-form-card input:hover,
.combined-form-card select:hover,
.combined-form-card textarea:hover {
    border-color: rgba(7, 17, 31, .42);
    background: #fff;
}

.combined-form-card input:focus,
.combined-form-card select:focus,
.combined-form-card textarea:focus {
    background: #fff;
    border-color: var(--blue);
    box-shadow:
        0 0 0 4px rgba(35, 92, 255, .16),
        0 10px 26px rgba(7, 17, 31, .09);
}

.combined-form-card input::placeholder,
.combined-form-card textarea::placeholder {
    color: rgba(7, 17, 31, .56);
    opacity: 1;
}


/* v3.9: Cookie-Hinweis mit verschwommenem Hintergrund */
body.cookie-consent-pending {
    overflow: hidden;
}

body.cookie-consent-pending .site-frame {
    filter: blur(13px);
    transform: scale(1.012);
    pointer-events: none;
    user-select: none;
}

.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 22% 22%, rgba(0, 220, 255, .22), transparent 28%),
        radial-gradient(circle at 78% 74%, rgba(202, 255, 41, .18), transparent 28%),
        rgba(7, 17, 31, .46);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: cookieFadeIn .22s ease both;
}

.cookie-consent.is-hiding {
    animation: cookieFadeOut .24s ease both;
}

.cookie-consent__card {
    position: relative;
    width: min(720px, 100%);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding: 28px;
    border-radius: 30px;
    color: #fff;
    background:
        radial-gradient(circle at 8% 12%, rgba(202, 255, 41, .22), transparent 26%),
        radial-gradient(circle at 92% 18%, rgba(0, 220, 255, .22), transparent 28%),
        linear-gradient(135deg, rgba(7, 17, 31, .98), rgba(16, 35, 61, .96));
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow:
        0 34px 110px rgba(0, 0, 0, .48),
        inset 0 1px 0 rgba(255, 255, 255, .16);
    overflow: hidden;
}

.cookie-consent__card::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lime), var(--cyan));
    opacity: .22;
    filter: blur(14px);
    pointer-events: none;
}

.cookie-consent__icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: var(--ink);
    font-weight: 950;
    letter-spacing: -.06em;
    background: linear-gradient(135deg, var(--lime), var(--cyan));
    box-shadow: 7px 7px 0 rgba(0, 0, 0, .62);
}

.cookie-consent__content,
.cookie-consent__actions {
    position: relative;
    z-index: 1;
}

.cookie-consent__kicker {
    margin: 0 0 6px;
    color: var(--cyan);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cookie-consent h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 3rem);
    line-height: .92;
    letter-spacing: -.08em;
}

.cookie-consent p {
    margin: 0;
    max-width: 58ch;
    color: rgba(255, 255, 255, .78);
    font-weight: 720;
    line-height: 1.55;
}

.cookie-consent__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.cookie-consent__links a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    font-size: .86rem;
    font-weight: 850;
}

.cookie-consent__links a:hover,
.cookie-consent__links a:focus-visible {
    color: var(--ink);
    background: var(--lime);
    outline: none;
}

.cookie-consent__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 4px;
}

.cookie-consent__btn {
    min-height: 50px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 950;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.cookie-consent__btn:hover,
.cookie-consent__btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.cookie-consent__btn-ghost {
    color: rgba(255, 255, 255, .86);
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
}

.cookie-consent__btn-ghost:hover,
.cookie-consent__btn-ghost:focus-visible {
    background: rgba(255, 255, 255, .16);
}

.cookie-consent__btn-primary {
    color: var(--ink);
    background: linear-gradient(135deg, var(--lime), var(--cyan));
    box-shadow: 0 16px 32px rgba(0, 220, 255, .18);
}

.cookie-consent__btn-primary:hover,
.cookie-consent__btn-primary:focus-visible {
    box-shadow: 0 20px 42px rgba(202, 255, 41, .20);
}

@keyframes cookieFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes cookieFadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@media (max-width: 640px) {
    .cookie-consent {
        padding: 16px;
        align-items: end;
    }

    .cookie-consent__card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 22px;
        border-radius: 24px;
    }

    .cookie-consent__icon {
        width: 54px;
        height: 54px;
        border-radius: 18px;
    }

    .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-consent__btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-consent,
    .cookie-consent.is-hiding,
    .cookie-consent__btn {
        animation: none;
        transition: none;
    }

    .cookie-consent__btn:hover,
    .cookie-consent__btn:focus-visible {
        transform: none;
    }
}


/* v4.2: Farb-Refresh – mehr Licht, Farbe und Kontrast ohne Layoutänderungen */
body {
    background: #10223a;
}

body::before {
    background:
        radial-gradient(circle at 8% 8%, rgba(0, 220, 255, .34), transparent 30%),
        radial-gradient(circle at 86% 4%, rgba(202, 255, 41, .24), transparent 28%),
        radial-gradient(circle at 78% 78%, rgba(143, 92, 255, .24), transparent 34%),
        radial-gradient(circle at 28% 92%, rgba(255, 63, 127, .13), transparent 30%),
        linear-gradient(135deg, #0d2638 0%, #14345c 44%, #182646 72%, #10233d 100%);
}

body::after {
    background-image:
        linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.92) 0%, rgba(0,0,0,.62) 52%, transparent 86%);
}

.site-frame {
    background: #d8e6f3;
    border-color: rgba(255, 255, 255, .22);
    box-shadow: 0 42px 140px rgba(5, 18, 36, .34);
}

.hero-section,
.page-hero {
    background:
        radial-gradient(circle at 14% 16%, rgba(0, 220, 255, .38), transparent 34%),
        radial-gradient(circle at 84% 10%, rgba(202, 255, 41, .26), transparent 32%),
        radial-gradient(circle at 76% 84%, rgba(143, 92, 255, .24), transparent 38%),
        linear-gradient(135deg, #0b2d42 0%, #17345e 50%, #112340 100%);
}

.split-section,
.check-spotlight-section,
.studio-section,
.cta-section {
    background:
        radial-gradient(circle at 12% 10%, rgba(0, 220, 255, .30), transparent 31%),
        radial-gradient(circle at 88% 12%, rgba(202, 255, 41, .22), transparent 30%),
        radial-gradient(circle at 72% 88%, rgba(143, 92, 255, .22), transparent 36%),
        linear-gradient(135deg, #0b2d42 0%, #14345c 54%, #122441 100%);
}

.light-panel,
.contact-section,
.legal-page,
.projects-page,
.projects-teaser-section,
.photo-service-section,
.faq-section {
    background:
        radial-gradient(circle at 8% 6%, rgba(0, 220, 255, .22), transparent 27%),
        radial-gradient(circle at 92% 10%, rgba(202, 255, 41, .24), transparent 26%),
        radial-gradient(circle at 78% 86%, rgba(143, 92, 255, .12), transparent 34%),
        linear-gradient(180deg, #d9edf7 0%, #dce6f5 48%, #d9e7d2 100%);
}

.packages-section,
.before-after-section,
.combined-request-section {
    background:
        radial-gradient(circle at 8% 8%, rgba(0, 220, 255, .24), transparent 27%),
        radial-gradient(circle at 90% 10%, rgba(202, 255, 41, .26), transparent 26%),
        radial-gradient(circle at 76% 88%, rgba(143, 92, 255, .14), transparent 32%),
        linear-gradient(180deg, #d7edf7 0%, #d9e5f2 50%, #d6e7d2 100%);
}

.combined-contact-card,
.photo-service-copy,
.project-mini-card,
.after-card,
.package-highlight,
.form-intro-card {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 220, 255, .36), transparent 36%),
        radial-gradient(circle at 92% 6%, rgba(202, 255, 41, .30), transparent 35%),
        radial-gradient(circle at 76% 92%, rgba(143, 92, 255, .20), transparent 36%),
        linear-gradient(135deg, #0b2d42 0%, #17365e 58%, #112340 100%);
}

.cta-box,
.check-spotlight-card,
.studio-card,
.compare-card {
    background:
        radial-gradient(circle at 12% 8%, rgba(0, 220, 255, .20), transparent 32%),
        radial-gradient(circle at 92% 10%, rgba(202, 255, 41, .18), transparent 32%),
        rgba(255, 255, 255, .11);
}

.site-footer {
    color: #fff;
    background:
        radial-gradient(circle at 10% 0%, rgba(0, 220, 255, .34), transparent 32%),
        radial-gradient(circle at 78% 0%, rgba(202, 255, 41, .24), transparent 34%),
        radial-gradient(circle at 92% 86%, rgba(143, 92, 255, .20), transparent 34%),
        linear-gradient(135deg, #0b2d42 0%, #14345c 54%, #17264a 100%);
    border-top-color: rgba(255, 255, 255, .18);
}

.site-footer p,
.site-footer a:not(.brand),
.footer-bottom {
    color: rgba(255, 255, 255, .74);
}

.site-footer h3 {
    color: rgba(255, 255, 255, .96);
}

.footer-bottom {
    border-top-color: rgba(255, 255, 255, .14);
}

.site-footer a:hover {
    color: var(--cyan);
}

/* Kompaktere Zeilen im Baukasten-Vergleich */
.compare-row span {
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1.25;
}

.compare-head span {
    padding-top: 16px;
    padding-bottom: 16px;
}

@media (max-width: 720px) {
    .compare-row span {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 1.25;
    }

    .compare-head span {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

/* Dezent mehr Kontrast für helle Bereiche */
.light-panel,
.contact-section,
.legal-page,
.projects-page,
.projects-teaser-section,
.photo-service-section,
.faq-section {
    background:
        radial-gradient(circle at 8% 6%, rgba(0, 220, 255, .24), transparent 27%),
        radial-gradient(circle at 92% 10%, rgba(202, 255, 41, .24), transparent 26%),
        radial-gradient(circle at 78% 86%, rgba(143, 92, 255, .14), transparent 34%),
        linear-gradient(180deg, #cce4ef 0%, #d1ddea 48%, #ccdec4 100%);
}

.packages-section,
.before-after-section,
.combined-request-section {
    background:
        radial-gradient(circle at 8% 8%, rgba(0, 220, 255, .25), transparent 27%),
        radial-gradient(circle at 90% 10%, rgba(202, 255, 41, .26), transparent 26%),
        radial-gradient(circle at 76% 88%, rgba(143, 92, 255, .15), transparent 32%),
        linear-gradient(180deg, #cae4ef 0%, #cedbe9 50%, #c9ddc2 100%);
}

.package-card:not(.package-highlight),
.addon-card,
.package-note,
.faq-list details,
.form-card,
.contact-info,
.legal-card,
.project-featured-card,
.gallery-placeholder-card {
    background-color: rgba(232, 238, 246, .97);
    border-color: rgba(7, 17, 31, .15);
    box-shadow: 0 30px 92px rgba(8, 19, 38, .15);
}


.project-featured-card-followup {
    margin-top: 0;
}
