/* ===== CAREER PAGE ===== */

.t-accent { color: var(--green); }
.section-white { background: #fff; }

/* ===== HERO ===== */
.cr-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.cr-hero-bg {
    position: absolute;
    inset: 0;
}
.cr-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8,15,28,0.88) 0%, rgba(8,15,28,0.5) 60%, rgba(8,15,28,0.25) 100%);
}
.cr-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: calc(var(--nav-h) + 3rem) 3rem 3rem;
    width: 100%;
}
.cr-hero-label {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--green);
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}
.cr-hero-title {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 1.5rem;
    max-width: 700px;
}
.cr-hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 0 2.5rem;
}
.cr-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--green);
    color: #fff;
    font-family: var(--font-nav);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 1rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s, gap 0.2s;
}
.cr-hero-btn svg { width: 18px; height: 18px; transition: transform 0.2s; }
.cr-hero-btn:hover { background: #1565c0; gap: 1rem; }
.cr-hero-btn:hover svg { transform: translateX(3px); }

.cr-hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.cr-scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.35);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.35; }
    50% { opacity: 1; }
}
.cr-hero-scroll span {
    font-family: var(--font-nav);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

/* ===== ИНФОГРАФИКА ===== */
.cr-infographic {
    padding: 0;
}
.cr-infographic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
}
.cr-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.cr-info-item:last-child { border-right: none; }
.cr-info-item.in-view { opacity: 1; transform: translateY(0); }
.cr-info-item:nth-child(1) { transition-delay: 0s; }
.cr-info-item:nth-child(2) { transition-delay: 0.1s; }
.cr-info-item:nth-child(3) { transition-delay: 0.2s; }
.cr-info-item:nth-child(4) { transition-delay: 0.3s; }

.cr-info-num {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    display: inline-block;
}
.cr-info-suffix {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    line-height: 1;
    display: inline-block;
    margin-left: 2px;
    align-self: flex-start;
    margin-top: 0.5rem;
}
.cr-info-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.42);
    margin-top: 0.6rem;
    font-weight: 500;
    max-width: 130px;
    text-align: center;
}

/* ===== ОБЩИЕ ЗАГОЛОВКИ СЕКЦИЙ ===== */
.cr-section-header {
    max-width: 1320px;
    margin: 0 auto;
    padding: 6rem 3rem 3.5rem;
    max-width: 660px;
}
.cr-overline {
    font-family: var(--font-nav);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--green);
    text-transform: uppercase;
    margin: 0 0 0.8rem;
}
.cr-g-line {
    width: 54px;
    height: 2px;
    background: var(--green);
    margin: 1.8rem 0 1.5rem;
}
.cr-desc-narrow {
    max-width: 520px;
    color: rgba(0,0,0,0.5);
}

/* ===== КОМАНДА ===== */
.cr-team {
    padding-bottom: 7rem;
}
.cr-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3rem;
}
.cr-team-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.cr-team-card.in-view { opacity: 1; transform: translateY(0); }
.cr-team-card:nth-child(1) { transition-delay: 0s; }
.cr-team-card:nth-child(2) { transition-delay: 0.12s; }
.cr-team-card:nth-child(3) { transition-delay: 0.24s; }
.cr-team-card:nth-child(4) { transition-delay: 0.36s; }

.cr-team-photo {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.cr-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cr-team-card:hover .cr-team-photo img { transform: scale(1.06); }
.cr-team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,15,28,0.7) 0%, transparent 55%);
}
.cr-team-body {
    padding: 1.2rem 0 0;
}
.cr-team-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 0 0 0.25rem;
}
.cr-team-role {
    font-size: 0.82rem;
    color: var(--green);
    font-weight: 600;
    margin: 0 0 0.2rem;
}
.cr-team-exp {
    font-size: 0.78rem;
    color: rgba(0,0,0,0.4);
    margin: 0;
}

