/* HEIMUND - Professional CSS Stylesheet */

:root {
    /* Brand Colors from Style Guide */
    --primary-green: #00965e;
    --primary-green-dark: #006842; /* Darker green for better contrast */
    --primary-blue: #3B69A9;
    --text-dark: #1a1a1a;
    --text-light: #6a6a6a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-light: #e0e0e0;
    
    /* Additional Colors */
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Responsive Font Sizes using clamp() */
    --font-size-hero: clamp(1.75rem, 5vw, 3.5rem);
    --font-size-h2: clamp(1.5rem, 4vw, 2.5rem);
    --font-size-h3: clamp(1.125rem, 2.5vw, 1.5rem);
    --font-size-lead: clamp(1rem, 2vw, 1.25rem);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 48px rgba(0,0,0,0.16);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
    overflow-x: hidden;
    width: 100%;
}

/* Ensure proper section stacking - prevents content bleeding into hero */
main > section:not(.hero) {
    position: relative;
    z-index: 2;
    background-color: inherit;
}

main > section:not(.hero):not([class*="dark"]):not(.compliance-section):not(.documentation-section):not(.cta-section) {
    background-color: var(--background-white);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-green);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 0;
    z-index: 2000;
}

.skip-link:focus {
    top: 0;
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 3px solid var(--primary-green);
    outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
}

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

.nav-links a.active {
    color: var(--primary-green);
}

/* Material Design Buttons */
.primary-button, .secondary-button, .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 24px;
    height: 48px;
    border-radius: 24px;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.025em;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.1s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Ripple Effect */
.primary-button::after, .secondary-button::after, .cta-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.primary-button:active::after, .cta-button:active::after {
    animation: ripple 0.4s ease-out;
}

.secondary-button::after {
    background: rgba(0, 150, 94, 0.3);
}

.secondary-button:active::after {
    animation: ripple 0.4s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0) translate(-50%, -50%);
        opacity: 1;
    }
    100% {
        transform: scale(40) translate(-50%, -50%);
        opacity: 0;
    }
}

