/* ===========================
   CSS Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --white: #ffffff;
    --background: #f8fafc;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--dark);
    background-color: var(--background);
    overflow-x: hidden;
}

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: var(--transition-base);
}

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

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition-base);
    padding: 5px 0;
}

.nav-link:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-link:not(.btn-primary):hover::after,
.nav-link:not(.btn-primary).active::after {
    width: 100%;
}

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

.nav-link.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
}

.nav-link.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamische Viewport-Höhe für mobile Browser */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    z-index: -1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: pulseGradient 10s ease infinite;
}

@keyframes pulseGradient {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease;
    position: relative;
}

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

.tagline {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.4s both;
}

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

.hero-description {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

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

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

.btn-light {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ===========================
   Scroll Indicator
   =========================== */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--gray-light);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-light);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* ===========================
   LS One Preview Section
   =========================== */
.ls-one-preview {
    padding: var(--section-padding);
    background: var(--white);
    position: relative;
    z-index: 10;
}

.ls-one-preview-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.ls-one-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 500px;
}

.ls-one-text h2 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.ls-one-text p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.ls-one-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.phone-mockup-container {
    position: relative;
    width: 100%;
    max-width: 650px;
}

.interface-background {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15);
    display: block;
}

.phone-mockup-overlay {
    position: absolute;
    bottom: 5%;
    left: -15%;
    width: 70%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    transform: rotate(-8deg);
}

/* Legacy phone-mockup styles (fallback) */
.phone-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

.phone-mockup img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: var(--section-padding);
    background: var(--background);
    position: relative;
    z-index: 10;
}

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

.section-header .tagline {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

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

.features-grid-extended .feature-card.featured {
    grid-column: span 3;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.feature-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    grid-column: span 1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.features-grid-extended .feature-card.featured {
    padding: 50px 60px;
}

.feature-card.featured .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.feature-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.feature-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.feature-card.featured h3 {
    color: var(--white);
    font-size: 28px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 16px;
}

/* ===========================
   Solutions Section
   =========================== */
.solutions {
    padding: var(--section-padding);
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.solution-card {
    padding: 40px;
    background: var(--background);
    border-radius: 20px;
    transition: var(--transition-base);
}

.solution-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 25px;
}

.solution-icon svg {
    width: 35px;
    height: 35px;
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.solution-card p {
    color: var(--gray);
    line-height: 1.8;
}

.solutions-cta {
    text-align: center;
    margin-top: 50px;
}

/* ===========================
   LS One Detailed Section
   =========================== */
.ls-one-section {
    padding: var(--section-padding);
    background: var(--dark);
    color: var(--white);
}

.ls-one-header {
    text-align: center;
    margin-bottom: 60px;
}

.ls-one-logo {
    height: 100px;
    width: auto;
    margin-bottom: 30px;
}

.ls-one-header h2 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.ls-one-header p {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-divider {
    text-align: center;
    margin: 60px 0;
    position: relative;
}

.section-divider h3 {
    font-size: 32px;
    font-weight: 700;
    display: inline-block;
    padding: 0 30px;
    background: var(--dark);
    position: relative;
    z-index: 1;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.ls-one-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.ls-one-feature {
    background: var(--dark-light);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition-base);
}

.ls-one-feature:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-5px);
}

.ls-one-feature h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.ls-one-feature p {
    color: var(--gray-light);
    line-height: 1.7;
}

.ls-one-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.ls-one-screenshot {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-xl);
}

.ls-one-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Pricing Section
   =========================== */
.pricing {
    padding: var(--section-padding);
    background: var(--background);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: var(--white);
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--gray);
    align-self: flex-end;
    padding-bottom: 8px;
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-light);
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-features li .check {
    color: var(--success);
    font-weight: 600;
    flex-shrink: 0;
}

.pricing-features li .cross {
    color: var(--error);
    font-weight: 600;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

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

.pricing-subtitle {
    color: var(--gray);
    font-size: 14px;
    margin-top: 10px;
}

.pricing-card.featured .pricing-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Enterprise / Individual Pricing */
.pricing-enterprise {
    margin-top: 60px;
}

.pricing-card-wide {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.enterprise-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: start;
}

.enterprise-left .pricing-header h3 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 800;
}

.enterprise-left .pricing-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.5;
}

.pricing-features-grid {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 0;
}

.pricing-features-grid li {
    padding: 0;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.pricing-features-grid li .check {
    color: #10b981;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 18px;
}

.enterprise-right {
    position: sticky;
    top: 100px;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.price-option {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.price-option:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.25);
}

.price-option h4 {
    font-size: 22px;
    margin-bottom: 18px;
    color: var(--white);
    font-weight: 700;
}

.price-option .price {
    margin-bottom: 15px;
}

.price-option .price .amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    display: block;
}

.price-option p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

.price-option-divider {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-large {
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    justify-content: center;
}

/* Feature Comparison Table */
.feature-comparison-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--gray-light);
}

.feature-comparison-section .section-header {
    margin-bottom: 50px;
}

