/* ═══════════════════════════════════════════════════════════
   myTekton Landing Page — Styles
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Variables ─────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand */
    --orange: #D4652B;
    --orange-hover: #C05A24;
    --orange-light: #F0D4C3;
    --orange-glow: rgba(212, 101, 43, 0.15);

    /* Backgrounds */
    --bg-cream: #F5F0EB;
    --bg-white: #FDFBF9;
    --bg-warm: #EDE6DB;
    --bg-dark: #1A1715;
    --bg-dark-card: #292524;

    /* Text */
    --text-primary: #1A1715;
    --text-secondary: #5C5650;
    --text-muted: #9B9590;
    --text-on-dark: #F5F0EB;
    --text-on-dark-muted: #A8A29E;

    /* Border */
    --border: #DDD5CA;
    --border-light: #EDE6DB;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
    --space-2xl: 32px;
    --space-3xl: 48px;
    --space-4xl: 64px;
    --space-5xl: 96px;
    --space-6xl: 128px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadow */
    --shadow-sm: 0 1px 3px rgba(26, 23, 21, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 23, 21, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 23, 21, 0.12);
    --shadow-xl: 0 24px 60px rgba(26, 23, 21, 0.16);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-cream);
    overflow-x: hidden;
}

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

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

/* ── Container ─────────────────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* ── Typography ────────────────────────────────────────── */
.headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.headline .italic {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--text-secondary);
}

.headline .bold {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: var(--space-lg);
}

.section-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-top: var(--space-lg);
    line-height: 1.7;
}

.section-header {
    margin-bottom: var(--space-4xl);
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-size: 0.938rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 200ms var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--orange);
    color: white;
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 101, 43, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: var(--bg-white);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: var(--bg-warm);
}

.btn:focus-visible,
a:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 2px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
}

/* ── Badge ─────────────────────────────────────────────── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 6px 16px;
    background: var(--orange-glow);
    color: var(--orange);
    border-radius: var(--radius-full);
    font-size: 0.813rem;
    font-weight: 600;
    border: 1px solid rgba(212, 101, 43, 0.2);
}

/* ── Nav ───────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-lg) 0;
    transition: all 300ms var(--ease);
}

.nav.scrolled {
    background: rgba(253, 251, 249, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-md) 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
}

.nav-logo {
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-my {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    color: var(--text-secondary);
}

.logo-tekton {
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: var(--space-2xl);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 200ms var(--ease);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 200ms var(--ease);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: var(--bg-cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xl);
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms var(--ease);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
    padding: calc(80px + var(--space-5xl)) 0 var(--space-4xl);
    text-align: center;
}

.hero-badge {
    margin-bottom: var(--space-xl);
}

.hero .headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: var(--space-xl);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.688rem;
    font-weight: 600;
    color: white;
    border: 2px solid var(--bg-cream);
    margin-left: -8px;
}

.proof-avatar:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.813rem;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    margin-top: var(--space-3xl);
}

.browser-frame {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.browser-dots {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border-light);
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--border);
}

.browser-content {
    padding: 0;
}

/* ── Mock App ──────────────────────────────────────────── */
.mock-app {
    display: flex;
    min-height: 380px;
}

.mock-sidebar {
    width: 200px;
    background: var(--bg-dark);
    padding: var(--space-lg);
    flex-shrink: 0;
}

.mock-logo {
    font-size: 0.875rem;
    margin-bottom: var(--space-xl);
    padding: var(--space-sm) 0;
}

.mock-logo .logo-my {
    color: var(--text-on-dark-muted);
}

.mock-logo .logo-tekton {
    color: var(--text-on-dark);
    font-weight: 700;
}

.mock-nav-item {
    height: 32px;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
}

.mock-nav-item.active {
    background: var(--orange);
}

.mock-main {
    flex: 1;
    background: var(--bg-cream);
    overflow: hidden;
}

.mock-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

.mock-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mock-header-actions {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.mock-search {
    width: 120px;
    height: 28px;
    border-radius: var(--radius-sm);
    background: var(--bg-warm);
}

.mock-avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: var(--orange-light);
}

