/* ═══════════════════════════════════════════════
   VACANCY ENGINEER — CYBERPUNK LANDING CSS
   Westelecom Ukraine — 07.02.2026
   Стиль: Умеренный киберпанк (технологичный минимализм)
   ═══════════════════════════════════════════════ */

/* === BASE === */
.vacancy-engineer {
    background: linear-gradient(180deg, #050810 0%, #0a0f1e 50%, #0c1020 100%);
    color: #e2e8f0;
    font-family: 'Inter', 'Roboto', -apple-system, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

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

/* === HERO === */
.ve-hero {
    position: relative;
    padding: 120px 0 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.ve-hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

.ve-hero__scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: veScanLine 4s linear infinite;
    z-index: 1;
    opacity: 0.6;
}

@keyframes veScanLine {
    0% { top: 0; }
    100% { top: 100%; }
}

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

.ve-hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 4px;
    color: #00d4ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: veBadgePulse 3s ease-in-out infinite;
}

@keyframes veBadgePulse {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 212, 255, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.4); }
}

.ve-hero__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
    max-width: 800px;
}

.ve-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: #b0bec5;
    max-width: 700px;
    margin-bottom: 12px;
    font-weight: 500;
}

.ve-hero__note {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.ve-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Fiber animation */
.ve-hero__fiber-anim {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.ve-fiber {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, #ff4cc7, transparent);
    animation: veFiberFlow 3s ease-in-out infinite;
    border-radius: 1px;
}

.ve-fiber--1 { top: 20%; animation-delay: 0s; }
.ve-fiber--2 { top: 35%; animation-delay: 0.5s; opacity: 0.7; }
.ve-fiber--3 { top: 50%; animation-delay: 1s; }
.ve-fiber--4 { top: 65%; animation-delay: 1.5s; opacity: 0.7; }
.ve-fiber--5 { top: 80%; animation-delay: 2s; }

@keyframes veFiberFlow {
    0% { transform: scaleX(0); transform-origin: left; opacity: 0; }
    50% { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(0); transform-origin: right; opacity: 0; }
}

/* === BUTTONS === */
.ve-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ve-btn--primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0072ff 100%);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.ve-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
    color: #fff;
    text-decoration: none;
}

.ve-btn--telegram {
    background: rgba(0, 136, 204, 0.15);
    border: 1px solid rgba(0, 136, 204, 0.4);
    color: #00d4ff;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.2);
}

.ve-btn--telegram:hover {
    background: rgba(0, 136, 204, 0.25);
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
    color: #00d4ff;
    text-decoration: none;
    transform: translateY(-2px);
}

.ve-btn--large {
    padding: 18px 36px;
    font-size: 16px;
}

.ve-btn--wide {
    width: 100%;
    justify-content: center;
}

/* === SECTIONS === */
.ve-section {
    padding: 80px 0;
    position: relative;
}

.ve-section__title {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 800;
    color: #00d4ff;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 48px;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    position: relative;
}

.ve-section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    margin: 16px auto 0;
}

/* === CARDS (Advantages) === */
.ve-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.ve-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 32px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.ve-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 212, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ve-card:hover::before { opacity: 1; }

.ve-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.ve-card[data-glow="cyan"]:hover { border-color: rgba(0, 212, 255, 0.3); box-shadow: 0 0 30px rgba(0, 212, 255, 0.1); }
.ve-card[data-glow="magenta"]:hover { border-color: rgba(255, 76, 199, 0.3); box-shadow: 0 0 30px rgba(255, 76, 199, 0.1); }
.ve-card[data-glow="purple"]:hover { border-color: rgba(167, 139, 250, 0.3); box-shadow: 0 0 30px rgba(167, 139, 250, 0.1); }
.ve-card[data-glow="green"]:hover { border-color: rgba(74, 222, 128, 0.3); box-shadow: 0 0 30px rgba(74, 222, 128, 0.1); }

.ve-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: #00d4ff;
}

.ve-card__icon svg {
    width: 100%;
    height: 100%;
}