.feature-comparison-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Mobile Notice - versteckt per default */
.mobile-comparison-notice {
    display: none;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

.mobile-comparison-notice .notice-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.mobile-comparison-notice h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.mobile-comparison-notice p {
    font-size: 16px;
    color: var(--dark);
    line-height: 1.6;
    margin: 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-table thead {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.comparison-table thead th {
    padding: 25px 20px;
    color: var(--dark);
    background: var(--white);
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-table thead th:last-child {
    border-right: none;
}

.comparison-table thead th.feature-column {
    text-align: left;
    min-width: 280px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: var(--white);
}

.comparison-table thead th.popular-column {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    color: var(--white);
}

.comparison-table .price-small {
    display: block;
    font-size: 14px;
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.9;
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--gray-light);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody td {
    padding: 18px 20px;
    text-align: center;
    font-size: 15px;
    color: var(--dark);
}

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

.comparison-table .category-row {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.comparison-table .category-row td {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-color);
    text-align: left;
    border-top: 2px solid var(--gray-light);
}

.comparison-table .check {
    color: #10b981;
    font-size: 22px;
    font-weight: 700;
}

.comparison-table .cross {
    color: #ef4444;
    font-size: 20px;
    font-weight: 700;
}

.comparison-table tbody tr:hover {
    background: #f8fafc;
}

.comparison-table .category-row:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ===========================
   About Section
   =========================== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.about-intro h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.about-intro .lead {
    font-size: 20px;
    font-weight: 400;
    color: var(--gray);
    line-height: 1.8;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-text-section p {
    font-size: 17px;
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-text-section p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    padding: var(--section-padding);
    background: var(--background);
}

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

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 32px;
    flex-shrink: 0;
}

.value-icon svg {
    width: 35px;
    height: 35px;
    stroke: #ffffff;
}

.value-icon i {
    font-size: 32px;
    color: #ffffff;
    line-height: 1;
}

.value-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 16px;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    padding: var(--section-padding);
    background: var(--background);
}

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

.contact-info h2 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-info > p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 32px;
    line-height: 1;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-item p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: var(--font-family);
    font-size: 15px;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

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

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 10;
}

.cta-content h2 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: 80px 0 30px;
    position: relative;
    z-index: 10;
}

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

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 30px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-info-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-info-item p {
    color: var(--gray-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-light);
    border-radius: 50%;
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-divider {
    height: 1px;
    background: var(--dark-light);
    margin-bottom: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .ls-one-preview-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content .footer-col:first-child {
        grid-column: span 2;
    }
}

/* ===========================
   Page Hero Styles
   =========================== */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 80px;
    z-index: 1;
}

.page-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.page-hero-content h1 {
    font-size: clamp(42px, 7vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 25px;
}

/* ===========================
   LS One Specific Styles
   =========================== */
.ls-one-intro {
    padding: var(--section-padding);
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

.intro-text p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.stat-card {
    background: var(--gradient-primary);
    padding: 35px 40px;
    border-radius: 20px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.stat-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.stat-icon i {
    font-size: 42px;
    color: var(--white);
}

.stat-label {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.5;
    opacity: 0.95;
    text-align: left;
}

.ls-one-features-section {
    padding: var(--section-padding);
    background: var(--background);
}

.features-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-detailed {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.feature-detailed:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 25px;
}

.feature-icon-large svg {
    width: 40px;
    height: 40px;
}

.feature-detailed h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-detailed p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.feature-list li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 15px;
}

.screenshots-section {
    padding: var(--section-padding);
    background: var(--white);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.screenshot-card {
    background: var(--background);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-base);
}

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

.screenshot-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--gray-light);
}

.screenshot-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 20px 10px;
    color: var(--dark);
}

.screenshot-card p {
    font-size: 14px;
    color: var(--gray);
    margin: 0 20px 20px;
}

/* ===========================
   Demo CTA Section
   =========================== */
.demo-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.demo-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.demo-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.demo-cta-text {
    color: var(--white);
}

.demo-cta-text .tagline {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.demo-cta-text h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.demo-cta-text > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.demo-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.demo-benefits li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    font-size: 17px;
    line-height: 1.6;
}

.demo-benefits i {
    color: #4ade80;
    font-size: 22px;
    flex-shrink: 0;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-large i {
    font-size: 20px;
}

.demo-cta-visual {
    display: grid;
    gap: 25px;
}

.demo-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: all 0.3s ease;
}

.demo-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(10px);
}

.demo-card i {
    font-size: 42px;
    color: #4ade80;
    margin-bottom: 20px;
    display: block;
}

.demo-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.demo-card p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

/* ===========================
   Features Showcase Section
   =========================== */
.features-showcase {
    padding: var(--section-padding);
    background: var(--background);
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.showcase-item:last-child {
    margin-bottom: 0;
}

.showcase-item.reverse {
    direction: rtl;
}

.showcase-item.reverse > * {
    direction: ltr;
}

.showcase-content {
    padding: 20px 0;
}

.showcase-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-primary), var(--gradient-accent));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.showcase-content p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 16px;
    color: var(--text);
}

.showcase-features li i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition-base);
}

