    /* Enhanced CSS Reset and Base Styles */
    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    :root {
        --black: #000000;
        --white: #ffffff;
        --gray-50: #fafafa;
        --gray-100: #f5f5f5;
        --gray-200: #e5e5e5;
        --gray-300: #d4d4d4;
        --gray-400: #a3a3a3;
        --gray-500: #737373;
        --gray-600: #525252;
        --gray-700: #404040;
        --gray-800: #262626;
        --gray-900: #171717;
        --success: #059669;
        --warning: #d97706;
        --error: #dc2626;
        --primary: var(--black);
        --secondary: var(--gray-600);
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --border-radius: 8px;
        --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Focus and accessibility */
    :focus {
        outline: 3px solid var(--primary);
        outline-offset: 2px;
    }

    :focus:not(:focus-visible) {
        outline: none;
    }

    :focus-visible {
        outline: 3px solid var(--primary);
        outline-offset: 2px;
    }

    /* Reduced motion */
    @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;
        }
    }

    /* High contrast mode */
    @media (prefers-contrast: high) {
        :root {
            --gray-300: #666666;
            --gray-400: #888888;
            --gray-500: #aaaaaa;
        }
    }

    /* Skip link */
    .skip-link {
        position: absolute;
        top: -40px;
        left: 6px;
        background: var(--primary);
        color: var(--white);
        padding: 8px 16px;
        text-decoration: none;
        z-index: 9999;
        border-radius: var(--border-radius);
        font-weight: 600;
    }

    .skip-link:focus {
        top: 6px;
    }

    /* Screen reader only */
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    /* Base typography and body */
    html {
        height: 100%;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        color: var(--black);
        background: var(--white);
        font-weight: 400;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        min-height: 100%;
        margin: 0;
        padding: 0;
    }

    /* Cookie Consent Banner */
    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 3px solid var(--primary);
        padding: 24px;
        z-index: 2000;
        box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
        display: none;
    }

    .cookie-content {
        max-width: 800px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        position: relative;
    }

    .cookie-text {
        width: 100%;
    }

    .cookie-text h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--black);
        font-family: 'Playfair Display', serif;
    }

    .cookie-text p {
        color: var(--gray-600);
        font-size: 15px;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }

    .cookie-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .cookie-close {
        position: absolute;
        top: -12px;
        right: -12px;
        background: var(--black);
        color: var(--white);
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        transition: var(--transition);
        z-index: 1;
        box-shadow: var(--shadow-lg);
    }

    .cookie-close:hover {
        background: var(--gray-800);
        transform: scale(1.1);
    }

    .cookie-close:focus {
        outline: 3px solid var(--primary);
        outline-offset: 2px;
    }

    /* Privacy modal */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 2001;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .modal[style*="flex"] {
        display: flex !important;
    }

    .modal-content {
        background: var(--white);
        max-width: 600px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        border: 2px solid var(--black);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-xl);
    }

    .modal-header {
        padding: 32px;
        border-bottom: 2px solid var(--gray-200);
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--gray-50);
    }

    .modal-title {
        font-family: 'Playfair Display', serif;
        font-size: 28px;
        font-weight: 600;
        color: var(--black);
        margin: 0;
    }

    .modal-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: var(--gray-600);
        padding: 8px;
        border-radius: 50%;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    .modal-close:hover {
        background: var(--gray-200);
        color: var(--black);
    }

    .modal-body {
        padding: 32px;
    }

    .privacy-section {
        padding: 24px 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .privacy-section:last-child {
        border-bottom: none;
    }

    .privacy-section h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--black);
    }

    .privacy-section p {
        color: var(--gray-600);
        margin-bottom: 16px;
        font-size: 14px;
    }

    .toggle-switch {
        position: relative;
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
    }

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

    .toggle-slider {
        position: relative;
        width: 60px;
        height: 34px;
        background-color: var(--gray-300);
        border-radius: 34px;
        cursor: pointer;
        transition: var(--transition);
    }

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

    .toggle-switch input:checked + .toggle-slider {
        background-color: var(--success);
    }

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

    .toggle-switch input:disabled + .toggle-slider {
        background-color: var(--gray-200);
        cursor: not-allowed;
    }

    .toggle-label {
        font-size: 14px;
        color: var(--gray-700);
        font-weight: 500;
    }

    .privacy-actions {
        padding-top: 24px;
        text-align: center;
    }

    /* Header */
    .header {
        background: var(--white);
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: 2px solid var(--gray-200);
        box-shadow: var(--shadow);
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        height: 90px;
        position: relative;
    }

    .logo {
        color: var(--black);
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        z-index: 1001;
    }

    .logo-main {
        font-family: 'Playfair Display', serif;
        font-size: 36px;
        font-weight: 400;
        letter-spacing: -1px;
        line-height: 1;
    }

    .logo-sub {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gray-600);
        margin-top: 2px;
    }

    .mobile-menu-toggle {
        display: none;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        z-index: 1001;
    }

    .hamburger-line {
        width: 25px;
        height: 3px;
        background: var(--black);
        margin: 3px 0;
        transition: var(--transition);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-container {
        display: flex;
        align-items: center;
        gap: 48px;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 48px;
    }

    .nav-item {
        position: relative;
    }

    .nav-links a {
        color: var(--gray-700);
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        transition: var(--transition);
        padding: 8px 0;
        display: block;
    }

    .nav-links a:hover {
        color: var(--black);
    }

    .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        border: 2px solid var(--gray-200);
        border-radius: var(--border-radius);
        min-width: 250px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
        z-index: 1001;
        box-shadow: var(--shadow-lg);
    }

    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown a {
        display: block;
        padding: 16px 24px;
        color: var(--gray-700);
        border-bottom: 1px solid var(--gray-100);
        font-size: 14px;
    }

    .dropdown a:last-child {
        border-bottom: none;
    }

    .dropdown a:hover {
        background: var(--gray-50);
        color: var(--black);
    }

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

    .language-select {
        color: var(--gray-600);
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: var(--border-radius);
        transition: var(--transition);
        cursor: pointer;
        border: 1px solid var(--gray-300);
        background: var(--white);
    }

    .language-select:hover {
        background: var(--gray-100);
    }

    /* Buttons */
    .btn {
        padding: 14px 28px;
        border: 2px solid transparent;
        border-radius: var(--border-radius);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: var(--transition);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        background: transparent;
        position: relative;
        overflow: hidden;
    }

    .btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none !important;
    }

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

    .btn-primary:hover:not(:disabled) {
        background: var(--gray-800);
        border-color: var(--gray-800);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .btn-secondary {
        background: transparent;
        color: var(--black);
        border-color: var(--black);
    }

    .btn-secondary:hover:not(:disabled) {
        background: var(--black);
        color: var(--white);
    }

    .btn-ghost {
        background: transparent;
        color: var(--gray-700);
        border-color: var(--gray-300);
    }

    .btn-ghost:hover:not(:disabled) {
        background: var(--gray-50);
        color: var(--black);
        border-color: var(--black);
    }

    .btn-loading {
        display: none;
        align-items: center;
        gap: 8px;
    }

    .btn[aria-busy="true"] .btn-text {
        display: none;
    }

    .btn[aria-busy="true"] .btn-loading {
        display: flex;
    }

    /* Spinner animations */
    .spinner, .spinner-small {
        border: 3px solid var(--gray-200);
        border-top: 3px solid var(--primary);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    .spinner {
        width: 40px;
        height: 40px;
    }

    .spinner-small {
        width: 16px;
        height: 16px;
        border-width: 2px;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    /* Hero Section */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 120px 20px 80px;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 2;
    }

    .hero-content {
        position: relative;
        z-index: 3;
        text-align: center;
        color: var(--white);
        max-width: 900px;
        width: 100%;
        padding: 40px 20px;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-family: 'Playfair Display', serif;
        font-size: 56px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 32px;
        letter-spacing: -2px;
    }

    .hero-content p {
        font-size: 20px;
        margin-bottom: 60px;
        opacity: 0.95;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 60px;
    }

    /* Search Form */
    .search-form {
        background: var(--white);
        border: 2px solid var(--black);
        border-radius: var(--border-radius);
        padding: 40px;
        box-shadow: var(--shadow-xl);
        max-width: 700px;
        margin: 0 auto;
        position: relative;
        z-index: 3;
    }

    .search-tabs {
        display: flex;
        border-bottom: 2px solid var(--gray-200);
        margin-bottom: 24px;
        overflow: hidden;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    .search-tab {
        flex: 1;
        padding: 16px 12px;
        background: var(--white);
        border: none;
        cursor: pointer;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 12px;
        transition: var(--transition);
        color: var(--gray-700);
        position: relative;
    }

    .search-tab.active {
        background: var(--black);
        color: var(--white);
    }

    .search-tab:hover:not(.active) {
        background: var(--gray-100);
        color: var(--black);
    }

    .search-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .search-row.full {
        grid-template-columns: 1fr;
    }

    .search-input-group {
        position: relative;
    }

    .search-input-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--black);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .search-input, .search-select {
        width: 100%;
        padding: 18px;
        border: 2px solid var(--gray-300);
        border-radius: var(--border-radius);
        font-size: 16px;
        color: var(--black);
        background: var(--white);
        transition: var(--transition);
        font-family: inherit;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    .search-select {
        background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23666" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 18px center;
        background-size: 12px;
        padding-right: 50px;
    }

    .search-input:focus, .search-select:focus {
        outline: none;
        border-color: var(--black);
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    }

    .search-input-icon {
        position: absolute;
        left: 18px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gray-500);
        font-size: 16px;
        pointer-events: none;
        z-index: 1;
    }

    .search-input.with-icon {
        padding-left: 50px;
    }

    .search-filters {
        margin-bottom: 32px;
        border: none;
    }

    .search-filters legend {
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--black);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .filter-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 16px;
    }

    .filter-checkbox {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 14px;
        cursor: pointer;
        padding: 12px;
        border-radius: var(--border-radius);
        transition: var(--transition);
        border: 1px solid var(--gray-200);
    }

    .filter-checkbox:hover {
        background-color: var(--gray-50);
        border-color: var(--gray-300);
    }

    .filter-checkbox input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkmark {
        height: 20px;
        width: 20px;
        background-color: var(--white);
        border: 2px solid var(--gray-300);
        border-radius: 4px;
        position: relative;
        transition: var(--transition);
        flex-shrink: 0;
    }

    .filter-checkbox input:checked ~ .checkmark {
        background-color: var(--black);
        border-color: var(--black);
    }

    .checkmark:after {
        content: "";
        position: absolute;
        display: none;
        left: 6px;
        top: 2px;
        width: 6px;
        height: 10px;
        border: solid white;
        border-width: 0 3px 3px 0;
        transform: rotate(45deg);
    }

    .filter-checkbox input:checked ~ .checkmark:after {
        display: block;
    }

    .filter-checkbox span:last-child {
        font-weight: 500;
        color: var(--gray-700);
        user-select: none;
    }

    .search-btn {
        width: 100%;
        padding: 20px;
        background: var(--black);
        color: var(--white);
        border: 2px solid var(--black);
        border-radius: var(--border-radius);
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 1px;
        font-family: inherit;
        position: relative;
        overflow: hidden;
    }

    .search-btn:hover:not(:disabled) {
        background: var(--gray-800);
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .search-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }

    /* Form styling enhancements */
    .form-input, .form-select, .form-textarea {
        width: 100%;
        padding: 16px;
        border: 2px solid var(--gray-300);
        border-radius: var(--border-radius);
        font-size: 16px;
        color: var(--black);
        background: var(--white);
        transition: var(--transition);
        font-family: inherit;
    }

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        outline: none;
        border-color: var(--black);
        box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    }

    .form-error {
        color: var(--error);
        font-size: 12px;
        margin-top: 4px;
        display: none;
    }

    .form-error[style*="block"] {
        display: block !important;
    }

    .form-input.error, .form-select.error, .form-textarea.error {
        border-color: var(--error);
        box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    }

    .form-help {
        font-size: 12px;
        color: var(--gray-500);
        margin-top: 4px;
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--black);
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .form-row.full {
        grid-template-columns: 1fr;
    }

    .form-group {
        margin-bottom: 20px;
    }

    /* Solutions Section */
    .solutions-section {
        padding: 120px 0;
        background: var(--white);
    }

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

    .solutions-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .solutions-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 56px;
        font-weight: 600;
        color: var(--black);
        margin-bottom: 24px;
        letter-spacing: -2px;
    }

    .solutions-header p {
        font-size: 22px;
        color: var(--gray-600);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
        margin-bottom: 80px;
    }

    .solution-card {
        background: var(--white);
        border: 2px solid var(--gray-200);
        border-radius: var(--border-radius);
        padding: 48px;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 4px;
        background: var(--black);
        transition: var(--transition);
    }

    .solution-card:hover::before {
        left: 0;
    }

    .solution-card:hover {
        border-color: var(--black);
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
    }

    .solution-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    .solution-icon {
        width: 80px;
        height: 80px;
        background: var(--black);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        border-radius: var(--border-radius);
    }

    .solution-number {
        font-family: 'Playfair Display', serif;
        font-size: 64px;
        font-weight: 300;
        color: var(--gray-200);
        line-height: 1;
    }

    .solution-card h3 {
        font-family: 'Playfair Display', serif;
        font-size: 32px;
        font-weight: 600;
        color: var(--black);
        margin-bottom: 16px;
        letter-spacing: -1px;
    }

    .solution-card p {
        color: var(--gray-600);
        line-height: 1.7;
        margin-bottom: 32px;
        font-size: 16px;
    }

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

    .solution-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        color: var(--gray-700);
        font-size: 14px;
        font-weight: 500;
    }

    .solution-features li::before {
        content: '✓';
        width: 20px;
        height: 20px;
        background: var(--black);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        flex-shrink: 0;
        border-radius: 50%;
    }

    .solution-pricing {
        border-top: 2px solid var(--gray-200);
        padding-top: 24px;
        margin-bottom: 24px;
    }

    .price-label {
        font-size: 12px;
        color: var(--gray-500);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .price-amount {
        font-family: 'Playfair Display', serif;
        font-size: 36px;
        font-weight: 700;
        color: var(--black);
    }

    .price-period {
        font-size: 14px;
        color: var(--gray-600);
    }

    /* Stats Section */
    .stats-section {
        background: var(--black);
        color: var(--white);
        padding: 120px 0;
    }

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

    .stats-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .stats-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 56px;
        font-weight: 600;
        margin-bottom: 24px;
        letter-spacing: -2px;
    }

    .stats-header p {
        font-size: 20px;
        color: var(--gray-400);
        max-width: 600px;
        margin: 0 auto;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }

    .stat-item {
        text-align: center;
        padding: 40px 20px;
        border: 2px solid var(--gray-800);
        border-radius: var(--border-radius);
        transition: var(--transition);
    }

    .stat-item:hover {
        border-color: var(--white);
        transform: translateY(-8px);
    }

    .stat-number {
        font-family: 'Playfair Display', serif;
        font-size: 64px;
        font-weight: 700;
        color: var(--white);
        display: block;
        margin-bottom: 16px;
        letter-spacing: -2px;
    }

    .stat-label {
        font-size: 16px;
        color: var(--gray-400);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .stat-description {
        font-size: 14px;
        color: var(--gray-500);
        line-height: 1.5;
    }

    /* Footer */
    .footer {
        background: var(--black);
        color: var(--white);
        padding: 80px 0 0;
        margin: 0;
    }

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

    .footer-content {
        display: grid;
        grid-template-columns: 2fr repeat(4, 1fr);
        gap: 60px;
        margin-bottom: 60px;
        padding-bottom: 0;
    }

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

    .footer-logo {
        color: var(--white);
        text-decoration: none;
        margin-bottom: 24px;
    }

    .footer-logo-main {
        font-family: 'Playfair Display', serif;
        font-size: 40px;
        font-weight: 400;
        letter-spacing: -1px;
        line-height: 1;
        display: block;
    }

    .footer-logo-sub {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: var(--gray-400);
        margin-top: 4px;
        display: block;
    }

    .footer-description {
        color: var(--gray-400);
        line-height: 1.7;
        margin-bottom: 32px;
        font-size: 16px;
    }

    .footer-section h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 24px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

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

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

    .footer-section a {
        color: var(--gray-400);
        text-decoration: none;
        font-size: 15px;
        transition: var(--transition);
    }

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

    .footer-bottom {
        border-top: 2px solid var(--gray-800);
        padding: 40px 0;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--gray-500);
        font-size: 14px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

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

    .footer-bottom a {
        color: var(--gray-400);
        text-decoration: none;
        transition: var(--transition);
    }

    .footer-bottom a:hover {
        color: var(--white);
    }

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

    .social-link {
        width: 44px;
        height: 44px;
        background: var(--gray-800);
        color: var(--gray-400);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: var(--transition);
        border: 2px solid var(--gray-700);
        border-radius: 50%;
    }

    .social-link:hover {
        background: var(--white);
        color: var(--black);
        border-color: var(--white);
        transform: translateY(-2px);
    }

    /* Notification system */
    .notification {
        position: fixed;
        top: 20px;
        right: 20px;
        padding: 16px 24px;
        border-radius: var(--border-radius);
        color: white;
        font-weight: 500;
        max-width: 400px;
        z-index: 9999;
        box-shadow: var(--shadow-xl);
        animation: slideInRight 0.3s ease-out;
        opacity: 1;
        transition: opacity 0.3s ease-out;
    }

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

    .notification-success {
        background: var(--success);
    }

    .notification-error {
        background: var(--error);
    }

    .notification-warning {
        background: var(--warning);
    }

    .notification-info {
        background: var(--primary);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .nav-container {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--white);
            border-top: 2px solid var(--gray-200);
            flex-direction: column;
            padding: 20px;
            box-shadow: var(--shadow-lg);
        }

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

        .mobile-menu-toggle {
            display: flex;
        }

        .nav-links {
            flex-direction: column;
            gap: 16px;
            margin-bottom: 20px;
        }

        .nav-actions {
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }

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

        .dropdown {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            border: none;
            box-shadow: none;
            background: var(--gray-50);
            margin-top: 8px;
            border-radius: var(--border-radius);
        }

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

        .hero-content h1 {
            font-size: 48px;
        }

        .footer-content {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .cookie-content {
            flex-direction: column;
            gap: 20px;
            text-align: center;
        }

        .cookie-close {
            top: 10px;
            right: 10px;
        }
    }

    @media (max-width: 768px) {
        .hero {
            padding: 80px 10px 50px;
            min-height: 80vh;
        }

        .hero-content h1 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 40px;
        }

        .search-form {
            padding: 24px;
            margin: 0 10px;
        }

        .search-row {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .search-tabs {
            border-radius: 0;
        }

        .search-tab {
            padding: 14px 8px;
            font-size: 11px;
        }

        .filter-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .solutions-header h2,
        .stats-header h2 {
            font-size: 36px;
        }

        .solutions-header p {
            font-size: 18px;
        }

        .solution-card {
            padding: 32px 24px;
        }

        .stats-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }

        .footer-links {
            justify-content: center;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .modal-content {
            margin: 10px;
            max-height: calc(100vh - 20px);
        }

        .modal-header {
            padding: 24px;
        }

        .modal-body {
            padding: 24px;
        }

        .modal-title {
            font-size: 24px;
        }

        .cookie-actions {
            flex-direction: column;
            width: 100%;
            gap: 8px;
        }

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

    @media (max-width: 480px) {
        .hero {
            padding: 60px 5px 40px;
        }

        .hero-content h1 {
            font-size: 28px;
            line-height: 1.3;
        }

        .hero-content p {
            font-size: 16px;
            margin-bottom: 32px;
        }

        .search-form {
            padding: 20px;
            margin: 0 5px;
        }

        .search-tab {
            padding: 12px 6px;
            font-size: 10px;
        }

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

        .filter-checkbox {
            padding: 8px;
            font-size: 13px;
        }

        .solution-card {
            padding: 24px 20px;
        }

        .solution-icon {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }

        .solution-number {
            font-size: 48px;
        }

        .solution-card h3 {
            font-size: 24px;
        }

        .stats-grid {
            gap: 20px;
        }

        .stat-item {
            padding: 24px 16px;
        }

        .stat-number {
            font-size: 48px;
        }

        .notification {
            left: 10px;
            right: 10px;
            top: 10px;
            max-width: none;
        }

        .cookie-close {
            width: 28px;
            height: 28px;
            font-size: 12px;
        }
    }

    /* Print styles */
    @media print {
        .header,
        .footer,
        .cookie-consent,
        .modal,
        .notification,
        .btn,
        .search-form {
            display: none !important;
        }

        body {
            font-size: 12pt;
            line-height: 1.4;
        }

        h1, h2, h3 {
            page-break-after: avoid;
        }

        .solution-card {
            page-break-inside: avoid;
            border: 1px solid #000;
            margin-bottom: 1em;
        }
    }

    /* Dark mode support (future enhancement) */
    @media (prefers-color-scheme: dark) {
        .js-enabled.dark-mode {
            --white: #1a1a1a;
            --black: #ffffff;
            --gray-50: #262626;
            --gray-100: #404040;
            --gray-200: #525252;
            --gray-900: #f5f5f5;
        }
    }