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

:root {
    --primary-color: #38bdf8;
    --primary-dark: #0ea5e9;
    --secondary-color: #60a5fa;
    --accent-color: #06b6d4;
    --background-dark: #0f172a;
    --background-medium: #1e293b;
    --background-light: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --border-color: rgba(148, 163, 184, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

body {
    font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: 
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, var(--background-dark) 0%, var(--background-medium) 50%, var(--background-light) 100%);
    color: var(--text-secondary);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

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

/* Header */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.03;
    z-index: -1;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    position: relative;
    gap: 2rem;
    min-height: 80px;
}

.header-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 0;
}

.header-cta .header-btn {
    min-width: 125px;
    padding: 0.55rem 1.1rem;
    font-size: 0.9rem;
}

.rtl .header-cta {
    justify-content: flex-start;
}

.nav-locale {
    display: flex;
    align-items: center;
}

.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;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.logo-img {
    height: clamp(60px, 10vw, 100px);
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(56, 189, 248, 0.3));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    image-rendering: smooth;
    -ms-interpolation-mode: bicubic;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(56, 189, 248, 0.5));
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.5rem;
    margin-left: auto;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-auth .btn {
    font-size: 0.9rem;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.5rem;
    min-width: 100px;
    text-align: center;
}

.nav-auth .btn-secondary {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.3);
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
}

.nav-auth .btn-secondary:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}

.nav-auth .btn-primary {
    background: var(--gradient-primary);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: var(--background-dark);
    box-shadow: 0 2px 8px rgba(56, 189, 248, 0.2);
}

.nav-auth .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.3);
    border-color: rgba(56, 189, 248, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.75rem 1rem;
    display: block;
    border-radius: 0.5rem;
    background: transparent;
    white-space: nowrap;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 0.5rem;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    width: 60%;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 48px;
    height: 48px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(56, 189, 248, 0.2);
}

.nav-toggle:active {
    transform: scale(0.95);
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav.is-open .nav-toggle-bar:nth-child(2) {
    transform: translateY(6px) rotate(45deg);
}

.nav.is-open .nav-toggle-bar:nth-child(3) {
    opacity: 0;
    transform: scaleX(0);
}

.nav.is-open .nav-toggle-bar:nth-child(4) {
    transform: translateY(-6px) rotate(-45deg);
}

.language-switcher {
    position: relative;
    display: inline-block;
}

.language-switcher-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: 8px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.language-switcher-toggle:hover {
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}

.language-switcher-toggle .flag-icon,
.language-link .flag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    line-height: 1;
}

.language-switcher-toggle .current-lang {
    font-size: 0.9rem;
}

.language-switcher-toggle .dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
}

.language-switcher.open .dropdown-arrow,
.language-switcher:focus-within .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    display: none;
}

.language-switcher.open .language-dropdown,
.language-switcher:focus-within .language-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.language-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.language-link:last-child {
    border-bottom: none;
}

.language-link:hover {
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary-color);
}

.language-link .lang-label {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.9rem;
    line-height: 1.2;
}

.language-link .lang-secondary {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Mobile responsive design for language switcher */
@media (max-width: 768px) {
    .language-switcher-toggle {
        padding: 0.4rem 0.6rem;
        gap: 0.4rem;
        min-height: 44px; /* Ensure minimum touch target size */
        touch-action: manipulation; /* Optimize for touch */
    }
    
    .language-switcher-toggle .current-lang {
        font-size: 0.8rem;
    }
    
    .language-switcher-toggle .flag-icon {
        width: 18px;
        height: 18px;
    }
    
    .language-dropdown {
        min-width: 120px;
        right: -10px;
        z-index: 1001; /* Ensure it's above other elements */
    }
    
    .language-link {
        padding: 0.6rem 0.8rem;
        gap: 0.6rem;
        min-height: 44px; /* Ensure minimum touch target size */
        touch-action: manipulation; /* Optimize for touch */
    }
    
    .language-link .flag-icon {
        width: 18px;
        height: 18px;
    }
    
    .language-link .lang-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        gap: 0.5rem;
    }
    
    .language-switcher-toggle {
        padding: 0.3rem 0.5rem;
        min-height: 44px; /* Ensure minimum touch target size */
    }
    
    .language-switcher-toggle .current-lang {
        display: none;
    }
    
    .language-dropdown {
        right: -20px;
        min-width: 100px;
        z-index: 1001; /* Ensure it's above other elements */
    }
}