.showcase-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.feature-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.benefits-section {
    padding: var(--section-padding);
    background: var(--dark);
    color: var(--white);
}

.benefits-section .section-header h2,
.benefits-section .section-header p {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--dark-light);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-base);
}

.benefit-card:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.benefit-card p {
    color: var(--gray-light);
    line-height: 1.6;
}

.use-cases-section {
    padding: var(--section-padding);
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: var(--background);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-base);
}

.use-case-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.use-case-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.use-case-card p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 15px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Solutions Page Styles
   =========================== */
.solutions-hero {
    background: var(--gradient-dark);
}

.solutions-detailed-section {
    padding: var(--section-padding);
    background: var(--white);
}

.solution-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.solution-detailed:nth-child(even) {
    direction: rtl;
}

.solution-detailed:nth-child(even) > * {
    direction: ltr;
}

.solution-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.solution-content p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.solution-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--gray);
}

.solution-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.solution-image {
    background: var(--background);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-image-placeholder {
    width: 100%;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 64px;
}

.solution-img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

/* ===========================
   Pricing Page Styles
   =========================== */
.pricing-hero {
    background: var(--gradient-primary);
}

.pricing-comparison {
    padding: var(--section-padding);
    background: var(--white);
}

.comparison-table {
    overflow-x: auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

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

.comparison-table th {
    background: var(--background);
    font-weight: 700;
    color: var(--dark);
}

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

/* ===========================
   About Page Styles
   =========================== */
.about-hero {
    background: var(--gradient-dark);
}

.team-section {
    padding: var(--section-padding);
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-primary);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
}

.team-member h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

/* ===========================
   Legal Pages Styles
   =========================== */
.legal-content-section {
    padding: 100px 0;
    background: var(--white);
}

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

.legal-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.legal-block {
    margin-bottom: 50px;
}

.legal-block h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    margin-top: 10px;
}

.legal-block h4 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-block p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-block ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.legal-block ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
}

.legal-block ul li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.legal-block ul ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

.legal-block ul ul li:before {
    content: "◦";
    font-size: 18px;
}

.legal-block a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-base);
}

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

.legal-block strong {
    color: var(--dark);
    font-weight: 600;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
    font-size: 14px;
    color: var(--gray);
    text-align: center;
}

.legal-update {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
    font-style: italic;
    margin-top: 10px;
}

/* ===========================
   Contact Page Styles
   =========================== */
.contact-hero {
    background: var(--gradient-dark);
}

.contact-page-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-method-card {
    background: var(--background);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-base);
}

.contact-method-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-method-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-method-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.contact-method-card p {
    color: var(--gray);
    line-height: 1.6;
}

.contact-method-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-method-card a:hover {
    text-decoration: underline;
}

/* ===========================
   Responsive Design - Page Specific
   =========================== */
@media (max-width: 1024px) {
    .intro-content,
    .solution-detailed {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .solution-detailed:nth-child(even) {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        min-height: 108vh;
        min-height: 108dvh; /* Dynamische Viewport-Höhe für mobile Browser */
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid,
    .features-grid-extended,
    .solutions-grid,
    .pricing-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .features-grid-extended .feature-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 25px;
    }

    .showcase-item {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 80px;
    }

    .showcase-item.reverse {
        direction: ltr;
    }

    .showcase-content h3 {
        font-size: 28px;
    }

    .demo-cta-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .demo-cta-text h2 {
        font-size: 32px;
    }

    .demo-benefits li {
        font-size: 16px;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .feature-card.featured {
        grid-column: span 1;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }

    .enterprise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .pricing-card-wide {
        padding: 30px;
    }

    .comparison-table-wrapper {
        margin: 0 -20px;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table thead th {
        padding: 15px 10px;
        font-size: 14px;
    }

    .comparison-table thead th.feature-column {
        min-width: 200px;
    }

    .comparison-table tbody td {
        padding: 12px 10px;
        font-size: 14px;
    }

    .comparison-table .category-row td {
        font-size: 14px;
    }

    .feature-comparison-section h3 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content .footer-col:first-child {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* Mobile Portrait - Unter 650px Breite */
@media (max-width: 650px) {
    /* Verstecke die Vergleichstabelle im Portrait-Modus */
    .comparison-table-wrapper {
        display: none !important;
    }

    /* Zeige den Mobile Hinweis im Portrait-Modus */
    .mobile-comparison-notice {
        display: block !important;
    }
}

/* Tablet Breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid-extended {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid-extended .feature-card.featured {
        grid-column: span 2;
    }

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

@media (max-width: 480px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .nav-container {
        padding: 12px 20px;
    }
    
    .nav-logo img {
        height: 40px;
    }

    .hero {
        min-height: 108vh;
        min-height: 108dvh;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 44px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .features-grid-extended .feature-card.featured {
        padding: 25px 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

/* ===========================
   Animations & Utilities
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease;
}

.slide-in-left {
    animation: slideInFromLeft 0.4s ease;
}

.slide-in-right {
    animation: slideInFromRight 0.4s ease;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}
