/* ============================================
   TaxItEasy Website - Complete Stylesheet
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #818CF8;
    --primary-lighter: #312E81;
    --primary-bg: #1E1B4B;
    --secondary: #F1F5F9;
    --text: #CBD5E1;
    --text-light: #94A3B8;
    --text-lighter: #64748B;
    --bg: #0F172A;
    --bg-alt: #1E293B;
    --bg-dark: #020617;
    --border: #334155;
    --border-light: #1E293B;
    --green: #34D399;
    --green-bg: #064E3B;
    --red: #F87171;
    --red-bg: #7F1D1D;
    --orange: #FBBF24;
    --orange-bg: #78350F;
    --purple: #A78BFA;
    --purple-bg: #2E1065;
    --teal: #2DD4BF;
    --teal-bg: #134E4A;
    --blue: #60A5FA;
    --blue-bg: #1E3A5F;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --shadow: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.4), 0 2px 4px -1px rgba(0,0,0,0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.4), 0 4px 6px -2px rgba(0,0,0,0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.4), 0 10px 10px -5px rgba(0,0,0,0.2);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.5);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --transition: all 0.2s ease;
    --transition-slow: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 700;
}

/* === Container === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-white {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.btn-white:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-arrow {
    transition: transform 0.2s ease;
}

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

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-slow);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.logo:hover {
    color: var(--secondary);
}

.logo-icon {
    color: var(--primary);
    font-size: 1.2rem;
    display: none;
}

.logo-img {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    border-radius: 6px;
    object-fit: contain;
    flex-shrink: 0;
    display: inline-block;
}

.navbar .logo-img {
    width: 28px !important;
    height: 28px !important;
}

.footer .logo-img {
    width: 24px !important;
    height: 24px !important;
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--primary) !important;
    color: white !important;
    padding: 10px 20px !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    color: white !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Hero === */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg) 0%, var(--primary-bg) 50%, #0C1A3D 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--purple);
    bottom: -100px;
    left: -100px;
    animation: float 25s infinite ease-in-out reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--teal);
    top: 50%;
    left: 50%;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--primary-lighter);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 50%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.trust-icon {
    color: var(--green);
    font-weight: 700;
}

/* Dashboard Preview */
.dashboard-preview {
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.preview-title {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

.preview-body {
    display: flex;
    min-height: 280px;
}

.preview-sidebar {
    width: 140px;
    background: var(--bg-alt);
    padding: 12px 8px;
    border-right: 1px solid var(--border);
}

.sidebar-item {
    padding: 8px 12px;
    font-size: 0.75rem;
    color: var(--text-light);
    border-radius: var(--radius);
    margin-bottom: 2px;
    cursor: default;
}

.sidebar-item.active {
    background: var(--primary-bg);
    color: var(--primary);
    font-weight: 600;
}

.preview-main {
    flex: 1;
    padding: 16px;
}

.preview-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.stat-card {
    flex: 1;
    padding: 12px;
    border-radius: var(--radius);
    text-align: center;
}

.stat-blue { background: var(--blue-bg); }
.stat-green { background: var(--green-bg); }
.stat-purple { background: var(--purple-bg); }

.stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-light);
    font-weight: 500;
}

.preview-table {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 8px 12px;
    font-size: 0.7rem;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-header {
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--text-light);
}

.tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
}

.tag-blue { background: var(--blue-bg); color: var(--blue); }
.tag-green { background: var(--green-bg); color: var(--green); }
.tag-purple { background: var(--purple-bg); color: var(--purple); }
.tag-orange { background: var(--orange-bg); color: var(--orange); }
.tag-yellow { background: var(--orange-bg); color: var(--orange); }

/* === Social Proof === */
.social-proof {
    padding: 40px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
}

.social-proof-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-lighter);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tech-stack {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tech-badge {
    padding: 8px 20px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-bg);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* === Features Grid === */
.features {
    padding: 100px 0;
    background: var(--bg);
}

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

.feature-card {
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    background: var(--bg);
    transition: var(--transition-slow);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon-blue { background: var(--blue-bg); color: var(--blue); }
.feature-icon-green { background: var(--green-bg); color: var(--green); }
.feature-icon-purple { background: var(--purple-bg); color: var(--purple); }
.feature-icon-orange { background: var(--orange-bg); color: var(--orange); }
.feature-icon-red { background: var(--red-bg); color: var(--red); }
.feature-icon-teal { background: var(--teal-bg); color: var(--teal); }

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.feature-link:hover {
    color: var(--primary-dark);
}

/* === How It Works === */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.step-card {
    position: relative;
    padding: 32px 24px;
    background: var(--bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: var(--transition-slow);
}

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

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-lighter);
    line-height: 1;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === Stats Banner === */
.stats-banner {
    padding: 60px 0;
    background: var(--bg-dark);
}

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

.stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-lighter);
    font-weight: 500;
}