.ve-card[data-glow="magenta"] .ve-card__icon { color: #ff4cc7; }
.ve-card[data-glow="purple"] .ve-card__icon { color: #a78bfa; }
.ve-card[data-glow="green"] .ve-card__icon { color: #4ade80; }

.ve-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 12px;
}

.ve-card__desc {
    font-size: 14px;
    color: #b0bec5;
    line-height: 1.7;
    font-weight: 500;
}

.ve-card__brands {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.ve-brand {
    padding: 4px 12px;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: #a78bfa;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* === GRID (Duties) === */
.ve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.ve-grid__item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid #00d4ff;
    border-radius: 4px;
    padding: 24px 20px;
    transition: all 0.3s ease;
}

.ve-grid__item:hover {
    background: rgba(0, 212, 255, 0.03);
    border-left-color: #ff4cc7;
    transform: translateX(4px);
}

.ve-grid__num {
    font-size: 11px;
    font-weight: 700;
    color: #00d4ff;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
    opacity: 0.6;
}

.ve-grid__title {
    font-size: 16px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 8px;
}

.ve-grid__desc {
    font-size: 14px;
    color: #b0bec5;
    margin-bottom: 12px;
    font-weight: 500;
}

.ve-grid__tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.ve-grid__tags span {
    padding: 2px 8px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 3px;
    font-size: 10px;
    color: #00d4ff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* === SKILLS (Requirements) === */
.ve-skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ve-skills__block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 8px;
    padding: 32px;
}

.ve-skills__block--alt {
    border-color: rgba(255, 76, 199, 0.1);
}

.ve-skills__heading {
    font-size: 14px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.ve-skills__block--alt .ve-skills__heading {
    color: #ff4cc7;
}

.ve-skills__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ve-skills__list li {
    padding: 10px 0;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.ve-skills__list li:last-child {
    border-bottom: none;
}

.ve-skills__list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

.ve-skills__block--alt .ve-skills__list li::before {
    color: #ff4cc7;
}

/* === FORMAT BARS === */
.ve-format__bars {
    max-width: 700px;
    margin: 0 auto;
}

.ve-format__bar {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    height: 56px;
    margin-bottom: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.ve-format__bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--pct);
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.08), rgba(0, 212, 255, 0.15));
    border-right: 2px solid #00d4ff;
    transition: width 1s ease;
}

.ve-format__bar-label {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: #e2e8f0;
    font-weight: 500;
}

.ve-format__bar-pct {
    position: relative;
    z-index: 1;
    margin-left: auto;
    font-size: 20px;
    font-weight: 800;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* === QUIZ === */
.ve-quiz__box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 12px;
    padding: 40px 36px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.05);
}

.ve-quiz__step {
    display: none;
}

.ve-quiz__step.active {
    display: block;
}

.ve-quiz__progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    margin-bottom: 24px;
    overflow: hidden;
}

.ve-quiz__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0072ff);
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.ve-quiz__step-num {
    font-size: 11px;
    color: #64748b;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-family: 'Courier New', monospace;
}

.ve-quiz__question {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 24px;
}

.ve-quiz__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ve-quiz__opt {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: #cbd5e1;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease;
}

.ve-quiz__opt:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.25);
    color: #fff;
}

.ve-quiz__opt.selected {
    background: rgba(0, 212, 255, 0.12);
    border-color: #00d4ff;
    color: #fff;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

.ve-quiz__note {
    margin-top: 16px;
    font-size: 12px;
    color: #4ade80;
    opacity: 0.8;
    font-style: italic;
}

.ve-quiz__score {
    font-size: 48px;
    font-weight: 900;
    color: #00d4ff;
    text-align: center;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    margin-bottom: 16px;
}

.ve-quiz__result-title {
    font-size: 20px;
    font-weight: 700;
    color: #4ade80;
    text-align: center;
    margin-bottom: 8px;
}

.ve-quiz__result-sub {
    font-size: 15px;
    color: #b0bec5;
    text-align: center;
    margin-bottom: 24px;
    font-weight: 500;
}

.ve-quiz__result-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* === INPUTS === */
.ve-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff !important;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.ve-input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    background: rgba(0, 212, 255, 0.04);
}

.ve-input::placeholder {
    color: #475569;
}

/* Fix: autofill dark text on dark bg */
.ve-input:-webkit-autofill,
.ve-input:-webkit-autofill:hover,
.ve-input:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(10, 15, 30, 0.99) inset !important;
    box-shadow: 0 0 0 1000px rgba(10, 15, 30, 0.99) inset !important;
    border-color: rgba(0, 212, 255, 0.3) !important;
    caret-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

.ve-textarea:-webkit-autofill,
.ve-textarea:-webkit-autofill:hover,
.ve-textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #fff !important;
    -webkit-box-shadow: 0 0 0 1000px rgba(10, 15, 30, 0.99) inset !important;
    box-shadow: 0 0 0 1000px rgba(10, 15, 30, 0.99) inset !important;
    caret-color: #fff !important;
}

