/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #FFD100;
    --primary-purple: #4B2EFF;
    --accent-red: #E53935;
    --text-primary: #1E1E1E;
    --text-secondary: #5C5C5C;
    --bg-white: #FFFFFF;
    --bg-light: #F5F5F5;
    --bg-dark: #1E1E1E;
    --border-color: #E0E0E0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    display: none; /* По умолчанию скрыт, показывается если нет логотипа */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-red);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    background: var(--accent-red);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 80px;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 209, 0, 0.3) 0%, rgba(75, 46, 255, 0.3) 100%);
    background-image: url('https://ооо-гост.рф/background-gost.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    overflow: hidden;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-benefits {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-benefits li {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.hero-benefits li:last-child {
    margin-bottom: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
    font-family: inherit;
}

.btn-primary {
    background: var(--accent-red);
    color: white;
}

.btn-primary:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--primary-purple);
    color: white;
}

.btn-secondary:hover {
    background: #3a1fcc;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

/* About Company Section */
.about-company {
    background: var(--bg-white);
    margin-top: 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Advantages Section */
.advantages {
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--accent-red));
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.advantage-value {
    font-size: 1.1rem;
    color: var(--accent-red);
    font-weight: 700;
}

/* Popular Vacancies Section */
.popular-vacancies {
    background: var(--bg-white);
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.vacancy-card {
    background: var(--bg-white);
    padding: 0;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.vacancy-card-image-small {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-light);
}

.vacancy-card-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vacancy-card:hover .vacancy-card-image-small img {
    transform: scale(1.05);
}

.vacancy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-yellow);
}

.vacancy-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
    padding: 1.5rem 1.5rem 0;
}

.vacancy-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.vacancy-salary {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
    white-space: nowrap;
}

.vacancy-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
    padding: 0 1.5rem;
}

.location-icon {
    font-size: 1.2rem;
}

.vacancy-details {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
    padding: 0 1.5rem;
}

.vacancy-card .btn-full {
    margin: 0 1.5rem 1.5rem;
}

.vacancy-details li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.vacancy-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: 700;
}

/* How to Apply Section */
.how-to-apply {
    background: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-red), #c62828);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1.05rem;
}

.process-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--accent-red), var(--primary-purple));
    margin-left: 29px;
    opacity: 0.6;
}

/* Reviews Section */
.reviews {
    background: var(--bg-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary-yellow);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    color: var(--text-secondary);
    font-weight: 600;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-red) 100%);
    color: white;
}

.contact-form-section .section-title,
.contact-form-section .section-subtitle {
    color: white;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-input {
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.2);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-logo .logo-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-info,
.footer-bank {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info p,
.footer-bank p {
    margin-bottom: 0.5rem;
}

.footer-info strong,
.footer-bank strong {
    color: white;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-yellow);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-title {
        letter-spacing: 1px;
    }

    .hero-benefits {
        padding: 1.5rem;
    }

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

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

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

    .process-connector {
        display: none;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .section {
        padding: 60px 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-purple) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* About Page */
.about-page {
    background: var(--bg-white);
}

.about-page-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-page-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.about-page-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.about-page-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.about-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.about-list li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-top: 4px solid var(--accent-red);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: var(--bg-light);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Vacancies Page */
.vacancies-page {
    background: var(--bg-light);
}

.vacancies-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vacancy-card-large {
    background: var(--bg-white);
    padding: 0;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    animation: cardAppear 0.6s ease-out forwards;
}

.vacancy-card-large:nth-child(1) {
    animation-delay: 0.1s;
}

.vacancy-card-large:nth-child(2) {
    animation-delay: 0.2s;
}

.vacancy-card-large:nth-child(3) {
    animation-delay: 0.3s;
}

.vacancy-card-large:nth-child(4) {
    animation-delay: 0.4s;
}

.vacancy-card-large:nth-child(5) {
    animation-delay: 0.5s;
}

.vacancy-card-large:nth-child(6) {
    animation-delay: 0.6s;
}

.vacancy-card-large:nth-child(7) {
    animation-delay: 0.7s;
}

.vacancy-card-large:nth-child(8) {
    animation-delay: 0.8s;
}

.vacancy-card-large:nth-child(9) {
    animation-delay: 0.9s;
}

.vacancy-card-large:nth-child(10) {
    animation-delay: 1s;
}

.vacancy-card-large:nth-child(11) {
    animation-delay: 1.1s;
}

.vacancy-card-large:nth-child(12) {
    animation-delay: 1.2s;
}

@keyframes cardAppear {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.vacancy-card-image {
    width: 100%;
    height: 40%;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.vacancy-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.vacancy-card-large:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-yellow);
    z-index: 10;
}

.vacancy-card-large:hover .vacancy-card-image img {
    transform: scale(1.1);
}

.vacancy-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    transition: var(--transition);
}

.vacancy-card-large:hover .vacancy-card-image::after {
    opacity: 0;
}

.vacancy-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem 1.5rem 0;
    flex: 1;
}

.vacancy-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.vacancy-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.vacancy-card-salary {
    text-align: right;
}

.salary-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
}

.vacancy-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    flex: 1;
    overflow-y: auto;
}

.vacancy-card-details,
.vacancy-card-requirements {
    margin-bottom: 0.5rem;
}

.vacancy-card-details h3,
.vacancy-card-requirements h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.vacancy-card-details ul,
.vacancy-card-requirements ul {
    list-style: none;
}

.vacancy-card-details li,
.vacancy-card-requirements li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.vacancy-card-details li::before,
.vacancy-card-requirements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: 700;
}

.vacancy-card-footer {
    margin-top: auto;
    padding: 0 1.5rem 1.5rem;
}

/* Contacts Page */
.contacts-page {
    background: var(--bg-white);
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item-large {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
}

.contact-icon-large {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    flex-shrink: 0;
}

.contact-icon-large svg {
    width: 24px;
    height: 24px;
}

.contact-label-large {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.contact-value-large {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-link {
    color: var(--accent-red);
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: #c62828;
    text-decoration: underline;
}

.contacts-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .contacts-wrapper {
        grid-template-columns: 1fr;
    }

    .vacancies-list {
        grid-template-columns: 1fr;
    }

    .vacancy-card-large {
        aspect-ratio: auto;
        min-height: auto;
    }

    .vacancy-card-image {
        height: 200px;
    }

    .vacancy-card-header {
        flex-direction: column;
    }

    .vacancy-card-salary {
        text-align: left;
    }

    .vacancy-card-body {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}