/* === Feature Detail === */
.feature-detail {
    padding: 100px 0;
}

.feature-detail-alt {
    background: var(--bg-alt);
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-detail-grid.reverse {
    direction: rtl;
}

.feature-detail-grid.reverse > * {
    direction: ltr;
}

.feature-detail-content .section-badge {
    display: inline-block;
}

.feature-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    text-align: left;
}

.feature-detail-content > p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.check-icon {
    color: var(--green);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Folder Structure Visual */
.folder-structure {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.folder-tree {
    font-family: 'Inter', monospace;
    font-size: 0.9rem;
}

.folder-item {
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: default;
}

.folder-item:hover {
    background: var(--bg-alt);
}

.folder-root { font-weight: 700; color: var(--secondary); }
.folder-l1 { padding-left: 28px; }
.folder-l2 { padding-left: 52px; }
.folder-l3 { padding-left: 76px; color: var(--text-light); }

.folder-icon { color: var(--orange); }
.file-icon { color: var(--blue); }

/* AI Pipeline Visual */
.ai-pipeline {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pipeline-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 280px;
    transition: var(--transition-slow);
}

.pipeline-step:hover {
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow);
}

.pipeline-step.active {
    background: var(--green-bg);
    border-color: var(--green);
}

.pipeline-icon {
    font-size: 1.5rem;
}

.pipeline-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.pipeline-arrow {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 700;
}

/* === Security === */
.security-section {
    padding: 100px 0;
    background: var(--bg);
}

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

.security-item {
    padding: 28px;
    background: var(--bg-alt);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition-slow);
}

.security-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.security-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.security-item h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.security-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* === Pricing === */
.pricing {
    padding: 100px 0;
    background: var(--bg-alt);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--secondary);
    font-weight: 600;
}

.toggle-switch {
    width: 52px;
    height: 28px;
    background: var(--primary-lighter);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.toggle-switch.active .toggle-slider {
    left: 27px;
}

.save-badge {
    background: var(--green-bg);
    color: var(--green);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

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

.pricing-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}

.pricing-card .plan-features {
    flex: 1;
}

.pricing-card .btn {
    margin-top: auto;
}

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

.pricing-popular {
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: var(--shadow-xl);
    transform: scale(1.02);
}

.pricing-popular:hover {
    transform: scale(1.02) translateY(-4px);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.plan-name {
    font-size: 1.3rem;
    margin-bottom: 4px;
}

.plan-desc {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 4px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text);
}

.plan-features li.disabled {
    color: var(--text-lighter);
}

.plan-features .check {
    color: var(--green);
    font-weight: 700;
}

.plan-features .cross {
    color: var(--text-lighter);
}

/* Enterprise */
.enterprise-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1E293B 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.enterprise-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.enterprise-content h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 8px;
}

.enterprise-content p {
    color: var(--text-lighter);
    font-size: 1rem;
    max-width: 600px;
    line-height: 1.6;
}

/* === Comparison Table === */
.comparison {
    padding: 60px 0 100px;
    background: var(--bg-alt);
}

.comparison .text-center {
    text-align: center;
    margin-bottom: 40px;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg);
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    background: var(--bg-alt);
    font-weight: 700;
    color: var(--secondary);
    font-size: 0.95rem;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table td.highlight {
    background: var(--primary-bg);
    font-weight: 600;
}

.comparison-table th.highlight {
    background: var(--primary);
    color: white;
}

.comparison-table tbody tr:hover {
    background: var(--bg-alt);
}

.comparison-table tbody tr:hover td.highlight {
    background: #252B5E;
}

/* === Testimonials === */
.testimonials {
    padding: 100px 0;
    background: var(--bg);
}

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

.testimonial-card {
    padding: 32px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--bg);
    transition: var(--transition-slow);
}

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

.testimonial-stars {
    color: var(--orange);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary);
}

