* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0f172a;
    --primary-dark: #020617;
    --secondary-color: #f8fafc;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --accent-color: #3b82f6;
    --accent-light: #60a5fa;
    --gradient-start: #0f172a;
    --gradient-end: #1e293b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a.active {
    font-weight: 700;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span,
.btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -12px rgba(59, 130, 246, 0.4);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.05);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: 2px solid rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(10px);
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.3);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.05rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--primary-color);
    padding-top: 80px;
    overflow: hidden;
}

.hero .container {
    margin: 0;
    padding-left: 170px;
    max-width: none;
}

@media (max-width: 1200px) {
    .hero .container {
        padding-left: 80px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        padding-left: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
        min-height: 80vh;
        display: block;
        text-align: center;
    }

    .hero .container {
        padding: 4rem 1.5rem;
        margin: 0 auto;
        max-width: 1200px;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 40%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 40%, black 40%, transparent 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-image {
        position: relative;
        margin-top: 3rem;
        height: 300px;
        border-radius: 20px;
        overflow: hidden;
        opacity: 1;
    }
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(248, 250, 252, 0.4) 100%);
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
    }
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1.8rem;
    opacity: 0.7;
    line-height: 1.4;
    max-width: 700px;
    animation: fadeInUp 0.8s ease 0.3s backwards;
    font-weight: 400;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

@media (max-width: 768px) {
    .hero-buttons {
        justify-content: center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats {
    padding: 0 0 6rem 0;
    background: transparent;
    margin-top: -4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.1);
}

.service-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(99, 102, 241, 0.2) 100%);
}

.service-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-color);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.03);
    line-height: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-hover-line {
    opacity: 1;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    z-index: 10;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.process-step {
    position: relative;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.08);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process-step:hover::before {
    opacity: 1;
}

.process-step:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px -15px rgba(59, 130, 246, 0.2);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    display: inline-block;
}

.process-step h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features {
    list-style: none;
    margin-top: 2.5rem;
}