/* ===== ЦИТАТА ===== */
.cr-quote {
    padding: 7rem 3rem;
}
.cr-quote-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}
.cr-quote-mark {
    font-size: 8rem;
    line-height: 0.7;
    color: var(--green);
    font-family: Georgia, serif;
    opacity: 0.5;
    margin-bottom: 1rem;
}
.cr-quote-text {
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    border: none;
    padding: 0;
    margin: 0 0 2.5rem;
}
.cr-quote-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.cr-quote-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--green);
}
.cr-quote-avatar img { width: 100%; height: 100%; object-fit: cover; }
.cr-quote-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.2rem;
}
.cr-quote-role {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

/* ===== МИССИЯ ===== */
.cr-mission {
    padding-bottom: 7rem;
}
.cr-mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3rem;
}
.cr-mission-card {
    padding: 3rem 2.5rem;
    border-top: 2px solid var(--green);
    background: #f4f6f8;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.cr-mission-card.in-view { opacity: 1; transform: translateY(0); }
.cr-mission-card:nth-child(1) { transition-delay: 0s; }
.cr-mission-card:nth-child(2) { transition-delay: 0.1s; }
.cr-mission-card:nth-child(3) { transition-delay: 0.2s; }
.cr-mission-num {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(25,118,210,0.12);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-nav);
}
.cr-mission-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 0 0 0.7rem;
}
.cr-mission-card p {
    font-size: 0.9rem;
    color: rgba(0,0,0,0.5);
    line-height: 1.7;
    margin: 0;
}

/* ===== ЦЕННОСТИ ===== */
.cr-values {
    padding-bottom: 7rem;
}
.cr-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3rem;
}
.cr-val-card {
    background: #fff;
    padding: 2.5rem 2.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}
.cr-val-card.in-view { opacity: 1; transform: translateY(0); }
.cr-val-card:nth-child(1) { transition-delay: 0s; }
.cr-val-card:nth-child(2) { transition-delay: 0.1s; }
.cr-val-card:nth-child(3) { transition-delay: 0.2s; }
.cr-val-card:nth-child(4) { transition-delay: 0.3s; }

.cr-val-icon {
    width: 52px;
    height: 52px;
    background: rgba(25,118,210,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cr-val-icon svg { width: 24px; height: 24px; stroke: var(--green); }
.cr-val-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 0 0 0.5rem;
}
.cr-val-body p {
    font-size: 0.88rem;
    color: rgba(0,0,0,0.5);
    line-height: 1.7;
    margin: 0;
}

/* ===== ОФИС (полоса) ===== */
.cr-office-strip {
    height: 420px;
}
.cr-office-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.cr-office-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cr-office-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8,15,28,0.75) 0%, rgba(8,15,28,0.2) 60%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 3rem;
}
.cr-office-text { max-width: 500px; }
.cr-office-title {
    font-size: 2.2rem;
    font-weight: 300;
    color: #fff;
    line-height: 1.25;
    margin: 0.5rem 0 0;
}

/* ===== ПОЧЕМУ МЫ ===== */
.cr-why {
    padding-bottom: 7rem;
}
.cr-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.cr-why-card {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease, background 0.2s;
}
.cr-why-card:last-child { border-right: none; }
.cr-why-card.in-view { opacity: 1; transform: translateY(0); }
.cr-why-card:hover { background: #f4f6f8; }
.cr-why-card:nth-child(1) { transition-delay: 0s; }
.cr-why-card:nth-child(2) { transition-delay: 0.1s; }
.cr-why-card:nth-child(3) { transition-delay: 0.2s; }
.cr-why-card:nth-child(4) { transition-delay: 0.3s; }

.cr-why-icon {
    width: 44px; height: 44px;
    background: rgba(25,118,210,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
}
.cr-why-icon svg { width: 22px; height: 22px; stroke: var(--green); }
.cr-why-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.cr-why-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--green-dark);
    margin: 0 0 0.5rem;
}
.cr-why-card p {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.45);
    line-height: 1.65;
    margin: 0;
}

/* ===== ВАКАНСИИ ===== */
.cr-vacancies {
    padding-bottom: 7rem;
}
.cr-vac-grid {
    display: grid;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}