.author-role {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* === FAQ === */
.faq {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    background: var(--bg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-lighter);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === CTA Section === */
.cta-section {
    padding: 100px 0;
    background: var(--bg);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    border-radius: var(--radius-2xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-card h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* === Waitlist Form === */
.waitlist-form {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
}

.waitlist-input-group {
    display: flex;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: 60px;
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.waitlist-input {
    flex: 1;
    padding: 14px 24px;
    border: none;
    font-size: 1.05rem;
    font-family: inherit;
    outline: none;
    min-width: 0;
    background: transparent;
    color: var(--secondary);
    border-radius: 60px;
}

.waitlist-input::placeholder {
    color: var(--text-lighter);
}

.waitlist-btn {
    background: var(--primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 60px !important;
    padding: 14px 32px !important;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: var(--transition);
}

.waitlist-btn:hover {
    background: var(--primary-dark) !important;
    transform: none;
    box-shadow: none;
}

.waitlist-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.waitlist-privacy {
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.85rem !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
}

.waitlist-message {
    margin-top: 14px;
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 0;
    transition: all 0.3s ease;
}

.waitlist-message.success {
    color: #a7f3d0;
}

.waitlist-message.error {
    color: #fca5a5;
}

.waitlist-message.already {
    color: #fde68a;
}

/* === Footer === */
.footer {
    background: var(--bg-dark);
    padding: 60px 0 32px;
    color: var(--text-lighter);
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-highlight {
    color: var(--primary-light);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-lighter);
    line-height: 1.6;
    max-width: 300px;
}

.footer-links h4 {
    color: white;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-lighter);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #334155;
    font-size: 0.85rem;
}

/* === Handbuch Page === */
.handbuch-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.handbuch-sidebar {
    position: sticky;
    top: 96px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.sidebar-nav {
    list-style: none;
}

.sidebar-nav-group {
    margin-bottom: 24px;
}

.sidebar-nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-lighter);
    margin-bottom: 8px;
    padding-left: 12px;
}

.sidebar-nav a {
    display: block;
    padding: 8px 12px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-radius: var(--radius);
    border-left: 2px solid transparent;
    transition: var(--transition);
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
    color: var(--primary);
    background: var(--primary-bg);
    border-left-color: var(--primary);
}

.handbuch-content {
    max-width: 800px;
}

.handbuch-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.handbuch-content .lead {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 48px;
}

.handbuch-content h2 {
    font-size: 1.8rem;
    margin-top: 64px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.handbuch-content h2:first-of-type {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.handbuch-content h3 {
    font-size: 1.3rem;
    margin-top: 40px;
    margin-bottom: 12px;
}

.handbuch-content h4 {
    font-size: 1.1rem;
    margin-top: 32px;
    margin-bottom: 8px;
}

.handbuch-content p {
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 1rem;
}

.handbuch-content ul,
.handbuch-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.handbuch-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.handbuch-content code {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    color: var(--primary-light);
}

.handbuch-content pre {
    background: var(--bg-dark);
    color: #E2E8F0;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin-bottom: 24px;
    font-size: 0.85rem;
    line-height: 1.6;
}

.handbuch-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: inherit;
}

.info-box {
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border-left: 4px solid;
}

.info-box-blue {
    background: var(--blue-bg);
    border-color: var(--blue);
}

.info-box-green {
    background: var(--green-bg);
    border-color: var(--green);
}

.info-box-orange {
    background: var(--orange-bg);
    border-color: var(--orange);
}

.info-box-red {
    background: var(--red-bg);
    border-color: var(--red);
}

.info-box strong {
    display: block;
    margin-bottom: 4px;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.endpoint-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 16px;
}

.endpoint-method {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: monospace;
    margin-right: 8px;
}

.method-get { background: var(--green-bg); color: var(--green); }
.method-post { background: var(--blue-bg); color: var(--blue); }
.method-put { background: var(--orange-bg); color: var(--orange); }
.method-delete { background: var(--red-bg); color: var(--red); }

.endpoint-path {
    font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
    font-size: 0.9rem;
    font-weight: 600;
}

.endpoint-desc {
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.role-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.role-table th,
.role-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.role-table th {
    background: var(--bg-alt);
    font-weight: 600;
    color: var(--secondary);
}

.role-table tbody tr:hover {
    background: var(--bg-alt);
}

.role-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.role-owner { background: var(--red-bg); color: var(--red); }
.role-admin { background: var(--orange-bg); color: var(--orange); }
.role-employee { background: var(--blue-bg); color: var(--blue); }
.role-accountant { background: var(--green-bg); color: var(--green); }
.role-taxadvisor { background: var(--purple-bg); color: var(--purple); }
.role-viewer { background: var(--bg-alt); color: var(--text-light); }

/* === Funktionen Page === */
.funktionen-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--primary-bg) 50%, #0C1A3D 100%);
    text-align: center;
}

.funktionen-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.funktionen-hero p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.feature-section {
    padding: 80px 0;
}

.feature-section:nth-child(even) {
    background: var(--bg-alt);
}

.feature-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-section-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-section-header h2 {
    font-size: 1.8rem;
}

.feature-capabilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.capability-item:hover {
    border-color: var(--primary-lighter);
    box-shadow: var(--shadow);
}

.capability-icon {
    color: var(--green);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.capability-item h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    margin-top: 0;
}

.capability-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .dashboard-preview {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

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

    .pricing-popular {
        transform: none;
    }

    .pricing-popular:hover {
        transform: translateY(-4px);
    }

    .feature-detail-grid,
    .feature-detail-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .enterprise-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .handbuch-sidebar {
        position: relative;
        top: 0;
        border-bottom: 1px solid var(--border);
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .features-grid,
    .testimonials-grid,
    .security-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .cta-card h2 {
        font-size: 1.8rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 12px;
    }

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

    .preview-sidebar {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-trust {
        flex-direction: column;
        gap: 8px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .stat-value {
        font-size: 2.2rem;
    }

    .cta-actions {
        flex-direction: column;
    }

    .waitlist-input-group {
        flex-direction: column;
        border-radius: 16px;
        padding: 8px;
    }

    .waitlist-input {
        padding: 14px 16px;
        text-align: center;
    }

    .waitlist-btn {
        width: 100%;
        justify-content: center;
        border-radius: 12px !important;
        padding: 14px 24px !important;
    }
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Scrollbar for handbuch sidebar */
.handbuch-sidebar::-webkit-scrollbar {
    width: 4px;
}

.handbuch-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.handbuch-sidebar::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

/* === Social Proof Stats === */
.proof-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.proof-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.proof-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

@media (max-width: 768px) {
    .proof-divider { display: none; }
    .proof-stats { gap: 24px; }
    .proof-item { flex: 0 0 45%; }
}

/* === Problem Section === */
.problem-solution {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.problem-card {
    padding: 32px;
    background: var(--bg);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    transition: var(--transition-slow);
}

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

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--secondary);
}

.problem-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* === Feature Metric Badge === */
.feature-metric {
    display: inline-block;
    padding: 6px 12px;
    background: var(--green-bg);
    color: var(--green);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 4px;
}

/* === Time Savings Section === */
.time-savings {
    padding: 100px 0;
    background: var(--bg-alt);
}

.savings-comparison {
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin-top: 16px;
}

.savings-card {
    flex: 1;
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    background: var(--bg);
}

.savings-before {
    border-color: var(--red);
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--red-bg) 100%);
}

.savings-after {
    border-color: var(--green);
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--green-bg) 100%);
}

.savings-card h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.savings-before h3 { color: var(--red); }
.savings-after h3 { color: var(--green); }

.savings-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.savings-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.savings-task {
    color: var(--text);
    font-weight: 500;
}

.savings-time {
    font-weight: 700;
    color: var(--red);
    white-space: nowrap;
    margin-left: 16px;
}

.savings-fast {
    color: var(--green) !important;
}

.savings-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0 0;
    margin-top: 8px;
    border-top: 2px solid var(--border);
    font-weight: 700;
    font-size: 1rem;
    color: var(--red);
}

.savings-total-green {
    color: var(--green);
    border-color: var(--green);
}

.savings-total-time {
    font-size: 1.2rem;
    font-weight: 900;
}

.savings-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-lighter);
    flex-shrink: 0;
    width: 50px;
}

