/* ════════════════════════════════════════════════
   SM CREATION — STYLESHEET
   Light theme · DM Serif Display + DM Sans
   © Schmitz Media Group
════════════════════════════════════════════════ */

:root {
    --bg:           #f8f7f4;
    --bg-card:      #ffffff;
    --bg-ink:       #0e0e0e;
    --accent:       #0052ff;
    --accent-soft:  rgba(0, 82, 255, 0.08);
    --accent-mid:   rgba(0, 82, 255, 0.15);
    --text-1:       #0e0e0e;
    --text-2:       #5a5a5a;
    --text-3:       #9a9a9a;
    --border:       rgba(0,0,0,0.08);
    --border-strong:rgba(0,0,0,0.14);
    --shadow-sm:    0 2px 16px rgba(0,0,0,0.05);
    --shadow-md:    0 8px 40px rgba(0,0,0,0.08);
    --shadow-lg:    0 24px 80px rgba(0,0,0,0.10);
    --radius:       20px;
    --radius-sm:    12px;
    --ease:         cubic-bezier(0.16, 1, 0.3, 1);
    --nav-h:        72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text-1);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ─── PAGE LOADER ─── */
.page-loader {
    position: fixed;
    top: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    z-index: 9999;
    transition: none;
    border-radius: 0 2px 2px 0;
}
.page-loader.loading {
    animation: loaderRun 0.6s var(--ease) forwards;
}
.page-loader.done {
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s 0.1s;
}
@keyframes loaderRun {
    from { width: 0; }
    to   { width: 75%; }
}

/* ─── TRANSITION OVERLAY ─── */
.transition-overlay {
    position: fixed;
    inset: 0;
    z-index: 900;
    pointer-events: none;
    overflow: hidden;
}
.transition-wipe {
    position: absolute;
    inset: 0;
    background: var(--bg-card);
    transform: scaleX(0);
    transform-origin: left center;
}

/* ─── VIEW TRANSITIONS ─── */
::view-transition-old(root) {
    animation: vtOld 0.35s var(--ease) both;
}
::view-transition-new(root) {
    animation: vtNew 0.35s var(--ease) both;
}
@keyframes vtOld {
    to { opacity: 0; transform: translateY(-12px) scale(0.99); }
}
@keyframes vtNew {
    from { opacity: 0; transform: translateY(16px) scale(0.99); }
}

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
#nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 800;
    height: var(--nav-h);
    background: rgba(248, 247, 244, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 48px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-mark {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--accent);
}
.logo-name {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--text-1);
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    margin-left: auto;
    position: relative;
}
.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-2);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 100px;
    position: relative;
    z-index: 1;
    transition: color 0.25s;
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--text-1);
}
.nav-links a.nav-cta {
    background: var(--text-1);
    color: #fff !important;
    font-weight: 500;
    margin-left: 8px;
}
.nav-links a.nav-cta:hover {
    background: var(--accent);
}

.nav-pill {
    position: absolute;
    bottom: 0;
    height: 100%;
    background: var(--accent-soft);
    border-radius: 100px;
    transition: left 0.35s var(--ease), width 0.35s var(--ease), opacity 0.3s;
    opacity: 0;
    pointer-events: none;
}

/* Burger */
.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-1);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 12px 0 20px;
}
.nav-mobile a {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-2);
    text-decoration: none;
    padding: 13px 32px;
    transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover { color: var(--text-1); background: var(--accent-soft); }
.nav-mobile.open { display: flex; }

/* ══════════════════════════════════════════════
   MAIN / APP ROOT
══════════════════════════════════════════════ */
#app-root {
    min-height: calc(100vh - var(--nav-h));
    padding-top: var(--nav-h);
}

/* ══════════════════════════════════════════════
   REVEAL ANIMATION
══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

/* ══════════════════════════════════════════════
   ── HOME PAGE ──
══════════════════════════════════════════════ */

/* HERO */
.hero {
    min-height: calc(100vh - var(--nav-h));
    display: grid;
    grid-template-rows: 1fr auto;
    padding: 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 60px;
    max-width: 820px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
}
.hero-kicker-dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 2.5s infinite;
}

.hero-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(52px, 8vw, 110px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--text-1);
    margin-bottom: 32px;
}
.hero-title em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: var(--text-2);
    font-weight: 300;
    max-width: 540px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* CTA Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-1);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--accent); transform: translateY(-1px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-2);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding: 14px 28px;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid var(--border-strong);
    cursor: pointer;
    transition: border-color 0.25s, color 0.25s, transform 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-1px); }

