/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-brand h1 span {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #4f46e5;
}

.nav-brand h1 span span {
    font-weight: 400;
    color: #1f2937 !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 25px;
    padding: 4px;
    gap: 2px;
}

.lang-btn {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #667eea;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.lang-btn:hover {
    background: rgba(102, 126, 234, 0.1);
}

.lang-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.lang-btn i {
    font-size: 0.8rem;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700 !important;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.2rem;
}

/* Hero Section */
.hero, .hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #06d6a0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-height: 4.2rem;
    position: relative;
}

.hero-text h2:empty::before {
    content: "\00A0";
    visibility: hidden;
}

/* Typewriter Effect */
#typewriter-text::after {
    content: '|';
    color: #667eea;
    font-weight: 400;
    animation: blink 1s infinite;
    margin-left: 2px;
}

#typewriter-text.typing-complete::after {
    display: none;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.primary-btn, .secondary-btn, .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.hero-section .primary-btn, .hero-section .btn-primary {
    background: white;
    color: #333;
    border: 2px solid white;
}

.hero-section .primary-btn:hover, .hero-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
}

.hero-section .secondary-btn, .hero-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

/* Default button styles for other sections */
.primary-btn, .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.primary-btn:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.secondary-btn, .btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.secondary-btn:hover, .btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* New Hero Styles */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero-title .highlight {
    color: white;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    text-decoration-color: #06d6a0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Compliance Dashboard */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.compliance-dashboard, .dashboard-mockup {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

/* New Dashboard Mockup Styles */
.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.mockup-header h4 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.compliance-widget h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.widget-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.widget-stat {
    text-align: center;
}

.widget-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.widget-stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: width 2s ease-out;
}

.status-indicators {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.status-badge.success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.info {
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.status-badge.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.dashboard-header {
    text-align: center;
    margin-bottom: 2rem;
}

.dashboard-header h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: #666;
    font-size: 0.9rem;
}

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

.kpi-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid;
}

.kpi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.kpi-card.primary {
    border-left-color: #667eea;
}

.kpi-card.success {
    border-left-color: #10b981;
}

.kpi-card.info {
    border-left-color: #06b6d4;
}

.kpi-card.warning {
    border-left-color: #f59e0b;
}

.kpi-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.kpi-card.primary .kpi-icon {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.kpi-card.success .kpi-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.kpi-card.info .kpi-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.kpi-card.warning .kpi-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.kpi-content {
    flex: 1;
}

.kpi-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    line-height: 1;
}

.kpi-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.2rem;
}

.kpi-sublabel {
    font-size: 0.8rem;
    color: #999;
}

.compliance-metrics {
    display: flex;
    justify-content: space-around;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.metric-item i {
    color: #667eea;
    font-size: 1.2rem;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}

.metric-label {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    line-height: 1.2;
}

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

/* Compliance Flow Section */
.compliance-flow-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.compliance-flow-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.flow-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.compliance-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.flow-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.input-step {
    max-width: 250px;
}

.mapping-step {
    max-width: 300px;
    position: relative;
}

.output-step {
    max-width: 350px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: transform 0.3s ease;
}

.step-icon:hover {
    transform: translateY(-5px);
}

.ai-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: pulse-ai 2s infinite;
}

@keyframes pulse-ai {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
        transform: scale(1.05);
    }
}

.step-content h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.flow-arrow {
    color: #667eea;
    font-size: 2rem;
    margin: 0 2rem;
    animation: float-arrow 3s ease-in-out infinite;
}

@keyframes float-arrow {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

.standards-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.rotating-standard {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
}

.standard-pill {
    background: white;
    border-radius: 30px;
    padding: 1rem 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid rgba(0, 0, 0, 0.06);
    height: 56px;
    white-space: nowrap;
    min-width: 160px;
    transform: scale(1);
    opacity: 1;
}

.standard-pill.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.standard-pill.fade-in {
    opacity: 1;
    transform: scale(1);
}

.standard-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Harmonische Pill Colors - reduzierte Farbpalette */
.standard-pill.primary,
.standard-pill.info,
.standard-pill.purple {
    color: #667eea;
    background: rgba(102, 126, 234, 0.06);
    border-color: rgba(102, 126, 234, 0.15);
}

.standard-pill.primary:hover,
.standard-pill.info:hover,
.standard-pill.purple:hover {
    background: rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.25);
}

.standard-pill.success,
.standard-pill.teal {
    color: #10b981;
    background: rgba(16, 185, 129, 0.06);
    border-color: rgba(16, 185, 129, 0.15);
}

