/* ==================== VARIABLES & RESET ==================== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0891b2;
    --accent: #059669;
    --warning: #d97706;
    --danger: #ef4444;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    
    --text-primary: #0f172a;
    --text-secondary: rgba(15, 23, 42, 0.72);
    --text-tertiary: rgba(15, 23, 42, 0.5);
    
    --border-subtle: rgba(15, 23, 42, 0.1);
    --border-bright: rgba(37, 99, 235, 0.2);
    
    --shadow-sm: 0 8px 20px rgba(37, 99, 235, 0.12);
    --shadow-md: 0 14px 34px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
    --shadow-xl: 0 36px 90px rgba(15, 23, 42, 0.16);
    
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

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

* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== BACKGROUND LAYERS ==================== */
.gradient-bg {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: -2;
}

.grain {
    position: fixed;
    inset: 0;
    background-image: url('/static/images/grain.png'); /* Statisches 100x100px PNG */
    background-size: 100px 100px;
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    filter: blur(100px); /* Reduziert von 150px */
    will-change: auto; /* WICHTIG! */
}

@media (max-width: 968px) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid var(--border-subtle);
    animation: nav-slide-down 0.6s var(--ease-smooth);
}

@media (max-width: 968px) {
    .stat-card,
    .feature-card,
    .workflow-step,
    .demo-form-card {
        backdrop-filter: none !important;
        background: rgba(248, 250, 252, 0.92);
    }
}

@keyframes nav-slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    position: relative;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: transform 0.3s var(--ease-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s var(--ease-smooth);
    z-index: -1;
}

.logo:hover .logo-glow {
    opacity: 0.5;
}

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

.nav-links > a:not(.nav-cta) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: color 0.3s var(--ease-smooth);
}

.nav-links > a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s var(--ease-smooth);
}

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

.nav-links > a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    position: relative;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-sm);
}

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

.cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.nav-cta:hover .cta-shine {
    left: 100%;
}

/* ==================== HERO SECTION ==================== */
.hero {
    padding: 160px 0 80px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--border-bright);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #a78bfa;
    margin-bottom: 40px;
    animation: hero-badge-in 0.8s var(--ease-bounce) 0.3s backwards;
    backdrop-filter: blur(10px);
}

@keyframes hero-badge-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 32px;
    letter-spacing: -2.5px;
}

.title-line {
    display: block;
    animation: title-slide-up 0.8s var(--ease-smooth) backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.4s;
}

.title-line:nth-child(2) {
    animation-delay: 0.6s;
}

@keyframes title-slide-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    opacity: 0.5;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 48px;
    font-weight: 400;
    animation: fade-in 0.8s var(--ease-smooth) 0.8s backwards;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== BUTTONS ==================== */
.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    animation: fade-in 0.8s var(--ease-smooth) 1s backwards;
}

.btn-primary,
.btn-secondary {
    padding: 20px 48px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-primary.large {
    padding: 24px 56px;
    font-size: 20px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
    transform: skewX(-20deg);
}

.btn-primary:hover .btn-shine {
    left: 150%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border-subtle);
    color: white;
    backdrop-filter: blur(10px);
}

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

/* ==================== STATS CARDS ==================== */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.stat-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 32px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.5s var(--ease-smooth);
    animation: stat-fade-in 0.6s var(--ease-smooth) backwards;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

@keyframes stat-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-bright);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.stat-icon svg {
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.stat-detail {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==================== MOCKUP SECTION ==================== */

.dashboard-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px;
}

.dashboard-wrapper img {
    max-width: 120%;
    height: auto;
    border-radius: 10px; /* optional */
}

.mockup-section {
    padding: 100px 0 80px;
    overflow: hidden;
}

.mockup-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    perspective: 1500px;
}

.mockup-glow {
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0.15;
    filter: blur(100px);
    z-index: -1;
}

.mockup-placeholder {
    position: relative;
}

.mockup-frame {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-subtle);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 8px;
    color: var(--text-tertiary);
    font-size: 14px;
    text-align: center;
}

.mockup-content {
    display: flex;
    height: 600px;
}

.mockup-sidebar {
    width: 220px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--border-subtle);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mockup-item {
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.mockup-item.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: var(--shadow-sm);
}

