/* Modern Tech SaaS Design - White, Black, Blue, Orange, Grey */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0A0A0A;
    --white: #FFFFFF;
    --grey-100: #F7F7F7;
    --grey-200: #E5E5E5;
    --grey-400: #9CA3AF;
    --grey-600: #6B7280;
    --blue: #3B82F6;
    --blue-dark: #1E40AF;
    --orange: #F97316;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
}

/* Navigation */
nav {
    background: var(--white);
    border-bottom: 1px solid var(--grey-200);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

/* Navigation when scrolled */
nav.scrolled {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-200);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Add padding to body when nav is fixed to prevent content jump */
body.nav-scrolled {
    padding-top: 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--black);
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    line-height: 1.1;
}

.logo-text img {
    margin-right: 0;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .logo-text {
        flex-direction: row;
        text-align: left;
    }
    
    .logo-text img {
        margin-right: 12px;
        margin-bottom: 0;
    }
}

.logo-accent {
    color: var(--blue);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--grey-600);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-links .dropdown {
    position: relative;
}

/* Add invisible bridge to prevent dropdown from disappearing */
.nav-links .dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
    z-index: 999;
}

.nav-links .dropdown-toggle::after {
    content: ' ▼';
    font-size: 10px;
}

/* Nested dropdown arrows should point right */
.dropdown-menu .dropdown-toggle::after {
    content: ' ▶' !important;
    font-size: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 8px;
    min-width: 220px;
    z-index: 1000;
    padding: 8px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    list-style: none;
    margin: 0;
}

.dropdown:hover > .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Ensure the dropdown stays open when hovering over the menu itself */
.dropdown-menu:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Hide nested dropdowns by default - they should only show on hover of the parent item */
.dropdown-menu .dropdown .dropdown-menu {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-5px) !important;
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    margin-left: 5px !important;
}

/* Ensure parent dropdown item has relative positioning for nested dropdown */
.dropdown-menu .dropdown {
    position: relative;
}

/* Show nested dropdown ONLY when hovering over the parent dropdown item */
.dropdown-menu .dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
    list-style: none;
}

.dropdown-item:hover {
    background: var(--grey-100);
    color: var(--blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-select {
    padding: 8px 6px;
    border: 1px solid var(--grey-200);
    border-radius: 6px;
    font-size: 13px;
    background: var(--white);
    cursor: pointer;
    margin-right: 0;
    height: 36px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    width: auto;
    max-width: 80px;
}

.login-btn {
    background: var(--blue);
    color: var(--white);
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    height: 36px;
    box-sizing: border-box;
    min-width: 55px;
    width: auto;
}

.login-btn:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.social-link {
    color: var(--grey-600);
    font-size: 18px;
    transition: color 0.3s;
    margin-left: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 6px;
}

.social-link:hover {
    color: var(--blue);
}

/* Hero Section */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 32px 100px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--grey-100);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--grey-600);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--black) 0%, var(--grey-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-highlight {
    color: var(--blue);
    -webkit-text-fill-color: var(--blue);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--grey-600);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Hero Solutions Preview */
.hero-solutions-preview {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 48px;
    max-width: 900px;
}

.solution-preview-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 12px;
    transition: all 0.3s;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

.solution-preview-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.solution-preview-card.primary {
    border-color: var(--orange);
    background: linear-gradient(to right, rgba(249, 115, 22, 0.05), rgba(255, 255, 255, 1));
}

.solution-preview-card.primary:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}

.preview-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.preview-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.preview-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.preview-text span {
    font-size: 12px;
    color: var(--grey-600);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

.cta-primary {
    padding: 16px 32px;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.cta-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cta-secondary {
    padding: 16px 32px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid var(--grey-200);
    transition: all 0.3s;
}

.cta-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* Hero SVG */
.hero-visual {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    height: 300px;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.card-1 {
    top: 20px;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50px;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20px;
    left: 25%;
    animation-delay: 2s;
}

.card-icon-svg {
    margin-bottom: 12px;
}

.card-label {
    font-weight: 600;
    font-size: 14px;
}

/* Page Hero for listing pages */
.page-hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 32px 60px;
    text-align: center;
    background: var(--grey-100);
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 18px;
    color: var(--grey-600);
    max-width: 600px;
    margin: 0 auto;
}

.hero-icon-container {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.hero-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    justify-content: center;
}

.cta-primary {
    padding: 14px 28px;
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: var(--blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    padding: 14px 28px;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--black);
    color: var(--white);
}

@media (max-width: 640px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-icon-large {
        width: 100px;
        height: 100px;
    }
}

/* Utility Classes */
.text-highlight {
    color: var(--orange);
    font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 0 32px;
}

.benefit-item {
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 16px;
    transition: all 0.3s;
}

.benefit-item:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--grey-200);
    margin-bottom: 16px;
    line-height: 1;
}

