/* ============================================
   MALLORIFFA GMBH — GLOBAL STYLESHEET
   Schwarz + Orange · klar, ruhig, ehrlich
   ============================================ */

:root {
    --color-bg: #000000;
    --color-bg-soft: #0a0a0a;
    --color-bg-elevated: #111111;
    --color-bg-card: #141414;
    --color-surface: #1a1a1a;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-strong: rgba(255, 255, 255, 0.16);

    --color-text: #f5f5f7;
    --color-text-muted: #a1a1a6;
    --color-text-dim: #6e6e73;

    --color-gold: #e38700;
    --color-gold-light: #ff9b1f;
    --color-gold-bright: #ffae45;
    --color-gold-dark: #b36900;
    --color-gold-deep: #7a4800;

    --gradient-gold: linear-gradient(135deg, #ff9b1f 0%, #e38700 50%, #b36900 100%);
    --gradient-gold-soft: linear-gradient(135deg, rgba(255, 155, 31, 0.14) 0%, rgba(227, 135, 0, 0.04) 100%);
    --gradient-hero: radial-gradient(ellipse at top, rgba(227, 135, 0, 0.14) 0%, rgba(0, 0, 0, 0) 55%);
    --gradient-card: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 60px rgba(227, 135, 0, 0.25);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 999px;

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    --container: 1200px;
    --container-wide: 1400px;

    --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
                 "Helvetica Neue", "Inter", Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.55;
    overflow-x: hidden;
    font-feature-settings: "ss01", "ss02", "cv11";
}

::selection {
    background: var(--color-gold);
    color: #000;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--color-text);
}

.display {
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.02;
}

.headline {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.subheadline {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.lead {
    font-size: clamp(1.1rem, 1.6vw, 1.35rem);
    color: var(--color-text-muted);
    line-height: 1.5;
    font-weight: 400;
    max-width: 720px;
}

.text-gold { color: var(--color-gold); }
.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: clamp(70px, 10vw, 140px) 0;
    position: relative;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border-strong), transparent);
    margin: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    background: rgba(0, 0, 0, 0.72);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.88);
    border-bottom-color: var(--color-border);
    padding: 12px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-logo .logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--gradient-gold);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #000;
    font-size: 1.05rem;
    box-shadow: 0 4px 16px rgba(227, 135, 0, 0.4);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1.5px;
    background: var(--color-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 8px 18px !important;
    border-radius: var(--radius-full);
    background: var(--gradient-gold);
    color: #000 !important;
    font-weight: 600 !important;
    font-size: 0.88rem !important;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(227, 135, 0, 0.4);
}

.nav-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-text);
    transition: 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid var(--color-border);
        padding: 24px;
        transform: translateY(-120%);
        transition: transform 0.4s var(--ease);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid var(--color-border);
        font-size: 1.05rem;
    }
    .nav-cta {
        margin-top: 12px;
        text-align: center;
        width: 100%;
        padding: 14px !important;
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
    will-change: transform;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    box-shadow: 0 6px 24px rgba(227, 135, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(227, 135, 0, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text);
    border: 1px solid var(--color-border-strong);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-gold);
    padding: 8px 0;
    border-radius: 0;
}

.btn-ghost::after {
    content: ' →';
    transition: transform 0.25s var(--ease);
    display: inline-block;
}

.btn-ghost:hover::after { transform: translateX(4px); }

.btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 36px;
}

/* ============================================
   HERO
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    pointer-events: none;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(227, 135, 0, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-inner .lead {
    margin: 24px auto 0;
}

.hero-meta {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-meta-item {
    text-align: center;
}

.hero-meta-num {
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.hero-meta-label {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-dim);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}

.hero-scroll .line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, var(--color-gold));
    animation: scrollLine 2s infinite var(--ease);
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-header .lead {
    margin: 16px auto 0;
}

/* ============================================
   CARDS / FEATURES
   ============================================ */

.grid {
    display: grid;
    gap: 24px;
}

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

@media (max-width: 980px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 135, 0, 0.3);
}

.card:hover::before { opacity: 1; }

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-gold-soft);
    border: 1px solid rgba(227, 135, 0, 0.25);
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    color: var(--color-gold);
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    color: var(--color-gold);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: gap 0.25s var(--ease);
}

.card-link:hover { gap: 10px; }

/* ============================================
   FEATURE STRIP (BIG PRODUCT BLOCKS)
   ============================================ */

.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-block:last-child { margin-bottom: 0; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-block-content h2 {
    margin-bottom: 20px;
}

.feature-block-content .lead { margin-bottom: 24px; }

.feature-list {
    margin-top: 28px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 1rem;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.feature-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.feature-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(227, 135, 0, 0.25) 0%, transparent 60%);
}