.mock-kanban {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    overflow: hidden;
}

.mock-column {
    flex: 1;
    min-width: 0;
}

.mock-col-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.688rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    padding: var(--space-sm) 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mock-col-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.mock-col-count {
    margin-left: auto;
    font-size: 0.625rem;
    background: var(--bg-warm);
    padding: 1px 6px;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    flex-shrink: 0;
}

.mock-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
    border: 1px solid var(--border-light);
    border-left: 3px solid transparent;
    transition: transform 200ms var(--ease), box-shadow 200ms var(--ease);
}

.mock-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.mock-card.priority-dringend { border-left-color: #DC2626; }
.mock-card.priority-hoch { border-left-color: #F97316; }
.mock-card.priority-mittel { border-left-color: #F59E0B; }
.mock-card.priority-niedrig { border-left-color: #94A3B8; }

.mock-card-nr {
    font-size: 0.625rem;
    font-family: 'SF Mono', 'Fira Code', monospace;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.mock-card-title {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.mock-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.mock-card-badge {
    font-size: 0.563rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mock-card-badge.critical { background: #FEE2E2; color: #DC2626; }
.mock-card-badge.urgent { background: #FFEDD5; color: #EA580C; }
.mock-card-badge.medium { background: #FEF3C7; color: #D97706; }
.mock-card-badge.low { background: #F1F5F9; color: #64748B; }

.mock-card-date {
    font-size: 0.625rem;
    color: var(--text-muted);
}

.mock-card-avatars {
    display: flex;
    margin-top: var(--space-sm);
    /* negative gap entfernt — Überlappung wird via margin-left auf .mock-card-avatar erzielt */
}

.mock-card-avatar {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: var(--orange);
    font-size: 0.5rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--bg-white);
    margin-left: -4px;
}

.mock-card-avatar:first-child {
    margin-left: 0;
}

.mock-card-progress {
    margin-top: var(--space-sm);
    height: 3px;
    border-radius: 2px;
    background: var(--bg-warm);
    overflow: hidden;
}

.mock-card-progress-bar {
    height: 100%;
    background: var(--orange);
    border-radius: 2px;
    transition: width 600ms var(--ease);
}

/* ── Trust Strip ───────────────────────────────────────── */
.trust {
    padding: var(--space-4xl) 0;
    border-top: 1px solid var(--border-light);
}

.trust-label {
    text-align: center;
    font-size: 0.813rem;
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-dot {
    width: 4px;
    height: 4px;
    border-radius: var(--radius-full);
    background: var(--border);
}

/* ── Features ──────────────────────────────────────────── */
.features {
    padding: var(--space-6xl) 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--border-light);
    transition: all 300ms var(--ease);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: var(--orange-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    color: var(--orange);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Workflow ──────────────────────────────────────────── */
.workflow {
    padding: var(--space-6xl) 0;
    background: var(--bg-white);
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.workflow-step {
    display: flex;
    gap: var(--space-2xl);
    align-items: flex-start;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    min-width: 100px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.04em;
    color: var(--orange-light);
}

.step-content {
    flex: 1;
    padding-top: var(--space-sm);
}

.step-phase {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
    margin-bottom: var(--space-sm);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.step-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: var(--space-lg);
}

.step-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.step-tags span {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: var(--bg-cream);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

/* ── Screenshots / Slider ──────────────────────────────── */
.screenshots {
    background: var(--bg-dark);
    padding: var(--space-6xl) 0;
}

.screenshots .section-label {
    color: var(--orange);
    background: rgba(212, 101, 43, 0.15);
}

.screenshots .headline .italic,
.screenshots .headline .bold {
    color: var(--text-on-dark);
}

.screenshots .section-sub {
    color: var(--text-on-dark-muted);
}

.slider {
    margin-top: var(--space-3xl);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.slider-caption {
    text-align: center;
    margin-bottom: var(--space-xl);
    min-height: 60px;
}

.slider-label {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.slider-desc {
    color: var(--text-on-dark-muted);
    font-size: 0.95rem;
    margin: 0;
}

.slider-track {
    display: grid;
    grid-template-areas: "slide";
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.slide {
    grid-area: slide;
    opacity: 0;
    transition: opacity 0.45s var(--ease);
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.slider-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--text-on-dark);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
    flex-shrink: 0;
}

.slider-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.slider-dots {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.22);
    border: none;
    cursor: pointer;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
    padding: 0;
}

.dot.active {
    background: var(--orange);
    transform: scale(1.4);
}

/* ── Gewerke ───────────────────────────────────────────── */
.gewerke {
    padding: var(--space-6xl) 0;
}

.gewerke-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.gewerk-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all 300ms var(--ease);
}

.gewerk-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.gewerk-emoji {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

.gewerk-card h4 {
    font-size: 1.063rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.gewerk-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── Security ──────────────────────────────────────────── */
.security {
    padding: var(--space-6xl) 0;
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.security .headline .italic {
    color: var(--text-on-dark-muted);
}

.security .headline .bold {
    color: var(--text-on-dark);
}

.security .section-label {
    color: var(--orange);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.security-content p {
    font-size: 1.063rem;
    color: var(--text-on-dark-muted);
    line-height: 1.7;
    margin-top: var(--space-xl);
    max-width: 440px;
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xl);
    background: var(--bg-dark-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.security-badge svg {
    color: var(--orange);
    flex-shrink: 0;
}

.security-badge strong {
    display: block;
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--text-on-dark);
}

.security-badge span {
    font-size: 0.813rem;
    color: var(--text-on-dark-muted);
}

/* ── Pricing ───────────────────────────────────────────── */
.pricing {
    padding: var(--space-6xl) 0;
    background: var(--bg-white);
}

.pricing-header-center {
    text-align: center;
}

.pricing-header-center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* Beta Pricing */
.pricing-beta {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-beta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--bg-cream);
    border-radius: var(--radius-xl);
    border: 2px solid var(--orange);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.pricing-beta-left {
    padding: var(--space-3xl);
    background: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    border-right: 1px solid var(--border-light);
}

.pricing-beta-badge {
    display: inline-flex;
    align-self: flex-start;
    padding: 4px 14px;
    background: var(--orange-glow);
    color: var(--orange);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(212, 101, 43, 0.2);
}

.pricing-beta-price {
    line-height: 1;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.04em;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-beta-sub {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-trial-box {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.pricing-trial-box svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-trial-box strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.pricing-trial-box span {
    font-size: 0.813rem;
    color: var(--text-secondary);
}

.pricing-beta-right {
    padding: var(--space-3xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.pricing-features-title {
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.pricing-features-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) var(--space-lg);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--orange);
    flex-shrink: 0;
}

.pricing-beta-note {
    margin-top: var(--space-xl);
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ── Roadmap ───────────────────────────────────────────── */
.roadmap {
    padding: var(--space-6xl) 0;
    background: var(--bg-cream);
}

.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 800px;
}

/* Vertical line connecting phases */
.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(
        to bottom,
        var(--orange) 0%,
        var(--orange-light) 40%,
        var(--border) 70%
    );
}

.roadmap-phase {
    display: flex;
    gap: 0;
    padding-bottom: var(--space-4xl);
    position: relative;
}

.roadmap-phase:last-child {
    padding-bottom: 0;
}

.roadmap-phase-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    flex-shrink: 0;
    width: 200px;
    padding-top: 4px;
}

.roadmap-dot {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-cream);
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 0 0 2px currentColor;
}

.roadmap-dot.done {
    background: var(--orange);
    color: var(--orange);
}

.roadmap-dot.upcoming {
    background: var(--orange-light);
    color: var(--orange-light);
}

.roadmap-dot.future {
    background: var(--bg-warm);
    color: var(--border);
}

.roadmap-phase-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    text-align: center;
}

.roadmap-phase-tag {
    font-size: 0.688rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: var(--radius-full);
}

.roadmap-phase-tag.done {
    background: var(--orange-glow);
    color: var(--orange);
    border: 1px solid rgba(212, 101, 43, 0.2);
}

.roadmap-phase-tag.upcoming {
    background: #FEF3C7;
    color: #92400E;
    border: 1px solid #FDE68A;
}

.roadmap-phase-tag.future {
    background: var(--bg-warm);
    color: var(--text-muted);
    border: 1px solid var(--border-light);
}

.roadmap-phase-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.roadmap-phase-content {
    flex: 1;
    padding-left: var(--space-2xl);
    padding-top: 0;
}

.roadmap-phase-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.roadmap-phase-content > p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.roadmap-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.roadmap-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.roadmap-item svg {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

.roadmap-item.upcoming svg,
.roadmap-item.future svg {
    color: var(--text-muted);
}

.roadmap-item strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.875rem;
    margin-bottom: 1px;
}

.roadmap-item span {
    display: block;
    font-size: 0.813rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Roadmap CTA Banner */
.roadmap-cta {
    margin-top: var(--space-4xl);
}

.roadmap-cta-inner {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-xl) var(--space-2xl);
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    color: var(--text-on-dark);
}

.roadmap-cta-inner svg {
    color: var(--orange);
    flex-shrink: 0;
}

.roadmap-cta-inner p {
    flex: 1;
    font-size: 0.938rem;
    color: var(--text-on-dark-muted);
    line-height: 1.5;
}

.roadmap-cta-inner strong {
    color: var(--text-on-dark);
}

@media (max-width: 768px) {
    .roadmap-timeline::before {
        display: none;
    }

    .roadmap-phase {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .roadmap-phase-header {
        flex-direction: row;
        width: auto;
        justify-content: flex-start;
        align-items: center;
    }

    .roadmap-phase-meta {
        align-items: flex-start;
        text-align: left;
    }

    .roadmap-phase-content {
        padding-left: 0;
    }

    .roadmap-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .roadmap-cta-inner p {
        text-align: left;
    }
}

/* ── CTA ───────────────────────────────────────────────── */
.cta {
    padding: var(--space-6xl) 0;
}

.cta-inner {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.cta-inner p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: var(--space-xl);
    line-height: 1.7;
}

.cta-actions {
    margin-top: var(--space-2xl);
}

.cta-note {
    font-size: 0.813rem !important;
    color: var(--text-muted) !important;
    margin-top: var(--space-lg) !important;
}

/* ── Survey ────────────────────────────────────────────── */
.survey {
    padding: var(--space-6xl) 0;
    background: var(--bg-cream);
}

.survey .section-header {
    text-align: center;
}

.survey .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.survey-embed {
    max-width: 720px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    padding: var(--space-2xl);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.survey-embed iframe {
    display: block;
    min-height: 400px;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
    padding: var(--space-4xl) 0 var(--space-2xl);
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    margin-top: var(--space-lg);
    line-height: 1.6;
}

.footer-origin {
    font-size: 0.813rem !important;
    color: var(--text-muted) !important;
    font-style: italic;
    margin-top: var(--space-md) !important;
}

.footer .nav-logo {
    font-size: 1.25rem;
}

.footer .logo-my {
    color: var(--text-on-dark-muted);
}

.footer .logo-tekton {
    color: var(--text-on-dark);
}

.footer-links h4 {
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-on-dark-muted);
    margin-bottom: var(--space-lg);
}

.footer-links a {
    display: block;
    font-size: 0.875rem;
    color: var(--text-on-dark-muted);
    margin-bottom: var(--space-md);
    transition: color 200ms var(--ease);
}

.footer-links a:hover {
    color: var(--text-on-dark);
}

.footer-bottom {
    padding-top: var(--space-2xl);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.813rem;
    color: var(--text-muted);
}

/* ── Animations ────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .fade-in { transition: none; }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: calc(70px + var(--space-4xl)) 0 var(--space-3xl);
    }

    .hero .headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-sub {
        font-size: 1.063rem;
    }

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

    .gewerke-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }

    .workflow-step {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .step-number {
        font-size: 2.5rem;
        min-width: auto;
    }

    .pricing-beta-card {
        grid-template-columns: 1fr;
    }

    .pricing-beta-left {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
    }

    .pricing-features-2col {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        gap: var(--space-lg);
    }

    .trust-dot {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .mock-sidebar {
        width: 140px;
    }

    .mock-kanban {
        gap: var(--space-sm);
        padding: var(--space-md);
    }

    .mock-col-header {
        font-size: 0.563rem;
    }

    .mock-card {
        padding: var(--space-sm);
    }

    .mock-card-title {
        font-size: 0.625rem;
    }

    .mock-card-badge {
        font-size: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .hero .headline {
        font-size: 2rem;
    }

    .headline {
        font-size: 1.75rem;
    }

    .section-sub {
        font-size: 1rem;
    }

    .gewerke-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .mock-sidebar {
        display: none;
    }

    .mock-app {
        min-height: 280px;
    }
}

/* ── Hero Image ───────────────────────────────────────── */
.hero-image {
    margin: 0 auto;
    border-radius: var(--radius-xl);
    filter: drop-shadow(0 20px 40px rgba(26, 23, 21, 0.1));
}

/* ── Comparison (Vorher/Nachher) ──────────────────────── */
.comparison {
    padding: var(--space-6xl) 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.comparison-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.comparison-before {
    background: var(--bg-white);
    border-color: rgba(220, 38, 38, 0.15);
}

.comparison-after {
    background: var(--bg-white);
    border-color: rgba(212, 101, 43, 0.3);
    box-shadow: var(--shadow-md);
}

.comparison-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
}

.comparison-before .comparison-label {
    color: #DC2626;
}

.comparison-before .comparison-label svg {
    color: #DC2626;
}

.comparison-after .comparison-label {
    color: var(--orange);
}

.comparison-after .comparison-label svg {
    color: var(--orange);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.comparison-list li {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-left: var(--space-sm);
}

.comparison-before .comparison-list li {
    text-decoration: line-through;
    text-decoration-color: rgba(220, 38, 38, 0.3);
    color: var(--text-muted);
}

/* ── Testimonials ─────────────────────────────────────── */
.testimonials {
    padding: var(--space-6xl) 0;
    background: var(--bg-warm);
}

.testimonials-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.testimonial-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.testimonial-card {
    background: var(--bg-white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all 300ms var(--ease);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-card blockquote {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq {
    padding: var(--space-6xl) 0;
    background: var(--bg-white);
}

.faq .section-header {
    text-align: center;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: border-color 200ms var(--ease);
}

.faq-item.open {
    border-color: var(--orange);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-xl);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    gap: var(--space-lg);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--orange);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 300ms var(--ease);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms var(--ease);
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Legal Pages ──────────────────────────────────────── */
.legal-page {
    padding: calc(80px + var(--space-4xl)) 0 var(--space-5xl);
}

.legal-page .container {
    max-width: 800px;
}

.legal-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.legal-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--space-4xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border-light);
}

.legal-content section {
    margin-bottom: var(--space-3xl);
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.legal-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-content p {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: var(--space-lg);
}

.legal-content ul li {
    font-size: 0.938rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding: var(--space-sm) 0;
    padding-left: var(--space-xl);
    position: relative;
}

.legal-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--orange);
}

.legal-content a {
    color: var(--orange);
    text-decoration: underline;
    text-decoration-color: rgba(212, 101, 43, 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 200ms var(--ease);
}

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

.legal-back-link {
    font-size: 0.813rem;
    color: var(--orange) !important;
    padding: 8px 16px;
}

.legal-back-link:hover {
    color: var(--orange-hover) !important;
    background: var(--orange-glow);
}

.legal-page .footer-bottom a {
    color: var(--text-on-dark-muted);
    transition: color 200ms var(--ease);
}

.legal-page .footer-bottom a:hover {
    color: var(--text-on-dark);
}

/* ── New sections responsive ──────────────────────────── */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-layout {
        grid-template-columns: 1fr;
    }
}
