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

:root {
    --primary: #FDB913;
    --primary-dark: #E5A811;
    --primary-light: #FFF8E7;
    --dark: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --white: #ffffff;
    --green: #059669;
    --green-light: #D1FAE5;
    --red: #dc2626;
    --red-light: #fee2e2;
    --border: #e5e5e5;
    --bg-main: #ffffff;
    --bg-section: #f8f9fa;
    --gradient-1: #FDB913;
    --gradient-2: #F97316;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

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

/* Animated Background */
.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.3;
}

@media (max-width: 768px) {
    .gradient-bg {
        display: none;
    }
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--green) 0%, var(--primary) 100%);
    bottom: -150px;
    right: -150px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
    margin-left: -2.5rem;
    margin-top: -20px;
    margin-bottom: -20px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a.active {
    color: var(--primary);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--dark);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    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 ease;
}

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

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 185, 19, 0.4);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 2rem 100px;
    position: relative;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-main) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary-dark);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

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

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

/* Comparison Section */
.comparison-section {
    padding: 120px 2rem;
    background: var(--bg-main);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.section-header h2 .highlight {
    color: var(--primary-dark);
}

/* Comparison Table */
.comparison-table {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
}

.comparison-header-cell {
    padding: 2rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-header-cell:first-child {
    text-align: left;
    color: var(--text-muted);
}

.comparison-header-cell.competitor {
    color: var(--text-muted);
}

.comparison-header-cell.ordable {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: var(--dark);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

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

.comparison-row:hover {
    background: var(--bg-section);
}

.comparison-cell {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
}

.comparison-cell:first-child {
    font-weight: 600;
    color: var(--dark);
}

.comparison-cell:not(:first-child) {
    justify-content: center;
    font-size: 1.5rem;
}

.check {
    color: var(--green);
}

.cross {
    color: var(--red);
}

.comparison-cell .value {
    font-size: 1rem;
    font-weight: 700;
}

.comparison-cell .value.bad {
    color: var(--red);
}

.comparison-cell .value.good {
    color: var(--green);
}

/* Mega Savings Calculator */
.savings-section {
    padding: 120px 2rem;
    background: var(--bg-section);
}

.mega-calculator {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    border-radius: 32px;
    padding: 4rem;
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.03),
        0 2px 4px rgba(0,0,0,0.02),
        0 12px 24px rgba(0,0,0,0.04),
        0 40px 80px rgba(0,0,0,0.06);
    margin-top: 3rem;
    position: relative;
    overflow: visible;
}

.mega-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gradient-2) 100%);
    pointer-events: none;
}

.calc-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.calc-inputs.two-sliders {
    grid-template-columns: 1.2fr 0.8fr;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.slider-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .calc-inputs.two-sliders {
        grid-template-columns: 1fr;
    }
}

.calc-input-card {
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.08) 0%, rgba(249, 115, 22, 0.04) 100%);
    border: 1px solid rgba(253, 185, 19, 0.2);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.calc-input-card.single {
    max-width: 900px;
    margin: 0 auto;
}

/* Premium Slider Styles */
.slider-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    margin: 0.5rem 0 1.25rem;
    letter-spacing: -0.02em;
}

.slider-value span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calc-inputs.two-sliders .calc-input-card {
    padding: 2rem;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 0.5rem;
}

.slider-min,
.slider-max {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.slider-container input[type="range"] {
    flex: 1;
    height: 10px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 50%, #e0e0e0 50%, #e0e0e0 100%);
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    cursor: pointer;
    border: 4px solid var(--primary);
    box-shadow:
        0 2px 8px rgba(0,0,0,0.15),
        0 4px 16px rgba(253, 185, 19, 0.25);
    transition: all 0.2s ease;
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow:
        0 4px 12px rgba(0,0,0,0.2),
        0 8px 24px rgba(253, 185, 19, 0.35);
}

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

.slider-container input[type="range"]::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
    cursor: pointer;
    border: 4px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.slider-container input[type="range"]::-moz-range-track {
    height: 10px;
    border-radius: 5px;
    background: #e0e0e0;
}

/* Premium Comparison Cards */
.simple-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

.comparison-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 0 0 1px rgba(0,0,0,0.04),
        0 4px 8px rgba(0,0,0,0.04),
        0 16px 32px rgba(0,0,0,0.04);
}

