/* ============================
   HR-Agency
   Dark theme, accent #3584e4
   Montserrat + JetBrains Mono
   ============================ */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

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

/* All sections above constellation canvas (z-index:0) */
section, .footer {
    position: relative;
    z-index: 1;
}

/* ========== Header ========== */
.header {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.92);
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

.logo { text-decoration: none; }

.logo h1 {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    margin-top: 1px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Desktop Nav */
.desktop-nav { display: none; }
.desktop-nav-list { display: flex; list-style: none; gap: 4px; }

.desktop-nav-list .nav-link {
    display: block;
    padding: 8px 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.desktop-nav-list .nav-link:hover,
.desktop-nav-list .nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.header-right { display: flex; align-items: center; gap: 16px; }

.header-phone {
    display: none;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s;
}

.header-phone:hover { color: #3584e4; }
.header-phone svg { color: #3584e4; }

@media (min-width: 1024px) {
    .desktop-nav { display: block; }
    .header-phone { display: flex; }
    .hamburger { display: none; }
}

/* Hamburger */
.hamburger {
    background: none; border: none; cursor: pointer;
    padding: 10px; display: flex; flex-direction: column; gap: 5px; z-index: 1001;
}
.hamburger span { width: 24px; height: 2px; background: #fff; transition: all 0.3s; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background-color: rgba(10,10,10,0.98);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 30px rgba(0,0,0,0.8);
    transition: right 0.3s ease;
    z-index: 999; padding-top: 80px;
    border-left: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column;
}
.mobile-menu.active { right: 0; }
.mobile-menu-content { flex: 1; display: flex; flex-direction: column; justify-content: space-between; padding-bottom: 40px; }
.nav-list { list-style: none; padding: 20px; }
.nav-list li { margin-bottom: 4px; }
.nav-list .nav-link {
    display: block; padding: 14px 20px; color: rgba(255,255,255,0.6);
    text-decoration: none; font-size: 16px; font-weight: 500;
    border-radius: 8px; transition: all 0.3s;
}
.nav-list .nav-link:hover { background: rgba(255,255,255,0.05); color: #fff; transform: translateX(8px); }
.mobile-menu-contacts { padding: 0 20px; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 20px; }
.mobile-phone { display: block; color: #3584e4; text-decoration: none; font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.mobile-socials { display: flex; gap: 12px; }
.social-link {
    color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px;
    padding: 6px 14px; border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px; transition: all 0.3s;
}
.social-link:hover { border-color: #3584e4; color: #3584e4; }

/* ========== Hero ========== */
.hero {
    margin-top: 0;
    padding: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000, #1a1a1a);
}

.hero-video {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; min-height: 100%;
    width: auto; height: auto;
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-particles { display: none; }

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 680px;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-badge {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(53,132,228,0.15);
    border: 1px solid rgba(53,132,228,0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #3584e4;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.15;
    animation: fadeInUp 0.7s ease-out 0.1s backwards;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 520px;
    animation: fadeInUp 0.7s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.7s ease-out 0.3s backwards;
}

.hero-stats {
    display: flex; align-items: center; gap: 35px;
    animation: fadeInUp 0.7s ease-out 0.5s backwards;
}

.hero-stat { display: flex; flex-direction: column; }

.hero-stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.hero-stat-plus {
    font-size: 26px;
    font-weight: 700;
    color: #3584e4;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 5px;
}

.hero-stat-divider {
    width: 1px;
    height: 35px;
    background: rgba(255,255,255,0.15);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 13px 32px; text-decoration: none; border-radius: 6px;
    font-weight: 600; font-size: 15px; border: none; cursor: pointer;
    transition: all 0.3s ease; font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #3584e4, #1a56a0);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(53,132,228,0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #3584e4, #1a56a0);
    color: #fff;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(53,132,228,0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.btn-outline:hover {
    border-color: #3584e4;
    color: #3584e4;
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #3584e4, #1a56a0);
    color: #fff;
    padding: 14px 40px;
    font-size: 16px;
    margin-top: 8px;
    border-radius: 6px;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(53,132,228,0.4);
}

/* ========== Sections ========== */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 18px;
}

.section-subtitle {
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 45px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ========== About ========== */
.about {
    background-color: rgba(13, 13, 13, 0.75);
}

.about .section-title { margin-bottom: 45px; }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.about-text > p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.7;
}

.about-values { display: flex; flex-direction: column; gap: 14px; }

.about-value {
    display: flex; gap: 14px; align-items: flex-start;
    padding: 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.about-value:hover { background: rgba(255,255,255,0.05); }

.about-value-icon {
    width: 40px; height: 40px; min-width: 40px;
    background: #3584e4;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: white;
}

.about-value strong { display: block; font-size: 14px; color: #fff; margin-bottom: 3px; }
.about-value p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* About side - photo + quote */
.about-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
}

.about-quote-block {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid #3584e4;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.ceo-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(53,132,228,0.3);
}

.about-quote-block p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-style: italic;
}

.about-quote-block cite {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    font-style: normal;
    font-weight: 600;
}

/* ========== Benefits ========== */
.benefits {
    background-color: rgba(17, 17, 17, 0.7);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-card {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 28px 22px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.benefit-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.benefit-icon {
    width: 50px; height: 50px;
    background: #3584e4;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    color: white;
}

.benefit-card h3 { font-size: 16px; color: #fff; margin-bottom: 8px; font-weight: 600; }
.benefit-card p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; }

/* ========== Results ========== */
.results {
    background-color: rgba(13, 13, 13, 0.75);
    padding: 80px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.result-card {
    text-align: center;
    padding: 35px 16px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}

.result-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-3px);
}

.result-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.result-suffix {
    color: #3584e4;
}

.result-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    line-height: 1.4;
}

/* ========== Services ========== */
.services {
    background: rgba(17, 17, 17, 0.7);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 28px 22px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}

.service-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.service-icon {
    width: 50px; height: 50px;
    background: #3584e4;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    color: white;
}

.service-card h3 { font-size: 16px; color: #fff; margin-bottom: 8px; font-weight: 600; }
.service-card p { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.6; }

/* ========== FAQ ========== */
.faq {
    background-color: rgba(13, 13, 13, 0.75);
    padding: 80px 0;
}

.faq .section-title {
    font-family: 'JetBrains Mono', monospace;
    color: #fff;
    margin-bottom: 35px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.1); }

.faq-question {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 18px 22px; background: none; border: none; cursor: pointer;
    transition: all 0.3s; font-family: 'JetBrains Mono', monospace; gap: 16px;
}
.faq-question:hover { background: rgba(255,255,255,0.02); }

.faq-question span {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85);
    text-align: left; line-height: 1.4;
}

.faq-arrow {
    flex-shrink: 0; color: rgba(255,255,255,0.3);
    transition: transform 0.3s;
}
.faq-item.active .faq-arrow { transform: rotate(180deg); color: #3584e4; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer p {
    padding: 0 22px 20px; color: rgba(255,255,255,0.55);
    font-size: 14px; line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.04); padding-top: 16px; margin-top: 2px;
}

/* ========== Contact Form ========== */
.contact-form-section {
    background: linear-gradient(135deg, #3584e4, #1a56a0);
    padding: 80px 0;
}

.form-wrapper {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}

.form-wrapper h2 {
    font-size: 30px; margin-bottom: 10px; color: #fff; font-weight: 700;
}

.form-description {
    margin-bottom: 28px; font-size: 15px;
    color: rgba(255,255,255,0.85); line-height: 1.6;
}

.contact-form {
    background-color: #111;
    padding: 32px 28px;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.06);
}

.form-group { margin-bottom: 14px; }

.form-group input {
    width: 100%; padding: 13px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px; font-size: 14px;
    transition: all 0.3s;
    background-color: rgba(255,255,255,0.04);
    color: #fff; font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #3584e4;
    box-shadow: 0 0 0 3px rgba(53,132,228,0.2);
    background-color: rgba(255,255,255,0.06);
}

.form-group input::placeholder { color: rgba(255,255,255,0.35); }

/* ========== Contacts ========== */
.contacts { background-color: rgba(17, 17, 17, 0.7); }
.contacts .section-title { margin-bottom: 35px; }
.contacts-content { max-width: 900px; margin: 0 auto; }

.contact-info {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}

.contact-item {
    padding: 22px; background: rgba(255,255,255,0.03);
    border-radius: 10px; transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.06);
}
.contact-item:hover { background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.contact-item h3 { font-size: 17px; color: #3584e4; margin-bottom: 10px; font-weight: 600; }
.contact-item p { color: #fff; font-size: 14px; font-weight: 500; }
.contact-person { text-align: left; }

.contact-phone, .contact-messenger {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 8px; color: rgba(255,255,255,0.55); font-size: 13px;
}
.contact-phone svg, .contact-messenger svg { flex-shrink: 0; color: #3584e4; }
.contact-phone a, .contact-messenger a { color: #fff; text-decoration: none; transition: color 0.3s; }
.contact-phone a:hover, .contact-messenger a:hover { color: #3584e4; }
.contact-note { font-size: 12px !important; color: rgba(255,255,255,0.35) !important; margin-top: 6px; font-weight: 400 !important; }

/* ========== Footer ========== */
.footer {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 35px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-content { text-align: center; }
.footer-brand h3 { font-size: 18px; color: #fff; font-weight: 700; margin-bottom: 4px; }
.footer-brand p { color: rgba(255,255,255,0.35); font-size: 13px; margin-bottom: 18px; }
.footer-links { display: flex; justify-content: center; gap: 25px; margin-bottom: 18px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.3s; }
.footer-links a:hover { color: #3584e4; }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 12px; }

/* ========== Floating Phone ========== */
.phone-button {
    position: fixed; bottom: 25px; right: 25px;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #3584e4, #1a56a0);
    border-radius: 50%; border: none;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(53,132,228,0.4);
    transition: all 0.3s; z-index: 998; color: white; cursor: pointer;
    animation: pulse 2s infinite;
}
.phone-button:hover { transform: scale(1.1); box-shadow: 0 12px 30px rgba(53,132,228,0.5); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(53,132,228,0.6); }
    70% { box-shadow: 0 0 0 10px rgba(53,132,228,0); }
}

/* ========== Modal ========== */
.modal {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999; align-items: center; justify-content: center;
}
.modal.active { display: flex; }

.modal-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7); backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background-color: #111;
    padding: 36px 30px;
    border-radius: 10px;
    max-width: 440px; width: 90%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 1;
    border: 1px solid rgba(255,255,255,0.06);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
    position: absolute; top: 10px; right: 10px;
    background: none; border: none; font-size: 26px;
    color: rgba(255,255,255,0.4); cursor: pointer;
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; transition: all 0.3s;
}
.modal-close:hover { background: rgba(255,255,255,0.06); color: #fff; }

.modal-title { font-size: 22px; color: #fff; margin-bottom: 6px; font-weight: 700; }
.modal-description { color: rgba(255,255,255,0.55); margin-bottom: 20px; font-size: 14px; line-height: 1.5; }
.callback-form { margin-top: 14px; }
.callback-form .form-group { margin-bottom: 12px; }

.callback-form input {
    width: 100%; padding: 13px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px; font-size: 14px; transition: all 0.3s;
    background-color: rgba(255,255,255,0.04); color: #fff; font-family: inherit;
}
.callback-form input:focus {
    outline: none; border-color: #3584e4;
    box-shadow: 0 0 0 3px rgba(53,132,228,0.2);
    background-color: rgba(255,255,255,0.06);
}
.callback-form input::placeholder { color: rgba(255,255,255,0.35); }

/* ========== Toasts ========== */
.toast-container {
    position: fixed; top: 20px; right: 20px; z-index: 10000;
    display: flex; flex-direction: column; gap: 10px; max-width: 360px;
}

.toast {
    background-color: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
    padding: 16px;
    display: flex; align-items: flex-start; gap: 12px;
    animation: toastSlideIn 0.4s ease-out;
    border: 1px solid rgba(255,255,255,0.06);
    border-left: 3px solid #3584e4;
    min-width: 280px;
}
.toast.success { border-left-color: #4CAF50; }
.toast.error { border-left-color: #FF5252; }
.toast.warning { border-left-color: #f39c12; }

.toast-icon { flex-shrink: 0; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.toast.success .toast-icon { color: #4CAF50; }
.toast.error .toast-icon { color: #FF5252; }
.toast.warning .toast-icon { color: #f39c12; }

.toast-content { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.toast-title { font-weight: 600; font-size: 14px; color: #fff; margin: 0; }
.toast-message { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5; margin: 0; }

.toast-close {
    flex-shrink: 0; background: none; border: none;
    width: 20px; height: 20px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: rgba(255,255,255,0.3); font-size: 16px;
    border-radius: 50%; transition: all 0.2s; padding: 0; line-height: 1;
}
.toast-close:hover { background: rgba(255,255,255,0.06); color: #fff; }

@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(80px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastSlideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(80px); }
}
.toast.removing { animation: toastSlideOut 0.3s ease-out forwards; }

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

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .results-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero { min-height: auto; }
    .hero-content { padding-top: 90px; padding-bottom: 50px; }
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 15px; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: flex-start; }
    .hero-stat-divider { display: none; }
    .hero-stat { flex-direction: row; align-items: baseline; gap: 6px; }
    .hero-stat-number { font-size: 28px; }
    .section-title { font-size: 22px; }
    .benefits-grid, .results-grid, .services-grid { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; gap: 30px; }
    .contact-info { grid-template-columns: 1fr; gap: 14px; }
    .contact-form { padding: 28px 22px; }
    section { padding: 60px 0; }
    .mobile-menu { width: 100%; }
    .footer-links { flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content { padding-top: 80px; padding-bottom: 40px; }
    .hero-title { font-size: 28px; }
    .hero-badge { font-size: 11px; }
    .section-title { font-size: 20px; }
    .logo h1 { font-size: 20px; }
    .form-wrapper h2 { font-size: 24px; }
    .phone-button { width: 48px; height: 48px; bottom: 18px; right: 18px; }
    .phone-button svg { width: 18px; height: 18px; }
    .toast-container { top: 10px; right: 10px; left: 10px; max-width: none; }
    .toast { min-width: auto; width: 100%; }
    .modal-content { padding: 28px 20px; }
    .btn { padding: 11px 24px; font-size: 14px; }
    section { padding: 50px 0; }
}
