/* Global Variables & Reset */
:root {
    --primary-gradient: linear-gradient(90deg, #F56400 0%, #FF7D23 100%);
    --secondary-yellow: #FFC700;
    --text-main: #000000;
    --text-white: #FFFFFF;
    --bg-body: #FFFFFF;
    --bg-footer: #1A1A1A;
    --font-main: 'Gilroy', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --container-width: 1200px;
    --spacing-unit: 1rem;
    --color-accent:#a10bf7;
    --font-color-accent-1:#fff;
    --font-color-accent-2:#a10bf7;
    --font-color-disabled:#2b333f;

    --font-bold:700;

    --body-md:1rem;
    --leading-md:150%;

    --hover-light:0 0 6.25rem 0 hsla(0,0%,100%,.3) inset;
    --disable:not-allowed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn.primary {
    background: var(--primary-gradient);
    color: var(--text-white);
}


.btn.secondary {
    background-color: var(--secondary-yellow);
    color: var(--text-main);
}

.btn.purple{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding: 1.5rem 6rem;
  background:var(--color-accent);
  color:var(--font-color-accent-1);
  border:1px solid var(--font-color-accent-2);
  border-radius:.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: var(--leading-md);
  cursor:pointer;
  white-space:nowrap;
  width:max-content;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(161, 11, 247, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(161, 11, 247, 0); }
    100% { box-shadow: 0 0 0 0 rgba(161, 11, 247, 0); }
}
.btn.purple:hover{
  box-shadow:var(--hover-light);
}
.btn.purple:disabled{
  cursor:var(--disable);
  color:var(--font-color-disabled);
  opacity:.6;
}

.hero-center-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .hero-center-btn {
        margin-top: 25px;
        padding: 0 20px;
    }

    .hero-center-btn .btn {
        width: 100%;
        text-align: center;
    }
}
/* Header */
header {
    padding: 20px 0;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 600;
    font-size: 15px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switch {
    font-weight: 600;
    color: #999;
}

.lang-switch span.active {
    color: var(--text-main);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background decoration for Hero */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230, 240, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-graphic {
    flex: 1;
    justify-content: center;
    align-items: center;
}

.hero-graphic img {
    max-width: 100%;
    height: auto;
    /* Optional: drop shadow to mimic the floating feel if the image itself is flat */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-list {
    margin-bottom: 32px;
}

.hero-list li {
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-size: 18px;
}

.hero-list li::before {
    content: "•";
    color: #F56400;
    /* Use primary color directly for simplicity */
    position: absolute;
    left: 0;
    font-weight: bold;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-list {
        display: inline-block;
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-graphic {
        margin-top: 40px;
    }
}


/* Services Section */
.services {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-title {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
    font-weight: 800;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-link {
    font-weight: 700;
    color: #F56400;
    /* Primary orange */
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.benefit-item h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 10px;
    height: 10px;
    background: var(--primary-gradient);
    border-radius: 50%;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: var(--bg-footer);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #888;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ddd;
}

.footer-col a:hover {
    color: white;
}

.requisites-list li {
    margin-bottom: 10px;
    color: #ddd;
    font-size: 14px;
}

.copyright {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Vacancies Section */
.vacancies {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.vacancies .section-title {
    color: white;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    font-size: 18px;
    margin-bottom: 48px;
    margin-top: -30px;
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.vacancy-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.vacancy-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(245, 100, 0, 0.5);
}

.vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.vacancy-card h3 {
    font-size: 20px;
    margin: 0;
    color: white;
}

.vacancy-type {
    background: rgba(245, 100, 0, 0.2);
    color: #FF7D23;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.vacancy-card p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.vacancy-salary {
    font-size: 22px;
    font-weight: 700;
    color: #FFC700;
    margin-bottom: 20px;
}

.vacancy-card .btn {
    width: 100%;
    padding: 12px 24px;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn {
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #999;
}

.lang-btn:hover {
    color: var(--text-main);
}

.lang-btn.active {
    color: var(--text-main);
    background: rgba(245, 100, 0, 0.1);
}

.lang-separator {
    color: #ccc;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu ul li {
        border-bottom: 1px solid #eee;
    }

    .nav-menu ul li:last-child {
        border-bottom: none;
    }

    .nav-menu ul li a {
        display: block;
        padding: 15px 0;
        font-size: 18px;
    }

    .header-actions {
        display: none;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}