.comparison-card:hover {
    transform: translateY(-8px);
}

.comparison-card.platform {
    background: linear-gradient(180deg, #ffffff 0%, #fef7f7 100%);
    border: 2px solid #fecaca;
}

.comparison-card.platform:hover {
    box-shadow:
        0 0 0 1px rgba(220, 38, 38, 0.1),
        0 8px 16px rgba(220, 38, 38, 0.08),
        0 24px 48px rgba(220, 38, 38, 0.12);
}

.comparison-card.ordable {
    background: linear-gradient(180deg, #ffffff 0%, var(--primary-light) 100%);
    border: 2px solid var(--primary);
}

.comparison-card.ordable::before {
    content: 'EMPFOHLEN';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(253, 185, 19, 0.3);
}

.comparison-card.ordable:hover {
    box-shadow:
        0 0 0 1px rgba(253, 185, 19, 0.2),
        0 8px 16px rgba(253, 185, 19, 0.12),
        0 24px 48px rgba(253, 185, 19, 0.16);
}

.comparison-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.comparison-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.comparison-card.platform .comparison-icon {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    color: #dc2626;
}

.comparison-card.ordable .comparison-icon {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(253, 185, 19, 0.3) 100%);
    color: var(--primary-dark);
}

.comparison-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.comparison-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comparison-cost {
    margin-bottom: 1.5rem;
}

.comparison-cost .cost-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.comparison-cost .cost-value {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
}

.comparison-cost .cost-value.negative {
    color: #dc2626;
}

.comparison-cost .cost-value.positive {
    color: var(--green);
}

.comparison-detail {
    font-size: 0.9rem;
    color: var(--text-light);
    padding: 1rem;
    background: rgba(0,0,0,0.02);
    border-radius: 12px;
}

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 900;
    color: var(--text-muted);
    box-shadow:
        0 2px 8px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.8);
}

.savings-note {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

@media (max-width: 900px) {
    .simple-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-vs {
        margin: 0 auto;
    }

    .comparison-card.ordable::before {
        top: -10px;
    }
}

.calc-input-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(253, 185, 19, 0.2) 100%);
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(253, 185, 19, 0.15);
    color: var(--primary-dark);
}

.calc-input-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.calc-input-card label {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--primary);
}

.input-wrapper input {
    flex: 1;
    border: none;
    padding: 1rem 1.25rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    outline: none;
}

.input-suffix {
    padding: 1rem;
    background: var(--bg-section);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.input-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.calc-breakdown {
    margin-bottom: 3rem;
}

.calc-breakdown h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.breakdown-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.cost-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cost-category {
    background: var(--bg-section);
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cost-category:hover {
    border-color: var(--border);
    transform: translateY(-3px);
}

.cost-category.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-section) 100%);
    border-color: var(--primary);
}

.cost-category.danger {
    background: linear-gradient(135deg, var(--red-light) 0%, var(--bg-section) 100%);
    border-color: var(--red);
}

