﻿@import url('idava-home.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    position: relative;
}

.logo {
    margin-right: auto;
}

    .logo a {
        font-size: 1.8rem;
        font-weight: 700;
        text-decoration: none;
        padding-left: 0 !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .nav-links a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
    }

        .nav-links a:hover {
            color: #667eea;
        }

.nav-cta-mobile {
    display: none;
}

.nav-cta-desktop {
    margin-left: 2rem;
    white-space: nowrap;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    -webkit-text-fill-color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        color: white !important;
        -webkit-text-fill-color: white !important;
    }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: #333;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

/* Hero Section */
.hero {
    margin-top: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: calc(80px + 6rem) 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
        background-size: cover;
        background-position: bottom;
        opacity: 0.3;
    }

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    }

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

    .btn-secondary:hover {
        background: white;
        color: #667eea;
    }

/* Products Section */
.products {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #333;
}

.products-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    }

.product-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
}

.product-card p {
    color: #666;
    line-height: 1.8;
}

.product-link,
.product-link:visited,
.product-link:hover,
.product-link:active,
.product-link:focus {
    text-decoration: none;
    color: inherit;
}

/* Global Vision Section */
.global-vision {
    padding: 6rem 2rem 6rem;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    text-align: center;
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
}

.vision-stats {
    display: flex;
    justify-content: space-around;
    align-items: baseline; /* Aliniază pe baseline, nu pe center */
    gap: clamp(1rem, 3vw, 3rem);
    flex-wrap: nowrap;
    margin-top: 4rem;
    padding: 0 1rem;
}

.stat {
    flex: 1;
    min-width: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    height: auto;
    display: block;
}

.stat-label {
    font-size: clamp(0.875rem, 2vw, 1.1rem);
    opacity: 0.9;
    line-height: 1.4;
}

/* Pentru ecrane foarte mici */
@media (max-width: 480px) {
    .global-vision {
        padding: 4rem 1rem;
    }

    .vision-stats {
        gap: 0.5rem;
        padding: 0 0.5rem;
        margin-top: 3rem;
    }
}

/* Careers Section */
.careers {
    padding: 6rem 2rem;
    padding-top: calc(80px + 4rem);
    background: white;
}

.careers-container {
    max-width: 1200px;
    margin: 0 auto;
}

.careers-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

    .careers-intro h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        color: #333;
    }

    .careers-intro p {
        font-size: 1.2rem;
        color: #666;
        line-height: 1.8;
    }

.job-positions {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

.job-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

    .job-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    }

    .job-card h3 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        color: #333;
    }

.job-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    background: #667eea;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.job-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.apply-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .apply-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    }


    .apply-btn:disabled {
        background-color: #9e9e9e; /* gri */
        border-color: #9e9e9e;
        color: #ffffff;
        cursor: not-allowed;
        opacity: 0.7;
    }

        .apply-btn:disabled:hover {
            background-color: #9e9e9e; /* să nu se schimbe la hover */
        }

.apply-btn.already-applied {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    cursor: default;
    opacity: 1;
}

    .apply-btn.already-applied:hover {
        transform: none;
        box-shadow: none;
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }


/* Application Form */
.application-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: none;
}

    .application-form.active {
        display: block;
        animation: slideIn 0.3s ease;
    }

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #333;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 1rem;
        border: 2px solid #e0e0e0;
        border-radius: 10px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: #667eea;
        }

    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
    }

.btn-cancel {
    background: #f0f0f0;
    color: #333;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-cancel:hover {
        background: #e0e0e0;
    }

/* ============================================================
   Footer — gradient + overlapping cards
   ============================================================ */
footer {
    background: linear-gradient(135deg, #0a0d1f 0%, #1a1245 45%, #2d1b69 100%);
    color: white;
    padding: 4rem 2rem 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.footer-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.footer-blob-1 {
    width: 420px;
    height: 420px;
    background: rgba(102, 126, 234, 0.25);
    top: -120px;
    left: -80px;
}

.footer-blob-2 {
    width: 320px;
    height: 320px;
    background: rgba(118, 75, 162, 0.2);
    bottom: 40px;
    right: 5%;
}

.footer-blob-3 {
    width: 200px;
    height: 200px;
    background: rgba(102, 126, 234, 0.15);
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
}

/* ---- Layout: form left + info column right ---- */
.footer-cards {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 0 5rem;
    position: relative;
    z-index: 1;
}

/* Base card styles */
.footer-card {
    min-width: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 2rem 1.8rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
}

/* Top shimmer line on every card */
.footer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.55), transparent);
    border-radius: 1px;
}

