﻿:root {
    --bg-color: #f8fafc;
    /* Light Slate */
    --card-bg: rgba(255, 255, 255, 0.85);
    /* White glass */
    --text-primary: #0f172a;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --accent-blue: #2563eb;
    /* Stronger Blue */
    --accent-purple: #7c3aed;
    --accent-teal: #0d9488;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(148, 163, 184, 0.2);
    --nav-height: 80px;
    --radius-lg: 16px;
    --radius-md: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Logo Enhancements */
.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #fb923c 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.logo-icon i {
    color: white;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.logo:hover .logo-icon {
    transform: rotate(15deg);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
    cursor: pointer;
    user-select: none;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Performance Optimizations */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.8);
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--accent-blue);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0 auto;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navigation Actions (Language + CTA) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.lang-switch-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--accent-blue);
    border-radius: 20px;
    color: var(--accent-blue);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85rem;
}

.lang-switch-nav i {
    font-size: 1.1rem;
}

.lang-switch-nav:hover {
    background: var(--accent-blue);
    color: white;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: white;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(59, 130, 246, 0.6);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    background: white;
}

.btn-outline:hover {
    background: #f1f5f9;
    border-color: var(--accent-blue);
}

.btn-light {
    background: white;
    color: #2563eb;
    font-weight: 600;
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.trust-badge {
    display: flex;
    gap: 24px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-badge i {
    color: var(--accent-teal);
    margin-right: 6px;
}

/* Hero Visual & Glassmorphism Dashboard */
.hero-visual {
    flex: 1;
    position: relative;
}

.dashboard-preview {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 10;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
    background: white;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.window-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ef4444;
}

.yellow {
    background: #f59e0b;
}

.green {
    background: #22c55e;
}

.chart-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    flex: 1;
    background: #f1f5f9;
    padding: 16px;
    border-radius: var(--radius-md);
}

.stat-card h4 {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.stat-card .number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.trend {
    font-size: 0.8rem;
}

.trend.up {
    color: var(--accent-teal);
}

.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f1f5f9;
    padding: 24px;
    border-radius: var(--radius-md);
}

.flow-node {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--accent-blue);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    color: var(--text-primary);
}

.flow-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    margin: 0 10px;
    position: relative;
}

.flow-line::after {
    content: '>';
    position: absolute;
    right: -5px;
    top: -8px;
    color: var(--accent-blue);
    font-size: 12px;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* About Section - Image LEFT, Content RIGHT */
.about-section {
    padding: 100px 0;
}

.about-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 60px !important;
    padding: 60px;
}

/* About Section with Avatar */
.founder-avatar {
    width: 300px !important;
    height: 300px !important;
    object-fit: cover;
    border-radius: 50% !important;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    border: 5px solid white;
}

.founder-avatar:hover {
    transform: scale(1.05);
}

.about-image {
    flex: 0 0 320px !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

.about-content {
    flex: 1 !important;
}

.badge-sm {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.about-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-style: italic;
    border-left: 4px solid var(--accent-blue);
    padding-left: 20px;
    background: #f1f5f9;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

.experience-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.exp-item {
    background: #f1f5f9;
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 100px;
}

.exp-item h3 {
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin-bottom: 4px;
}

.exp-item p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.check-list li i {
    color: var(--accent-green, #22c55e);
    /* Fallback or define accent-green */
    margin-top: 4px;
}

.check-list li strong {
    color: var(--text-primary);
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Custom Badge for Solutions Section */
.custom-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid #fbbf24;
    border-radius: 50px;
    font-size: 1rem;
    color: #78350f;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.custom-badge i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.custom-badge strong {
    color: #92400e;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

/* Solutions Grid Update */
.cards-grid.solutions-grid-6 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.glass-card {
    background: white;
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    min-height: 380px;
    /* Unified minimum height */
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.glass-card h3 {
    font-size: 1.35rem;
    /* Slightly smaller for 6-grid */
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    background: #eff6ff;
}

.blue-glow {
    color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.purple-glow {
    color: var(--accent-purple);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.teal-glow {
    color: var(--accent-teal);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.2);
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.glass-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--accent-teal);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.05) 10px, rgba(255, 255, 255, 0.05) 20px);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.cta-actions {
    position: relative;
    z-index: 1;
}

/* Why Us (Comparison) Section */
.why-section {
    padding: 80px 0;
}

.comparison-box {
    display: flex;
    align-items: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: white;
}

.comp-col {
    flex: 1;
    padding: 60px;
    text-align: left;
}

.comp-col h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.comp-col ul {
    list-style: none;
}

.comp-col ul li {
    margin-bottom: 16px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.traditional {
    background: #f8fafc;
    color: var(--text-secondary);
}

.traditional li i {
    color: #ef4444;
}

.us {
    background: white;
    color: var(--text-primary);
}

.us li i {
    color: #22c55e;
    font-size: 1.2rem;
}

.comp-vs {
    background: var(--accent-blue);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.2);
}

.comparison-box {
    position: relative;
    box-shadow: var(--shadow-lg);
}

/* Workflow Section */
.workflow-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    margin-top: 30px;
    opacity: 0.5;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 40px;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-lg);
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 8px;
    background: none;
    -webkit-text-fill-color: initial;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: #e2e8f0;
}

/* Pricing Section (New Menu Style) */
.pricing-section {
    padding: 100px 0;
}

.pricing-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.menu-item {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue);
}

.menu-header {
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.module-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 700;
}

.menu-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.menu-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f1f5f9;
}