.mockup-main {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.mockup-stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.stat-box-label {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-box-value {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
}

.mockup-chart {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: flex-end;
}

.chart-bars {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 16px;
    height: 100%;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 8px 8px 0 0;
    animation: bar-grow 1s var(--ease-smooth) backwards;
    transition: all 0.3s;
}

.chart-bar:hover {
    transform: scaleY(1.05);
    filter: brightness(1.2);
}

.chart-bar:nth-child(1) { animation-delay: 0.1s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.3s; }
.chart-bar:nth-child(4) { animation-delay: 0.4s; }
.chart-bar:nth-child(5) { animation-delay: 0.5s; }

@keyframes bar-grow {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-bright);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-md);
}

.floating-card .card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.floating-card .card-icon svg {
    color: white;
}

.card-text {
    flex: 1;
}

.card-title {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 600;
    margin-bottom: 4px;
}

.card-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

/* ==================== WORKFLOW SECTION ==================== */
.workflow-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(124, 58, 237, 0.03) 50%, transparent 100%);
}

.workflow-steps {
    max-width: 900px;
    margin: 80px auto 0;
}

.workflow-step {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: start;
    margin-bottom: 80px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 28px;
    backdrop-filter: blur(20px) saturate(150%);
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.workflow-step:last-child {
    margin-bottom: 0;
}

.workflow-step:hover {
    border-color: var(--border-bright);
    box-shadow: var(--shadow-md);
    transform: translateX(12px);
}

.step-number {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-smooth);
}

.workflow-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.step-visual {
    flex-shrink: 0;
}

.visual-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px;
    min-width: 240px;
}

.visual-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
}

.visual-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visual-item {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.step-line {
    position: absolute;
    bottom: -80px;
    left: 76px;
    width: 2px;
    height: 80px;
    background: linear-gradient(180deg, var(--border-bright), transparent);
}

.workflow-step:last-child .step-line {
    display: none;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 100px 0;
}

.section-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid var(--border-bright);
    color: #a78bfa;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.5s var(--ease-smooth);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
    z-index: 0;
}

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

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

.feature-icon {
    position: relative;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease-smooth);
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.feature-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0;
    filter: blur(60px);
    transition: opacity 0.5s var(--ease-smooth);
    z-index: -1;
}

.feature-card:hover .feature-glow {
    opacity: 0.4;
}

.feature-card h3 {
    position: relative;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    z-index: 1;
}

.feature-card p {
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 15px;
    z-index: 1;
}

/* ==================== CALCULATOR SECTION ==================== */
.calculator-section {
    padding: 100px 0;
}

.calculator {
    position: relative;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.08));
    backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 40px;
    padding: 64px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.calculator-glow {
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0.1;
    filter: blur(80px);
    z-index: -1;
}

.calculator h2 {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.calculator-subtitle {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 17px;
    margin-bottom: 64px;
}

.calc-input {
    margin-bottom: 64px;
}

.calc-input label {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.slider-container {
    position: relative;
    padding: 16px 0;
}

input[type="range"] {
    width: 100%;
    height: 8px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.6);
    transition: all 0.2s var(--ease-smooth);
}

input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.8);
}

input[type="range"]::-webkit-slider-thumb:active {
    transform: scale(1.15);
}

input[type="range"]::-moz-range-thumb {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(124, 58, 237, 0.6);
    border: none;
    transition: all 0.2s var(--ease-smooth);
}

input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.25);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.8);
}

.slider-value {
    text-align: center;
    margin-top: 32px;
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.calc-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 64px;
}

.calc-result {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
}

.calc-result:hover {
    transform: translateY(-6px);
    border-color: var(--border-bright);
    box-shadow: var(--shadow-md);
}

.result-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary);
}