@media (max-width: 768px) {
    .savings-comparison {
        flex-direction: column;
    }
    .savings-vs {
        width: auto;
        padding: 8px 0;
    }
}

/* === Tax Advisor Demo === */
.advisor-demo {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.advisor-demo-header {
    padding: 16px 24px;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.advisor-demo-body {
    padding: 24px;
}

.advisor-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.advisor-step-item:last-of-type {
    border-bottom: none;
}

.advisor-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.advisor-step-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.advisor-step-text span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.advisor-demo-btn {
    margin-top: 20px;
    padding: 14px 24px;
    background: var(--primary);
    color: white;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: default;
}

.advisor-demo-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--green);
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* === Advisor Section === */
.advisor-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

/* === Security Certifications === */
.security-certifications {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cert-badge {
    padding: 10px 24px;
    background: var(--bg-dark);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* === Comparison Table Groups === */
.comparison-group td {
    background: var(--bg-alt) !important;
    font-weight: 700 !important;
    color: var(--secondary) !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 20px !important;
    border-bottom: 2px solid var(--border) !important;
}

/* === Workflow Examples === */
.workflow-examples {
    padding: 80px 0;
    background: var(--bg-alt);
}

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

.workflow-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
}

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

.workflow-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.workflow-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.workflow-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.workflow-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.workflow-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.workflow-step-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.workflow-step-text strong {
    font-size: 0.9rem;
    color: var(--secondary);
}

.workflow-step-text span {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.workflow-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--green-bg);
    border-radius: var(--radius);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.workflow-result-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.workflow-result-value {
    font-size: 0.95rem;
    color: var(--green);
    font-weight: 700;
}

@media (max-width: 1024px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .workflow-examples {
        padding: 60px 0;
    }
    .workflow-card {
        padding: 24px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .cta-section,
    .footer {
        display: none;
    }

    .hero {
        padding: 40px 0;
    }

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

    .handbuch-sidebar {
        display: none;
    }
}