/* Marquee */
.hero-marquee {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-3);
}
.marquee-track span {
    padding: 0 24px;
    white-space: nowrap;
}
.marquee-track span.dot { color: var(--accent); padding: 0 8px; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* STATS STRIP */
.stats-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stat-item {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 44px;
    font-weight: 400;
    color: var(--text-1);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-num sup {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: var(--accent);
}
.stat-label {
    font-size: 13px;
    color: var(--text-3);
    font-weight: 300;
}

/* SERVICES PREVIEW */
.services-preview {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
}
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
    gap: 24px;
    flex-wrap: wrap;
}
.section-kicker {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-1);
}
.section-title em { font-style: italic; color: var(--accent); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    cursor: default;
}
.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-icon {
    width: 44px; height: 44px;
    background: var(--accent-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
}
.service-icon svg { width: 22px; height: 22px; }
.service-name {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-1);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.service-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-2);
    font-weight: 300;
}
.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
}
.service-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 100px;
    background: var(--accent-soft);
    color: var(--accent);
    letter-spacing: 0.03em;
}

/* PORTFOLIO PREVIEW */
.portfolio-preview {
    background: var(--bg-ink);
    padding: 120px 40px;
    position: relative;
    overflow: hidden;
}
.portfolio-preview::before {
    content: '';
    position: absolute;
    top: -200px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(0, 82, 255, 0.07) 0%, transparent 65%);
    pointer-events: none;
}
.portfolio-preview-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.portfolio-preview .section-title { color: #fff; }
.portfolio-preview .section-kicker { color: rgba(255,255,255,0.4); }

.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 64px;
}
.work-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, transform 0.35s, background 0.3s;
    cursor: pointer;
}
.work-card:hover {
    border-color: rgba(0, 82, 255, 0.4);
    background: rgba(255,255,255,0.07);
    transform: translateY(-4px);
}
.work-card.featured {
    grid-column: 1 / -1;
    flex-direction: row;
}
.work-card-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    font-style: italic;
    color: rgba(255,255,255,0.07);
    letter-spacing: -0.04em;
    flex-shrink: 0;
}
.work-card.featured .work-card-visual {
    width: 300px;
    min-height: 220px;
    font-size: 72px;
}
.work-card:not(.featured) .work-card-visual {
    height: 160px;
}
.vis-1 { background: linear-gradient(135deg, #0a1628 0%, #0d2348 100%); color: rgba(0,82,255,0.3); }
.vis-2 { background: linear-gradient(135deg, #0e1a10 0%, #112415 100%); color: rgba(30,180,80,0.2); }
.vis-3 { background: linear-gradient(135deg, #1a0e10 0%, #241215 100%); color: rgba(255,60,60,0.2); }

.work-card-info {
    padding: 28px 32px;
    flex: 1;
}
.work-card-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    display: block;
    margin-bottom: 10px;
}
.work-card-title {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.work-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

/* HOME CTA SECTION */
.home-cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.home-cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-1);
    max-width: 560px;
}
.home-cta-title em { font-style: italic; color: var(--accent); }

/* ══════════════════════════════════════════════
   ── LEISTUNGEN PAGE ──
══════════════════════════════════════════════ */
.page-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 80px;
}
.page-kicker {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}
.page-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(44px, 7vw, 88px);
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: var(--text-1);
    margin-bottom: 24px;
}
.page-title em { font-style: italic; color: var(--accent); }
.page-desc {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-2);
    font-weight: 300;
    max-width: 580px;
}

.services-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 120px;
}
.services-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.service-card-full {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px 40px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.service-card-full:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-card-full .service-icon { margin-bottom: 28px; }
.service-card-full .service-name { font-size: 22px; margin-bottom: 16px; }
.service-card-full .service-desc { margin-bottom: 28px; font-size: 15px; }
.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-2);
}
.service-list li::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

.process-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 40px;
}
.process-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 64px;
}
.process-step { position: relative; }
.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: calc(100% + 0px);
    width: 100%;
    height: 1px;
    background: var(--border);
}
.step-num {
    font-family: 'DM Serif Display', serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--accent);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}
.step-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-1);
    margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; font-weight: 300; }

/* ══════════════════════════════════════════════
   ── PORTFOLIO PAGE ──
══════════════════════════════════════════════ */
.portfolio-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 120px;
}
.portfolio-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.filter-btn {
    font-size: 13px;
    font-weight: 400;
    padding: 8px 18px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-2);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--text-1);
    border-color: var(--text-1);
    color: #fff;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}
.portfolio-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.portfolio-card-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    font-style: italic;
    color: rgba(255,255,255,0.1);
}
.portfolio-card-body {
    padding: 24px;
    flex: 1;
}
.portfolio-card-cat {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    display: block;
}
.portfolio-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-1);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.portfolio-card-desc {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
    font-weight: 300;
}

/* ══════════════════════════════════════════════
   ── ÜBER UNS PAGE ──
══════════════════════════════════════════════ */
.about-hero-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-visual-block {
    background: var(--bg-ink);
    border-radius: 28px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-visual-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(0,82,255,0.15) 0%, transparent 60%);
}
.about-monogram {
    font-family: 'DM Serif Display', serif;
    font-size: 96px;
    font-style: italic;
    color: rgba(255,255,255,0.06);
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
}
.about-text-block .page-kicker { margin-bottom: 16px; }
.about-text-block .page-title { font-size: clamp(36px, 4vw, 52px); margin-bottom: 24px; }
.about-lead {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-1);
    line-height: 1.5;
    margin-bottom: 16px;
}
.about-body {
    font-size: 15px;
    color: var(--text-2);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 16px;
}

