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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4 {
    color: #111827;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, #2563EB 0%, #84CC16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary {
    background: #2563EB;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-ai-action {
    background: #84CC16;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(132, 204, 22, 0.3);
}

.btn-ai-action:hover {
    background: #65a30d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(132, 204, 22, 0.4);
}

.btn-secondary {
    background: white;
    color: #2563EB;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #F3F4F6;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #F3F4F6;
    border-color: #2563EB;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #2563EB 0%, #84CC16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563EB;
}

.nav-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #4f46e5;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F3F4F6 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563EB' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 20px;
    color: #374151;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
}

.play-icon {
    font-size: 12px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2563EB;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

/* Hero Benefits */
.hero-benefits {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 32px;
    border: 1px solid #f3f4f6;
}

.benefits-header {
    text-align: center;
    margin-bottom: 28px;
}

.benefits-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.benefits-header p {
    color: #6b7280;
    font-size: 16px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563EB;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.benefit-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    background: #2563EB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    line-height: 1.4;
}

.integration-note {
    background: linear-gradient(135deg, #2563EB 0%, #84CC16 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.integration-note p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.integration-note strong {
    font-weight: 600;
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.dashboard-header {
    background: #f8fafc;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
}

.dashboard-nav {
    display: flex;
    gap: 24px;
}

.nav-item {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active {
    background: #2563EB;
    color: white;
}

.dashboard-content {
    padding: 24px;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: #F3F4F6;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #F3F4F6;
}

.stat-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

.trend {
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.trend.positive {
    background: #dcfce7;
    color: #16a34a;
}

.processing-demo {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
}

.document-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flow-item {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 80px;
    text-align: center;
}

.flow-arrow {
    color: #4f46e5;
    font-weight: bold;
    font-size: 18px;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid #e2e8f0;
}

.trust-text {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 18px;
    font-weight: 600;
    color: #94a3b8;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Company Story Section */
.company-story {
    padding: 120px 0;
    background: linear-gradient(135deg, #F3F4F6 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.company-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563EB' fill-opacity='0.02'%3E%3Cpath d='M20 20c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

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

.story-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.story-intro {
    font-size: 20px;
    color: #374151;
    margin-bottom: 48px;
    line-height: 1.6;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #2563EB 0%, #84CC16 100%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-year {
    background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    min-width: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #2563EB;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.timeline-content p {
    color: #374151;
    line-height: 1.6;
}

.evolution-showcase {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.evolution-showcase h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #2563EB 0%, #84CC16 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.imagine-items {
    margin-bottom: 32px;
}

.imagine-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: #F3F4F6;
    border-radius: 12px;
    border-left: 4px solid #2563EB;
}

.imagine-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.imagine-item p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.commitment-box {
    background: linear-gradient(135deg, #2563EB 0%, #1d4ed8 100%);
    color: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.commitment-box p {
    margin: 0;
    line-height: 1.6;
}

.commitment-box strong {
    font-weight: 600;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #374151;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: white;
}

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

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563EB;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: block;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-card p {
    color: #374151;
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-tag {
    background: #F3F4F6;
    color: #2563EB;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Solutions Section */
.solutions {
    padding: 120px 0;
    background: #F3F4F6;
}

.solutions-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.tab-button {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #374151;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background: #2563EB;
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.tab-content {
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

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

.solution-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.solution-text p {
    font-size: 18px;
    color: #374151;
    margin-bottom: 32px;
    line-height: 1.6;
}

.solution-benefits {
    list-style: none;
    margin-bottom: 32px;
}

.solution-benefits li {
    padding: 8px 0;
    font-weight: 500;
}

.solution-visual {
    position: relative;
}

/* Solution Demos */
.legal-demo, .healthcare-demo, .finance-demo, .manufacturing-demo {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.contract-preview, .medical-record, .invoice-processing, .quality-control {
    background: white;
    border-radius: 8px;
    padding: 20px;
}

.contract-preview h4, .medical-record h4, .invoice-processing h4, .quality-control h4 {
    margin-bottom: 16px;
    color: #1e293b;
}

.analysis-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.analysis-label {
    font-weight: 500;
    color: #64748b;
}

.risk-low {
    color: #16a34a;
    font-weight: 600;
}

.terms {
    color: #4f46e5;
    font-weight: 500;
}

.compliance-good {
    color: #16a34a;
    font-weight: 600;
}

.record-status, .processing-stats, .qc-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-item, .stat, .metric {
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

/* (Removed benefits & ROI calculator styles as section was deleted) */

.savings-breakdown span {
    font-size: 14px;
    opacity: 0.9;
}

/* Customer Stories */
.customers {
    padding: 120px 0;
    background: #F3F4F6;
}

.customer-stories {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.story-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

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

.story-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.quote {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    color: #374151;
    position: relative;
    flex-grow: 1;
    margin-top: 0;
    padding-left: 12px;
    padding-right: 8px;
    word-spacing: normal;
    text-align: left;
}

.quote::before {
    content: '"';
    font-size: 28px;
    color: #2563EB;
    font-weight: bold;
    position: absolute;
    left: -4px;
    top: -8px;
    line-height: 1;
}

.quote::after {
    content: '"';
    font-size: 28px;
    color: #2563EB;
    font-weight: bold;
    display: inline;
    vertical-align: top;
    margin-left: 2px;
    line-height: 0.8;
}

.customer-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: auto;
    padding-top: 0;
    padding-left: 8px;
    width: 100%;
}

.customer-avatar {
    flex-shrink: 0;
    width: 56px;
    margin-right: 0;
    margin-left: 0;
}

.customer-avatar img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    margin: 0;
}

.customer-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 56px;
}

.customer-details h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #111827;
    line-height: 1.3;
}

.customer-details p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.4;
}

.story-metrics {
    display: flex;
    gap: 24px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.metric-label {
    font-size: 12px;
    opacity: 0.8;
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: white;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.toggle-label {
    font-weight: 500;
    color: #374151;
}

.discount {
    background: #84CC16;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    margin-left: 8px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #2563EB;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.pricing-card {
    background: white;
    border: 2px solid #F3F4F6;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.popular {
    border-color: #2563EB;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563EB;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 32px;
}

.plan-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.plan-header p {
    color: #374151;
    margin-bottom: 24px;
}

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

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

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #2563EB;
}

.contact-price {
    font-size: 32px;
    font-weight: 700;
    color: #2563EB;
    display: block;
    margin-bottom: 8px;
}

.period {
    font-size: 16px;
    color: #374151;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    padding: 12px 0;
    font-weight: 500;
    border-bottom: 1px solid #F3F4F6;
}

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

.pricing-faq {
    margin-top: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-faq h3 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

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

.faq-item h4 {
    margin-bottom: 12px;
    color: #111827;
}

.faq-item p {
    color: #374151;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-feature {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 40px;
    margin-bottom: 40px;
}

.badges-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.custom-badge, .uk-badge {
    display: flex;
    align-items: flex-start;
}

.custom-badge svg, .uk-badge svg {
    border-radius: 7px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 16px;
    font-size: 24px;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 24px;
}

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

.social-links a {
    display: inline-block;
    padding: 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
    text-decoration: none;
    font-size: 20px;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px; /* reduced since line removed */
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.gdpr-badge {
    display: flex;
    align-items: center;
}

.gdpr-badge img {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.gdpr-badge img:hover {
    opacity: 1;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 24px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-year {
        min-width: 50px;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .timeline-year::after {
        right: -12px;
        width: 8px;
        height: 8px;
    }
    
    .evolution-showcase {
        padding: 24px;
    }
    
    .evolution-showcase h3 {
        font-size: 24px;
    }
    
    .imagine-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .tab-button {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .customer-stories {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .story-card.featured {
        transform: none;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .feature-card,
    .story-card,
    .pricing-card {
        padding: 24px;
    }
    
    .tab-content {
        padding: 32px 24px;
    }
    
    .roi-calculator {
        padding: 24px;
    }
}