.menu-price .period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.menu-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.menu-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.menu-features li i {
    color: #22c55e;
    margin-top: 3px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    background: #eff6ff;
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.pricing-note i {
    color: var(--accent-blue);
    margin-right: 8px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: flex;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.contact-info {
    flex: 2;
    padding: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.detail-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
}

.social-links {
    margin-top: 60px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    background: white;
    color: var(--accent-blue);
    transition: 0.2s;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-links a i {
    font-size: 1.3rem;
}

.social-links a:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-label {
    font-weight: 600;
    white-space: nowrap;
}

.contact-form-box {
    flex: 3;
    padding: 60px;
    background: var(--card-bg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    color: var(--text-primary);
    font-family: inherit;
    transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: white;
}

/* Multi-select dropdown */
.form-select-multiple {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    padding: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: 0.2s;
}

.form-select-multiple option {
    padding: 10px;
    border-radius: 4px;
    margin: 2px 0;
}

.form-select-multiple option:hover {
    background: #e0f2fe;
}

.form-select-multiple option:checked {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    font-weight: 600;
}

/* Form hints and optional labels */
.optional {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.form-hint {
    display: block;
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-style: italic;
}

/* Footer */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 24px;
    background: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1.5;
    min-width: 280px;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--accent-blue);
}

.footer-brand p {
    color: var(--text-secondary);
}

/* Mission Statement */
.mission-statement {
    line-height: 2;
    color: var(--text-secondary);
    font-size: 1rem;
}

.mission-statement strong {
    color: var(--accent-blue);
    font-size: 1.05rem;
}

.mission-statement .highlight {
    display: block;
    margin-top: 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-style: italic;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

/* Language Switcher */
.footer-lang {
    display: flex;
    align-items: flex-start;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border: 2px solid var(--accent-blue);
    border-radius: 25px;
    color: var(--accent-blue);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-switch i {
    font-size: 1.2rem;
}

.lang-switch:hover {
    background: var(--accent-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc, white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-blue);
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
}

.process-step h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.process-arrow {
    color: var(--text-secondary);
    font-size: 1.2rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: var(--card-bg);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--glass-border);
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .menu-toggle {
        display: block;
        font-size: 1.5rem;
        color: var(--text-primary);
        cursor: pointer;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-badge {
        justify-content: center;
    }

    .dashboard-preview {
        transform: none;
        margin-top: 40px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 32px;
        padding: 40px;
    }

    .nav-container {
        padding: 0 24px;
    }

    /* New Section Responsive */
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        display: none;
    }

    .step-item {
        padding: 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 32px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info,
    .contact-form-box {
        padding: 40px 24px;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }

    .about-content .lead {
        border-left: none;
        border-top: 4px solid var(--accent-blue);
        padding-left: 0;
        padding-top: 20px;
    }

    .check-list li {
        justify-content: center;
        text-align: left;
    }

    .experience-grid {
        justify-content: center;
    }
}

.menu-toggle {
    display: none;
}.text-sme-highlight { color: #2563eb; font-weight: 800; }

.text-sme-highlight { color: #2563eb; font-weight: 800; }

.text-sme-highlight { color: #2563eb; font-weight: 800; }