/* Primary Button - Filled */
.primary-button {
    background: var(--primary-green-dark);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.primary-button:hover {
    background: #005536;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
}

.primary-button:active {
    transform: scale(0.98);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.primary-button:focus-visible {
    outline: 3px solid rgba(0, 150, 94, 0.5);
    outline-offset: 2px;
}

/* Secondary Button - Outlined */
.secondary-button {
    background: transparent;
    color: var(--primary-green-dark);
    border: 2px solid var(--primary-green-dark);
    box-shadow: none;
}

.secondary-button:hover {
    background: rgba(0, 150, 94, 0.08);
    color: var(--primary-green-dark);
}

.secondary-button:active {
    transform: scale(0.98);
    background: rgba(0, 150, 94, 0.12);
}

.secondary-button:focus-visible {
    outline: 3px solid rgba(0, 150, 94, 0.5);
    outline-offset: 2px;
}

/* CTA Button */
.cta-button {
    background: var(--primary-green-dark);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: #005536;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25), 0 2px 4px rgba(0, 0, 0, 0.15);
}

.cta-button:active {
    transform: scale(0.98);
}

.cta-button:focus-visible {
    outline: 3px solid rgba(0, 150, 94, 0.5);
    outline-offset: 2px;
}

/* Large Buttons */
.primary-button.large, .secondary-button.large {
    height: 56px;
    padding: 0 32px;
    font-size: 1rem;
    border-radius: 28px;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, #00965e 0%, #006842 40%, #3B69A9 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero > .container {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.hero::after {
    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.05'%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");
    pointer-events: none;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.hero-content {
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 650px;
}

.hero-text h1 {
    font-size: var(--font-size-hero);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: white;
    letter-spacing: -0.02em;
}

.hero .highlight {
    background: linear-gradient(90deg, #fff 0%, #a5f3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

/* Hero Buttons - Light on Dark */
.hero .primary-button {
    background: white;
    color: var(--primary-green-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero .primary-button:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero .primary-button::after {
    background: rgba(0, 150, 94, 0.3);
}

.hero .secondary-button {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero .secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.hero .secondary-button::after {
    background: rgba(255, 255, 255, 0.4);
}

.trust-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 16px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.badge svg {
    stroke: rgba(255, 255, 255, 0.7);
    width: 14px;
    height: 14px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Remove duplicate background-graphs styles */

/* Professional Chat Container */
.chat-container {
    width: 450px;
    height: 600px;
    background: white;
    border-radius: 20px;
    box-shadow: 
        0 5px 10px rgba(0, 0, 0, 0.05),
        0 15px 30px rgba(0, 0, 0, 0.08),
        0 30px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Chat Header */
.chat-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    border-radius: 20px 20px 0 0;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.3);
    animation: pulse-status 2s ease-in-out infinite;
}

@keyframes pulse-status {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.3); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2); }
}

.chat-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.chat-header-actions {
    display: flex;
    gap: 0.5rem;
}

.chat-action {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: white;
}

.chat-action:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Chat Messages Area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #fafbfc;
    position: relative;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

.chat-welcome {
    text-align: center;
    padding: 2rem 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.chat-welcome h3 {
    color: var(--primary-green);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

.message-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 80%;
    animation: messageSlide 0.3s ease-out;
}

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

.chat-message.user {
    align-self: flex-end;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message .message-bubble {
    padding: 0.875rem 1.25rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.chat-message.user .message-bubble {
    background: linear-gradient(135deg, var(--primary-green) 0%, #007a4a 100%);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-message.bot .message-bubble {
    background: white;
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Chat Input */
.chat-input-container {
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1rem;
    border-radius: 0 0 20px 20px;
}

.chat-suggestions {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.suggestion-chip {
    background: white;
    border: 2px solid var(--primary-green-dark);
    color: var(--primary-green-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-family: inherit;
}

.suggestion-chip:hover {
    background: var(--primary-green-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 150, 94, 0.3);
}

.suggestion-chip:focus {
    outline: 3px solid var(--primary-green-dark);
    outline-offset: 2px;
    background: var(--primary-green-dark);
    color: white;
}

.chat-input-form {
    margin: 0;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: #f5f6f7;
    border-radius: 25px;
    padding: 0.375rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.input-wrapper:focus-within {
    background: white;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(0, 150, 94, 0.1);
}

.chat-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
}

.chat-send-btn {
    background: var(--primary-green);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.2s ease;
}

.chat-send-btn:hover {
    background: #007a4a;
    transform: scale(1.1);
}

.chat-send-btn:active {
    transform: scale(0.95);
}

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Features Section */
.features {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #f8fafb 0%, #e8f0f5 100%);
    margin-top: var(--spacing-xl);
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(0, 150, 94, 0.1);
}

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

.feature-card {
    background: white;
    padding: calc(var(--spacing-lg) * 1.2);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 150, 94, 0.15);
    border-color: rgba(0, 150, 94, 0.3);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 150, 94, 0.2);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 18px;
    opacity: 0.3;
    z-index: -1;
    filter: blur(8px);
}

.feature-icon svg {
    stroke: white;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-lg);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.benefit-group h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--primary-green);
}

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

.benefit-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--text-dark);
}

.benefit-list svg {
    stroke: var(--primary-green);
    flex-shrink: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-card:hover::after {
    transform: scaleX(1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Security Section */
.security {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
    margin-top: var(--spacing-lg);
}

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

.security-text h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.security-features {
    margin-top: var(--spacing-lg);
}

.security-item {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.security-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.security-icon svg {
    stroke: white;
}

.security-item h4 {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.security-item p {
    color: var(--text-light);
}

.security-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-animation {
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Accessibility Section */
.accessibility {
    padding: var(--spacing-xl) 0;
    background: white;
    margin-top: var(--spacing-lg);
}

.accessibility-content {
    margin-top: var(--spacing-xl);
}

.accessibility-intro {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.legal-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--background-light);
    border-radius: 16px;
    border: 2px solid var(--primary-green-dark);
}

.legal-badge svg {
    stroke: var(--primary-green-dark);
    flex-shrink: 0;
}

.legal-badge h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.legal-badge p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.accessibility-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.access-card {
    padding: var(--spacing-lg);
    background: var(--background-light);
    border-radius: 16px;
    transition: var(--transition);
}

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

.access-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.access-icon svg {
    stroke: var(--primary-green-dark);
}

.access-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

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

.accessibility-cta {
    text-align: center;
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(0, 150, 94, 0.05) 0%, rgba(59, 105, 169, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 150, 94, 0.2);
}

.accessibility-cta h3 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.accessibility-cta p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.cta-section .primary-button {
    background: white;
    color: var(--primary-green);
}

.cta-section .secondary-button {
    border-color: white;
    color: white;
}

/* Contact Section */
.contact {
    padding: var(--spacing-xl) 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.contact-details {
    margin-top: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.contact-item svg {
    stroke: var(--primary-green);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: calc(var(--spacing-lg) * 1.5);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: calc(var(--spacing-sm) * 1.2) var(--spacing-md);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(0, 150, 94, 0.1);
    background: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-lg) 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-links-left,
.footer-links-right {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-text {
    opacity: 0.6;
}

/* Premium mobile menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    width: 40px;
    height: 40px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px auto;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100%;
    height: 100dvh; /* Dynamic viewport height for mobile browsers */
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    padding-top: 80px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-links {
    list-style: none;
    padding: 0 2rem;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
}

.mobile-nav-links a {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

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

.mobile-nav-links a:hover::after {
    width: 50px;
}

.mobile-nav-links a.mobile-cta {
    display: inline-block;
    background: var(--primary-green-dark);
    color: white;
    padding: 0.875rem 1.5rem;
    border-radius: 24px;
    margin-top: 1rem;
    font-size: 1rem;
}

.mobile-nav-links a.mobile-cta::after {
    display: none;
}

.mobile-nav-links a.mobile-cta:hover {
    background: #005536;
}

body.menu-open {
    overflow: hidden;
}

/* Typing Animation */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 1rem;
}

.language-toggle:hover {
    background: var(--primary-green);
    color: white;
}

.language-toggle.active {
    background: var(--primary-green);
    color: white;
}

.language-toggle svg {
    width: 20px;
    height: 20px;
}

.language-toggle .info-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
}

/* Hinweis für Einfache Sprache */
.simple-language-notice {
    background: #fffbf0;
    border: 2px solid #f0ad4e;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    display: none;
}

body.simple-language .simple-language-notice {
    display: block;
}

/* Einfache Sprache Styles */
body.simple-language {
    font-size: 18px;
    line-height: 1.8;
}

body.simple-language h1 {
    font-size: 2rem;
}

body.simple-language h2 {
    font-size: 1.5rem;
}

body.simple-language p {
    max-width: 60ch;
}

/* Speech Features */
.speech-button {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
    margin-right: 0.5rem;
}

.speech-button:hover {
    color: var(--primary-green-dark);
}

.speech-button.listening {
    color: #dc3545;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.speaker-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.25rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.speaker-button:hover {
    opacity: 1;
    border-color: var(--primary-green-dark);
    color: var(--primary-green-dark);
}

.speaker-button.speaking {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.message {
    position: relative;
}

/* Page Hero (for subpages) */
.page-hero {
    margin-top: 70px;
    padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
    background: linear-gradient(135deg, #f8fafb 0%, #e8f0f5 100%);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.page-hero-content .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Teaser Sections */
.features-teaser,
.benefits-teaser,
.pricing-teaser {
    padding: var(--spacing-xl) 0;
}

.features-teaser {
    background: white;
}

.benefits-teaser {
    background: var(--background-light);
}

.pricing-teaser {
    background: white;
}

.stats-section {
    padding: calc(var(--spacing-xl) * 1.5) 0;
    background: linear-gradient(135deg, rgba(0, 150, 94, 0.05) 0%, rgba(59, 105, 169, 0.05) 100%);
}

/* Teaser Grid */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.teaser-card {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.teaser-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.teaser-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.teaser-icon svg {
    stroke: white;
    stroke-width: 2;
}

.teaser-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.teaser-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.teaser-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.teaser-link:hover {
    color: var(--primary-green-dark);
    transform: translateX(5px);
}

.teaser-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Benefits Split */
.benefits-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.benefit-column {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 150, 94, 0.1) 0%, rgba(59, 105, 169, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.benefit-icon svg {
    stroke: var(--primary-green);
    stroke-width: 2;
}

.benefit-column h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.benefit-list-short {
    list-style: none;
    padding: 0;
}

.benefit-list-short li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--text-dark);
}

.benefit-list-short li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

/* Pricing Preview */
.pricing-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-preview-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    border: 2px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.pricing-preview-card.featured {
    border-color: var(--primary-green);
    box-shadow: 0 8px 24px rgba(0, 150, 94, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-preview-card h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.pricing-preview-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: var(--spacing-sm) 0;
}

.pricing-preview-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-preview-card .price-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-xs);
}

/* Compliance Sections */
.compliance-section,
.ai-act-section,
.bitv-section,
.enterprise-security {
    padding: var(--spacing-xl) 0;
}

.compliance-section {
    background: white;
}

.ai-act-section {
    background: var(--background-light);
}

.bitv-section {
    background: white;
}

.enterprise-security {
    background: var(--background-light);
}

.compliance-grid,
.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.compliance-card,
.enterprise-card {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: 16px;
    border-left: 4px solid var(--primary-green);
    transition: var(--transition);
}

.enterprise-card {
    background: white;
}

.compliance-card:hover,
.enterprise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.compliance-card h3,
.enterprise-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.compliance-card p,
.enterprise-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.enterprise-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(0, 150, 94, 0.1) 0%, rgba(59, 105, 169, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.enterprise-icon svg {
    stroke: var(--primary-green);
    stroke-width: 2;
}

/* AI Act Content */
.ai-act-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.ai-act-text h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.ai-act-list {
    list-style: none;
    padding: 0;
}

.ai-act-list li {
    padding: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    line-height: 1.6;
}

.ai-act-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.ai-act-badge {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-green);
}

.badge-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.badge-icon svg {
    stroke: white;
    stroke-width: 2;
}

.ai-act-badge h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.status-badge {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: var(--spacing-md);
}

/* BITV Content */
.bitv-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
    font-size: 1.125rem;
    color: var(--text-light);
}

.bitv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.bitv-card {
    background: var(--background-light);
    padding: var(--spacing-md);
    border-radius: 12px;
    text-align: center;
}

.bitv-card h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

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

/* Contact Page Specific */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-item svg {
    flex-shrink: 0;
    stroke: var(--primary-green);
}

.contact-item strong {
    display: block;
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
}

.contact-additional {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--background-light);
    border-radius: 16px;
}

.contact-additional h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.contact-form select {
    width: 100%;
    padding: calc(var(--spacing-sm) * 1.2) var(--spacing-md);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    cursor: pointer;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(0, 150, 94, 0.1);
    background: white;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 2px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.checkbox-label a {
    color: var(--primary-green);
    text-decoration: underline;
}

.form-notice {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: var(--spacing-md);
    text-align: center;
}

.contact-faq {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.alternative-contact {
    padding: var(--spacing-xl) 0;
    background: white;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.method-card {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}

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

.method-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.method-icon svg {
    stroke: white;
    stroke-width: 2;
}

.method-card h4 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.method-card p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.method-link {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.method-link:hover {
    color: var(--primary-green-dark);
    transform: translateX(5px);
}

/* ==========================================
   NEW SALES PAGE SECTIONS
   ========================================== */

/* Hero Eyebrow */
.hero-eyebrow {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

/* Section Eyebrow */
.section-eyebrow {
    display: inline-block;
    color: var(--primary-green);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

/* Navigation CTA Button */
.nav-cta {
    margin-left: auto;
    padding: 0 20px !important;
    height: 40px !important;
    font-size: 0.875rem !important;
}

/* Problem Section */
.problem-section {
    padding: var(--spacing-lg) 0;
    background: var(--background-light);
    position: relative;
    z-index: 2;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.problem-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 64px;
    height: 64px;
    background: #fef2f2;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.problem-icon svg {
    stroke: #dc2626;
}

.problem-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

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

/* Solution Section */
.solution-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.solution-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: calc(var(--spacing-xl) * 2);
    align-items: center;
}

.solution-text h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.solution-text > p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

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

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
}

.solution-list li svg {
    flex-shrink: 0;
    stroke: var(--primary-green);
    margin-top: 2px;
}

.solution-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.speed-badge {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 150, 94, 0.3);
}

.speed-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.speed-unit {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: -5px;
}

.speed-text {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: var(--spacing-xs);
}

/* References Section */
.references-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

/* References Carousel */
.references-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: var(--spacing-lg);
}

.carousel-track-container {
    flex: 1;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

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

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--primary-green);
    opacity: 0.6;
}

.carousel-dot.active {
    background: var(--primary-green);
    width: 24px;
    border-radius: 5px;
}

.reference-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.carousel-slide .reference-card {
    max-width: 600px;
    margin: 0 auto;
}

.reference-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green-dark);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--background-light);
    text-align: center;
}

.reference-quote {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-style: italic;
    margin: 0 0 var(--spacing-md) 0;
    text-align: center;
}

.reference-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-green);
    opacity: 0.3;
    display: block;
    line-height: 1;
    margin-bottom: -1rem;
}

.reference-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.author-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

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

/* Responsive Carousel */
@media (max-width: 768px) {
    .references-carousel {
        gap: 0;
    }

    /* Hide buttons on mobile - use swipe instead */
    .carousel-btn {
        display: none;
    }

    .carousel-track-container {
        width: 100%;
    }

    .reference-card {
        padding: var(--spacing-sm);
    }

    .reference-quote {
        font-size: 1rem;
        padding: 0;
    }
}

/* How it Works Section */
.how-it-works {
    padding: var(--spacing-xl) 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.step-card {
    text-align: center;
    padding: var(--spacing-lg);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

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

/* Integration Section */
.integration-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.integration-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.integration-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 150, 94, 0.1) 0%, rgba(59, 105, 169, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.integration-icon svg {
    stroke: var(--primary-green-dark);
}

.integration-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.integration-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Enterprise Badge */
.enterprise-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-sm);
}

.integration-card .enterprise-badge {
    margin-top: -0.5rem;
}

/* Compliance Section */
.compliance-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.compliance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-xl) * 2);
    align-items: center;
}

.compliance-text h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.compliance-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
}

.compliance-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-badge .compliance-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 150, 94, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compliance-badge .compliance-icon svg {
    stroke: var(--primary-green);
}

.compliance-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.compliance-info strong {
    font-size: 0.9375rem;
}

.compliance-info span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Pricing Features Short */
.pricing-features-short {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
    text-align: left;
}

.pricing-features-short li {
    padding: var(--spacing-xs) 0;
    font-size: 0.9375rem;
    color: var(--text-light);
    position: relative;
    padding-left: 20px;
}

.pricing-features-short li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 600;
}

.pricing-preview-card .secondary-button,
.pricing-preview-card .primary-button {
    width: 100%;
    justify-content: center;
    margin-top: var(--spacing-sm);
}

/* Hortmund Teaser */
.hortmund-teaser {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, rgba(59, 105, 169, 0.05) 0%, rgba(0, 150, 94, 0.05) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hortmund-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-xl) * 2);
    align-items: center;
}

.hortmund-text h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.hortmund-text p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.hortmund-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hortmund-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hortmund-feature svg {
    stroke: var(--primary-blue);
    flex-shrink: 0;
}

.hortmund-feature span {
    font-weight: 500;
}

/* CTA Subtext */
.cta-subtext {
    margin-top: var(--spacing-md);
    font-size: 0.9375rem;
    color: white;
}

.cta-subtext a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.cta-subtext a:hover {
    text-decoration: underline;
}

/* ==========================================
   FEATURES PAGE STYLES
   ========================================== */

/* Page Hero Styled (like main hero) */
.page-hero-styled {
    min-height: 40vh;
}

/* Highlight Feature Section */
.highlight-feature {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.highlight-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: calc(var(--spacing-xl) * 2);
    align-items: center;
}

.highlight-badge {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 150, 94, 0.3);
}

.highlight-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.highlight-unit {
    font-size: 1.5rem;
    font-weight: 600;
}

.highlight-text h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.highlight-text > p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
}