@media (max-width: 880px) {
    .feature-block, .feature-block.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
}

/* ============================================
   STATS BAND
   ============================================ */

.stats-band {
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 70px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

@media (max-width: 880px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-num {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    margin-top: 8px;
    letter-spacing: 0.02em;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: linear-gradient(135deg, rgba(227, 135, 0, 0.12), rgba(227, 135, 0, 0.02));
    border: 1px solid rgba(227, 135, 0, 0.18);
    border-radius: var(--radius-xl);
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(227, 135, 0, 0.2), transparent 70%);
    pointer-events: none;
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner .lead { margin: 0 auto 32px; }

/* ============================================
   APP SHOWCASE
   ============================================ */

.app-showcase {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 60px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s var(--ease);
}

.app-showcase:hover {
    border-color: rgba(227, 135, 0, 0.3);
}

.app-showcase-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-showcase.reverse .app-showcase-inner {
    grid-template-columns: 1fr 1.1fr;
}

.app-showcase.reverse .app-showcase-info { order: 2; }
.app-showcase.reverse .app-showcase-visual { order: 1; }

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(227, 135, 0, 0.1);
    border: 1px solid rgba(227, 135, 0, 0.25);
    color: var(--color-gold);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}

.app-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-gold);
}

.app-showcase h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    margin-bottom: 16px;
}

.app-showcase-visual {
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    position: relative;
    background: var(--color-bg);
}

/* DocumentDiary mock */
.mock-dd {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1208 0%, #0d0a05 100%);
    padding: 28px;
    position: relative;
}

.mock-dd::before {
    content: 'DocumentDiary';
    font-weight: 700;
    color: var(--color-gold);
    font-size: 0.95rem;
    letter-spacing: -0.01em;
}

.mock-dd-doc {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(227, 135, 0, 0.15);
    border-radius: 8px;
    padding: 12px;
    backdrop-filter: blur(8px);
}

.mock-dd-doc::before {
    content: '';
    display: block;
    width: 60%;
    height: 8px;
    border-radius: 4px;
    background: rgba(227, 135, 0, 0.4);
    margin-bottom: 8px;
}

.mock-dd-doc::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 0 rgba(255, 255, 255, 0.12), 0 16px 0 rgba(255, 255, 255, 0.08);
}

/* Strong Country mock */
.mock-scc {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0d0d 100%);
    display: grid;
    place-items: center;
    position: relative;
    padding: 28px;
}

.mock-scc-flag {
    width: 100%;
    max-width: 240px;
    aspect-ratio: 3/2;
    background: linear-gradient(180deg, #ed2939 50%, #ffffff 50%);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

.mock-scc-label {
    position: absolute;
    top: 20px;
    left: 20px;
    color: var(--color-gold);
    font-weight: 700;
    font-size: 0.95rem;
}

.mock-scc-medal {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #000;
    font-size: 1.4rem;
    box-shadow: 0 10px 24px rgba(227, 135, 0, 0.4);
}

@media (max-width: 880px) {
    .app-showcase { padding: 36px; }
    .app-showcase-inner,
    .app-showcase.reverse .app-showcase-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .app-showcase.reverse .app-showcase-info { order: 1; }
    .app-showcase.reverse .app-showcase-visual { order: 2; }
}

/* App-Icon im Apple-Style — clean, zentriert, mit dezentem Glow */
.app-icon-stage {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 24px;
    position: relative;
    background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.05) 0%, transparent 65%);
}

.app-icon-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 135, 0, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.app-icon-tile {
    width: clamp(200px, 78%, 300px);
    aspect-ratio: 1;
    border-radius: 22.5%;
    overflow: hidden;
    background: var(--color-bg);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 10px 22px rgba(0, 0, 0, 0.35);
    transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
    position: relative;
    z-index: 1;
}

.app-icon-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    pointer-events: none;
}

.app-icon-tile img,
.app-icon-tile svg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.app-icon-tile--documentdiary { background: #3d6770; }
.app-icon-tile--strong-country { background: #13263a; }

.app-showcase:hover .app-icon-tile {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.08) inset,
        0 36px 80px rgba(0, 0, 0, 0.6),
        0 12px 26px rgba(0, 0, 0, 0.4);
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

@media (max-width: 880px) {
    .process-grid { grid-template-columns: 1fr; }
}

.process-step {
    text-align: left;
}

.process-num {
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--color-text-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

/* ============================================
   PRICING
   ============================================ */

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

@media (max-width: 980px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

.pricing-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 135, 0, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(227, 135, 0, 0.08), rgba(227, 135, 0, 0.01));
    border-color: rgba(227, 135, 0, 0.35);
    box-shadow: var(--shadow-glow);
}

.pricing-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: #000;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.pricing-card .price {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 16px 0;
    line-height: 1;
}

.pricing-card .price small {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.pricing-card .desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.pricing-card ul {
    flex-grow: 1;
    margin-bottom: 28px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.96rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--color-gold);
    font-weight: 700;
}

.pricing-card ul li:last-child { border-bottom: none; }

.pricing-card .btn { width: 100%; }

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: color 0.25s var(--ease);
}