.benefit-item:hover .benefit-number {
    color: var(--blue);
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.benefit-item p {
    color: var(--grey-600);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-item:hover {
    border-color: var(--blue);
    transform: translateX(4px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--grey-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--black);
}

.contact-link {
    color: var(--grey-600);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--blue);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.blog-card {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--grey-100);
}

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--grey-600);
    margin-bottom: 12px;
}

.blog-date {
    font-weight: 600;
}

.blog-author {
    color: var(--grey-400);
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--black);
}

.blog-excerpt {
    font-size: 15px;
    color: var(--grey-600);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
}

.blog-card:hover .blog-read-more {
    gap: 10px;
}

/* Stats Section */
.stats-section {
    background: var(--grey-100);
    padding: 60px 32px;
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--grey-600);
    font-size: 14px;
    font-weight: 500;
}

/* Featured Jobs */
.featured-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue) 0%, var(--orange) 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 18px;
    color: var(--grey-600);
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.job-card {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 16px;
    padding: 32px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--blue);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.job-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.job-card:hover::before {
    transform: scaleY(1);
}

.job-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.job-card:nth-child(2) .job-icon {
    background: linear-gradient(135deg, var(--orange) 0%, #EA580C 100%);
}

.job-card:nth-child(3) .job-icon {
    background: linear-gradient(135deg, #6B7280 0%, #374151 100%);
}

.job-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.job-location {
    color: var(--grey-600);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Filled Job Cards */
.job-card-filled {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.job-card-filled .job-icon {
    background: linear-gradient(135deg, var(--grey-400) 0%, var(--grey-600) 100%);
}

.job-filled-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--grey-600);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination-btn {
    padding: 10px 18px;
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 8px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background: var(--grey-100);
    border-color: var(--black);
}

.pagination-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.see-all {
    text-align: center;
}

.see-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--grey-200);
    border-radius: 12px;
    transition: all 0.3s;
}

.see-all-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* Info Sections */
.info-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.info-visual {
    background: var(--grey-100);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.info-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.info-visual svg {
    position: relative;
    z-index: 1;
}

.info-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.info-content .lead {
    font-size: 18px;
    color: var(--grey-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list li {
    padding: 16px 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--black);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    flex-shrink: 0;
}

.feature-list li:nth-child(2) .check-icon {
    background: var(--orange);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-link:hover {
    background: var(--blue);
    transform: translateX(4px);
}

/* Alternate background */
.bg-alternate {
    background: var(--grey-100);
}

/* Testimonials */
.testimonials {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 32px;
    background: var(--white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--blue);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.stars {
    color: var(--orange);
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--grey-600);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.7;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-card:nth-child(2) .author-avatar {
    background: linear-gradient(135deg, var(--orange) 0%, #EA580C 100%);
}

.testimonial-card:nth-child(3) .author-avatar {
    background: linear-gradient(135deg, #6B7280 0%, #374151 100%);
}

.author-name {
    font-weight: 600;
    color: var(--black);
}

.author-role {
    font-size: 13px;
    color: var(--grey-600);
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 32px 32px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.footer-logo-accent {
    color: var(--blue);
}

.footer-text {
    color: var(--grey-400);
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--grey-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--blue);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--grey-400);
    font-size: 14px;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--blue);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
    z-index: 99;
}

.back-to-top:hover {
    background: var(--black);
    transform: translateY(-4px);
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .jobs-grid,
    .info-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 2px solid var(--grey-200);
        padding: 32px;
        gap: 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active li {
        border-bottom: 1px solid var(--grey-200);
    }
    
    .nav-links.active li:last-child {
        border-bottom: none;
    }
    
    .nav-links.active a {
        padding: 16px 0;
        display: block;
    }
    
    .nav-links.active .dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }
    
    .nav-links.active .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-visual {
        height: 200px;
    }
    
    .floating-card {
        width: 140px !important;
        padding: 16px !important;
    }
    
    .hero-solutions-preview {
        flex-direction: column;
        align-items: stretch;
    }
    
    .solution-preview-card {
        max-width: 100%;
    }
}

/* Salary Cards */
.salary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 0 32px;
}

.salary-card {
    padding: 24px;
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 12px;
    transition: all 0.3s;
}

.salary-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.salary-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}

.salary-card .location {
    font-size: 14px;
    color: var(--grey-600);
    margin-bottom: 16px;
}

.salary-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.salary-card ul li {
    font-size: 15px;
    color: var(--grey-700);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.salary-card ul li:before {
    content: "€";
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.salary-card ul li strong {
    color: var(--black);
    margin-right: 8px;
}

/* Solutions Grid - Three Core Solutions Section */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 0 32px;
}

.solution-card {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--blue);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.solution-card.featured {
    border-width: 2px;
}

.solution-card.primary {
    border-color: var(--orange);
    background: linear-gradient(to bottom, rgba(249, 115, 22, 0.02), rgba(255, 255, 255, 1));
}

.solution-card.primary:hover {
    border-color: var(--orange);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15);
}

.solution-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--orange);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.solution-type {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.solution-desc {
    font-size: 15px;
    color: var(--grey-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.solution-features li {
    font-size: 14px;
    color: var(--grey-600);
    padding: 8px 0;
    border-bottom: 1px solid var(--grey-200);
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
    transition: all 0.3s;
}

.solution-cta:hover {
    color: var(--blue-dark);
    gap: 12px;
}

.solution-cta svg {
    transition: transform 0.3s;
}

.solution-cta:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .solution-card {
        padding: 24px;
    }
    
    .solution-badge {
        top: 16px;
        right: 16px;
    }
}

/* Alternative Design: Individual Solution Sections */
.solution-section {
    padding: 40px 0;
    background: var(--white);
}

.solution-section.highlighted {
    background: var(--grey-100);
}

.solution-stats {
    max-width: 1280px;
    margin: 60px auto 0;
    padding: 40px 32px 0;
    border-top: 1px solid var(--grey-200);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.solution-stats .stat-item {
    text-align: center;
}

.solution-stats .stat-item h3 {
    font-size: 42px;
    font-weight: 800;
    color: var(--blue);
    margin: 0 0 8px 0;
    line-height: 1;
}

.solution-stats .stat-item p {
    font-size: 15px;
    color: var(--grey-600);
    margin: 0;
    font-weight: 500;
}

.solution-content-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.solution-content-wrapper.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.solution-content-wrapper.reverse .solution-visual {
    order: 2;
}

.solution-content-wrapper.reverse .solution-content {
    order: 1;
}

.solution-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.solution-icon-large {
    width: 160px;
    height: 160px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.solution-icon-large:hover {
    transform: translateY(-8px) scale(1.05);
}

.platform-badge {
    margin-top: 24px;
    padding: 8px 20px;
    background: var(--orange);
    color: var(--white);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-number {
    font-size: 60px;
    font-weight: 800;
    color: var(--grey-200);
    line-height: 1;
    letter-spacing: -2px;
}

.solution-type-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--blue);
}

.solution-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
    margin: 0;
}

.solution-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--grey-600);
    margin: 0;
}

.solution-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--black);
}

