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

:root {
    /* 
     * COLOR SCHEME OPTIONS - Change values below to switch schemes
     * 
     * Option 1: Deep Navy & Gold (Premium Enterprise) - CURRENT
     * Option 2: Forest Green & Slate (Growth & Stability)
     * Option 3: Deep Purple & Teal (Modern Enterprise)
     * Option 4: Charcoal & Blue (Corporate Professional)
     * Option 5: Teal & Navy (Tech Finance)
     * Option 6: Indigo & Silver (Balanced Professional)
     */

    /* Option 1: Deep Navy & Gold (Premium Enterprise) */
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent-color: #f59e0b;

    /* Option 2: Forest Green & Slate (uncomment to use)
    --primary-color: #059669;
    --primary-dark: #047857;
    --primary-light: #10b981;
    --accent-color: #64748b;
    */

    /* Option 3: Deep Purple & Teal (uncomment to use)
    --primary-color: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #8b5cf6;
    --accent-color: #14b8a6;
    */

    /* Option 4: Charcoal & Blue (uncomment to use)
    --primary-color: #1e293b;
    --primary-dark: #0f172a;
    --primary-light: #334155;
    --accent-color: #2563eb;
    */

    /* Option 5: Teal & Navy (uncomment to use)
    --primary-color: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --accent-color: #1e40af;
    */

    /* Option 6: Indigo & Silver (uncomment to use)
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #6366f1;
    --accent-color: #94a3b8;
    */

    /* Common colors (shared across all schemes) */
    --secondary-color: #64748b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --error-color: #ef4444;
    --max-width: 1200px;
    --spacing: 1rem;

    /* Typography */
    --heading-font: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --body-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Professional Spacing Scale */
    --spacing-xs: 0.25rem;
    /* 4px */
    --spacing-sm: 0.5rem;
    /* 8px */
    --spacing-md: 1rem;
    /* 16px */
    --spacing-lg: 1.5rem;
    /* 24px */
    --spacing-xl: 2rem;
    /* 32px */
    --spacing-2xl: 3rem;
    /* 48px */
    --spacing-3xl: 4rem;
    /* 64px */

    /* Professional Shadow System */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);

    /* Professional Border Colors */
    --border-subtle: rgba(0, 0, 0, 0.06);
    --border-medium: rgba(0, 0, 0, 0.12);
    --border-strong: rgba(0, 0, 0, 0.2);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-color: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --accent-color: #f59e0b;
    --secondary-color: #94a3b8;
    --text-color: #f1f5f9;
    --text-light: #cbd5e1;
    --bg-color: #0f172a;
    --bg-light: #1e293b;
    --border-color: #334155;
    --success-color: #10b981;
    --error-color: #ef4444;
}

/* Smooth theme transition */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .gradient-text,
    .gradient-text-light {
        -webkit-text-fill-color: var(--primary-color);
        background: none;
    }

    .text-glow {
        text-shadow: none;
    }

    .stagger-list li {
        opacity: 1 !important;
        transform: none !important;
    }
}

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