.cost-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cost-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cost-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.cost-source {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cost-details {
    margin-bottom: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.9rem;
}

.cost-item:last-child {
    border-bottom: none;
}

.cost-value {
    font-weight: 700;
}

.cost-value.negative {
    color: var(--red);
}

.cost-average {
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.cost-average span:last-child {
    color: var(--red);
    font-size: 1.1rem;
}

.cost-average.danger {
    background: var(--red);
    color: var(--white);
}

.cost-average.danger span:last-child {
    color: var(--white);
}

/* Time Savings */
.time-savings-section {
    margin-bottom: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.time-savings-section h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.time-card {
    background: var(--bg-section);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.time-card.highlight {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--bg-section) 100%);
    border: 2px solid var(--green);
}

.time-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.time-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.time-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.time-calc {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.time-arrow {
    color: var(--primary);
    margin: 0 0.25rem;
}

.time-result {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--green);
}

/* Total Results */
.total-results {
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.result-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: stretch;
    margin-bottom: 3rem;
}

.result-side {
    padding: 2rem;
    border-radius: 20px;
}

.result-side.without {
    background: linear-gradient(135deg, #fff5f5 0%, var(--bg-section) 100%);
    border: 2px solid var(--red);
}

.result-side.with {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--bg-section) 100%);
    border: 2px solid var(--green);
}

.result-side h4 {
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
}

.result-side.without h4 {
    color: var(--red);
}

.result-side.with h4 {
    color: var(--green);
}

.result-items {
    margin-bottom: 1.5rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.95rem;
}

.result-item span:last-child {
    font-weight: 700;
}

.result-item .positive {
    color: var(--green);
}

.result-total {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.1rem;
}

.result-total span:last-child {
    color: var(--red);
}

.result-total.positive span:last-child {
    color: var(--green);
}

.result-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-muted);
    padding: 0 1rem;
}

/* Premium Final Savings */
.final-savings {
    background: linear-gradient(135deg, var(--dark) 0%, #2a2a2a 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-savings::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.15) 0%, transparent 50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: var(--dark);
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(253, 185, 19, 0.3);
}

.savings-amounts {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.savings-money,
.savings-time {
    text-align: center;
}

.savings-money .label,
.savings-time .label {
    display: block;
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.6;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.savings-money .value,
.savings-time .value {
    display: block;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.savings-money .sub,
.savings-time .sub {
    display: block;
    font-size: 1rem;
    color: var(--white);
    opacity: 0.7;
    margin-top: 0.75rem;
    font-weight: 500;
}

.savings-divider {
    width: 2px;
    height: 80px;
    background: var(--white);
    opacity: 0.1;
}

.mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: var(--dark);
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 24px rgba(253, 185, 19, 0.3);
}

.mega-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 185, 19, 0.4);
}

.final-savings .savings-note {
    color: rgba(255,255,255,0.5);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.mega-cta svg {
    transition: transform 0.3s ease;
}

.mega-cta:hover svg {
    transform: translateX(5px);
}

/* Sources Note */
.sources-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.sources-note p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.sources-note a {
    color: var(--primary);
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .cost-categories {
        grid-template-columns: 1fr;
    }

    .cost-category.featured {
        grid-column: span 1;
    }

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

    .result-comparison {
        grid-template-columns: 1fr;
    }

    .result-vs {
        padding: 1rem 0;
    }

    .calc-inputs {
        grid-template-columns: 1fr;
    }

    .savings-amounts {
        flex-direction: column;
        gap: 2rem;
    }

    .savings-divider {
        width: 80px;
        height: 2px;
    }

    .savings-money .value,
    .savings-time .value {
        font-size: 2.5rem;
    }
}

/* Benefits Grid */
.benefits-section {
    padding: 120px 2rem;
    background: var(--bg-main);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(253, 185, 19, 0.15);
    border-color: var(--primary);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #b45309;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.5;
}

.benefit-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.benefit-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 100px 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 100%);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

/* CTA Section */
.cta-section {
    padding: 120px 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--dark);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
}

/* Footer */
footer {
    padding: 4rem 2rem;
    background: var(--bg-section);
    text-align: center;
    border-top: 1px solid var(--border);
}

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

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