.about-values {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 40px;
}
.about-values-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 64px;
}
.value-card {
    padding: 36px 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
}
.value-num {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 20px;
}
.value-title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-1);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}
.value-desc { font-size: 14px; color: var(--text-2); line-height: 1.65; font-weight: 300; }

.smg-context {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 120px;
}
.smg-context-inner {
    background: var(--bg-ink);
    border-radius: 28px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.smg-context-inner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,82,255,0.08) 0%, transparent 65%);
    pointer-events: none;
}
.smg-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 24px;
}
.smg-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}
.smg-title em { font-style: italic; color: rgba(0, 82, 255, 0.7); }
.smg-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-weight: 300;
}
.smg-divisions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.smg-division {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s, background 0.2s;
}
.smg-division:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(0,82,255,0.3);
}
.smg-division.active-div {
    border-color: rgba(0,82,255,0.4);
    background: rgba(0,82,255,0.07);
}
.div-mark {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    width: 36px;
    flex-shrink: 0;
}
.div-info { flex: 1; }
.div-name {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}
.div-role { font-size: 12px; color: rgba(255,255,255,0.35); }
.div-badge {
    font-size: 10px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
    background: rgba(0,82,255,0.15);
    color: rgba(0,82,255,0.8);
    letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════════
   ── KONTAKT PAGE ──
══════════════════════════════════════════════ */
.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 120px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.contact-info { position: sticky; top: calc(var(--nav-h) + 40px); }
.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.contact-detail:first-child { padding-top: 0; }
.contact-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}
.contact-value {
    font-size: 15px;
    color: var(--text-1);
    font-weight: 400;
}
.contact-value a {
    color: var(--text-1);
    text-decoration: none;
    transition: color 0.2s;
}
.contact-value a:hover { color: var(--accent); }

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 24px; }
.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-1);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--text-1);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}
.form-submit:hover { background: var(--accent); transform: translateY(-1px); }
.form-submit svg { transition: transform 0.2s; }
.form-submit:hover svg { transform: translateX(3px); }

.form-success {
    text-align: center;
    padding: 40px;
    display: none;
}
.form-success.visible { display: block; }
.form-success-icon {
    width: 56px; height: 56px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #16a34a;
}
.form-success-title {
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--text-1);
    margin-bottom: 10px;
}
.form-success-desc { font-size: 15px; color: var(--text-2); }

/* ══════════════════════════════════════════════
   ── FOOTER ──
══════════════════════════════════════════════ */
#site-footer {
    border-top: 1px solid var(--border);
    padding: 32px 40px;
    background: var(--bg);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-logo-mark {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
}
.footer-logo-name {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-1);
}
.footer-divider { color: var(--text-3); font-size: 14px; }
.footer-parent { font-size: 13px; color: var(--text-3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
    font-size: 13px;
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-1); }
.footer-copy { font-size: 13px; color: var(--text-3); }

/* ══════════════════════════════════════════════
   ── 404 ──
══════════════════════════════════════════════ */
.not-found {
    min-height: calc(100vh - var(--nav-h) - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
}
.not-found-num {
    font-family: 'DM Serif Display', serif;
    font-size: 120px;
    font-weight: 400;
    color: var(--text-1);
    opacity: 0.06;
    line-height: 1;
    margin-bottom: -20px;
}

/* ── ANIMATIONS ── */
@keyframes pulseDot {
    0%   { transform: scale(0.9); opacity: 0.5; }
    50%  { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px rgba(0,82,255,0.5); }
    100% { transform: scale(0.9); opacity: 0.5; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-burger { display: flex; }
    .nav-inner { gap: 0; }

    .hero { padding: 0 24px; }
    .hero-content { padding: 70px 0 48px; }

    .stats-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
    .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }

    .services-grid { grid-template-columns: 1fr; }
    .services-full-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-step::after { display: none; }

    .work-grid { grid-template-columns: 1fr; }
    .work-card.featured { flex-direction: column; }
    .work-card.featured .work-card-visual { width: 100%; min-height: 160px; }

    .portfolio-grid { grid-template-columns: 1fr 1fr; }

    .about-hero-split { grid-template-columns: 1fr; gap: 40px; }
    .values-grid { grid-template-columns: 1fr; }
    .smg-context-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }

    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .contact-info { position: static; }

    .services-preview, .portfolio-preview, .home-cta-section,
    .about-values, .smg-context, .process-section,
    .services-full, .portfolio-full, .about-hero-split { padding-left: 24px; padding-right: 24px; }

    .home-cta-section { flex-direction: column; align-items: flex-start; }

    #site-footer { padding: 28px 24px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-card { padding: 28px 24px; }
}

@media (max-width: 600px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .smg-divisions { gap: 8px; }
    .stats-strip-inner { grid-template-columns: 1fr 1fr; }
}