.standard-pill.success:hover,
.standard-pill.teal:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.25);
}

.standard-pill.warning,
.standard-pill.accent {
    color: #f59e0b;
    background: rgba(245, 158, 11, 0.06);
    border-color: rgba(245, 158, 11, 0.15);
}

.standard-pill.warning:hover,
.standard-pill.accent:hover {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.25);
}

.standard-pill.secondary {
    color: #6b7280;
    background: rgba(107, 114, 128, 0.06);
    border-color: rgba(107, 114, 128, 0.15);
}

.standard-pill.secondary:hover {
    background: rgba(107, 114, 128, 0.12);
    border-color: rgba(107, 114, 128, 0.25);
}

.standard-pill.more-standards {
    color: #667eea;
    background: rgba(102, 126, 234, 0.04);
    border: 1px dashed rgba(102, 126, 234, 0.3);
}

.standard-pill.more-standards:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.4);
}

.pill-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.expand-icon {
    font-size: 0.8rem;
    color: currentColor;
    font-weight: 600;
}



.compliance-indicator {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: white;
    font-weight: 700;
    opacity: 0;
    transform: scale(0);
    transition: all 0.5s ease;
}

.standard-badge.active .compliance-indicator {
    opacity: 1;
    transform: scale(1);
}





/* Features Section */
.features {
    padding: 5rem 0;
    background: white;
}

.features h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Typewriter Section */
.typewriter-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 60vh;
}