/* Card 1 — Form: wide, on the left */
.footer-card-form {
    flex: 1.5;
    align-self: stretch;
}

    .footer-card-form:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }

/* Right column: 3 info cards stivuite simplu */
.footer-stack {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-self: center;
}

.footer-card-brand,
.footer-card-contact,
.footer-card-address {
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-card-brand:hover,
.footer-card-contact:hover,
.footer-card-address:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.5);
}

/* Card icon */
.footer-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.22) 0%, rgba(118, 75, 162, 0.22) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #9aa8ff;
}

/* Brand card — logo */
.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 1rem;
}

    .footer-brand-logo .atomic-logo {
        width: 26px;
        height: 26px;
        flex-shrink: 0;
    }

    .footer-brand-logo .atom-mini {
        width: 26px;
        height: 26px;
    }

    .footer-brand-logo .atom-mini .orbit-1 {
        width: 38px;
        height: 14px;
        margin-left: -19px;
        margin-top: -7px;
        border-width: 2.5px;
    }

    .footer-brand-logo .atom-mini .orbit-2 {
        width: 14px;
        height: 38px;
        margin-left: -7px;
        margin-top: -19px;
        border-width: 2.5px;
    }

    .footer-brand-logo .atom-mini .nucleus {
        width: 7px;
        height: 7px;
    }

    .footer-brand-logo .logo-text {
        font-size: 1.2rem;
    }

/* Form card content */
.footer-form-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

.footer-form-subtitle {
    color: #b8bedc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.footer-form-group {
    margin-bottom: 0.85rem;
}

    .footer-form-group label {
        display: block;
        margin-bottom: 0.35rem;
        font-size: 0.82rem;
        font-weight: 600;
        color: #c5cae9;
        letter-spacing: 0.2px;
    }

.footer-input {
    width: 100%;
    padding: 0.7rem 0.95rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.92rem;
    font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}

    .footer-input::placeholder { color: rgba(255, 255, 255, 0.28); }

    .footer-input:focus {
        border-color: rgba(102, 126, 234, 0.65);
        background: rgba(255, 255, 255, 0.1);
    }

.footer-textarea {
    resize: vertical;
    min-height: 100px;
}

.footer-captcha-wrap { margin: 0.9rem 0; }

.footer-btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .footer-btn-submit:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(102, 126, 234, 0.45);
    }

    .footer-btn-submit:disabled {
        opacity: 0.45;
        cursor: not-allowed;
    }

/* Feedback messages */
.ct-success-msg {
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(16, 185, 129, 0.38);
    color: #6ee7b7;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 0.9rem;
    font-size: 0.88rem;
}

.ct-error-msg {
    background: rgba(239, 68, 68, 0.11);
    border: 1px solid rgba(239, 68, 68, 0.32);
    color: #fca5a5;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    margin-bottom: 0.9rem;
    font-size: 0.88rem;
}

/* Info cards content */
.footer-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-card p {
    color: #b8bedc;
    font-size: 0.85rem;
    line-height: 1.75;
}

.footer-card address {
    color: #b8bedc;
    font-size: 0.85rem;
    line-height: 1.85;
}

.footer-address-link {
    color: #b8bedc;
    text-decoration: none;
    transition: color 0.2s;
}

    .footer-address-link:hover {
        color: #9aa8ff;
        text-decoration: underline;
    }

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-contact li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.6rem;
        color: #b8bedc;
        font-size: 0.84rem;
    }

        .footer-contact li svg {
            flex-shrink: 0;
            color: #9aa8ff;
            opacity: 0.85;
        }

    .footer-contact a {
        color: #9aa8ff;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-contact a:hover { color: #ffffff; }

/* Footer bottom bar */
.footer-bottom-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 2rem;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    padding: 1.4rem 0 1.8rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0;
}

    .footer-legal-links a {
        color: rgba(255, 255, 255, 0.55);
        text-decoration: none;
        font-weight: 700;
        transition: color 0.2s;
        padding: 0 0.7rem;
    }

        .footer-legal-links a:hover { color: #667eea; }

    .footer-legal-links a + a::before {
        content: '·';
        color: rgba(255, 255, 255, 0.25);
        font-size: 1.4rem;
        line-height: 1;
        margin-right: 0.7rem;
        font-weight: 400;
    }

/* ---- Responsive ---- */
@media (max-width: 860px) {
    .footer-cards {
        flex-direction: column;
        padding: 2.5rem 0 3rem;
        gap: 1.5rem;
    }

    .footer-card-form { width: 100%; }

    .footer-info-col { width: 100%; }

    .footer-card-brand   { margin-bottom: 0.75rem; }
    .footer-card-contact { margin-bottom: 0.75rem; }

    .footer-card-brand:hover,
    .footer-card-contact:hover,
    .footer-card-address:hover { transform: translateY(-4px); }

    .footer-form-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    footer { padding: 3rem 1.2rem 0; }
    .footer-form-title { font-size: 1.4rem; }
    .footer-form-grid { grid-template-columns: 1fr; }
}

.success-message {
    background: #10b981;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    display: none;
}

    .success-message.show {
        display: block;
        animation: slideIn 0.3s ease;
    }

/* Job Details */
.job-details-toggle {
    margin: 1rem 0 0.5rem;
}

.btn-details {
    background: none;
    border: 1px solid #d1d5db;
    color: #667eea;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    font-family: inherit;
}

    .btn-details:hover {
        background: #f0f4ff;
        border-color: #667eea;
    }

.job-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 2000px;
    }
}