.result-label {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.result-value {
    font-size: 52px;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
}

.result-detail {
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.yearly-result {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    padding: 56px;
}

.yearly-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: var(--warning);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.yearly-result .result-value.massive {
    font-size: 80px;
    color: var(--warning);
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
}

.result-breakdown {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 20px;
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.calc-footnote {
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: var(--text-tertiary);
    font-style: italic;
}

/* ==================== PRICING SECTION ==================== */
.pricing-section {
    padding: 100px 0;
}

.pricing-configurator {
    position: relative;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.08));
    backdrop-filter: blur(30px) saturate(150%);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 40px;
    padding: 80px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
}

.pricing-glow {
    position: absolute;
    inset: -100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0.1;
    filter: blur(80px);
    z-index: -1;
}

.config-header {
    margin-bottom: 48px;
}

.config-header h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.config-header p {
    color: var(--text-secondary);
    font-size: 17px;
}

.config-control {
    margin-bottom: 48px;
}

.config-control label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.workplace-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 24px 40px;
}

.workplace-btn {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 14px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-sm);
}

.workplace-btn:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.workplace-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.workplace-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.workplace-display {
    text-align: center;
    min-width: 200px;
}

.workplace-count {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.workplace-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 600;
}

.price-breakdown {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    text-align: left;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 17px;
    font-weight: 600;
}

.breakdown-item.additional {
    color: var(--text-secondary);
}

.breakdown-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-old-small {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.price-current {
    font-size: 20px;
    color: var(--accent);
    font-weight: 800;
}

.breakdown-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
    margin: 16px 0;
}

.breakdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 18px;
    font-weight: 700;
}

.total-price {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
}

.total-price .currency {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.total-price .amount {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -3px;
}

.total-price .cents {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.price-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.4);
    color: var(--warning);
    padding: 20px 32px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 32px;
    animation: notice-pulse 3s ease-in-out infinite;
}

.price-notice.intro-notice {
    text-align: center;
}

@keyframes notice-pulse {
    0%, 100% {
        background: rgba(251, 191, 36, 0.15);
    }
    50% {
        background: rgba(251, 191, 36, 0.25);
    }
}

.price-features {
    list-style: none;
    margin: 48px 0;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s var(--ease-smooth);
}

.price-features li:hover {
    padding-left: 12px;
    color: var(--primary);
}

.price-features li:last-child {
    border-bottom: none;
}

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

.price-guarantee {
    margin-top: 32px;
    font-size: 15px;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    position: relative;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(37, 99, 235, 0.1));
    backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 40px;
    padding: 100px 80px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    inset: -150px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 50%);
    opacity: 0.15;
    filter: blur(100px);
    z-index: -1;
}

.cta-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--primary);
}

.cta-box h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.cta-box p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

/* ==================== FOOTER ==================== */
footer {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    padding: 100px 0 48px;
    margin-top: 140px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    margin-bottom: 80px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 28px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 16px;
    transition: all 0.3s var(--ease-smooth);
    font-size: 15px;
    font-weight: 500;
}

.footer-section a:hover {
    color: var(--text-primary);
    padding-left: 8px;
}

.footer-section p {
    color: var(--text-tertiary);
    line-height: 1.7;
    font-size: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-tertiary);
    font-size: 14px;
}

/* ==================== LEGAL PAGES ==================== */
.legal-page {
    max-width: 900px;
    margin: 120px auto 80px;
    padding: 64px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 40px;
    transition: all 0.3s var(--ease-smooth);
    padding: 8px 16px 8px 12px;
    border-radius: 8px;
    background: rgba(124, 58, 237, 0.1);
}

.back-link:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateX(-4px);
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary);
    font-weight: 700;
}

.legal-page p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.legal-page strong {
    color: var(--text-primary);
    font-weight: 700;
}

.legal-page ul,
.legal-page ol {
    margin-left: 28px;
    margin-bottom: 24px;
}

.legal-page li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 16px;
}

.legal-page a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* ==================== DEMO REQUEST FORM ==================== */
.demo-form-container {
    max-width: 700px;
    margin: 120px auto 80px;
    padding: 64px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(37, 99, 235, 0.08));
    backdrop-filter: blur(30px) saturate(150%);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.demo-form-container h1 {
    font-size: 48px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -1px;
}

.demo-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-list {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 40px;
}