.policy-language-switcher-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
    width: 100%;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 6rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(96, 165, 250, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(-50%, -50%);
    animation: float 6s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: expandLine 1.5s ease-out 0.5s both;
}

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

@keyframes expandLine {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s both;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}


/* Features Grid */
.features {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
    z-index: -1;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.feature-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

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

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(56, 189, 248, 0.3));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--text-secondary);
}

/* Custom Agents Section */
.custom-agents {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(56, 189, 248, 0.08) 0%, transparent 50%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.custom-agents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    z-index: -1;
}

.custom-agents h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.custom-agents-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.custom-agents-info h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-agents-info > p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.custom-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.custom-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid transparent;
}

.custom-feature:hover {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(56, 189, 248, 0.2);
    transform: translateX(5px);
}

.custom-feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: transform 0.3s ease;
}

.custom-feature:hover .custom-feature-icon {
    transform: scale(1.1);
}

.custom-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.custom-feature:hover h4 {
    color: var(--text-primary);
}

.custom-feature p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.custom-feature:hover p {
    color: var(--text-secondary);
}

.custom-agents-cta {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.custom-agents-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.05;
    z-index: -1;
}

.custom-agents-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(56, 189, 248, 0.3);
}

.custom-agents-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.custom-agents-cta > p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-info strong {
    color: var(--primary-color);
}

/* Agent Types Section */
.agent-types {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.agent-types::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(15, 23, 42, 0.3) 50%, transparent 100%);
    z-index: -1;
}

.agent-types h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

/* Comparison Table */
.comparison-table-wrapper {
    margin: 3rem 0 4rem;
    overflow-x: auto;
    border-radius: 1.5rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    padding: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 600px;
}

.comparison-table thead {
    position: relative;
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

.comparison-table th.feature-column {
    text-align: left;
    color: var(--primary-color);
    font-size: 1.1rem;
    background: rgba(15, 23, 42, 0.6);
    border-top-left-radius: 1rem;
}

.comparison-table th.agent-column {
    background: rgba(56, 189, 248, 0.08);
    color: var(--text-primary);
    border-bottom: 2px solid var(--primary-color);
}

.comparison-table th.agent-column:first-of-type {
    border-top-left-radius: 0;
}

.comparison-table th.agent-column:last-child {
    border-top-right-radius: 1rem;
}

.agent-header-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.table-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(56, 189, 248, 0.3));
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(56, 189, 248, 0.05);
}

.comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 1rem;
}

.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 1rem;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.feature-name {
    text-align: left !important;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
    background: rgba(15, 23, 42, 0.4);
}

.feature-check {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.feature-cross {
    color: var(--text-muted);
    font-size: 1.3rem;
    opacity: 0.5;
}

.feature-partial {
    color: #f59e0b;
    font-size: 0.9rem;
    font-weight: 600;
    font-style: italic;
}

.feature-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 1rem;
}

.comparison-table tbody tr:hover .feature-check {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.7);
}

.comparison-table tbody tr:hover .feature-name,
.comparison-table tbody tr:hover .feature-description {
    color: var(--text-primary);
}

.comparison-cards {
    display: none;
    gap: 1.5rem;
    margin: 3rem 0 0;
}

.comparison-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 1.75rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-6px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.comparison-card-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-card-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-card-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.feature-status {
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.feature-status--positive {
    color: #16a34a;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.feature-status--negative {
    color: #f97316;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.feature-note {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.feature-note-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.feature-note-value {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.agent-type {
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.agent-type:last-child {
    margin-bottom: 0;
}

.agent-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.agent-header:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(56, 189, 248, 0.3);
}

.agent-icon {
    font-size: 4rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(56, 189, 248, 0.3));
    transition: transform 0.3s ease;
}

.agent-header:hover .agent-icon {
    transform: scale(1.1) rotate(5deg);
}

.agent-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.agent-header:hover .agent-info h3 {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
}

/* Policy Page */
.policy-page {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #111827 100%);
    color: var(--text-secondary);
}

.policy-hero {
    padding: 6rem 0 3rem;
    text-align: center;
}