.solution-features-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.solution-features-list li span {
    flex: 1;
}

.solution-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 12px;
}

.solution-cta-btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.solution-cta-btn.primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

.solution-cta-btn.primary:hover {
    background: #EA580C;
    border-color: #EA580C;
}

.solution-cta-btn svg {
    transition: transform 0.3s;
}

.solution-cta-btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 968px) {
    .solution-content-wrapper,
    .solution-content-wrapper.reverse {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .solution-content-wrapper.reverse .solution-visual,
    .solution-content-wrapper.reverse .solution-content {
        order: initial;
    }
    
    .solution-heading {
        font-size: 30px;
    }
    
    .solution-number {
        font-size: 52px;
    }
    
    .solution-icon-large {
        width: 120px;
        height: 120px;
    }
    
    .solution-icon-large svg {
        width: 48px;
        height: 48px;
    }
    
    .solution-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .solution-section {
        padding: 48px 0;
    }
    
    .solution-content-wrapper {
        padding: 0 20px;
        gap: 32px;
    }
    
    .solution-heading {
        font-size: 26px;
    }
    
    .solution-description {
        font-size: 16px;
    }
    
    .solution-number {
        font-size: 44px;
    }
    
    .solution-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
        padding-top: 32px;
    }
    
    .solution-stats .stat-item h3 {
        font-size: 36px;
    }
}

/* Benefit Card Features */
.benefit-card {
    padding: 32px;
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 16px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.benefit-card p {
    color: var(--grey-600);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.benefit-features li {
    padding: 4px 0;
    color: var(--grey-600);
    font-size: 14px;
    position: relative;
    padding-left: 16px;
}

.benefit-features li::before {
    content: "•";
    color: var(--blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1280px;
    margin: 40px auto 0;
    padding: 0 32px;
}

.process-step {
    background: var(--white);
    border: 2px solid var(--grey-200);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.process-step:hover {
    border-color: var(--blue);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--black);
}

.process-step p {
    color: var(--grey-600);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .process-step {
        padding: 24px;
    }
}