.typewriter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.typewriter-stage {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typewriter-text {
    font-size: 4rem;
    font-weight: 800;
    color: #667eea;
    letter-spacing: -0.02em;
    text-align: center;
    min-height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.intro-text {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-text h3 {
    font-size: 2rem;
    color: #333;
    font-weight: 600;
}

.typewriter-text.byght-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.typewriter-text.byght-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    opacity: 0;
    animation: underlineAppear 0.5s ease-out 0.2s forwards;
}

@keyframes underlineAppear {
    from {
        opacity: 0;
        width: 0%;
    }
    to {
        opacity: 1;
        width: 80%;
    }
}

#typed-text {
    display: inline-block;
}

.cursor {
    display: inline-block;
    color: #667eea;
    font-weight: 400;
    animation: blink 1s infinite;
    margin-left: 2px;
}

.cursor.hidden {
    opacity: 0;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.explanation-text {
    text-align: center;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.explanation-text.show {
    opacity: 1;
    transform: translateY(0);
}



.explanation-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.explanation-text strong {
    color: #667eea;
    font-weight: 700;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact > p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Legal Pages */
.legal-page {
    padding-top: 120px;
    padding-bottom: 3rem;
    background: white;
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.legal-text p {
    margin-bottom: 1.5rem;
}

.legal-text h2 {
    font-size: 1.8rem;
    color: #333;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.legal-text h3 {
    font-size: 1.4rem;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h4 {
    font-size: 1.2rem;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-text ul, .legal-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-text section {
    margin-bottom: 3rem;
}

/* Contact Info Box */
.contact-info {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.contact-info h3 {
    color: #333;
    margin-top: 0 !important;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #333;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
}

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

/* Legal Highlight Box */
.legal-highlight {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.legal-highlight p {
    margin-bottom: 0;
    font-weight: 500;
    color: #856404;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand h4 span {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    color: #4f46e5;
}

.footer-brand h4 span span {
    font-weight: 400;
    color: #ffffff !important;
}

.footer-brand p {
    color: #ccc;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-legal-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-legal-links a:hover {
    color: #667eea;
}

.footer-section h5 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #667eea;
}

/* Tablet Layout */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Compliance Flow Responsive */
@media (max-width: 1024px) {
    .compliance-flow {
        flex-direction: column;
        gap: 3rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    

    
    .rotating-standard {
        min-height: 60px;
    }
    
    .standard-pill {
        padding: 0.8rem 1.5rem;
        height: 48px;
    }
    
    .pill-text {
        font-size: 1rem;
    }
    

}

@media (max-width: 640px) {
    .compliance-flow-section {
        padding: 3rem 0;
    }
    
    .compliance-flow-section h3 {
        font-size: 2rem;
    }
    
    .flow-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .rotating-standard {
        min-height: 50px;
    }
    
    .standard-pill {
        padding: 0.6rem 1.2rem;
        height: 40px;
    }
    
    .pill-text {
        font-size: 0.9rem;
    }
    

}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }
    
    .nav-links.mobile-active {
        display: flex;
    }
    
    .language-switcher {
        order: -1;
        margin-bottom: 1rem;
    }
    
    /* Hero Section Mobile Fixes */
    .hero-section {
        padding-top: 100px;
        padding-bottom: 2rem;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Hero Title Mobile Responsive */
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        margin-top: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        padding: 0.8rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Compliance Dashboard Mobile Responsive */
    .compliance-dashboard {
        padding: 1.2rem;
        margin: 0 0.5rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .dashboard-header h4 {
        font-size: 1.2rem;
    }
    
    .dashboard-header p {
        font-size: 0.8rem;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .kpi-card {
        padding: 1rem;
        flex-direction: row;
        align-items: center;
    }
    
    .kpi-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .kpi-value {
        font-size: 1.5rem;
    }
    
    .kpi-label {
        font-size: 0.8rem;
    }
    
    .kpi-sublabel {
        font-size: 0.7rem;
    }
    
    .compliance-metrics {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        padding-top: 1rem;
    }
    
    .metric-item {
        flex-direction: row;
        gap: 0.8rem;
        align-items: center;
        width: 100%;
        justify-content: center;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
        text-align: left;
    }
    
    /* Reduce particles on mobile for performance */
    .particle-canvas {
        opacity: 0.3;
    }
    
    .typewriter-section {
        padding: 3rem 0;
        min-height: 50vh;
    }
    
    .typewriter-container {
        min-height: 350px;
    }
    
    .typewriter-stage {
        height: 150px;
        margin-bottom: 3rem;
    }
    
    .typewriter-text {
        font-size: 2.5rem;
    }
    
    .intro-text {
        margin-bottom: 2rem;
    }
    
    .intro-text h3 {
        font-size: 1.8rem;
    }
    
    .explanation-text {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .explanation-text p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .legal-content {
        padding: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Navigation adjustments for small screens */
    .nav {
        padding: 0.8rem 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* Hero Section for very small screens */
    .hero-section {
        padding-top: 90px;
        padding-bottom: 1.5rem;
    }
    
    .hero-content {
        gap: 1.5rem;
        padding: 0 0.8rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-cta {
        gap: 0.6rem;
        margin-top: 1.2rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Compliance Dashboard for iPhone */
    .compliance-dashboard {
        padding: 1rem;
        margin: 0 0.3rem;
        border-radius: 15px;
    }
    
    .dashboard-header h4 {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }
    
    .dashboard-header p {
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
    }
    
    .kpi-card {
        padding: 0.8rem;
        border-radius: 12px;
    }
    
    .kpi-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .kpi-value {
        font-size: 1.3rem;
    }
    
    .kpi-label {
        font-size: 0.75rem;
    }
    
    .kpi-sublabel {
        font-size: 0.65rem;
    }
    
    .compliance-metrics {
        gap: 0.6rem;
        padding-top: 0.8rem;
    }
    
    .metric-item {
        gap: 0.6rem;
    }
    
    .metric-item i {
        font-size: 1rem;
    }
    
    .metric-value {
        font-size: 0.9rem;
    }
    
    .metric-label {
        font-size: 0.6rem;
    }
    
    /* Typewriter Mobile Optimization */
    .typewriter-section {
        padding: 2rem 0;
        min-height: 50vh;
    }
    
    .typewriter-container {
        min-height: 300px;
    }
    
    .typewriter-stage {
        height: 120px;
        margin-bottom: 2rem;
    }
    
    .typewriter-text {
        font-size: 1.8rem;
    }
    
    .intro-text {
        margin-bottom: 1.5rem;
    }
    
    .intro-text h3 {
        font-size: 1.4rem;
    }
    
    .explanation-text p {
        font-size: 0.95rem;
    }
}

/* Extra small screens (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.1;
    }
    
    .compliance-dashboard {
        margin: 0 0.2rem;
        padding: 0.8rem;
    }
    
    .kpi-grid {
        gap: 0.6rem;
    }
    
    .kpi-card {
        padding: 0.6rem;
    }
    
    .kpi-value {
        font-size: 1.2rem;
    }
    
    .dashboard-header h4 {
        font-size: 1rem;
    }
    
    .dashboard-header p {
        font-size: 0.7rem;
    }
}

/* Prevent horizontal overflow on all mobile devices */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .hero-section,
    .compliance-dashboard,
    .hero-content,
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* AI Highlight Styling */
.ai-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
}

.ai-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
} 