.highlight-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9375rem;
}

.highlight-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 600;
}

/* Features Detailed Section */
.features-detailed {
    padding: var(--spacing-xl) 0;
    background: white;
}

.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card-detailed {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: 16px;
    transition: var(--transition);
}

.feature-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon-large {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.feature-icon-large svg {
    stroke: white;
}

.feature-card-detailed h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

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

/* Integration Features List */
.integration-features {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-md);
    border-top: 1px solid var(--background-light);
    padding-top: var(--spacing-md);
}

.integration-features li {
    font-size: 0.875rem;
    color: var(--text-light);
    padding: var(--spacing-xs) 0;
    padding-left: 20px;
    position: relative;
}

.integration-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

/* Benefits Detailed Section */
.benefits-detailed {
    padding: var(--spacing-xl) 0;
    background: white;
}

.benefits-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-group-card {
    background: var(--background-light);
    padding: var(--spacing-lg);
    border-radius: 16px;
}

.benefit-group-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid white;
}

.benefit-group-header svg {
    stroke: var(--primary-green);
}

.benefit-group-header h3 {
    font-size: 1.25rem;
    margin: 0;
}

.benefit-list-detailed {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list-detailed li {
    padding: var(--spacing-xs) 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.benefit-list-detailed li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 600;
}

/* Accessibility Section */
.accessibility-section {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.accessibility-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: calc(var(--spacing-xl) * 2);
    align-items: center;
}

.accessibility-text h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

.accessibility-text > p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
}

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

