:root {
  --bg: #0D0D0D; --pink: #ED1B76; --teal: #00A878; --text: #FFFFFF; --muted: #B0B0B0;
  --font-head: 'Unbounded', sans-serif; --font-subhead: 'Manrope', sans-serif; --font-body: 'Inter', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

header { padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 8vw, 80px); text-align: center; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; background: radial-gradient(ellipse at center, rgba(237,27,118,0.05) 0%, transparent 70%); }
.header-logo { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; user-select: none; }
.bg-symbol { position: absolute; color: var(--pink); font-family: var(--font-head); font-weight: 800; opacity: 0.04; transition: transform 5s ease; }
.bg-symbol.float { animation: floatSymbol 6s ease-in-out infinite alternate; }
@keyframes floatSymbol { 0% { transform: translateY(0px) rotate(0deg); } 100% { transform: translateY(-15px) rotate(2deg); } }
.b1 { top: 10%; left: 5%; font-size: 12rem; transform: rotate(-15deg); }
.b2 { top: 60%; right: 10%; font-size: 8rem; transform: rotate(20deg); animation-delay: 1s; }
.b3 { bottom: 10%; left: 20%; font-size: 15rem; transform: rotate(45deg); opacity: 0.02; }
.b4 { top: 20%; right: 25%; font-size: 6rem; transform: rotate(-30deg); opacity: 0.06; }
.b5 { top: 50%; left: 15%; font-size: 10rem; transform: rotate(10deg); }
.b6 { bottom: 20%; right: 5%; font-size: 18rem; transform: rotate(-10deg); opacity: 0.02; }
.b7 { top: 5%; left: 45%; font-size: 5rem; transform: rotate(80deg); opacity: 0.05; }
.b8 { bottom: 30%; left: 50%; font-size: 7rem; transform: rotate(-60deg); opacity: 0.03; }
.header-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
h1 { font-family: var(--font-head); font-size: clamp(1.8rem, 5vw, 3.8rem); margin-bottom: 20px; font-weight: 700; line-height: 1.1; }
.sub { color: var(--muted); font-size: clamp(1rem, 2vw, 1.15rem); margin: 0 auto 30px; line-height: 1.5; }
.cta-group { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
.btn { padding: 16px 32px; border: none; border-radius: 8px; font-family: var(--font-subhead); font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; justify-content: center; min-height: 48px; }
.btn-pink { background: var(--pink); color: #fff; box-shadow: 0 4px 20px rgba(237,27,118,0.3); }
.btn-pink:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(237,27,118,0.5); }
.btn-pink:active { transform: scale(0.98); }
.btn-pink:disabled { opacity: 0.6; cursor: not-allowed; }

.section-padding { padding: clamp(50px, 8vw, 100px) 0; }
.section-title { font-family: var(--font-head); font-size: clamp(1.5rem, 4vw, 2.2rem); text-align: center; margin-bottom: clamp(30px, 5vw, 50px); font-weight: 700; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card { background: linear-gradient(145deg, #151515, #0f0f0f); border: 1px solid #222; border-radius: 16px; padding: 30px 20px; position: relative; transition: 0.3s; display: flex; flex-direction: column; justify-content: space-between; }
.card::before { content: '○'; position: absolute; top: -15px; left: 20px; background: var(--bg); padding: 0 8px; color: var(--pink); font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; }
.card:nth-child(2)::before { content: '△'; }
.card:hover { border-color: var(--pink); transform: translateY(-5px); }
.card h3 { font-family: var(--font-head); margin: 10px 0; font-size: 1.3rem; }
.card p { color: var(--muted); font-size: 0.95rem; line-height: 1.5; margin-bottom: 15px; }
.salary { color: var(--teal); font-weight: 700; font-size: 1.4rem; display: block; margin-top: auto; }

.video-section { background: rgba(0,168,120,0.03); }
.video-wrapper { position: relative; width: 100%; max-width: 900px; margin: 0 auto; border-radius: 12px; overflow: hidden; border: 1px solid #333; box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.video-wrapper::before { content: ''; display: block; padding-bottom: 56.25%; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

.requirements-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.req-card { background: #151515; border: 1px solid #222; border-radius: 12px; padding: 25px 20px; transition: 0.3s; }
.req-card:hover { border-color: var(--teal); }
.req-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.req-card h3 { font-family: var(--font-head); font-size: 1.1rem; margin-bottom: 8px; }
.req-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.4; }

.steps-section { background: rgba(237,27,118,0.03); text-align: center; }
.steps-list { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.step { width: clamp(100px, 20vw, 140px); height: clamp(100px, 20vw, 140px); border: 2px solid #333; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #0f0f0f; transition: 0.3s; padding: 10px; }
.step:hover { border-color: var(--pink); transform: scale(1.05); }
.step span:first-child { font-size: 1.8rem; color: var(--pink); margin-bottom: 5px; font-weight: 700; }
.step span:last-child { font-size: 0.85rem; font-weight: 600; text-align: center; }

.form-section { padding-bottom: 100px; }
form { max-width: 500px; margin: 0 auto; display: grid; gap: 20px; }
input, select, textarea { background: #1A1A1A; border: 1px solid #333; color: #fff; padding: 14px 16px; border-radius: 10px; width: 100%; font-family: var(--font-body); font-size: 16px; transition: 0.2s; min-height: 50px; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 2px rgba(237,27,118,0.2); }
.contact-options { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-options input[type="radio"] { display: none; }
.contact-options label { flex: 1; min-width: 100px; padding: 12px 10px; background: #1A1A1A; border: 1px solid #333; border-radius: 10px; text-align: center; cursor: pointer; transition: 0.3s; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.contact-options label:hover { border-color: var(--pink); background: rgba(237,27,118,0.05); }
.contact-options input:checked + label { border-color: var(--pink); background: rgba(237,27,118,0.15); color: var(--pink); box-shadow: 0 0 10px rgba(237, 27, 118, 0.2); }
.contact-icon { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.file-upload-wrapper { position: relative; border: 2px dashed #333; border-radius: 10px; padding: 15px; text-align: center; cursor: pointer; transition: 0.3s; background: #1A1A1A; display: flex; align-items: center; justify-content: center; min-height: 60px; }
.file-upload-wrapper:hover { border-color: var(--pink); }
.file-upload-wrapper input[type="file"] { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 10; }
.checkbox-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 0.85rem; color: var(--muted); }
.checkbox-label input { width: 20px; height: 20px; accent-color: var(--pink); flex-shrink: 0; margin: 0; padding: 0; border: none; background: none; }
.form-message { display: none; padding: 15px; border-radius: 8px; text-align: center; font-weight: 600; }
.form-message.success { background: rgba(0, 168, 120, 0.2); color: var(--teal); border: 1px solid var(--teal); }
.form-message.error { background: rgba(237, 27, 118, 0.2); color: var(--pink); border: 1px solid var(--pink); }
.loading-spinner { display: inline-block; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; margin-right: 8px; }
@keyframes spin { to { transform: rotate(360deg); } }
footer { text-align: center; padding: 30px 0; color: var(--muted); font-size: 0.8rem; border-top: 1px solid #222; }
.policy-link { color: var(--teal); text-decoration: none; border-bottom: 1px dashed var(--teal); transition: 0.2s; cursor: pointer; }
.policy-link:hover { color: var(--pink); border-color: var(--pink); }

.modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(13, 13, 13, 0.9); backdrop-filter: blur(5px); opacity: 0; transition: opacity 0.3s ease; }
.modal.show { display: block; opacity: 1; }
.modal-content { background-color: #151515; margin: 5% auto; padding: 0; border: 1px solid var(--pink); width: 90%; max-width: 700px; border-radius: 16px; box-shadow: 0 0 30px rgba(237, 27, 118, 0.2); position: relative; animation: modalSlideUp 0.4s ease; }
@keyframes modalSlideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-header { padding: 20px 25px; border-bottom: 1px solid #333; display: flex; justify-content: space-between; align-items: center; }
.modal-header h2 { font-family: var(--font-head); font-size: 1.5rem; color: var(--text); }
.close-modal { color: var(--muted); font-size: 28px; font-weight: bold; cursor: pointer; line-height: 1; transition: 0.2s; }
.close-modal:hover { color: var(--pink); }
.modal-body { padding: 30px 25px; max-height: 70vh; overflow-y: auto; }
.modal-body::-webkit-scrollbar { width: 8px; }
.modal-body::-webkit-scrollbar-track { background: #0D0D0D; }
.modal-body::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
.modal-body p, .modal-body li { font-size: 0.95rem; line-height: 1.6; color: var(--muted); margin-bottom: 15px; }
.modal-body h3 { color: var(--text); margin: 20px 0 10px; font-family: var(--font-subhead); }
.modal-body ul { padding-left: 20px; }

@media (max-width: 768px) { .contact-options { flex-direction: column; } .contact-options label { width: 100%; } }
@media (max-width: 480px) { .btn { width: 100%; padding: 14px; } .step { width: 80px; height: 80px; } .modal-content { width: 95%; margin: 10% auto; } }