.features-list h3 {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.features-list ul {
    list-style: none;
    padding: 0;
}

.features-list li {
    color: var(--text-secondary);
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 18px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group label .required {
    color: var(--danger);
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s var(--ease-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-tertiary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.demo-footer-note {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 14px;
    margin-top: 24px;
    line-height: 1.6;
}

.demo-footer-note a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.demo-footer-note a:hover {
    text-decoration: underline;
}

/* ==================== ALERTS ==================== */
.alert {
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 32px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--accent);
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: var(--danger);
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }
    
    h1 {
        font-size: 64px;
    }
    
    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 968px) {
    h1 {
        font-size: 48px;
        letter-spacing: -1.5px;
    }
    
    .section-title {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
   .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .calc-results {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .nav-links {
        display: none;
    }
    
    .calculator,
    .pricing-configurator,
    .cta-box {
        padding: 48px 32px;
    }
    
    .cta-box h2 {
        font-size: 40px;
    }
    
    .calculator h2 {
        font-size: 36px;
    }
    
    .mockup-content {
        height: 500px;
    }
    
    .floating-card {
        display: none;
    }
    
    .workflow-step {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 24px;
    }
    
    .workflow-step:hover {
        transform: translateY(-8px);
    }
    
    .step-line {
        left: 36px;
    }
    
    .visual-box {
        min-width: auto;
    }
    
    .legal-page {
        padding: 40px 32px;
        margin: 100px auto 60px;
    }
    
    .legal-page h1 {
        font-size: 36px;
    }
    
    .demo-form-container {
        padding: 40px 32px;
        margin: 100px auto 60px;
    }
    
    .demo-form-container h1 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .section-title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero-badge {
        font-size: 13px;
        padding: 10px 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .cta-group {
        flex-direction: column;
        width: 100%;
        margin-bottom: 60px;
    }
    
    .cta-group .btn-primary,
    .cta-group .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats {
        margin-top: 40px;
    }
    
    .stat-card {
        padding: 24px 20px;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
    }
    
    .stat-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .stat-label {
        font-size: 15px;
    }
    
    .stat-detail {
        font-size: 13px;
    }
    
    .mockup-section {
        padding: 60px 0 40px;
    }
    
    .mockup-content {
        flex-direction: column;
        height: auto;
    }
    
    .mockup-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        flex-direction: row;
        padding: 16px;
    }
    
    .mockup-item {
        flex: 1;
        height: 32px;
    }
    
    .mockup-main {
        padding: 24px;
    }
    
    .mockup-stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .mockup-stat-box {
        padding: 20px;
    }
    
    .stat-box-value {
        font-size: 32px;
    }
    
    .workflow-section {
        padding: 60px 0;
    }
    
    .workflow-steps {
        margin-top: 60px;
    }
    
    .workflow-step {
        margin-bottom: 60px;
        padding: 24px 20px;
    }
    
    .step-number {
        width: 56px;
        height: 56px;
        font-size: 24px;
        border-radius: 14px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-content p {
        font-size: 15px;
    }
    
    .visual-box {
        padding: 20px;
    }
    
    .visual-items {
        gap: 6px;
    }
    
    .visual-item {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .step-line {
        height: 60px;
        bottom: -60px;
    }
    
    .features-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 28px 24px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .feature-card p {
        font-size: 14px;
    }
    
    .calculator-section {
        padding: 60px 0;
    }
    
    .calculator {
        padding: 32px 24px;
    }
    
    .calculator h2 {
        font-size: 28px;
        letter-spacing: -1px;
    }
    
    .calculator-subtitle {
        font-size: 15px;
        margin-bottom: 48px;
    }
    
    .calc-input label {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .slider-value {
        font-size: 48px;
        margin-top: 24px;
    }
    
    .calc-results {
        gap: 20px;
        margin-top: 48px;
    }
    
    .calc-result {
        padding: 32px 24px;
    }
    
    .result-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .result-value {
        font-size: 40px;
    }
    
    .yearly-result {
        padding: 40px 24px;
    }
    
    .yearly-result .result-value.massive {
        font-size: 56px;
    }
    
    .result-breakdown {
        flex-direction: column;
        gap: 16px;
    }
    
    .calc-footnote {
        font-size: 12px;
        margin-top: 32px;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-configurator {
        padding: 32px 24px;
    }
    
    .config-header h3 {
        font-size: 28px;
    }
    
    .config-header p {
        font-size: 15px;
    }
    
    .workplace-selector {
        gap: 20px;
        padding: 20px 24px;
    }
    
    .workplace-btn {
        width: 48px;
        height: 48px;
    }
    
    .workplace-display {
        min-width: 120px;
    }
    
    .workplace-count {
        font-size: 48px;
    }
    
    .workplace-label {
        font-size: 14px;
    }
    
    .price-breakdown {
        padding: 28px 20px;
    }
    
    .breakdown-item {
        font-size: 15px;
        padding: 16px 0;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .price-old-small {
        font-size: 14px;
    }
    
    .price-current {
        font-size: 18px;
    }
    
    .breakdown-total {
        font-size: 16px;
    }
    
    .total-price .currency {
        font-size: 28px;
    }
    
    .total-price .amount {
        font-size: 56px;
    }
    
    .total-price .cents {
        font-size: 28px;
    }
    
    .price-notice {
        padding: 16px 20px;
        font-size: 13px;
    }
    
    .price-features {
        margin: 40px 0;
    }
    
    .price-features li {
        padding: 16px 0;
        font-size: 15px;
    }
    
    .btn-primary.large {
        padding: 20px 40px;
        font-size: 18px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-box {
        padding: 60px 24px;
    }
    
    .cta-icon svg {
        width: 56px;
        height: 56px;
    }
    
    .cta-box h2 {
        font-size: 32px;
        letter-spacing: -1px;
    }
    
    .cta-box p {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    footer {
        padding: 60px 0 32px;
        margin-top: 80px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 48px;
    }
    
    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .footer-section a {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-section p {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 32px;
        font-size: 13px;
    }
    
    .legal-page {
        padding: 32px 24px;
        margin: 90px auto 50px;
    }
    
    .legal-page h1 {
        font-size: 32px;
        margin-bottom: 32px;
    }
    
    .legal-page h2 {
        font-size: 24px;
        margin-top: 32px;
    }
    
    .legal-page h3 {
        font-size: 18px;
    }
    
    .legal-page p {
        font-size: 15px;
    }
    
    .legal-page li {
        font-size: 15px;
    }
    
    .demo-form-container {
        padding: 32px 24px;
        margin: 90px auto 50px;
    }
    
    .demo-form-container h1 {
        font-size: 32px;
    }
    
    .demo-subtitle {
        font-size: 16px;
    }
    
    .features-list {
        padding: 20px 24px;
    }
    
    .features-list h3 {
        font-size: 16px;
    }
    
    .features-list li {
        font-size: 14px;
        padding: 8px 0;
        padding-left: 28px;
    }
    
    .form-group {
        margin-bottom: 24px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .btn-submit {
        padding: 18px;
        font-size: 16px;
    }
    
    .demo-footer-note {
        font-size: 13px;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blur-bg {
    backdrop-filter: blur(20px);
    background: rgba(248, 250, 252, 0.92);
}

.brand-logo {
    height: 65px;
    width: 300px;
    object-fit: contain;
    display: block;
}

/* ==================== WHITE THEME POLISH ==================== */
.hero-badge,
.section-badge,
.summary-badge {
    background: #eff6ff;
    color: var(--primary);
    border-color: rgba(37, 99, 235, 0.18);
}

.gradient-text::after {
    opacity: 0.3;
}

.btn-secondary {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.35);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: rgba(37, 99, 235, 0.22);
}

.stat-card,
.feature-card,
.workflow-step,
.calculator,
.pricing-configurator,
.cta-box,
.legal-page,
.demo-form-container,
.demo-form-card,
.demo-summary-card {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.workflow-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%);
}

.mockup-glow,
.calculator-glow,
.pricing-glow,
.cta-glow {
    opacity: 0.06;
}

.mockup-frame,
.visual-box,
.mockup-stat-box,
.mockup-chart,
.calc-result,
.workplace-selector,
.price-breakdown,
.summary-breakdown,
.workplace-selector-compact {
    background: #f8fafc;
    border-color: rgba(148, 163, 184, 0.22);
}

.mockup-header,
.mockup-sidebar,
.mockup-url,
.mockup-item,
.floating-card,
.price-old-small,
.price-old-demo {
    color: var(--text-secondary);
}

.mockup-header,
.mockup-sidebar,
.mockup-url,
.mockup-item,
.mockup-stat-box,
.mockup-chart,
.calc-result,
.price-breakdown,
.summary-breakdown,
.workplace-selector,
.workplace-selector-compact,
.visual-box,
.demo-form-card,
.demo-summary-card,
.floating-card {
    background: #f8fafc;
}

.floating-card {
    border-color: rgba(37, 99, 235, 0.14);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.workflow-step:hover,
.feature-card:hover,
.stat-card:hover,
.calc-result:hover {
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.calculator,
.pricing-configurator,
.cta-box,
.demo-form-container {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.yearly-result,
.trial-badge,
.features-list {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfeff 100%);
}

.price-notice,
.price-notice-demo,
.demo-header-badge {
    background: #fff7ed;
    border-color: rgba(217, 119, 6, 0.22);
    color: #b45309;
}

.form-group input,
.form-group textarea {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.35);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

footer {
    background: #ffffff;
    border-top-color: rgba(148, 163, 184, 0.2);
}

.pricing-section {
    padding: 72px 0;
}

.pricing-configurator {
    max-width: 700px;
    padding: 40px 32px;
    border-radius: 28px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.config-header {
    margin-bottom: 28px;
}

.config-header h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.config-header p {
    font-size: 15px;
}

.config-control {
    margin-bottom: 28px;
}

.config-control label {
    margin-bottom: 14px;
    font-size: 16px;
}

.workplace-selector {
    gap: 18px;
    padding: 16px 18px;
    border-radius: 16px;
}

.workplace-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
}

.workplace-display {
    min-width: 140px;
}

.workplace-count {
    font-size: 44px;
    margin-bottom: 4px;
}

.workplace-label {
    font-size: 14px;
}

.price-breakdown {
    padding: 24px;
    margin-bottom: 22px;
    border-radius: 18px;
}

.breakdown-item {
    padding: 14px 0;
    font-size: 15px;
}

.price-current {
    font-size: 18px;
}

.breakdown-total {
    padding-top: 16px;
    font-size: 16px;
}

.total-price .currency,
.total-price .cents {
    font-size: 28px;
    margin-top: 4px;
}

.total-price .amount {
    font-size: 54px;
}

.price-features {
    margin: 28px 0;
}

.price-features li {
    padding: 14px 0;
    font-size: 15px;
}

.price-guarantee {
    margin-top: 20px;
    font-size: 14px;
}

.comparison-section {
    padding: 24px 0 72px;
}

.comparison-header {
    margin-bottom: 40px;
}

.comparison-proof {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.comparison-proof span {
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
}

.comparison-table-wrap {
    max-width: 980px;
    margin: 0 auto;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.comparison-table {
    display: grid;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    align-items: stretch;
}

.comparison-cell {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    font-size: 16px;
    color: var(--text-primary);
}

.comparison-head .comparison-cell {
    font-size: 15px;
    font-weight: 800;
    background: #f8fafc;
}

.comparison-packloop {
    background: #eff6ff;
    font-weight: 700;
    text-align: center;
}

.comparison-other {
    text-align: center;
    color: var(--text-secondary);
}

.comparison-label {
    font-weight: 600;
}

.comparison-strong {
    font-weight: 800;
}

.comparison-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.comparison-win {
    background: #dbeafe;
    color: #1d4ed8;
}

.comparison-loss {
    background: #f8fafc;
    color: #64748b;
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.comparison-highlight-row .comparison-cell {
    border-bottom: 0;
}

.comparison-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.comparison-close {
    margin-top: 18px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
}

.calculator-section {
    padding: 56px 0 72px;
}

.calculator {
    max-width: 980px;
    padding: 28px;
    border-radius: 28px;
}

.calculator-layout {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 1.05fr);
    gap: 28px;
    align-items: stretch;
}

.calculator-panel {
    min-width: 0;
}

.calculator-panel-main {
    padding: 8px 4px;
}

.calculator-panel-results {
    display: flex;
    align-items: stretch;
}

.calculator h2 {
    font-size: 34px;
    margin-bottom: 12px;
    text-align: left;
    line-height: 1.15;
}

.calculator-kicker {
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.calculator-subtitle {
    margin-bottom: 36px;
    font-size: 15px;
    max-width: 440px;
}

.calc-input {
    margin-bottom: 24px;
}

.calc-input label {
    font-size: 15px;
    margin-bottom: 18px;
    text-align: left;
}

.slider-value {
    margin-top: 0;
    font-size: 66px;
    line-height: 1;
    text-align: left;
}

.slider-unit {
    margin-top: 8px;
    color: var(--text-tertiary);
    font-size: 15px;
    font-weight: 700;
}

.calc-results {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0;
}

.calc-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.22);
    box-shadow: none;
}

.calc-result .result-label {
    margin-bottom: 0;
    letter-spacing: 0;
    text-transform: none;
    font-size: 15px;
    color: #64748b;
    font-weight: 700;
}

.result-value {
    font-size: 28px;
    white-space: nowrap;
    color: var(--text-primary);
    font-weight: 800;
}

.calc-result-monthly {
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.yearly-result {
    padding: 28px 24px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.yearly-result .result-label {
    font-size: 16px;
    color: #64748b;
}

.yearly-result .result-value.massive {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent);
}

.calc-footnote {
    margin-top: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: var(--text-tertiary);
    font-size: 12px;
    line-height: 1.6;
}

.footer-compact {
    background: #f1f5f9;
    margin-top: 72px;
    padding: 48px 0 24px;
}

.footer-compact .footer-content {
    gap: 36px;
    margin-bottom: 28px;
}

.footer-compact .footer-section h4 {
    margin-bottom: 14px;
}

.footer-compact .footer-section a,
.footer-compact .footer-section p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-compact .footer-bottom {
    padding-top: 20px;
    font-size: 13px;
}

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

    .comparison-cell,
    .comparison-packloop,
    .comparison-other {
        text-align: left;
    }

    .comparison-section {
        padding: 12px 0 56px;
    }

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

    .comparison-cta .btn-primary,
    .comparison-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .calculator {
        max-width: 100%;
        padding: 24px 20px;
    }

    .calculator-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .slider-value {
        font-size: 52px;
    }

    .result-value {
        font-size: 24px;
    }

    .yearly-result .result-value.massive {
        font-size: 44px;
    }

    .footer-compact {
        margin-top: 56px;
        padding: 36px 0 20px;
    }
}

.footer-section a,
.footer-section p,
.footer-bottom {
    color: var(--text-secondary);
}

/* ==================== PRINT STYLES ==================== */
@media print {
    .orb,
    .grain,
    nav,
    footer,
    .btn-primary,
    .btn-secondary,
    .nav-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .gradient-bg {
        display: none;
    }
}

/* ==================== DEMO PAGE STYLES ==================== */
.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.demo-hero {
    padding: 100px 0 60px;
}

.demo-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.4);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--warning);
    margin-bottom: 32px;
    animation: hero-badge-in 0.8s var(--ease-bounce) 0.3s backwards;
}

.demo-title {
    font-size: 48px;  /* GEÄNDERT von 64px auf 48px */
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-align: center;
}

.demo-subtitle-hero {
    font-size: 20px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 28px;  /* GEÄNDERT von 40px auf 28px */
    margin-top: 60px;
}

.demo-form-card,
.demo-summary-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 32px;
    padding: 32px;  /* GEÄNDERT von 48px auf 32px */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.demo-form-card h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
    color: var(--text-primary);
}

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

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    box-sizing: border-box;
    border: 2px solid rgba(124, 58, 237, 0.6);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    position: relative;
    transition: all 0.3s var(--ease-smooth);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.checkbox-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.checkbox-text a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.btn-submit-full {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 20px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    margin-top: 24px;
}

.btn-submit-full:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.form-security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 16px;
}

.form-security-note svg {
    color: var(--accent);
}

/* RIGHT SIDEBAR - SUMMARY */
.demo-summary-card {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid var(--border-bright);
    color: #a78bfa;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
}

.summary-config {
    margin-bottom: 32px;
}

.summary-config label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.workplace-selector-compact {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 16px 20px;
}

.workplace-btn-compact {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: var(--shadow-sm);
}

.workplace-btn-compact:hover:not(:disabled) {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.workplace-btn-compact:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.workplace-display-compact {
    flex: 1;
    text-align: center;
}

.workplace-count-compact {
    font-size: 40px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.workplace-label-compact {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 600;
}

.summary-breakdown {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 24px;
}

.breakdown-item-demo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    font-size: 15px;
    font-weight: 600;
}

.breakdown-item-demo.additional-demo {
    color: var(--text-secondary);
}

.breakdown-price-demo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-old-demo {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.price-current-demo {
    font-size: 16px;
    color: var(--accent);
    font-weight: 800;
}

.breakdown-divider-demo {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
    margin: 16px 0;
}

.breakdown-total-demo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    font-size: 16px;
    font-weight: 700;
}

.total-price-demo {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
}

.currency-demo {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 6px;
}

.amount-demo {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.cents-demo {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 6px;
}

.price-notice-demo {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(251, 191, 36, 0.15);
    border: 2px solid rgba(251, 191, 36, 0.4);
    color: var(--warning);
    padding: 16px 20px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

.summary-features h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.summary-features ul {
    list-style: none;
    padding: 0;
}

.summary-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.trial-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(124, 58, 237, 0.1));
    border: 2px solid rgba(16, 185, 129, 0.3);
    padding: 20px;
    border-radius: 16px;
    margin-top: 24px;
}

.trial-badge svg {
    flex-shrink: 0;
    color: var(--accent);
}

.trial-badge div {
    flex: 1;
}

.trial-badge strong {
    display: block;
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 4px;
}

.trial-badge span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .demo-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-summary-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .demo-hero {
        padding: 120px 0 60px;
    }
    
    .demo-title {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .demo-subtitle-hero {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .demo-form-card,
    .demo-summary-card {
        padding: 32px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .workplace-selector-compact {
        gap: 16px;
        padding: 14px 16px;
    }
    
    .workplace-count-compact {
        font-size: 32px;
    }
    
    .amount-demo {
        font-size: 44px;
    }
    
    .currency-demo,
    .cents-demo {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .demo-title {
        font-size: 32px;
    }
    
    .demo-subtitle-hero {
        font-size: 15px;
    }
    
    .demo-form-card,
    .demo-summary-card {
        padding: 24px 20px;
    }
    
    .btn-submit-full {
        font-size: 16px;
        padding: 18px;
    }
}

@media (max-width: 968px) {
    .grain { display: none; }
    .orb-2, .orb-3 { display: none; }
    * { backdrop-filter: none !important; }
}

/* ==================== FINAL PUBLIC WHITE OVERRIDES ==================== */
.hero-badge,
.section-badge,
.summary-badge,
.demo-header-badge {
    background: #eff6ff;
    color: var(--primary);
    border-color: rgba(37, 99, 235, 0.18);
}

.btn-secondary {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: rgba(37, 99, 235, 0.22);
}

.stat-card,
.feature-card,
.workflow-step,
.calculator,
.pricing-configurator,
.cta-box,
.legal-page,
.demo-form-container,
.demo-form-card,
.demo-summary-card {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.22);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.mockup-frame,
.mockup-header,
.mockup-sidebar,
.mockup-url,
.mockup-item,
.mockup-stat-box,
.mockup-chart,
.visual-box,
.floating-card,
.calc-result,
.workplace-selector,
.workplace-selector-compact,
.price-breakdown,
.summary-breakdown {
    background: #f8fafc;
    border-color: rgba(148, 163, 184, 0.22);
}

.floating-card {
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.calculator,
.pricing-configurator,
.cta-box,
.demo-form-container {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.workflow-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%);
}

.yearly-result,
.trial-badge,
.features-list {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfeff 100%);
}

.price-notice,
.price-notice-demo {
    background: #fff7ed;
    border-color: rgba(217, 119, 6, 0.22);
    color: #b45309;
}

.form-group input,
.form-group textarea {
    background: #ffffff;
    border-color: rgba(148, 163, 184, 0.35);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.price-old-small,
.price-old-demo,
.footer-section a,
.footer-section p,
.footer-bottom {
    color: var(--text-secondary);
}

footer {
    background: #ffffff;
    border-top-color: rgba(148, 163, 184, 0.2);
}