/* ========================================
   MOBILE HAMBURGER MENU
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle span:nth-child(1) { margin-bottom: 6px; }
.mobile-menu-toggle span:nth-child(3) { margin-top: 6px; }

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 100px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.mobile-nav.active {
    right: 0;
    pointer-events: auto;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li { margin-bottom: 0.5rem; }

.mobile-nav-menu li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li a.active {
    color: var(--primary);
    padding-left: 0.5rem;
}

.mobile-nav-cta {
    display: block;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    header {
        padding: 0.5rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
    }

    nav {
        padding: 0 1rem;
        height: 60px;
    }

    .logo { display: flex; align-items: center; }
    .logo img { height: 50px; margin: 0; margin-left: -0.5rem; }

    .nav-menu { display: none !important; }
    .nav-cta { display: none !important; }

    .mobile-menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        background: rgba(253, 185, 19, 0.1);
        border-radius: 12px;
    }

    .mobile-nav, .mobile-menu-overlay { display: block; }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

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

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

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

    .hero {
        padding: 100px 1.5rem 60px;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    /* Comparison Table - Mobile Optimized */
    .comparison-section {
        padding: 60px 1rem;
    }

    .comparison-table {
        border-radius: 16px;
        overflow: visible;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    /* Hide desktop header on mobile */
    .comparison-header {
        display: none;
    }

    .comparison-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        padding: 1rem;
        margin-bottom: 0.75rem;
        background: var(--white);
        border-radius: 12px;
        border: 1px solid var(--border);
        gap: 0.75rem;
    }

    .comparison-row:last-child {
        margin-bottom: 0;
        border-bottom: none;
    }

    .comparison-row:hover {
        background: var(--white);
    }

    /* Feature name - full width on top, spans both columns */
    .comparison-cell:first-child {
        grid-column: 1 / -1;
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--dark);
        padding: 0;
        text-align: center;
        border-bottom: 1px solid var(--border);
        padding-bottom: 0.75rem;
    }

    /* Value cells side by side */
    .comparison-cell:not(:first-child) {
        padding: 0.75rem;
        border-radius: 8px;
        font-size: 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .comparison-cell:nth-child(2) {
        background: rgba(239, 68, 68, 0.08);
        border: 1px solid rgba(239, 68, 68, 0.2);
    }

    .comparison-cell:nth-child(2)::before {
        content: 'Lieferplattformen';
        display: block;
        font-size: 0.6rem;
        font-weight: 600;
        color: var(--red);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.25rem;
    }

    .comparison-cell:nth-child(3) {
        background: rgba(5, 150, 105, 0.08);
        border: 1px solid rgba(5, 150, 105, 0.2);
    }

    .comparison-cell:nth-child(3)::before {
        content: 'ORDABLE';
        display: block;
        font-size: 0.6rem;
        font-weight: 700;
        color: var(--green);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 0.25rem;
    }

    /* Adjust check/cross size */
    .comparison-cell .check,
    .comparison-cell .cross {
        font-size: 1.5rem;
    }

    .comparison-cell .value {
        font-size: 0.85rem;
    }

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

    /* ========================================
       SPARRECHNER - Mobile Optimized
       ======================================== */
    .savings-section {
        padding: 60px 1rem;
    }

    .savings-section .section-header p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    .mega-calculator {
        padding: 1.25rem;
        border-radius: 16px;
        margin-top: 1.5rem;
    }

    .calc-inputs {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Slider Input Cards */
    .calc-input-card {
        padding: 1rem;
        border-radius: 12px;
    }

    .calc-input-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        margin-bottom: 0.75rem;
    }

    .calc-input-icon svg {
        width: 20px;
        height: 20px;
    }

    .calc-input-card label {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
    }

    .slider-value {
        font-size: 1.5rem;
        margin: 0.25rem 0 0.75rem;
    }

    .slider-container {
        gap: 0.4rem;
        padding: 0;
    }

    .slider-min,
    .slider-max {
        font-size: 0.65rem;
        min-width: 35px;
    }

    .slider-container {
        padding: 20px 0;
        position: relative;
        z-index: 100;
    }

    .slider-container input[type="range"] {
        width: 100%;
        height: 20px;
        -webkit-appearance: none;
        appearance: none;
        background: transparent;
        touch-action: none;
        position: relative;
        z-index: 100;
        cursor: pointer;
        margin: 0;
        padding: 0;
    }

    .slider-container input[type="range"]::-webkit-slider-runnable-track {
        width: 100%;
        height: 10px;
        background: #e0e0e0;
        border-radius: 5px;
    }

    .slider-container input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        border: 4px solid var(--primary);
        cursor: pointer;
        margin-top: -13px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .slider-container input[type="range"]::-moz-range-track {
        width: 100%;
        height: 10px;
        background: #e0e0e0;
        border-radius: 5px;
    }

    .slider-container input[type="range"]::-moz-range-thumb {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        border: 4px solid var(--primary);
        cursor: pointer;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .calc-input-card {
        position: relative;
        z-index: 50;
        overflow: visible;
    }

    .calc-inputs {
        position: relative;
        z-index: 50;
        overflow: visible;
    }

    .mega-calculator {
        overflow: visible !important;
        z-index: 50;
    }

    .slider-hint {
        font-size: 0.65rem;
        margin-top: 0.5rem;
        line-height: 1.4;
    }

    /* Comparison Cards (Platform vs ORDABLE) */
    .simple-comparison {
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .comparison-vs {
        display: none;
    }

    .comparison-card {
        padding: 0.875rem;
        border-radius: 12px;
    }

    .comparison-card:hover {
        transform: none;
    }

    .comparison-card.ordable::before {
        font-size: 0.5rem;
        padding: 0.25rem 0.6rem;
        top: -8px;
        letter-spacing: 0.05em;
    }

    .comparison-card h4 {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
        line-height: 1.2;
    }

    .comparison-subtitle {
        font-size: 0.55rem !important;
        margin-bottom: 0.5rem !important;
        padding-bottom: 0.5rem !important;
        line-height: 1.3;
    }

    .comparison-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 0.4rem;
        border-radius: 8px;
    }

    .comparison-icon svg {
        width: 16px;
        height: 16px;
    }

    .comparison-cost {
        margin: 0.5rem 0;
    }

    .comparison-cost .cost-label {
        font-size: 0.5rem !important;
        margin-bottom: 0.3rem;
        letter-spacing: 0.03em;
    }

    .comparison-cost .cost-value {
        font-size: 1.1rem !important;
        line-height: 1.1;
    }

    .comparison-detail {
        font-size: 0.5rem !important;
        padding: 0.35rem 0.5rem !important;
        border-radius: 6px;
        line-height: 1.3;
    }

    /* Final Savings Box */
    .final-savings {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }

    .savings-badge {
        font-size: 0.6rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
        letter-spacing: 0.1em;
    }

    .savings-amounts {
        margin-bottom: 0.75rem;
        gap: 1rem;
    }

    .savings-money .value,
    .savings-time .value {
        font-size: 2rem;
    }

    .savings-money .sub,
    .savings-time .sub {
        font-size: 0.75rem;
        margin-top: 0.35rem;
        line-height: 1.3;
    }

    .final-savings .savings-note {
        font-size: 0.7rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .mega-cta {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
        border-radius: 10px;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
    }

    .mega-cta svg {
        width: 16px;
        height: 16px;
    }

    /* Sources Note */
    .sources-note {
        padding: 0.875rem;
        margin-top: 1.25rem;
        border-radius: 10px;
    }

    .sources-note p {
        font-size: 0.7rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 100%;
        max-width: 100%;
        padding: 90px 1.5rem 1.5rem;
    }
}

/* Animations - Only hide when JS is loaded */
.js-loaded .reveal {
    opacity: 0;
    transform: translateY(40px);
}

.js-loaded .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.js-loaded .reveal-right {
    opacity: 0;
    transform: translateX(40px);
}