.cr-vac-card {
    background: #fff;
    border-radius: 4px;
    padding: 1.8rem 2rem;
    box-shadow: 0 2px 10px rgba(8,15,28,0.05);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    border: 2px solid transparent;
}
.cr-vac-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(25,118,210,0.12);
    border-color: var(--green);
}
.cr-vac-info { flex: 1; }
.cr-vac-title {
    font-family: var(--font-nav);
    font-size: 1rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 0.5rem;
}
.cr-vac-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cr-vac-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    background: #e3f0ff;
    color: var(--green);
}
.cr-vac-tag.cr-tag-loc { background: #e8f5e9; color: #2e7d32; }
.cr-vac-tag.cr-tag-sal { background: #fff8e1; color: #f57c00; }
.cr-vac-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(25,118,210,0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}
.cr-vac-card:hover .cr-vac-arrow { background: var(--green); }
.cr-vac-arrow svg { width: 18px; height: 18px; stroke: var(--green); transition: stroke 0.2s; }
.cr-vac-card:hover .cr-vac-arrow svg { stroke: #fff; }
.cr-vac-empty { text-align: center; padding: 3rem; color: rgba(0,0,0,0.4); font-size: 0.95rem; }

/* ===== VACANCY MODAL ===== */
.cr-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(8,15,28,0.65);
    backdrop-filter: blur(6px);
    z-index: 900;
    display: flex; align-items: center; justify-content: center;
    padding: 2rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.22s;
}
.cr-modal-backdrop.open { opacity: 1; pointer-events: all; }
.cr-modal-card {
    position: relative;
    background: #fff;
    border-radius: 4px;
    width: 100%; max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem 2.8rem;
    box-shadow: 0 24px 72px rgba(0,0,0,0.22);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.cr-modal-backdrop.open .cr-modal-card { transform: none; }
.cr-modal-close {
    position: absolute; top: 1rem; right: 1.2rem;
    background: #f0f4f8; border: none;
    color: #6b7a8d; font-size: 1.3rem; line-height: 1;
    width: 32px; height: 32px; border-radius: 50%;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: background 0.15s;
}
.cr-modal-close:hover { background: #e0e6ed; }
.cr-modal-dept {
    font-size: 0.78rem; font-weight: 700; color: var(--green);
    text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem;
}
.cr-modal-title {
    font-family: var(--font-nav);
    font-size: 1.4rem; font-weight: 700; color: var(--green-dark);
    margin-bottom: 1rem;
}
.cr-modal-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.cr-modal-section { margin-bottom: 1.5rem; }
.cr-modal-section h4 {
    font-family: var(--font-nav);
    font-size: 0.9rem; font-weight: 700; color: var(--green-dark);
    margin-bottom: 0.6rem;
}
.cr-modal-section p, .cr-modal-section pre {
    font-size: 0.9rem; color: #3a4a5c; line-height: 1.75;
    white-space: pre-wrap; margin: 0;
}
.cr-modal-btns { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.cr-modal-apply-btn,
.cr-modal-phone-btn {
    flex: 1;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    border: none; border-radius: 4px;
    padding: 0.9rem 1rem; font-size: 0.85rem; font-weight: 700;
    font-family: var(--font-nav);
    cursor: pointer; letter-spacing: 0.4px;
    transition: background 0.2s, color 0.2s;
}
.cr-modal-apply-btn svg,
.cr-modal-phone-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.cr-modal-apply-btn { background: var(--green); color: #fff; }
.cr-modal-apply-btn:hover { background: #1565c0; }
.cr-modal-phone-btn { background: #e3f0ff; color: var(--green); border: 2px solid #c5ddf8; }
.cr-modal-phone-btn:hover { background: #cce3fb; }
.cr-modal-phone-btn.cr-phone-revealed {
    background: #e8f5e9; color: #2e7d32; border-color: #c8e6c9;
    cursor: default; font-size: 0.95rem; letter-spacing: 0;
}
.cr-modal-phone-btn.cr-phone-revealed a { color: #2e7d32; text-decoration: none; }
.cr-modal-phone-btn.cr-phone-revealed a:hover { text-decoration: underline; }

/* ===== APPLICATION FORM ===== */
.cr-apply { padding-bottom: 7rem; }
.cr-section-header--light .cr-overline { color: rgba(255,255,255,0.5); }
.cr-apply-wrap {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 3rem;
}
.cr-form { display: flex; flex-direction: column; gap: 1.2rem; }
.cr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cr-field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.cr-field label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.55); }
.cr-field input,
.cr-field select,
.cr-field textarea {
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    color: #fff;
    background: rgba(255,255,255,0.07);
    font-family: var(--font);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
}
.cr-field input::placeholder,
.cr-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.cr-field select { color: rgba(255,255,255,0.7); }
.cr-field select option { background: var(--green-dark); color: #fff; }
.cr-field input:focus,
.cr-field select:focus,
.cr-field textarea:focus {
    border-color: var(--green);
    background: rgba(255,255,255,0.1);
}
.cr-field textarea { resize: vertical; min-height: 130px; }
.cr-consent-row {
    display: flex; align-items: flex-start; gap: 0.75rem;
    font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.5;
}
.cr-consent-row input[type="checkbox"] { margin-top: 2px; accent-color: var(--green); flex-shrink: 0; }
.cr-submit-btn {
    background: var(--green); color: #fff;
    border: none; border-radius: 4px;
    padding: 1rem 2.5rem; font-size: 0.82rem; font-weight: 700;
    font-family: var(--font-nav);
    cursor: pointer; letter-spacing: 0.08em;
    transition: background 0.2s;
    align-self: flex-start;
}
.cr-submit-btn:hover { background: #1565c0; }
.cr-submit-btn:disabled { opacity: 0.6; cursor: default; }
.cr-status {
    padding: 0.85rem 1.2rem; border-radius: 4px;
    font-size: 0.88rem; font-weight: 500; display: none;
}
.cr-status.success { display: block; background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.cr-status.error   { display: block; background: #fdecea; color: #c62828; border: 1px solid #ffcdd2; }

/* ===== FILE UPLOAD ===== */
.cr-file-hint { font-size: 0.75rem; color: rgba(255,255,255,0.35); font-weight: 400; margin-left: 0.4rem; }
.cr-file-input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.cr-file-wrap {
    position: relative;
    display: flex; align-items: center; gap: 0.5rem;
}
.cr-file-label {
    flex: 1; display: flex; align-items: center; gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1.5px dashed rgba(255,255,255,0.2);
    border-radius: 4px;
    cursor: pointer;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    transition: border-color 0.2s, background 0.2s;
}
.cr-file-label svg { width: 18px; height: 18px; flex-shrink: 0; }
.cr-file-label:hover { border-color: var(--green); color: rgba(255,255,255,0.8); }
.cr-file-wrap.has-file .cr-file-label {
    border-color: var(--green); border-style: solid;
    color: #fff; background: rgba(25,118,210,0.12);
}
.cr-file-clear {
    flex-shrink: 0; width: 28px; height: 28px;
    background: rgba(255,255,255,0.1); border: none;
    border-radius: 50%; cursor: pointer; color: rgba(255,255,255,0.5);
    font-size: 0.75rem; display: flex; align-items: center; justify-content: center;
    transition: background 0.15s, color 0.15s;
}
.cr-file-clear:hover { background: rgba(220,38,38,0.3); color: #fff; }
.cr-file-error { font-size: 0.8rem; color: #ef5350; margin-top: 0.35rem; }

/* ===== LOGO FOOTER ===== */
.logo-img-footer {
    height: 60px;
    filter: brightness(0) invert(1);
    opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .cr-infographic-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-team-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-why-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-team-card:nth-child(2) { margin-top: 0 !important; }
    .cr-team-card:nth-child(4) { margin-top: 0 !important; }
}
@media (max-width: 768px) {
    /* Hero */
    .cr-hero-content { padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem; }
    .cr-hero-title { font-size: clamp(2rem, 7vw, 2.8rem); max-width: 100%; overflow-wrap: break-word; }
    .cr-hero-sub { font-size: 0.9rem; max-width: 100%; line-height: 1.65; }
    .cr-hero-scroll { display: none; }
    /* Sections */
    .cr-section-header { padding: 3rem 1.5rem 2rem; }
    .cr-mission-grid, .cr-values-grid, .cr-why-grid, .cr-team-grid { grid-template-columns: 1fr; padding: 0 1.5rem; }
    .cr-infographic-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-info-item { padding: 2.5rem 1.5rem; }
    .cr-quote { padding: 3rem 1.5rem; }
    .cr-apply-wrap, .cr-vac-grid { padding: 0 1.5rem; }
    .cr-form-row { grid-template-columns: 1fr; }
    .cr-modal-card { padding: 2rem 1.5rem; }
    .cr-modal-btns { flex-direction: column; }
    .cr-office-strip { height: 240px; }
}