body {
    font-family: var(--body-font);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography - Headings use serif font */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h2 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

h3 {
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

h4 {
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

p {
    line-height: 1.75;
    margin-bottom: 1.25rem;
    font-family: var(--body-font);
}

/* UI elements use sans-serif font */
button,
.btn,
input,
textarea,
select,
label,
.nav-menu,
.footer,
.nav-brand {
    font-family: var(--body-font);
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 4px 0;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid var(--primary-dark);
    outline-offset: 2px;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        clip-path: inset(0 0 100% 0);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        clip-path: inset(0 0 0% 0);
    }
}

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

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    animation: scaleIn 0.5s ease-out;
}

/* Dynamic Typography Classes */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-text-reveal {
    animation: fadeInUp 0.8s ease-out;
}

.text-shadow-sm {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.text-shadow-md {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.text-shadow-lg {
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.text-glow {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.3), 0 0 20px rgba(59, 130, 246, 0.2);
}

/* Staggered animation delays */
.animate-delay-1 {
    transition-delay: 0.1s;
}

.animate-delay-2 {
    transition-delay: 0.2s;
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

/* Stagger animations for lists */
.stagger-list li {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.stagger-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-list li:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-list li:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-list li:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-list li:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-list li:nth-child(6) {
    transition-delay: 0.6s;
}

.stagger-list li:nth-child(7) {
    transition-delay: 0.7s;
}

.stagger-list li:nth-child(8) {
    transition-delay: 0.8s;
}

.stagger-list.visible li {
    opacity: 1;
    transform: translateY(0);
}

.animate-delay-3 {
    transition-delay: 0.3s;
}

.animate-delay-4 {
    transition-delay: 0.4s;
}

.animate-delay-5 {
    transition-delay: 0.5s;
}

.animate-delay-6 {
    transition-delay: 0.6s;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.99);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a,
.nav-brand .brand-link {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.3s ease;
}

.nav-brand a:hover,
.nav-brand .brand-link:hover {
    opacity: 0.8;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 200px;
    min-height: 40px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

/* Navbar logo - 800w PNG */
.logo-img[src*="800w"] {
    max-width: 200px;
    height: auto;
}

.nav-brand:hover .logo-img {
    opacity: 0.9;
}

.brand-text {
    display: inline-block;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .brand-text {
        display: none;
    }

    .logo-img {
        height: 35px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 100vh;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .nav-separator {
        display: none;
    }

    .nav-cta {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }
}

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

.nav-separator {
    width: 1px;
    height: 24px;
    background-color: #e2e8f0;
    margin: 0 1rem;
    flex-shrink: 0;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--primary-color);
    outline: none;
}

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

.nav-menu a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.nav-dropdown:hover .dropdown-toggle i,
.nav-dropdown.active .dropdown-toggle i {
    transform: rotate(180deg) scale(1.2);
}

.nav-dropdown:hover .dropdown-toggle {
    color: var(--primary-color);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, rgba(255, 255, 255, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    list-style: none;
    padding: 0.75rem 0;
    margin: 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), rgba(59, 130, 246, 0.05));
    color: var(--primary-color);
    padding-left: 2rem;
    transform: translateX(4px);
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

/* CTA Button in Nav */
.nav-cta {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.375rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.25), 0 0 0 1px rgba(59, 130, 246, 0.1);
    transition: all 0.2s ease;
    position: relative;
}

.nav-cta::after {
    display: none;
}

.cta-line-1,
.cta-line-2 {
    display: block;
    font-size: 0.85rem;
}

.cta-line-1 {
    margin-bottom: 0.1rem;
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    color: white !important;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.35), 0 0 0 1px rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

.nav-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(30, 58, 138, 0.3);
}

/* Navbar Social Link */
.nav-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
}

.nav-social-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: rgba(30, 58, 138, 0.08);
    border: 2px solid var(--primary-color);
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-social-link:hover,
.nav-social-link:focus {
    color: white !important;
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.nav-social-link i,
.nav-social-link svg {
    font-size: 1.5rem !important;
    line-height: 1 !important;
    color: var(--primary-color) !important;
    fill: var(--primary-color) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
    font-weight: 400;
    width: 100%;
    height: 100%;
}

.nav-social-link .twitter-icon,
.nav-social-link .linkedin-icon {
    width: 20px !important;
    height: 20px !important;
    fill: var(--primary-color) !important;
}

.nav-social-link:hover i,
.nav-social-link:hover svg,
.nav-social-link:hover .twitter-icon,
.nav-social-link:hover .linkedin-icon,
.nav-social-link:focus i,
.nav-social-link:focus svg,
.nav-social-link:focus .twitter-icon,
.nav-social-link:focus .linkedin-icon {
    color: white !important;
    fill: white !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    margin-left: 1rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeIn 0.6s ease-out, scaleIn 0.6s ease-out;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    height: auto;
    width: 100%;
    max-width: 1200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 20px rgba(255, 255, 255, 0.2));
    animation: pulse 3s ease-in-out infinite;
}

/* Homepage hero logo - 1200w PNG */
.hero-logo-img[src*="1200w"] {
    max-width: 1200px;
    width: 100%;
    height: auto;
}

/* Show hero logo even if image fails to load */
.hero-logo-img {
    min-height: 100px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeIn 0.8s ease-out 0.2s both, slideUp 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 50%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.2));
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeIn 1s ease-out 0.2s both, slideUp 1s ease-out 0.2s both;
    position: relative;
    z-index: 1;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.2);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Social Proof Bar */
.social-proof-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-value {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
    transition: transform 0.3s ease;
}

.stat-value:hover {
    transform: scale(1.05);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

/* Customer Logos Section */
.customer-logos-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.customer-logos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(30, 58, 138, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.logos-intro {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--text-color);
    margin-bottom: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.logos-intro.animate-text-reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.customer-logos-placeholder {
    max-width: 900px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.15),
        0 0 0 1px rgba(30, 58, 138, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s, box-shadow 0.3s ease;
}

.customer-logos-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(30, 58, 138, 0.05) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

.customer-logos-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), var(--primary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.customer-logos-placeholder:hover {
    transform: translateY(-4px) scale(1);
    box-shadow: 0 16px 48px rgba(30, 58, 138, 0.25),
        0 0 0 1px rgba(30, 58, 138, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.customer-logos-placeholder:hover::after {
    opacity: 0.3;
}

.customer-logos-placeholder.animate-text-reveal {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

.customer-logos-placeholder .placeholder-text {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
    font-style: normal;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--text-color) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(30, 58, 138, 0.1);
}

[data-theme="dark"] .customer-logos-placeholder .placeholder-text {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .customer-logos-placeholder::before {
        animation: none;
    }

    .logos-intro,
    .customer-logos-placeholder {
        transition: none;
    }
}

/* Resource Metadata Styles */
.resource-metadata {
    margin: 1rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.resource-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-color);
}

.resource-meta-item i {
    color: var(--primary-color);
    width: 16px;
}

.resource-toc,
.resource-takeaways {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.resource-toc h4,
.resource-takeaways h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.resource-toc ul,
.resource-takeaways ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.resource-toc li,
.resource-takeaways li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--text-color);
    padding-left: 1rem;
    position: relative;
}

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

.resource-takeaways li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 0.4s both, slideUp 1s ease-out 0.4s both;
    position: relative;
    z-index: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.01em;
}

/* Ripple effect container */
.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-link:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary>* {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--bg-light);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

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

.btn-link:hover::after,
.btn-link:focus::after {
    width: 100%;
}

.btn-link:hover,
.btn-link:focus {
    text-decoration: none;
}

.btn-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: var(--bg-color);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
    animation: fadeIn 0.8s ease-out, slideUp 0.8s ease-out;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.features h2 {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-2xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.use-cases h2 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px) scale(1.02) rotateX(2deg) rotateY(-2deg);
    box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(30, 58, 138, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.3s ease;
    transform-origin: center;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg) translateY(-4px);
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform 0.3s ease, color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card:hover h3 {
    transform: translateY(-2px);
    color: var(--primary-dark);
}

.feature-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Page Header */
.page-header {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.page-header-logo {
    margin-bottom: 1.5rem;
    animation: fadeIn 0.6s ease-out, slideDown 0.6s ease-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-logo-img {
    height: auto;
    width: 100%;
    max-width: 400px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

/* Page header logos - 400w PNG */
.page-logo-img[src*="400w"] {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Show page logo even if image fails to load */
.page-logo-img {
    min-height: 60px;
}

.page-header:hover .page-logo-img {
    transform: scale(1.05);
}

.page-header h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    animation: fadeIn 0.6s ease-out 0.1s both, slideUp 0.6s ease-out 0.1s both;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(30, 58, 138, 0.2);
    transition: transform 0.3s ease;
}

.page-header h1:hover {
    transform: translateY(-2px);
}

.page-header p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.6;
}

/* Services List */
.services-list {
    padding: 4rem 0;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.05), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.2);
    transform: translateY(-4px) rotateX(2deg) rotateY(2deg);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(-10deg) translateY(-4px);
}

.service-card h2 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform 0.3s ease, color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card:hover h2 {
    transform: translateY(-2px);
    color: var(--primary-dark);
}

.service-card ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.service-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Content Section */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.legal-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.legal-content a:hover::after,
.legal-content a:focus::after {
    width: 100%;
}

.legal-content a:hover {
    color: var(--primary-dark);
}

.legal-content a:hover,
.legal-content a:focus {
    color: var(--primary-dark);
    text-decoration: none;
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 2px;
}

.content-section {
    padding: 4rem 0;
}

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

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.solution-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.2);
    transform: translateY(-4px) rotateX(2deg) rotateY(-2deg);
}