.detail-section {
    margin-bottom: 1.2rem;
}

    .detail-section h4 {
        font-size: 0.95rem;
        color: #374151;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .detail-section ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .detail-section ul li {
            position: relative;
            padding-left: 1.3rem;
            margin-bottom: 0.35rem;
            font-size: 0.9rem;
            color: #4b5563;
            line-height: 1.5;
        }

            .detail-section ul li::before {
                content: '\2713';
                position: absolute;
                left: 0;
                color: #667eea;
                font-weight: 700;
            }

    .detail-section p {
        font-size: 0.9rem;
        color: #4b5563;
        line-height: 1.5;
    }

    .detail-section.tests-notice {
        background: #fffbeb;
        border: 1px solid #fde68a;
        border-radius: 10px;
        padding: 0.8rem 1rem;
    }

        .detail-section.tests-notice p {
            color: #92400e;
            font-size: 0.85rem;
            margin-top: 0.3rem;
        }

.tests-badge {
    display: inline-block;
    font-weight: 600;
    color: #92400e;
    font-size: 0.9rem;
}

.job-card .apply-btn {
    margin-top: 1rem;
    display: inline-block;
    text-decoration: none;
}

/* Form styles (validation, autocomplete, drop-zone) are in recruitment-form.css */

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 1rem 0;
        gap: 0;
    }

        .nav-links.open {
            display: flex;
        }

        .nav-links li {
            width: 100%;
        }

        .nav-links a {
            display: block;
            padding: 0.8rem 2rem;
            border-bottom: 1px solid #f0f0f0;
        }

            .nav-links a:hover {
                background: #f8f8ff;
            }

    .nav-cta-mobile {
        display: block;
        padding: 0.8rem 2rem;
    }

        .nav-cta-mobile .cta-button {
            display: block;
            text-align: center;
            margin: 0;
        }

    .nav-cta-desktop {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Logo atomic pentru header */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.atomic-logo {
    position: relative;
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.atom-mini {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
}

/* Nucleul central - cerc simplu */
.nucleus {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.8);
    z-index: 10;
}

/* Elipsa orizontală */
.orbit-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 58px;
    height: 22px;
    margin-left: -29px;
    margin-top: -11px;
    border: 3.5px solid;
    border-color: rgba(102, 126, 234, 0.8);
    border-radius: 50%;
}

/* Elipsa verticală */
.orbit-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 58px;
    margin-left: -11px;
    margin-top: -29px;
    border: 3.5px solid;
    border-color: rgba(118, 75, 162, 0.8);
    border-radius: 50%;
}

/* Text logo */
.logo-text {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hover effect */
.logo-link:hover .atomic-logo {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .atomic-logo {
        width: 38px;
        height: 38px;
    }

    .atom-mini {
        width: 38px;
        height: 38px;
    }

    .orbit-1 {
        width: 50px;
        height: 19px;
        margin-left: -25px;
        margin-top: -9.5px;
        border-width: 3px;
    }

    .orbit-2 {
        width: 19px;
        height: 50px;
        margin-left: -9.5px;
        margin-top: -25px;
        border-width: 3px;
    }

    .nucleus {
        width: 9px;
        height: 9px;
    }

    .logo-text {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .atomic-logo {
        width: 32px;
        height: 32px;
    }

    .atom-mini {
        width: 32px;
        height: 32px;
    }

    .orbit-1 {
        width: 42px;
        height: 16px;
        margin-left: -21px;
        margin-top: -8px;
        border-width: 2.5px;
    }

    .orbit-2 {
        width: 16px;
        height: 42px;
        margin-left: -8px;
        margin-top: -21px;
        border-width: 2.5px;
    }

    .nucleus {
        width: 7px;
        height: 7px;
    }

    .logo-text {
        font-size: 22px;
    }
}