.ve-textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    resize: vertical;
    min-height: 80px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.ve-textarea:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.ve-textarea::placeholder {
    color: #475569;
}

/* === TELEGRAM LINK === */
.ve-tg-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px;
    color: #00d4ff;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid rgba(0, 136, 204, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.ve-tg-link:hover {
    background: rgba(0, 136, 204, 0.1);
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.2);
    color: #00d4ff;
    text-decoration: none;
}

.ve-tg-link--large {
    font-size: 15px;
    padding: 16px;
    margin-top: 20px;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(0, 136, 204, 0.15);
}

/* === FORM === */
.ve-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ve-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ve-form__file {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ve-file-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #94a3b8;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.ve-file-label:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}

.ve-file-name {
    font-size: 13px;
    color: #4ade80;
    white-space: nowrap;
}

/* === CTA === */
.ve-cta {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.03), transparent);
}

.ve-cta__title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.ve-cta__desc {
    font-size: 18px;
    color: #b0bec5;
    margin-bottom: 36px;
    font-weight: 500;
}

.ve-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.ve-cta__phone {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 8px;
}

.ve-phone-link {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ve-phone-link:hover {
    text-shadow: 0 0 12px rgba(0, 212, 255, 0.5);
    color: #00d4ff;
}

.ve-cta__salary {
    font-size: 13px;
    color: #475569;
    font-style: italic;
    margin-top: 8px;
}

/* === STICKY BAR === */
.ve-sticky {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 4999;
    background: linear-gradient(90deg, #0a0f1e 0%, #111827 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
    transition: bottom 0.4s ease;
    padding: 12px 0;
}

.ve-sticky.visible {
    bottom: 0;
}

.ve-sticky__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ve-sticky__text {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 600;
}

.ve-sticky__btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #00d4ff 0%, #0072ff 100%);
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    animation: veStickyPulse 2s ease-in-out infinite;
}

@keyframes veStickyPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(0, 212, 255, 0.3); }
    50% { box-shadow: 0 0 25px rgba(0, 212, 255, 0.5); }
}

.ve-sticky__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

/* === MODAL === */
.ve-modal__overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(6px);
    z-index: 9998;
    cursor: pointer;
}

.ve-modal__box {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #111827, #0a0f1e);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 36px 32px;
    z-index: 9999;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.1);
}

.ve-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #64748b;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.ve-modal__close:hover {
    color: #ff4cc7;
}

.ve-modal__title {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 20px;
    text-align: center;
}

.ve-modal__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* === TOASTS === */
.ve-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #065f46, #064e3b);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    animation: veToastIn 0.4s ease;
}

.ve-toast__icon {
    color: #4ade80;
    font-size: 20px;
    font-weight: 700;
}

.ve-toast__text {
    color: #d1fae5;
    font-size: 14px;
    font-weight: 500;
}

@keyframes veToastIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.ve-copy-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    padding: 10px 20px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    color: #00d4ff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: veToastIn 0.3s ease;
}

/* === MOBILE === */
@media (max-width: 768px) {
    .ve-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .ve-hero__fiber-anim {
        display: none;
    }

    .ve-hero__actions {
        flex-direction: column;
    }

    .ve-cards {
        grid-template-columns: 1fr;
    }

    .ve-skills {
        grid-template-columns: 1fr;
    }

    .ve-form__row {
        grid-template-columns: 1fr;
    }

    .ve-section {
        padding: 60px 0;
    }

    .ve-quiz__box {
        padding: 28px 20px;
    }

    .ve-sticky__inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .ve-sticky__btn {
        width: 100%;
    }

    .ve-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .ve-hero__title {
        font-size: 28px;
    }

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

    .ve-btn--large {
        width: 100%;
        justify-content: center;
    }
}


/* ═══ VIDEO SECTION ═══ */
.ve-video {
    padding: 3rem 0;
}
.ve-video__desc {
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}
.ve-video__wrapper {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,240,255,0.15);
    box-shadow: 0 0 30px rgba(0,240,255,0.08), inset 0 0 30px rgba(0,0,0,0.3);
    aspect-ratio: 1/1;
    background: #0a0e1a;
}
.ve-video__player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ve-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
    padding: 0;
}
.ve-video__play:hover {
    transform: translate(-50%, -50%) scale(1.15);
}
.ve-video__play.hidden {
    opacity: 0;
    pointer-events: none;
}
.ve-video__wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(10,14,26,0.7));
    pointer-events: none;
    z-index: 1;
}
@media (max-width: 768px) {
    .ve-video__wrapper {
        max-width: 100%;
        border-radius: 8px;
    }
}