.faq-q:hover { color: var(--color-gold); }

.faq-q .icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-border-strong);
    display: grid;
    place-items: center;
    color: var(--color-gold);
    font-size: 1rem;
    transition: transform 0.35s var(--ease), background 0.25s var(--ease);
}

.faq-item.open .faq-q .icon {
    transform: rotate(45deg);
    background: rgba(227, 135, 0, 0.12);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-a-inner {
    padding-bottom: 24px;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 760px;
}

.faq-item.open .faq-a {
    max-height: 600px;
}

/* ============================================
   TEAM
   ============================================ */

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 920px;
    margin: 0 auto;
}

@media (max-width: 720px) {
    .team-grid { grid-template-columns: 1fr; }
}

.team-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(227, 135, 0, 0.3);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-gold);
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.02em;
    box-shadow: var(--shadow-glow);
}

.team-card h3 { font-size: 1.3rem; margin-bottom: 4px; }
.team-card .role {
    color: var(--color-gold);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.team-card p {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
}

.team-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-dim);
    font-size: 0.84rem;
}

/* ============================================
   CONTACT
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

.contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: var(--color-text);
}

.contact-info-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-item:first-of-type { padding-top: 0; }

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(227, 135, 0, 0.1);
    border: 1px solid rgba(227, 135, 0, 0.2);
    display: grid;
    place-items: center;
    color: var(--color-gold);
    flex-shrink: 0;
    font-size: 1.05rem;
}

.contact-info-item .label {
    font-size: 0.78rem;
    color: var(--color-text-dim);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-info-item .value {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-info-item .value a:hover { color: var(--color-gold); }

.contact-form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

@media (max-width: 540px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.form-field label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--color-bg);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-family: inherit;
    font-size: 0.98rem;
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(227, 135, 0, 0.04);
    box-shadow: 0 0 0 4px rgba(227, 135, 0, 0.1);
}

.form-field textarea { min-height: 140px; }

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-gold);
    flex-shrink: 0;
}

.form-success {
    background: rgba(227, 135, 0, 0.1);
    border: 1px solid rgba(227, 135, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 18px;
    display: none;
}

.form-success.show { display: block; }

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-bg-soft);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 540px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer h4 {
    font-size: 0.84rem;
    color: var(--color-text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    transition: color 0.25s var(--ease);
}

.footer ul li a:hover { color: var(--color-gold); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--color-text-dim);
    font-size: 0.88rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--color-text-dim);
}
.footer-bottom-links a:hover { color: var(--color-gold); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */

.page-header {
    padding-top: 180px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}

.page-header > * { position: relative; z-index: 1; }
.page-header .lead { margin: 16px auto 0; }

/* ============================================
   IMPRESSUM / LEGAL TEXT
   ============================================ */

.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 48px 0 16px;
}

.legal-content h2:first-child { margin-top: 0; }

.legal-content p, .legal-content li {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.legal-content ul { padding-left: 22px; list-style: disc; margin-bottom: 18px; }
.legal-content ul li { padding-left: 6px; }

.legal-content a { color: var(--color-gold); }
.legal-content a:hover { text-decoration: underline; }

.legal-info-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin: 32px 0;
}

.legal-info-card dl {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 14px 24px;
}

@media (max-width: 640px) {
    .legal-info-card dl { grid-template-columns: 1fr; gap: 4px 0; }
    .legal-info-card dt { margin-top: 14px; }
}

.legal-info-card dt {
    color: var(--color-text-dim);
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

.legal-info-card dd {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.55;
}

/* ============================================
   SCROLL REVEAL
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.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; }

/* ============================================
   UTILITIES
   ============================================ */

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

.divider-dot {
    color: var(--color-gold);
    margin: 0 8px;
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb {
    background: rgba(227, 135, 0, 0.3);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: var(--color-gold); }

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 520px;
    margin-left: auto;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-lg);
    padding: 24px;
    z-index: 200;
    box-shadow: var(--shadow-lg);
    transform: translateY(120%);
    transition: transform 0.5s var(--ease);
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 16px;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
}

.cookie-banner-actions .btn {
    padding: 10px 18px;
    font-size: 0.88rem;
}