.policy-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.policy-tagline {
    max-width: 720px;
    margin: 0 auto 1rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.policy-updated {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.policy-body {
    padding: 3rem 0 6rem;
}

.policy-container {
    max-width: 960px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 3rem;
    backdrop-filter: blur(12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.policy-content section + section {
    margin-top: 2rem;
}

.policy-content h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content p,
.policy-content li {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.policy-content ul {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.agent-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.agent-header:hover .agent-description {
    color: var(--text-secondary);
}

/* Capabilities Section */
.capabilities-section {
    margin: 2.5rem 0 3.5rem 6rem;
    padding: 2.5rem;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.capabilities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.capabilities-section h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.capability {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.capability::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.capability:hover::before {
    opacity: 0.08;
}

.capability:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
}

.capability-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(56, 189, 248, 0.3));
    transition: transform 0.4s ease;
}

.capability:hover .capability-icon {
    transform: scale(1.15) rotate(8deg);
}

.capability-content {
    flex: 1;
    z-index: 1;
    position: relative;
}

.capability-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.capability:hover .capability-content h5 {
    color: var(--text-primary);
    transform: translateX(2px);
}

.capability-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.capability:hover .capability-content p {
    color: var(--text-secondary);
    transform: translateX(2px);
}

.use-cases-container {
    margin-left: 6rem;
}

.deployment-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.deployment-type h4 {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.deployment-type .use-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.deployment-type .use-case {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.deployment-type .use-case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.deployment-type .use-case:hover::before {
    opacity: 0.05;
}

.deployment-type .use-case:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(56, 189, 248, 0.3);
}

.deployment-type .use-case h5 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.deployment-type .use-case:hover h5 {
    color: var(--text-primary);
}

.deployment-type .use-case p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.deployment-type .use-case:hover p {
    color: var(--text-secondary);
}

/* Use Cases */
.use-cases {
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 30% 10%, rgba(96, 165, 250, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 90%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
    position: relative;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
    z-index: -1;
}

.use-cases h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.use-case {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.use-case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.use-case:hover::before {
    opacity: 0.05;
}

.use-case:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-left-color: var(--accent-color);
}

.use-case h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.use-case:hover h4 {
    color: var(--text-primary);
}

.use-case p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.use-case:hover p {
    color: var(--text-secondary);
}


/* CTA Section */
.cta {
    text-align: center;
    padding: 6rem 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(96, 165, 250, 0.1));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.cta p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--background-dark);
    box-shadow: 
        0 4px 15px rgba(56, 189, 248, 0.3),
        0 0 0 1px rgba(56, 189, 248, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 12px 30px rgba(56, 189, 248, 0.4),
        0 0 0 1px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.7);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--background-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 30px rgba(56, 189, 248, 0.3);
}

/* Footer */
.footer {
    background: rgba(15, 23, 42, 0.9);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    text-align: center;
    color: var(--text-muted);
    position: relative;
    backdrop-filter: blur(10px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.03;
    z-index: -1;
}

.footer p {
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-secondary);
    border-color: var(--primary-color);
}

.footer:hover p {
    opacity: 1;
}

/* Consultation Page Styles */
.consultation-page {
    background: 
        radial-gradient(circle at 20% 80%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, var(--background-dark) 0%, var(--background-medium) 50%, var(--background-light) 100%);
}

.consultation-hero {
    text-align: center;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.consultation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(56, 189, 248, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.consultation-form-section {
    padding: 2rem 0 4rem;
    position: relative;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 2rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.03;
    z-index: -1;
}

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

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    background: rgba(15, 23, 42, 0.7);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
    background: rgba(15, 23, 42, 0.9);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-group select {
    cursor: pointer;
}

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

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-large:hover .btn-icon {
    transform: translateX(5px);
}

.form-note {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-info-card {
    max-width: 800px;
    margin: 4rem auto 0;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: drop-shadow(0 4px 8px rgba(56, 189, 248, 0.3));
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--text-muted);
    margin: 0;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--text-primary);
}

.consultation-benefits {
    padding: 4rem 0;
    background: rgba(15, 23, 42, 0.3);
    border-top: 1px solid var(--border-color);
}

.consultation-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.benefit-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(56, 189, 248, 0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(56, 189, 248, 0.3));
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* Success page styles */
.success-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    border-color: rgba(56, 189, 248, 0.3);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(56, 189, 248, 0.3));
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Fine Print Styles */
.fine-print {
    margin: 2rem auto 0;
    max-width: 720px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Additional Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

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

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

/* Intersection Observer Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Active navigation state */
.nav-links a.active {
    color: var(--primary-color);
    background: rgba(56, 189, 248, 0.1);
}

.nav-links a.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links a.active::after {
    width: 60%;
}

/* Focus improvements for accessibility */
.nav-links a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Smooth header scroll behavior */
.header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0 4rem;
        text-align: left;
    }
    
    .hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    .hero p {
        font-size: 1.05rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.75rem;
        text-align: left;
    }
    
    .custom-agents {
        padding: 3rem 0;
    }
    
    .custom-agents-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .custom-features {
        grid-template-columns: 1fr;
    }
    
    .custom-agents-cta {
        padding: 2rem;
    }
    
    .agent-types {
        padding: 3rem 0;
    }

    .agent-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .comparison-table-wrapper {
        display: none;
    }

    .comparison-cards {
        display: grid;
        grid-template-columns: 1fr;
    }

    .fine-print {
        font-size: 0.8rem;
        padding: 0 1rem;
    }

    .policy-hero {
        padding: 4rem 0 2rem;
    }

    .policy-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .capabilities-section {
        margin: 2rem 0 2.5rem 0;
        padding: 2rem;
    }
    
    .capabilities-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .capability {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .capability:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .capability-icon {
        font-size: 2rem;
    }
    
    .capability-content h5 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .capability-content p {
        font-size: 0.9rem;
    }

    .use-cases-container {
        margin-left: 0;
    }
    
    .deployment-types {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .use-cases {
        padding: 3rem 0;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .cta {
        padding: 3rem 0;
    }
    
    .header-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .header-cta {
        justify-content: center;
        padding: 0.75rem;
        flex-wrap: wrap;
        align-self: stretch;
        gap: 0.75rem;
        background: rgba(15, 23, 42, 0.8);
        border: 1px solid rgba(148, 163, 184, 0.3);
        border-radius: 1rem;
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
        backdrop-filter: blur(14px);
    }

    .header-cta .header-btn {
        flex: 1 1 160px;
        min-width: 0;
        text-align: center;
    }
    
    .nav {
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 0;
    }
    
    .nav-toggle {
        display: inline-flex;
    }
    
    .nav[data-mobile-nav] .nav-actions {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        background: rgba(15, 23, 42, 0.98);
        border: 1px solid var(--border-color);
        border-radius: 1rem;
        padding: 1.5rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(20px);
        margin-top: 1rem;
        z-index: 1000;
        display: none;
    }
    
    .nav[data-mobile-nav].is-open .nav-actions {
        display: flex !important;
    }
    
    .nav[data-mobile-nav] .nav-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .nav[data-mobile-nav] .nav-links a {
        padding: 1rem 1.25rem;
        border-radius: 0.75rem;
        background: rgba(30, 41, 59, 0.7);
        border: 1px solid rgba(148, 163, 184, 0.2);
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        white-space: normal;
    }
    
    .nav[data-mobile-nav] .nav-links a:hover,
    .nav[data-mobile-nav] .nav-links a:focus-visible {
        background: rgba(56, 189, 248, 0.15);
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(56, 189, 248, 0.2);
    }
    
    .nav[data-mobile-nav] .nav-links a::after {
        display: none;
    }
    
    .nav[data-mobile-nav] .nav-links a::before {
        display: none;
    }

    .nav[data-mobile-nav] .nav-locale {
        justify-content: center;
        padding-top: 0.75rem;
        margin-top: 0.75rem;
        border-top: 1px solid rgba(148, 163, 184, 0.2);
    }

    .nav-auth {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(148, 163, 184, 0.2);
        padding-top: 1rem;
        margin-top: 1rem;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .nav-auth .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .logo-img {
        height: clamp(50px, 12.5vw, 80px);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0 3rem;
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .features, .custom-agents, .agent-types, .use-cases, .cta {
        padding: 2rem 0;
    }
    
    .feature-card,
    .custom-agents-cta {
        padding: 1.5rem;
    }
    
    .agent-header {
        padding: 1.5rem;
    }
    
    .agent-icon {
        font-size: 3rem;
    }

    .comparison-cards {
        gap: 1rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .comparison-card-features li {
        font-size: 0.9rem;
    }
    
    .feature-status {
        font-size: 0.75rem;
    }

    .fine-print {
        font-size: 0.75rem;
    }

    .policy-container {
        padding: 1.75rem;
    }

    .policy-content h2 {
        font-size: 1.25rem;
    }

    .agent-info h3 {
        font-size: 1.5rem;
    }
    
    .deployment-type .use-case {
        padding: 1rem;
    }
    
    .use-case {
        padding: 1.25rem;
    }

    .nav-actions {
        padding: 1rem;
    }

    .nav-links a {
        font-size: 0.95rem;
    }
    
    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .hero-actions {
        gap: 0.65rem;
    }

    .btn {
        width: 100%;
    }
    
    /* Consultation form responsive */
    .consultation-hero {
        padding: 2rem 0 1rem;
    }
    
    .form-container {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .success-steps {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}