.about-features li {
    padding: 1.5rem 1.25rem;
    background: white;
    border-radius: 12px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.about-features li:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.about-features li:last-child {
    margin-bottom: 0;
}

.about-features strong {
    color: var(--accent-color);
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.about-image {
    position: relative;
}

.image-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: white;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.filter-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.filter-grid {
    display: grid;
    gap: 2rem;
}

.additional-filters {
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.show-more-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-filters:hover {
    border-color: var(--accent-color);
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-2px);
}

.show-more-filters #filter-toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.show-more-filters.active #filter-toggle-icon {
    transform: rotate(180deg);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.6rem 1.25rem;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-secondary);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #6366f1 100%);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.filter-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-results span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.reset-filters {
    padding: 0.6rem 1.5rem;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-filters:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

/* Info Banners */
.info-banner {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(99, 102, 241, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.info-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-banner p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.info-box {
    background: var(--secondary-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
    padding: 2rem;
}

.info-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Job Listing Styles */
.job-listing {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.job-listing.hidden {
    display: none;
}

.job-listing:hover {
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.job-title-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.job-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.job-meta span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    border-radius: 8px;
    white-space: nowrap;
}

.job-ref {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    white-space: nowrap;
}

.job-content {
    margin-top: 2rem;
}

.job-section {
    margin-bottom: 2rem;
}

.job-section h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.job-section p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.job-section ul {
    list-style: none;
    padding-left: 0;
}

.job-section ul li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.job-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0.5rem;
    color: var(--accent-color);
    font-weight: 700;
}

.contact-form-single {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-single .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-single .form-group input[type="checkbox"] {
    width: auto;
    padding: 0;
    margin: 0;
}

/* Case Study Styles */
.case-study {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    margin-bottom: 3rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}

.case-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.case-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.case-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.case-meta span {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    border-radius: 8px;
}

.case-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.case-content p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.case-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.case-content ul li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.case-content ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.focus-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.focus-item {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.focus-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-light));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.focus-item:hover::before {
    transform: scaleY(1);
}

.focus-item:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.focus-item h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.focus-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.cta-content p {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.contact-form button {
    grid-column: 1 / -1;
    justify-self: start;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        display: flex;
        /* Always flex but hidden by right position */
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        font-size: 1.25rem;
        display: block;
        padding: 1rem;
    }

    .mobile-menu-toggle {
        z-index: 1002;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .job-header {
        flex-direction: column;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .job-listing {
        padding: 2rem 1.5rem;
    }

    .filter-section {
        padding: 1.5rem;
    }

    .filter-options {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .filter-results {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-listing {
        padding: 2rem 1.5rem;
    }
}

.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    font-size: 5rem;
    font-weight: 800;
    color: rgba(59, 130, 246, 0.1);
    line-height: 1;
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--secondary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* Process Detail Section */
.process-detail {
    padding: 6rem 0;
    background: white;
}

.detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.detail-block {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid var(--border-color);
}

.detail-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-block h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.detail-block p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.detail-block ul {
    list-style: none;
    padding-left: 0;
}

.detail-block ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.detail-block ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }


    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .process-timeline,
    .focus-content,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .detail-block {
        margin-bottom: 3rem;
        padding-bottom: 3rem;
    }

    .job-header {
        flex-direction: column;
    }

    .job-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .job-listing {
        padding: 2rem 1.5rem;
    }

    .filter-section {
        padding: 1.5rem;
    }

    .filter-options {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .filter-results {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-card {
        padding: 2rem;
    }

    .process-step {
        padding: 2rem;
    }

    .hero {
        padding-top: 60px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .cta {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-large {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-number {
        font-size: 3rem;
        top: 1rem;
        right: 1rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .btn-primary {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .job-listing {
        padding: 1.5rem 1rem;
    }

    .case-study,
    .job-listing,
    .service-card {
        border-radius: 16px;
    }

    .info-banner,
    .info-box {
        padding: 1.5rem;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .nav-wrapper {
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }
}

/* Legal Pages (AGB, Datenschutz, Impressum) */
.legal-section {
    padding: 140px 0 80px;
    background: #ffffff;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.legal-date {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-block {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-block h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.legal-block h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 24px 0 16px;
}

.legal-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1rem;
}

.legal-block ul {
    list-style: disc;
    margin-left: 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-block ul li {
    margin-bottom: 8px;
}

.legal-block .contact-info {
    background: var(--secondary-color);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 100px 0 60px;
    }

    .legal-header h1 {
        font-size: 2rem;
    }

    .legal-block h2 {
        font-size: 1.5rem;
    }

    .legal-block h3 {
        font-size: 1.2rem;
    }
}

/* Dropdown Navigation Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
}

.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.dropdown-menu li a:hover {
    background: var(--secondary-color);
    color: var(--accent-color);
    padding-left: 2rem;
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--secondary-color);
        margin-top: 0.5rem;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu li a {
        padding-left: 2rem;
        font-size: 0.9rem;
    }

    .dropdown-menu li a:hover {
        padding-left: 2.5rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.cookie-banner.hide {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
    border-radius: 8px !important;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .cookie-buttons button {
        flex: 1;
        text-align: center;
        justify-content: center;
    }
}
/* ==========================================
   FEASIBILITY TOOL STYLES
   ========================================== */

.feasibility-hero {
    padding-bottom: 2rem;
}

.centered {
    justify-content: center;
}

.text-center {
    text-align: center;
    margin: 0 auto;
}

.analyzer-section {
    padding: 2rem 0 8rem 0;
    margin-top: -8rem;
    position: relative;
    z-index: 20;
}

.analyzer-card {
    background: white;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: var(--shadow-premium);
    border: 1px solid rgba(15, 23, 42, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 3rem;
}

.progress-bar {
    height: 8px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-indicator {
    text-align: right;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

.form-step h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.step-desc {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

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

/* Form Elements */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 2px solid #f1f5f9;
    background: #f8fafc;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--accent-color);
    background: white;
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

/* Radio & Checkbox Cards */
.radio-group, .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.radio-group.vertical {
    grid-template-columns: 1fr;
}

.radio-card, .radio-item, .checkbox-item {
    cursor: pointer;
    position: relative;
}

.radio-card input, .radio-item input, .checkbox-item input {
    position: absolute;
    opacity: 0;
}

.radio-content, .checkbox-item span, .radio-label-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.radio-item .rad-content {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 1.25rem;
}

.checkbox-item span {
    flex-direction: row;
    padding: 1rem;
}

.radio-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.radio-card input:checked + .radio-content,
.radio-item input:checked + .radio-label-content,
.checkbox-item input:checked + span {
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.radio-label-content {
    display: block;
    text-align: left;
    padding: 1.25rem;
}

.radio-label-content strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.radio-label-content span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Salary Inputs */
.salary-inputs {
    display: flex;
    gap: 1.5rem;
}

.salary-field {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.salary-field input {
    padding-left: 3.5rem !important;
    padding-right: 2rem !important;
}

.salary-field .unit {
    position: absolute;
    left: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

.salary-field .currency {
    position: absolute;
    right: 1.25rem;
    color: var(--text-secondary);
}

/* Form Nav */
.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #f1f5f9;
}

/* Toggle Group (Yes/No) */
.toggle-group {
    display: flex;
    background: #f1f5f9;
    padding: 4px;
    border-radius: 100px;
    width: fit-content;
}

.toggle-card {
    cursor: pointer;
}

.toggle-card input {
    position: absolute;
    opacity: 0;
}

.toggle-card span {
    display: block;
    padding: 0.75rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.toggle-card input:checked + span {
    background: white;
    color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

/* Summary Card */
.summary-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.summary-item strong {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

/* Results Section */
.results-fade-in {
    animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.score-display {
    text-align: center;
    margin-bottom: 3rem;
}

.gauge-wrapper {
    position: relative;
    width: 240px;
    margin: 0 auto;
}

.gauge {
    width: 100%;
}

.score-value {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.score-label {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.recommendation-box {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.6;
}

.insights-list, .suggestions-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.insights-list li, .suggestions-list li {
    padding: 1.25rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-color);
    box-shadow: var(--shadow-sm);
}

/* Email Gate */
.email-gate-overlay {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-color);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    margin-top: -2rem;
    position: relative;
    z-index: 30;
    box-shadow: var(--shadow-xl);
}

.blurred-results {
    filter: blur(8px);
    pointer-events: none;
    opacity: 0.4;
    user-select: none;
}

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

.gate-form input {
    flex: 1;
}

.privacy-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.btn-success {
    background: #10b981;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    border: none;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(16, 185, 129, 0.4);
}

/* Autocomplete suggestions */
.autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    z-index: 100;
    box-shadow: var(--shadow-lg);
    max-height: 250px;
    overflow-y: auto;
}

.autocomplete-item {
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s;
}

.autocomplete-item:hover {
    background: #f1f5f9;
}

@media (max-width: 768px) {
    .analyzer-card { padding: 1.5rem; }
    .salary-inputs { flex-direction: column; gap: 1rem; }
    .summary-card { grid-template-columns: 1fr; }
    .gate-form { flex-direction: column; }
}


/* Calculator Section Styles */
.calculator-section {
    padding: 6rem 0;
    background: #ffffff;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 992px) {
    .calculator-container {
        grid-template-columns: 1fr;
    }
}

.calculator-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.calculator-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Results Box Styles */
.results-box {
    background: var(--primary-color);
    color: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-premium);
    position: sticky;
    top: 100px;
}

.results-box h2 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    text-align: center;
}

.result-item {
    margin-bottom: 2rem;
}

.result-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-left: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.result-savings {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.result-savings .result-value {
    font-size: 2rem;
    color: #10b981;
    -webkit-text-fill-color: #10b981;
}

.result-meta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.meta-label {
    font-size: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.meta-value {
    font-weight: 600;
}

/* Input Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.input-with-symbol {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-symbol input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-with-symbol input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.input-with-symbol .symbol {
    position: absolute;
    right: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.input-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1rem;
    font-family: inherit;
    background-color: white;
    cursor: pointer;
}

.radio-group-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.radio-card-simple {
    cursor: pointer;
}

.radio-card-simple input {
    display: none;
}

.radio-card-simple .card-content {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.radio-card-simple input:checked + .card-content {
    border-color: var(--accent-color);
    background: rgba(59, 130, 246, 0.05);
    color: var(--accent-color);
}