.accessibility-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
}

.accessibility-list li svg {
    stroke: var(--primary-green);
    flex-shrink: 0;
}

.accessibility-badges {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.a11y-badge {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.a11y-badge strong {
    display: block;
    font-size: 1.25rem;
    color: var(--primary-green-dark);
    margin-bottom: 4px;
}

.a11y-badge span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ==========================================
   END FEATURES PAGE STYLES
   ========================================== */

/* ==========================================
   PRICING PAGE STYLES
   ========================================== */

/* Decision Helper */
.decision-helper {
    padding: var(--spacing-xl) 0;
    background: var(--background-light);
}

.decision-content h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.decision-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.decision-card.featured {
    border: 2px solid var(--primary-green);
    position: relative;
}

.decision-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.decision-card > p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.decision-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.decision-card li {
    padding: var(--spacing-xs) 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.9375rem;
}

.decision-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

/* Setup Details */
.setup-details {
    padding: var(--spacing-xl) 0;
    background: white;
}

.setup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.setup-item {
    text-align: center;
    padding: var(--spacing-md);
}

.setup-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 150, 94, 0.1) 0%, rgba(59, 105, 169, 0.1) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.setup-icon svg {
    stroke: var(--primary-green-dark);
}

.setup-item h4 {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
}

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

/* Pricing Additional */
.pricing-additional {
    margin-top: var(--spacing-sm);
}

.pricing-additional p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* ==========================================
   END PRICING PAGE STYLES
   ========================================== */

/* ==========================================
   END NEW SALES PAGE SECTIONS
   ========================================== */

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent horizontal scroll on mobile */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative;
    }

    /* Navbar MUST stay fixed on mobile */
    .navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
    }

    /* Disable parallax transform on hero for mobile */
    .hero {
        transform: none !important;
    }

    /* Navigation Mobile Fix */
    .nav-content {
        justify-content: space-between;
    }

    .logo-img {
        height: 32px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block !important;
        order: 2;
        margin-left: auto;
    }

    .language-toggle {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hero-content {
        text-align: left;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }

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

    .hero-buttons .primary-button,
    .hero-buttons .secondary-button {
        width: 100%;
    }

    .trust-badges {
        justify-content: flex-start;
    }

    /* Problem Section Mobile */
    .problem-grid {
        grid-template-columns: 1fr;
    }

    /* Solution Section Mobile */
    .solution-content {
        grid-template-columns: 1fr;
    }

    .solution-visual {
        order: -1;
    }

    .speed-badge {
        width: 160px;
        height: 160px;
    }

    .speed-number {
        font-size: 3rem;
    }

    .speed-unit {
        font-size: 1.25rem;
    }

    .speed-text {
        font-size: 0.75rem;
    }

    /* References Section Mobile */
    .references-grid {
        grid-template-columns: 1fr;
    }

    /* Steps Section Mobile */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Integration Section Mobile */
    .integration-grid {
        grid-template-columns: 1fr;
    }

    /* Compliance Section Mobile */
    .compliance-content {
        grid-template-columns: 1fr;
    }

    .compliance-badges {
        grid-template-columns: 1fr;
    }

    /* Hortmund Section Mobile */
    .hortmund-content {
        grid-template-columns: 1fr;
    }

    /* Features Page Mobile */
    .highlight-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .highlight-badge {
        margin: 0 auto var(--spacing-lg);
        width: 140px;
        height: 140px;
    }

    .highlight-number {
        font-size: 3rem;
    }

    .highlight-list {
        grid-template-columns: 1fr;
    }

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

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

    .accessibility-content {
        grid-template-columns: 1fr;
    }

    .accessibility-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .a11y-badge {
        flex: 1;
        min-width: 100px;
    }

    /* Pricing Page Mobile */
    .decision-grid {
        grid-template-columns: 1fr;
    }

    .setup-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-visual {
        margin-top: var(--spacing-lg);
    }
    
    .chat-container {
        width: 100%;
        max-width: 350px;
        height: 500px;
    }
    
    .background-graphs {
        display: none;
    }
    
    .chat-header {
        padding: 0.875rem 1rem;
    }
    
    .chat-title {
        font-size: 0.875rem;
    }
    
    .chat-action {
        width: 24px;
        height: 24px;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .chat-suggestions {
        justify-content: center;
    }
    
    .suggestion-chip {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .security-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .footer-logo-img {
        height: 28px;
    }

    .footer-links {
        display: flex;
        justify-content: center;
        gap: var(--spacing-lg);
    }

    .footer-links-left,
    .footer-links-right {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        text-align: left;
    }

    .footer-links-right {
        text-align: right;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

    .primary-button, .secondary-button {
        width: 100%;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* CTA Section Mobile */
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .badge {
        font-size: 0.75rem;
    }

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

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

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

    .ai-act-content {
        grid-template-columns: 1fr;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .compliance-grid,
    .enterprise-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

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

/* Scroll animations */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Professional additions */

/* Gradient text animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.highlight {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

/* Premium glass effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Smooth skeleton loading */
@keyframes skeleton {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

/* Premium hover effects */
.premium-hover {
    position: relative;
    overflow: hidden;
}

.premium-hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-green), var(--primary-blue), var(--primary-green));
    background-size: 400% 400%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    animation: gradientShift 3s ease infinite;
}

.premium-hover:hover::after {
    opacity: 1;
}

/* Micro interactions */
.micro-interaction {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.micro-interaction:active {
    transform: scale(0.98);
}

/* Premium shadows */
.premium-shadow {
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.02),
        0 4px 8px rgba(0, 0, 0, 0.03),
        0 8px 16px rgba(0, 0, 0, 0.04),
        0 16px 32px rgba(0, 0, 0, 0.05);
}

/* Loading animation */
.loading-dots {
    display: inline-flex;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-green);
    animation: loadingDot 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loadingDot {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Tooltip styles */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 8px 12px;
    background: var(--text-dark);
    color: white;
    font-size: 14px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

[data-tooltip]::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--text-dark);
    opacity: 0;
    transition: all 0.3s ease;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

/* Smooth page transitions */
.page-transition {
    animation: pageEntry 0.6s ease-out;
}

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

/* ========================================
   RAG Visualization Styles
   ======================================== */

.rag-visualization {
    width: 100%;
    max-width: none;
    min-height: 850px;
    padding: 3rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid #e5e7eb;
}

.rag-svg {
    width: 100%;
    height: auto;
    min-height: 800px;
}

/* Query Section */
.query-box {
    fill: #f0fdf4;
    stroke: #00965e;
    stroke-width: 2;
    filter: none;
}

.query-text {
    fill: var(--text-dark);
    font-size: 20px;
    font-weight: 700;
    text-anchor: middle;
}

.pulse-dot {
    fill: #00965e;
    animation: pulse-rag 2s ease-in-out infinite;
}

@keyframes pulse-rag {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Semantic Search Section */
.semantic-box {
    fill: #eff6ff;
    stroke: #2563eb;
    stroke-width: 2;
    filter: none;
}

.section-title {
    fill: var(--text-dark);
    font-size: 18px;
    font-weight: 800;
    text-anchor: middle;
    letter-spacing: 0.5px;
}

.vector-dot {
    fill: #2563eb;
    animation: vector-pulse 2s ease-in-out infinite;
}

.vector-dot.v1 { animation-delay: 0s; }
.vector-dot.v2 { animation-delay: 0.2s; }
.vector-dot.v3 { animation-delay: 0.4s; }
.vector-dot.v4 { animation-delay: 0.6s; }
.vector-dot.v5 { animation-delay: 0.8s; }

@keyframes vector-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Graph Database Section */
.graph-box {
    fill: #faf5ff;
    stroke: #7c3aed;
    stroke-width: 2;
    filter: none;
}

.graph-edge {
    stroke: #c4b5fd;
    stroke-width: 2;
    opacity: 0.6;
    animation: edge-flow 2s ease-in-out infinite;
}

.edge-1 { animation-delay: 0s; }
.edge-2 { animation-delay: 0.3s; }
.edge-3 { animation-delay: 0.6s; }
.edge-4 { animation-delay: 0.9s; }
.edge-5 { animation-delay: 1.2s; }
.edge-6 { animation-delay: 1.5s; }
.edge-7 { animation-delay: 1.8s; }

@keyframes edge-flow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

.graph-node {
    fill: #ffffff;
    stroke: #7c3aed;
    stroke-width: 2;
    animation: node-pulse 2s ease-in-out infinite;
}

.center-node {
    fill: #7c3aed;
    stroke: #6d28d9;
    stroke-width: 2;
}

.node-1 { animation-delay: 0.5s; }
.node-2 { animation-delay: 1s; }
.node-3 { animation-delay: 1.5s; }
.node-4 { animation-delay: 2s; }
.node-5 { animation-delay: 2.5s; }

@keyframes node-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.node-text {
    fill: white;
    font-size: 14px;
    font-weight: 800;
    text-anchor: middle;
}

/* Flow Arrows */
.flow-arrow {
    stroke: #00965e;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 6;
    animation: arrow-flow 2s linear infinite;
}

.arrow-1 { animation-delay: 0s; }
.arrow-2 { animation-delay: 0.5s; }
.arrow-3 { animation-delay: 1s; }
.arrow-4 { animation-delay: 1.5s; }
.arrow-5 { animation-delay: 2s; }

@keyframes arrow-flow {
    0% { stroke-dashoffset: 0; opacity: 0.7; }
    50% { opacity: 1; }
    100% { stroke-dashoffset: -12; opacity: 0.7; }
}

/* MCP Section */
.mcp-box {
    fill: #fef3c7;
    stroke: #f59e0b;
    stroke-width: 2;
    filter: none;
}

.mcp-tool {
    fill: #ffffff;
    stroke: #f59e0b;
    stroke-width: 1.5;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.tool-text {
    fill: #92400e;
    font-size: 11px;
    font-weight: 600;
    text-anchor: middle;
}

/* Data Types */
.datatype-box {
    fill: #ffffff;
    stroke: #cbd5e1;
    stroke-width: 1.5;
    opacity: 0.95;
}

.datatype-label {
    fill: #475569;
    font-size: 11px;
    font-weight: 600;
    text-anchor: middle;
}

.pdf-text {
    fill: #dc2626;
    font-size: 8px;
    font-weight: 700;
    text-anchor: middle;
}

/* LLM Section */
.llm-box {
    fill: #fff7ed;
    stroke: #ea580c;
    stroke-width: 2;
    filter: none;
}

.llm-subtitle {
    fill: #9a3412;
    font-size: 14px;
    font-weight: 600;
    text-anchor: middle;
}

.process-dot {
    fill: #ea580c;
    animation: process-pulse 2s ease-in-out infinite;
}

.process-dot.p1 { animation-delay: 0s; }
.process-dot.p2 { animation-delay: 0.2s; }
.process-dot.p3 { animation-delay: 0.4s; }
.process-dot.p4 { animation-delay: 0.6s; }
.process-dot.p5 { animation-delay: 0.8s; }

@keyframes process-pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Result Section */
.result-box {
    fill: #f0fdf4;
    stroke: #00965e;
    stroke-width: 2;
    filter: none;
}

.result-text {
    fill: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    text-anchor: middle;
}

.success-circle {
    fill: #00965e;
    stroke: #047857;
    stroke-width: 2;
    animation: success-scale 2s ease-in-out infinite;
}

@keyframes success-scale {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.success-check {
    stroke: white;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 15;
    stroke-dashoffset: 15;
    animation: draw-check 1s ease-out 0.5s forwards;
}

@keyframes draw-check {
    to { stroke-dashoffset: 0; }
}

/* Legend */
.rag-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
    .rag-visualization {
        padding: 1rem;
    }

    .rag-svg {
        min-height: 400px;
    }

    .rag-legend {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

/* ===========================================
   SECURITY PAGE STYLES
   =========================================== */

/* Security Hero Section */
.security-hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border-bottom: 1px solid rgba(0, 150, 94, 0.1);
}

.security-hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.security-hero-icon {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 32px rgba(0, 150, 94, 0.3);
}

.security-hero-text h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.security-hero-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Compliance Overview Section */
.compliance-overview {
    padding: 5rem 0;
    background: white;
}

.compliance-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-overview-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.compliance-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-green);
}

.compliance-overview-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(0, 150, 94, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
}

.compliance-overview-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.compliance-overview-card > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.compliance-overview-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.compliance-overview-card ul li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-top: 1px solid var(--border-light);
}

.compliance-overview-card ul li:first-child {
    border-top: none;
}

.compliance-overview-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 600;
}

/* Data Sovereignty Section */
.data-sovereignty {
    padding: 5rem 0;
    background: var(--bg-light);
}

.data-sovereignty-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
}

.data-sovereignty-text h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.data-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.data-option {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.data-option:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.data-option h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.data-option p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.data-option-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.data-sovereignty-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-badge {
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    box-shadow: 0 8px 32px rgba(0, 150, 94, 0.15);
}

.server-badge span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.server-badge strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Enterprise Security Section */
.enterprise-security-section {
    padding: 5rem 0;
    background: white;
}

.enterprise-security-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.enterprise-security-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.enterprise-security-card:hover {
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.enterprise-security-card svg {
    color: var(--primary-green);
}

.enterprise-security-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.enterprise-security-card p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Documentation Section */
.documentation-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.documentation-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.documentation-text h2 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
}

.documentation-text > p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.documentation-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.documentation-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.documentation-list li::before {
    content: "📄";
    position: absolute;
    left: 0;
    font-size: 0.875rem;
}

.documentation-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin: 0;
}

.documentation-cta {
    flex-shrink: 0;
}

/* Security Contact Section */
.security-contact {
    padding: 4rem 0;
    background: var(--bg-light);
}

.security-contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.security-contact-content h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.security-contact-content > p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.security-contact-info {
    display: flex;
    justify-content: center;
}

.security-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1.125rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 2px solid var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.security-contact-link:hover {
    background: var(--primary-green);
    color: white;
}

.security-contact-link svg {
    flex-shrink: 0;
}

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

    .data-sovereignty-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .data-sovereignty-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .security-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .security-hero-icon {
        width: 80px;
        height: 80px;
    }

    .security-hero-icon svg {
        width: 48px;
        height: 48px;
    }

    .security-hero-text h2 {
        font-size: 1.5rem;
    }

    .compliance-overview-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-security-grid {
        grid-template-columns: 1fr;
    }

    .documentation-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .documentation-list {
        text-align: left;
    }
}

/* ===========================================
   CONTACT PAGE STYLES
   =========================================== */

/* Demo Benefits Bar */
.demo-benefits {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
}

.demo-benefits-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.demo-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
}