.solution-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.15) translateY(-4px);
}

.solution-card h2 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: transform 0.3s ease, color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.solution-card:hover h2 {
    transform: translateY(-2px);
    color: var(--primary-dark);
}

.solution-card ul {
    list-style-position: inside;
    margin-top: 1rem;
}

.solution-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Use Cases */
.use-cases {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.use-cases h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.use-case-item {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.use-case-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.use-case-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

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

.contact-form-wrapper h2,
.contact-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    position: relative;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    display: block;
    transition: all 0.3s ease;
}

.form-group.floating-label label {
    position: absolute;
    left: 0.75rem;
    top: 0.75rem;
    margin-bottom: 0;
    color: var(--text-light);
    pointer-events: none;
    transform-origin: left top;
    transition: all 0.3s ease;
}

.form-group.floating-label input:focus+label,
.form-group.floating-label input:not(:placeholder-shown)+label,
.form-group.floating-label textarea:focus+label,
.form-group.floating-label textarea:not(:placeholder-shown)+label {
    transform: translateY(-1.5rem) scale(0.85);
    color: var(--primary-color);
    font-weight: 600;
}

.form-group.floating-label input,
.form-group.floating-label textarea {
    padding-top: 1.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.15), 0 4px 12px rgba(30, 58, 138, 0.1);
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--primary-color), var(--primary-light)) border-box;
    border: 2px solid transparent;
    transform: translateY(-1px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--error-color);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-info {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-details h3 {
    margin-bottom: 1rem;
}

/* Alert */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 50%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-logo {
    height: auto;
    width: 100%;
    max-width: 200px;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: brightness(0) invert(1);
}

/* Footer logo - 400w PNG */
.footer-logo[src*="400w"] {
    max-width: 200px;
    width: 100%;
    height: auto;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.75rem;
}

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

.footer-section ul li {
    margin-bottom: 0.625rem;
}

.footer-section ul li a {
    font-size: 0.9375rem;
}

.footer-legal {
    margin-bottom: 1.5rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

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

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.footer-section a:hover::after {
    width: 100%;
}

.footer-address {
    font-style: normal;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.875rem;
}

.footer-section .social-links {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-section .social-links a {
    color: white !important;
    font-size: 1.5rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35) !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    margin-top: 0.5rem;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.footer-section .social-links a:hover,
.footer-section .social-links a:focus {
    color: white !important;
    transform: translateY(-2px);
    background-color: rgba(255, 255, 255, 0.45) !important;
    border-color: rgba(255, 255, 255, 0.95) !important;
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.footer-section .social-links i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 1.5rem !important;
    line-height: 1;
    color: #ffffff !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 0 2px rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.8));
}

.footer-section .social-links a:hover i,
.footer-section .social-links a:focus i {
    color: white !important;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.5);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-social {
        display: flex;
        margin-left: 0.5rem;
    }

    .nav-social-link {
        width: 36px;
        height: 36px;
    }

    .nav-social-link i,
    .nav-social-link svg,
    .nav-social-link .twitter-icon,
    .nav-social-link .linkedin-icon {
        font-size: 1.3rem !important;
        width: 18px !important;
        height: 18px !important;
    }

    .nav-toggle {
        display: flex;
        margin-left: 0.5rem;
    }

    .hero-logo-img {
        max-width: 100%;
    }

    .page-logo-img {
        max-width: 300px;
    }

    .footer-logo {
        max-width: 150px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .features-grid,
    .service-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Error Pages */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

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

.error-code {
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.2;
    animation: fadeIn 0.5s ease-in;
}

.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.error-content>p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.error-links h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.error-links ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.error-links ul li {
    margin: 0;
}

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

.error-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.error-help {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.error-help p {
    margin: 0;
    color: var(--text-light);
}

.error-help a {
    color: var(--primary-color);
    text-decoration: none;
}

.error-help a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .error-code {
        font-size: 5rem;
    }

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

    .error-content>p {
        font-size: 1rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--primary-color);
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.testimonial-author h4 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.author-title {
    margin: 0.25rem 0 0 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

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

.newsletter-content h2 {
    margin-bottom: 1rem;
    color: white;
}

.newsletter-content>p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.newsletter-privacy {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 58, 138, 0.98);
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-consent-content p {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

.cookie-consent-content a {
    color: white;
    text-decoration: underline;
}

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

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.125rem;
    color: var(--primary-color);
    flex: 1;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    background-color: var(--bg-light);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
}

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

.blog-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card-content {
    padding: 2rem;
}

.blog-card h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-card h2 a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-card h2 a:hover {
    text-decoration: underline;
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-post {
    padding: 4rem 0;
}

.blog-post-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.125rem;
}

/* Blog Post Typography */
.blog-post-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.blog-post-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, color 0.3s ease;
}

.blog-post-content h2:hover {
    transform: translateX(5px);
    color: var(--primary-dark);
}

.blog-post-content h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, color 0.3s ease;
}

.blog-post-content h3:hover {
    transform: translateX(3px);
    color: var(--primary-color);
}

.blog-post-content h4 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.blog-post-content p {
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.blog-post-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-post-content em {
    font-style: italic;
    color: var(--text-light);
}

/* Blog Post Lists */
.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-content ul li,
.blog-post-content ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.blog-post-content ul li::marker {
    color: var(--primary-color);
}

.blog-post-content ol li::marker {
    color: var(--primary-color);
    font-weight: 600;
}

/* Blog Post Code Blocks */
.blog-post-content code {
    background-color: var(--bg-light);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--primary-dark);
}

.blog-post-content pre {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.blog-post-content pre code {
    background: none;
    padding: 0;
    color: inherit;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mermaid Diagrams */
.blog-post-content .mermaid {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    margin: 2rem 0;
    overflow-x: auto;
    text-align: center;
}

/* Diagram Container for SVG diagrams */
.blog-post-content .diagram-container {
    margin: 4rem calc(50% - 50vw);
    padding: 2.5rem;
    background: white;
    border: 3px solid var(--border-color);
    border-radius: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    width: 100vw;
    max-width: 1400px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

@media (min-width: 1400px) {
    .blog-post-content .diagram-container {
        margin-left: calc((100vw - 1400px) / 2 - (100vw - 900px) / 2);
        margin-right: calc((100vw - 1400px) / 2 - (100vw - 900px) / 2);
        width: 1400px;
    }
}

.blog-post-content .diagram-container svg {
    display: block;
    margin: 0 auto;
    width: 100%;
    min-width: 1200px;
    height: auto;
    max-height: none;
}

.blog-post-content .diagram-container .diagram-image {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

/* Code Example Container */
.blog-post-content .code-example-container {
    margin: 2rem 0;
    background: #1e293b;
    border-radius: 0.5rem;
    overflow-x: auto;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-content .code-example-container pre {
    margin: 0;
    background: transparent;
    padding: 0;
    border: none;
    overflow-x: auto;
}

.blog-post-content .code-example-container code {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.blog-post-content .code-example-container .json-key {
    color: #60a5fa;
    font-weight: 500;
}

.blog-post-content .code-example-container .json-string {
    color: #34d399;
}

.blog-post-content .code-example-container .json-value {
    color: #fbbf24;
}

.blog-post-content .code-example-container .json-boolean {
    color: #f472b6;
}

/* Blog Post Tables */
.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    overflow: hidden;
}

.blog-post-content table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.blog-post-content table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.blog-post-content table tr:last-child td {
    border-bottom: none;
}

.blog-post-content table tr:hover {
    background-color: var(--bg-light);
}

/* Blog Post Blockquotes */
.blog-post-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

/* Blog Post Horizontal Rules */
.blog-post-content hr {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 3rem 0;
}

/* Blog Post Links */
.blog-post-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.blog-post-content a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.blog-post-content a:hover {
    color: var(--primary-dark);
}

.blog-post-content a:hover::after {
    width: 100%;
}

/* Responsive Blog Post */
@media (max-width: 768px) {
    .blog-post-content {
        font-size: 1rem;
    }

    .blog-post-content h1 {
        font-size: 2rem;
    }

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

    .blog-post-content h3 {
        font-size: 1.25rem;
    }

    .blog-post-content pre {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .blog-post-content table {
        font-size: 0.9rem;
    }

    .blog-post-content table th,
    .blog-post-content table td {
        padding: 0.75rem 0.5rem;
    }

    .blog-post-content .mermaid {
        padding: 1rem;
    }
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--text-light);
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Search Section */
.search-section {
    padding: 4rem 0;
}

.search-form-large {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.search-input-wrapper {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.search-form-large input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
}

.search-filters {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.search-filters label {
    font-weight: 500;
    color: var(--text-color);
}

.search-filters select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
}

.search-results {
    max-width: 900px;
    margin: 0 auto;
}

.results-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.results-header h2 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.results-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.results-list {
    list-style: none;
    padding: 0;
}

.result-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.result-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.result-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.result-type-blog {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
}

.result-type-page {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.result-type-faq {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
}

.result-type-resource {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.result-type-case_study {
    background-color: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.result-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.result-item h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.result-item h3 a:hover {
    color: var(--primary-dark);
}

.result-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.result-excerpt mark {
    background-color: rgba(245, 158, 11, 0.2);
    color: var(--text-color);
    padding: 0.1rem 0.2rem;
    border-radius: 0.2rem;
    font-weight: 500;
}

.result-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: transform 0.3s ease;
}

.result-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

.no-results {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
}

.no-results h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.no-results ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.no-results li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.no-results li::before {
    content: "• ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.search-suggestions {
    text-align: center;
    padding: 2rem 0;
}

.search-suggestions h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.suggestion-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.suggestion-tag:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Search autocomplete dropdown */
.search-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: -0.5rem;
}

.search-autocomplete-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s ease;
}

.search-autocomplete-item:hover,
.search-autocomplete-item.selected {
    background-color: var(--bg-light);
}

.search-autocomplete-item:last-child {
    border-bottom: none;
}

.search-autocomplete-item-title {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.search-autocomplete-item-type {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.no-results {
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

/* Newsletter Success */
.newsletter-success {
    padding: 4rem 0;
}

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

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.success-content h2 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Social Sharing */
.social-share {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1000;
}

.social-share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--bg-color);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.social-share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 0;
}

.social-share-btn:hover::before {
    width: 100%;
    height: 100%;
}

.social-share-btn .share-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    position: relative;
    z-index: 1;
    transition: fill 0.3s ease;
}

.social-share-btn:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.social-share-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Platform-specific colors */
.social-share-btn[data-platform="twitter"]:hover {
    border-color: #1da1f2;
    box-shadow: 0 4px 12px rgba(29, 161, 242, 0.3);
}

.social-share-btn[data-platform="twitter"]:hover::before {
    background: #1da1f2;
}

.social-share-btn[data-platform="linkedin"]:hover {
    border-color: #0077b5;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.social-share-btn[data-platform="linkedin"]:hover::before {
    background: #0077b5;
}

.social-share-btn[data-platform="email"]:hover {
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.social-share-btn[data-platform="email"]:hover::before {
    background: var(--accent-color);
}

/* Error Search */
.error-search {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.error-search h3 {
    margin-bottom: 1rem;
}

.search-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.search-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {

    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }

    .social-share {
        right: 1rem;
        gap: 0.5rem;
    }

    .social-share-btn {
        width: 44px;
        height: 44px;
    }

    .social-share-btn .share-icon {
        width: 18px;
        height: 18px;
    }
}

/* Pricing Section */
.pricing-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-philosophy {
    padding: 4rem 0;
    background-color: var(--bg-light);
}

.pricing-philosophy h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.philosophy-item {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.pricing-section {
    padding: 4rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-card-hover), 0 0 0 1px rgba(30, 58, 138, 0.1);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: var(--accent-color);
    border-width: 3px;
}

.pricing-card-featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card-header {
    margin-bottom: 1rem;
}

.pricing-card-header h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.pricing-duration {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pricing-best-for {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pricing-includes {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.pricing-includes h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.pricing-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.pricing-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.pricing-cta {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

.pricing-summary {
    padding: 4rem 0;
    background-color: var(--bg-light);
    text-align: center;
}

.pricing-summary h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.summary-text {
    font-size: 1.125rem;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-amount {
        font-size: 1.75rem;
    }

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

/* ============================================
   DARK MODE STYLES
   ============================================ */

[data-theme="dark"] .navbar {
    background-color: rgba(15, 23, 42, 0.98);
    border-bottom-color: var(--border-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .navbar.scrolled {
    background-color: rgba(15, 23, 42, 0.99);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .nav-separator {
    background-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .nav-toggle span {
    background-color: var(--text-color);
}

[data-theme="dark"] .social-share-btn {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
    color: var(--primary-light);
}

[data-theme="dark"] .social-share-btn:hover {
    color: white;
}

[data-theme="dark"] .social-share-btn::before {
    background: var(--primary-color);
}


[data-theme="dark"] .card {
    background-color: var(--bg-light);
    border-color: var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

[data-theme="dark"] .card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .service-card,
[data-theme="dark"] .testimonial-card,
[data-theme="dark"] .pricing-card,
[data-theme="dark"] .blog-card,
[data-theme="dark"] .resource-card,
[data-theme="dark"] .case-study-card,
[data-theme="dark"] .solution-card {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .solution-card h2 {
    color: var(--primary-light);
}

[data-theme="dark"] .solution-card p,
[data-theme="dark"] .solution-card li {
    color: var(--text-color);
}

[data-theme="dark"] .use-case-item {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .use-case-item h3 {
    color: var(--text-color);
}

[data-theme="dark"] .use-case-item p {
    color: var(--text-color);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select {
    background-color: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus,
[data-theme="dark"] .form-group select:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

[data-theme="dark"] .btn-secondary {
    background-color: var(--bg-light);
    color: var(--text-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .btn-secondary:hover {
    background-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .btn-link {
    color: var(--primary-light);
}

[data-theme="dark"] .btn-link:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .footer {
    background-color: var(--bg-light);
    border-top-color: var(--border-color);
}

[data-theme="dark"] .footer-section h3 {
    color: var(--text-color);
}

[data-theme="dark"] .footer-section a {
    color: var(--text-light);
}

[data-theme="dark"] .footer-section a:hover {
    color: var(--primary-light);
}

[data-theme="dark"] .footer-address {
    color: var(--text-light);
}

[data-theme="dark"] .page-header {
    background-color: var(--bg-light);
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .section {
    background-color: var(--bg-color);
}

[data-theme="dark"] .section-alt {
    background-color: var(--bg-light);
}

[data-theme="dark"] .about-section,
[data-theme="dark"] .testimonials-section,
[data-theme="dark"] .newsletter-section,
[data-theme="dark"] .pricing-summary {
    background-color: var(--bg-light);
}

[data-theme="dark"] .blog-post-content h1,
[data-theme="dark"] .blog-post-content h2,
[data-theme="dark"] .blog-post-content h3,
[data-theme="dark"] .blog-post-content h4 {
    color: var(--text-color);
}

[data-theme="dark"] .blog-post-content p,
[data-theme="dark"] .blog-post-content li {
    color: var(--text-light);
}

[data-theme="dark"] .blog-post-content code {
    background-color: var(--bg-light);
    color: var(--primary-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .blog-post-content pre {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .blog-post-content pre code {
    background-color: transparent;
    color: var(--text-light);
}

[data-theme="dark"] .blog-post-content table {
    border-color: var(--border-color);
}

[data-theme="dark"] .blog-post-content th {
    background-color: var(--bg-light);
    color: var(--text-color);
}

[data-theme="dark"] .blog-post-content td {
    border-color: var(--border-color);
}

[data-theme="dark"] .blog-post-content blockquote {
    border-left-color: var(--primary-color);
    background-color: var(--bg-light);
    color: var(--text-light);
}

[data-theme="dark"] .diagram-container {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .search-form-large input,
[data-theme="dark"] .search-form input {
    background-color: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .search-results {
    background-color: var(--bg-color);
}

[data-theme="dark"] .results-list li {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .results-list a {
    color: var(--primary-light);
}

[data-theme="dark"] .results-list a:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .alert {
    background-color: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: var(--success-color);
    color: var(--success-color);
}

[data-theme="dark"] .alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: var(--error-color);
    color: var(--error-color);
}

[data-theme="dark"] .error-page {
    background-color: var(--bg-color);
    color: var(--text-color);
}

[data-theme="dark"] .error-code {
    color: var(--primary-color);
}

[data-theme="dark"] .cookie-consent {
    background-color: var(--bg-light);
    border-top-color: var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .faq-item {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .faq-question {
    color: var(--text-color);
}

[data-theme="dark"] .faq-answer {
    color: var(--text-light);
}

[data-theme="dark"] .pricing-card {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

[data-theme="dark"] .nav-social-link {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-color);
}

[data-theme="dark"] .nav-social-link:hover {
    background-color: var(--primary-color);
}

/* Dark mode toggle button */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(59, 130, 246, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.75rem;
    padding: 0;
    font-size: 1.25rem;
}

.theme-toggle:hover,
.theme-toggle:focus {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

[data-theme="dark"] .theme-toggle {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

[data-theme="dark"] .theme-toggle:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hide/show icons based on theme */
.theme-toggle .sun-icon {
    display: block;
}

.theme-toggle .moon-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .sun-icon {
    display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
    display: block;
}

/* Resources Section */
.resources-section {
    padding: 4rem 0;
}

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

.resources-filters h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.resource-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.resource-type-whitepaper {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
}

.resource-type-guide {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.resource-type-template {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent-color);
}

.resource-type-tool {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.resource-card h3 {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 1.25rem;
}

.resource-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.resource-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.resource-category {
    color: var(--text-light);
}

.resource-gated {
    color: var(--accent-color);
    font-weight: 500;
}

.resource-download-btn,
.resource-download-link {
    width: 100%;
    margin-top: auto;
}

.no-resources {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--bg-color);
    margin: 10% auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

[data-theme="dark"] .modal-content {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .modal {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Case Studies Section */
.case-studies-section {
    padding: 4rem 0;
}

.case-studies-filters {
    margin-bottom: 3rem;
    text-align: center;
}

.case-studies-filters h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.case-study-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.case-study-card .btn {
    margin-top: auto;
    width: 100%;
}

.case-study-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.case-study-industry-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.industry-regulated-enterprise {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
}

.industry-media {
    background-color: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}

.case-study-card h3 {
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.case-study-card h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.case-study-card h3 a:hover {
    color: var(--primary-color);
}

.case-study-client {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.case-study-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.case-study-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.case-study-detail-section {
    padding: 4rem 0;
}

.case-study-content {
    max-width: 900px;
    margin: 0 auto;
}

.case-study-section {
    margin-bottom: 3rem;
}

.case-study-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.case-study-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Architecture Details Section */
.architecture-details {
    margin-top: 1.5rem;
}

.architecture-details h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.architecture-details h3:first-child {
    margin-top: 0;
}

.architecture-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.architecture-details ul:last-of-type {
    margin-bottom: 2.5rem;
}

.architecture-details li {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.architecture-details li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 0;
}

.architecture-details li:last-child {
    margin-bottom: 0;
}

.architecture-diagram {
    margin-top: 2.5rem;
    text-align: center;
}

.architecture-diagram img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .architecture-details li {
    color: var(--text-color);
}

[data-theme="dark"] .architecture-diagram img {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.case-study-client-header {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.case-study-metrics-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.metric-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.metric-value-large {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label-large {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.case-study-cta {
    background-color: var(--bg-light);
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.case-study-cta h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.case-study-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Demo Section */
.demo-section {
    padding: 4rem 0;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-form-wrapper h2,
.demo-info h2 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.demo-steps {
    margin-bottom: 2rem;
}

.demo-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

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

.demo-calendly {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
}

.demo-calendly h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.demo-calendly p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

[data-theme="dark"] .case-study-card,
[data-theme="dark"] .metric-card,
[data-theme="dark"] .case-study-cta,
[data-theme="dark"] .demo-calendly,
[data-theme="dark"] .trust-resource-card,
[data-theme="dark"] .trust-center-cta,
[data-theme="dark"] .security-cta {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .trust-resource-content h2,
[data-theme="dark"] .security-subsection h2 {
    color: var(--primary-light);
}

[data-theme="dark"] .subprocessors-table table {
    background-color: var(--bg-light);
}

[data-theme="dark"] .subprocessors-table tbody tr:hover {
    background-color: var(--bg-color);
}

[data-theme="dark"] .subprocessors-table td {
    border-bottom-color: var(--border-color);
}

[data-theme="dark"] .trust-resource-details .subprocessors-table table {
    background-color: var(--bg-light);
}

[data-theme="dark"] .trust-resource-details .subprocessors-table tbody tr:hover {
    background-color: var(--bg-color);
}

[data-theme="dark"] .resource-card {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .resource-card h3 {
    color: var(--text-color);
}

[data-theme="dark"] .resource-description,
[data-theme="dark"] .resource-metadata,
[data-theme="dark"] .resource-meta-item {
    color: var(--text-color);
}

[data-theme="dark"] .resource-toc,
[data-theme="dark"] .resource-takeaways {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
}

[data-theme="dark"] .resource-toc h4,
[data-theme="dark"] .resource-takeaways h4 {
    color: var(--primary-light);
}

[data-theme="dark"] .resource-toc ul,
[data-theme="dark"] .resource-takeaways ul {
    color: var(--text-color);
}

[data-theme="dark"] .resource-toc li,
[data-theme="dark"] .resource-takeaways li {
    color: var(--text-color);
}

[data-theme="dark"] .resource-meta {
    color: var(--text-color);
}

[data-theme="dark"] .resource-category {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .demo-grid {
        grid-template-columns: 1fr;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .case-study-metrics {
        grid-template-columns: 1fr;
    }

    .case-study-metrics-detailed {
        grid-template-columns: 1fr;
    }
}

/* Security & Compliance Page Styles */
.security-section {
    padding: 4rem 0;
}

.security-intro {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.security-intro .lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
}

.security-content {
    max-width: 1000px;
    margin: 0 auto;
}

.security-subsection {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.security-subsection:last-of-type {
    border-bottom: none;
}

.security-subsection h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.security-details {
    margin-left: 0;
}

.security-details h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.security-details h3:first-child {
    margin-top: 0;
}

.security-details p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.security-details ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.security-details li {
    margin-bottom: 0.75rem;
}

.security-details li strong {
    color: var(--text-color);
    font-weight: 600;
}

.security-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.security-details a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.security-details a:hover {
    color: var(--primary-dark);
}

.security-details a:hover::after {
    width: 100%;
}

.subprocessors-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.subprocessors-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.subprocessors-table thead {
    background-color: var(--primary-color);
    color: white;
}

.subprocessors-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subprocessors-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 0.9375rem;
}

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

.subprocessors-table tbody tr:hover {
    background-color: var(--bg-light);
}

.security-cta {
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.security-cta h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

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

.security-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .security-subsection h2 {
        font-size: 1.5rem;
    }

    .security-details h3 {
        font-size: 1.125rem;
    }

    .subprocessors-table {
        font-size: 0.875rem;
    }

    .subprocessors-table th,
    .subprocessors-table td {
        padding: 0.75rem;
    }

    .security-cta {
        padding: 1.5rem;
    }
}

/* Trust Center Page Styles */
.trust-center-section {
    padding: 4rem 0;
}

.trust-center-intro {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.trust-center-intro .lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
}

.trust-center-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.trust-resource-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.trust-resource-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.trust-resource-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 0.5rem;
    font-size: 1.5rem;
}

.trust-resource-content {
    flex: 1;
}

.trust-resource-content h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-resource-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.trust-resource-details {
    margin-top: 1.5rem;
}

.trust-resource-details h3 {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.trust-resource-details h3:first-child {
    margin-top: 0;
}

.trust-resource-details p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.trust-resource-details ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.trust-resource-details li {
    margin-bottom: 0.75rem;
}

.trust-resource-details li strong {
    color: var(--text-color);
    font-weight: 600;
}

.trust-resource-details ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.trust-resource-details ol li {
    margin-bottom: 0.75rem;
}

.trust-resource-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.trust-resource-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.trust-resource-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.trust-resource-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
}

.trust-center-cta {
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.trust-center-cta h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.trust-center-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.trust-center-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-resource-details .subprocessors-table {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.trust-resource-details .subprocessors-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trust-resource-details .subprocessors-table thead {
    background-color: var(--primary-color);
    color: white;
}

.trust-resource-details .subprocessors-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-resource-details .subprocessors-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: var(--text-color);
    font-size: 0.9375rem;
}

.trust-resource-details .subprocessors-table tbody tr:last-child td {
    border-bottom: none;
}

.trust-resource-details .subprocessors-table tbody tr:hover {
    background-color: var(--bg-light);
}

@media (max-width: 768px) {
    .trust-resource-card {
        flex-direction: column;
        padding: 1.5rem;
    }

    .trust-resource-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

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

    .trust-resource-details h3 {
        font-size: 1rem;
    }

    .trust-center-cta {
        padding: 1.5rem;
    }

    .trust-resource-details .subprocessors-table {
        font-size: 0.875rem;
    }

    .trust-resource-details .subprocessors-table th,
    .trust-resource-details .subprocessors-table td {
        padding: 0.75rem;
    }
}

/* About Page Styles */
.about-page-section {
    padding: 4rem 0;
}

.about-page-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.about-founder {
    margin-bottom: 4rem;
}

.about-founder h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.founder-content {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.founder-bio h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.founder-title {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
    font-style: italic;
}

.founder-bio p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.founder-bio ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.founder-bio li {
    margin-bottom: 0.75rem;
}

.about-why {
    margin-bottom: 4rem;
}

.about-why h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-content {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.why-content .lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.why-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.why-content h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-content h3:first-child {
    margin-top: 0;
}

.why-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
}

.why-content li {
    margin-bottom: 0.75rem;
}

.why-content li strong {
    color: var(--text-color);
    font-weight: 600;
}

.about-values {
    margin-bottom: 4rem;
}

.about-values h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

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

.value-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

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

.value-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
}

.about-location {
    margin-bottom: 4rem;
}

.about-location h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-content {
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.location-content p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.location-content p:last-child {
    margin-bottom: 0;
}

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

.location-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.about-pricing-cta {
    margin-top: 4rem;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 0.5rem;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.about-pricing-cta h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
}

.about-pricing-cta p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.about-pricing-cta .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Book Reference Badge and Details */
.book-reference-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-xs) var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.book-reference-details {
    background-color: var(--bg-light);
    border: 1px solid var(--border-subtle);
    border-radius: 0.75rem;
    padding: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.book-reference-details h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    font-family: var(--heading-font);
}

.book-author {
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
}

.book-publisher {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-sm);
}

.book-chapter {
    color: var(--text-color);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

[data-theme="dark"] .book-reference-details {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

[data-theme="dark"] .book-reference-details h3 {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .about-page-section {
        padding: 2rem 0;
    }

    .about-founder h2,
    .about-why h2,
    .about-values h2,
    .about-location h2 {
        font-size: 1.5rem;
    }

    .founder-content,
    .why-content,
    .location-content {
        padding: 1.5rem;
    }

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

    .value-card {
        padding: 1.25rem;
    }
}

/* Professional Badge/Tag Styles */
.badge,
.tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--body-font);
    box-shadow: var(--shadow-sm);
}

.badge-primary {
    background-color: var(--primary-color);
    color: white;
}

.badge-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.badge-success {
    background-color: var(--success-color);
    color: white;
}

.badge-outline {
    background-color: transparent;
    border: 1px solid var(--border-medium);
    color: var(--text-color);
}

/* Professional Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-medium), transparent);
    margin: var(--spacing-3xl) 0;
    border: none;
}

.section-divider-thick {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: var(--spacing-3xl) 0;
    border: none;
    opacity: 0.3;
}

/* Enhanced Button States */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2), var(--shadow-md);
}

/* Professional Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-light) 25%, var(--bg-color) 50%, var(--bg-light) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
    border-radius: 0.5rem;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Professional Empty States */
.empty-state {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--text-light);
}

.empty-state-icon {
    font-size: 3rem;
    color: var(--border-medium);
    margin-bottom: var(--spacing-lg);
}

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

.empty-state p {
    margin-bottom: var(--spacing-lg);
    color: var(--text-light);
}