.demo-benefit svg {
    color: var(--primary-green);
}

.demo-benefit span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(0, 150, 94, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

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

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.checkbox-label a {
    color: var(--primary-green);
    text-decoration: underline;
}

.primary-button.full-width {
    width: 100%;
    justify-content: center;
}

.form-notice {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-trust-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    border: 1px solid rgba(0, 150, 94, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.contact-trust-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-green);
    font-weight: 600;
}

.contact-trust-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.contact-expect-box {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
}

.contact-expect-box h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-expect-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-expect-box ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-expect-box ul li svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.contact-quote-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    padding: 1.5rem;
}

.contact-quote-box blockquote {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-style: italic;
}

.contact-quote-author {
    display: flex;
    flex-direction: column;
}

.contact-quote-author strong {
    color: white;
    font-size: 0.9rem;
}

.contact-quote-author span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Alternative Contact Section */
.alternative-contact-section {
    padding: 4rem 0;
    background: white;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.contact-method-card svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.contact-method-info {
    display: flex;
    flex-direction: column;
}

.contact-method-info strong {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-method-info span {
    font-size: 0.95rem;
    color: var(--primary-green);
    font-weight: 500;
}

.contact-method-info small {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Contact FAQ */
.contact-faq {
    padding: 4rem 0;
    background: var(--bg-light);
}

.faq-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-compact-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
}

.faq-compact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.faq-compact-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .demo-benefits-grid {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .contact-form-wrapper {
        padding: 0;
    }

    .contact-form {
        padding: 1rem;
        border-radius: 16px;
    }

    .contact-form h2 {
        font-size: 1.25rem;
    }

    .form-intro {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.8125rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .checkbox-group {
        margin-bottom: 1.25rem;
    }

    .checkbox-label {
        font-size: 0.8125rem;
        line-height: 1.4;
    }

    .checkbox-label input[type="checkbox"] {
        width: 20px;
        height: 20px;
        margin-top: 0;
        flex-shrink: 0;
    }

    .form-notice {
        font-size: 0.75rem;
    }

    .contact-sidebar {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-trust-box,
    .contact-expect-box {
        padding: 1rem;
    }

    .contact-trust-box p,
    .contact-expect-box li span {
        font-size: 0.8125rem;
    }

    .faq-compact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   LEGAL PAGES (Impressum, Datenschutz)
   =========================================== */

.legal-hero {
    margin-top: 70px;
    padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.legal-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.legal-content {
    padding: var(--spacing-xl) 0;
    background: white;
}

.legal-wrapper {
    max-width: 800px;
}

.legal-section {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: var(--spacing-md);
    margin-bottom: 0.5rem;
}

.legal-section h3:first-of-type {
    margin-top: 0;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

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

.legal-section a {
    color: var(--primary-green);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section ul,
.legal-section ol {
    color: var(--text-light);
    line-height: 1.8;
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-md);
}

.legal-section li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-section h2 {
        font-size: 1.125rem;
    }
}

/* ===========================================
   PHONE POPUP
   =========================================== */

.phone-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.phone-popup-overlay.active {
    display: flex;
}

.phone-popup {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    max-width: 360px;
    width: 90%;
    position: relative;
    animation: popupIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes popupIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.phone-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.phone-popup-close:hover {
    color: var(--text-dark);
}

.phone-popup-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.phone-popup h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.phone-popup-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s ease;
}

.phone-popup-number:hover {
    color: var(--primary-green-dark);
}

.phone-popup-hours {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===========================================
   ENHANCED MOBILE RESPONSIVE STYLES
   =========================================== */

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    /* Navigation - slightly smaller logo */
    .logo-img {
        height: 30px;
    }

    /* Container padding for small screens */
    .container {
        padding: 0 var(--spacing-sm);
    }

    /* Smaller hero text */
    .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .lead {
        font-size: 1rem;
    }

    /* Section headers */
    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* Stats grid - single column on very small screens */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Chat container - full width minus padding */
    .chat-container {
        width: calc(100% - 2rem);
        max-width: 350px;
        height: 450px;
        margin: 0 auto;
    }

    /* Pricing cards */
    .pricing-card {
        padding: var(--spacing-md);
    }

    .price-amount {
        font-size: 2rem;
    }

    .pricing-header h3 {
        font-size: 1.25rem;
    }

    /* Form improvements */
    /* Contact form - extra small */
    .contact-form-section {
        padding: 2rem 0;
    }

    .contact-form-wrapper {
        padding: 0;
    }

    .contact-form {
        padding: 0.875rem;
        border-radius: 12px;
    }

    .contact-form h2 {
        font-size: 1.125rem;
        margin-bottom: 0.25rem;
    }

    .form-intro {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
    }

    .form-group {
        margin-bottom: 0.875rem;
    }

    .form-group label {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.625rem 0.75rem;
        border-radius: 6px;
    }

    .form-group textarea {
        min-height: 80px;
    }

    .checkbox-label {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .primary-button.large.full-width {
        padding: 0.875rem;
        font-size: 0.9rem;
    }

    .form-notice {
        font-size: 0.6875rem;
        margin-top: 0.75rem;
    }

    .contact-sidebar {
        gap: 0.75rem;
    }

    .contact-trust-box,
    .contact-expect-box {
        padding: 0.875rem;
        border-radius: 10px;
    }

    .contact-trust-header {
        font-size: 0.8125rem;
    }

    .contact-expect-box h3 {
        font-size: 0.9rem;
    }

    .contact-expect-box li {
        font-size: 0.8125rem;
    }

    /* FAQ items */
    .faq-item {
        padding: var(--spacing-md);
    }

    .faq-item h3 {
        font-size: 1rem;
    }

    /* Speed badge smaller */
    .speed-badge {
        width: 140px;
        height: 140px;
    }

    .speed-number {
        font-size: 2.5rem;
    }

    .speed-unit {
        font-size: 1rem;
    }

    .speed-text {
        font-size: 0.625rem;
        white-space: nowrap;
    }

    /* Integration cards */
    .integration-card {
        padding: var(--spacing-md);
    }

    .integration-icon {
        width: 60px;
        height: 60px;
    }

    /* Compliance badges */
    .compliance-badge {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }

    .compliance-badge .compliance-icon {
        width: 40px;
        height: 40px;
    }

    /* Step cards */
    .step-card {
        padding: var(--spacing-md);
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    /* Legal pages */
    .legal-hero h1 {
        font-size: 1.5rem;
    }

    /* Feature cards */
    .feature-card-detailed {
        padding: var(--spacing-md);
    }

    /* Problem cards */
    .problem-card {
        padding: var(--spacing-md);
    }

    /* Hero buttons - ensure full width */
    .hero-buttons .primary-button,
    .hero-buttons .secondary-button {
        padding: 0 16px;
        height: 44px;
        font-size: 0.875rem;
    }

    /* Trust badges - wrap better */
    .trust-badges {
        gap: 0.375rem;
    }

    .badge {
        font-size: 0.6875rem;
        padding: 3px 8px;
    }

    /* Mobile menu improvements */
    .mobile-menu {
        width: 85%;
        max-width: 320px;
    }

    /* Page hero */
    .page-hero-content h1 {
        font-size: 1.75rem;
    }

    .page-hero-content .lead {
        font-size: 0.9rem;
    }

    /* Pricing toggle */
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }

    .toggle-label {
        font-size: 0.875rem;
    }

    /* Setup grid */
    .setup-grid {
        grid-template-columns: 1fr;
    }
}

/* Touch-friendly tap targets */
@media (pointer: coarse) {
    /* Ensure minimum 44px touch targets */
    .nav-links a,
    .footer-links a,
    .mobile-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Larger checkboxes for touch */
    .checkbox-label input[type="checkbox"] {
        width: 22px;
        height: 22px;
    }

    /* Better spacing for form elements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Carousel buttons larger for touch */
    .carousel-btn {
        width: 48px;
        height: 48px;
    }

    /* FAQ items more tappable */
    .faq-item {
        cursor: pointer;
    }
}

/* Extra small screens (360px) - Samsung Galaxy S8+ etc. */
@media (max-width: 360px) {
    /* Logo for tiny screens */
    .logo-img {
        height: 28px;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

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

    .chat-container {
        height: 400px;
    }

    .pricing-hero-content h1 {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    /* Even smaller buttons */
    .primary-button, .secondary-button, .cta-button {
        height: 44px;
        padding: 0 16px;
        font-size: 0.875rem;
    }
}
