/* ============================================================
   AMIONYX — style.css  (all pages, single source of truth)
   ============================================================ */

/* ── Variables ── */
:root {
  --blue: #1E6FFF;
  --blue-dim: #1459d4;
  --blue-glow: rgba(30,111,255,.18);
  --mist: #DCE3EB;
  --steel: #878EA0;
  --black: #000;
  --white: #fff;
  --off-white: #F6F8FA;
  --border: rgba(135,142,160,.18);
  --text-main: #0d1117;
  --text-sub: #4a5163;
  --font-d: 'Syne', sans-serif;
  --font-b: 'DM Sans', sans-serif;
  --ease: cubic-bezier(.16,1,.3,1);
  --r1: 8px; --r2: 16px; --r3: 24px; --r4: 40px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); background: var(--white); color: var(--text-main); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
img { display: block; max-width: 100%; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-thumb { background: var(--mist); border-radius: 4px; }

/* ── Container ── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .container { padding: 0 20px; } }

/* ── Page Loader ── */
.page-loader { position: fixed; inset: 0; background: var(--black); z-index: 10000; display: flex; align-items: center; justify-content: center; animation: loaderOut .5s ease 1.6s forwards; }
@keyframes loaderOut { to { opacity: 0; visibility: hidden; pointer-events: none; } }
.loader-inner { text-align: center; animation: fadeUp .5s var(--ease) .1s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.loader-logo { font-family: var(--font-d); font-size: 26px; font-weight: 800; color: var(--white); letter-spacing: -.04em; margin-bottom: 18px; }
.loader-logo span { color: var(--blue); }
.loader-bar { width: 150px; height: 2px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-fill { height: 100%; background: var(--blue); animation: fillBar 1.4s cubic-bezier(.4,0,.2,1) .2s forwards; }
@keyframes fillBar { 0% { width: 0; } 30% { width: 35%; } 60% { width: 65%; } 82% { width: 84%; } 100% { width: 100%; } }

/* ── Progress Line ── */
#pline { position: fixed; top: 0; left: 0; height: 2px; background: var(--blue); z-index: 10001; width: 0; pointer-events: none; transition: width .1s linear; }

/* ── Custom Cursor (desktop only) ── */
.cursor { position: fixed; top: 0; left: 0; width: 10px; height: 10px; background: var(--blue); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width .15s var(--ease), height .15s var(--ease); will-change: transform; }
.cursor-ring { position: fixed; top: 0; left: 0; width: 36px; height: 36px; border: 1.5px solid var(--blue); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); opacity: .4; transition: width .2s var(--ease), height .2s var(--ease), opacity .2s; will-change: transform; }
.cursor.hov { width: 6px; height: 6px; }
.cursor-ring.hov { width: 52px; height: 52px; opacity: .18; }
@media (max-width: 768px) { .cursor, .cursor-ring { display: none; } }

/* ── Blob ── */
.blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }

/* ── Reveal Animations ── */
.rv  { opacity: 0; transform: translateY(26px);  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv-l { opacity: 0; transform: translateX(-26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv-r { opacity: 0; transform: translateX(26px);  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv-s { opacity: 0; transform: scale(.94);        transition: opacity .65s var(--ease), transform .65s var(--ease); }
.rv.in, .rv-l.in, .rv-r.in, .rv-s.in { opacity: 1; transform: none; }

/* ── Nav ── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background .35s, box-shadow .35s; }
nav.scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--font-d); font-weight: 800; font-size: 22px; letter-spacing: -.03em; color: var(--text-main); }
.logo span { color: var(--blue); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-sub); position: relative; transition: color .25s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 1.5px; background: var(--blue); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--text-main); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-main); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 960px) { .nav-links, .nav-actions { display: none; } .hamburger { display: flex; } }

/* ── Mobile Menu ── */
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-d); font-size: 26px; font-weight: 700; color: var(--text-main); transition: color .2s; }
.mobile-menu a:hover { color: var(--blue); }
.mob-btns { display: flex; flex-direction: column; gap: 12px; width: 230px; margin-top: 14px; }
.mob-btns .btn { width: 100%; justify-content: center; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-d); font-weight: 600; font-size: 14px; border-radius: 100px; padding: 10px 22px; transition: all .3s var(--ease); cursor: pointer; white-space: nowrap; }
.btn-lg { font-size: 15px; padding: 14px 30px; }
.btn-ghost { color: var(--text-main); border: 1.5px solid var(--border); background: transparent; }
.btn-ghost:hover { border-color: var(--steel); background: var(--off-white); }
.btn-primary { background: var(--blue); color: var(--white); border: 1.5px solid var(--blue); box-shadow: 0 4px 20px var(--blue-glow); }
.btn-primary:hover { background: var(--blue-dim); transform: translateY(-1px); box-shadow: 0 6px 28px rgba(30,111,255,.3); }
.btn-black { background: var(--black); color: var(--white); border: 1.5px solid var(--black); }
.btn-black:hover { background: #1a1a1a; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }

/* ── Tag ── */
.tag { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-d); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); background: var(--blue-glow); border: 1px solid rgba(30,111,255,.2); padding: 5px 12px; border-radius: 100px; }
.tag::before { content: ''; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; }

/* ── Section Headers ── */
.sec-title { font-family: var(--font-d); font-size: clamp(28px,4vw,50px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--text-main); margin-top: 14px; }
.sec-title .blue { color: var(--blue); }
.sec-desc { font-size: 15.5px; line-height: 1.7; color: var(--text-sub); }
.sec-hdr-split { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 56px; }
.sec-hdr-left { flex: 1; }
.sec-hdr-right { flex: 0 0 360px; max-width: 360px; }
@media (max-width: 960px) { .sec-hdr-split { flex-direction: column; } .sec-hdr-right { flex: 1; max-width: 100%; } }
.sec-hdr-center { text-align: center; max-width: 580px; margin: 0 auto 56px; }

/* ── Hero ── */
.hero { min-height: 100svh; display: flex; align-items: center; padding-top: 72px; position: relative; overflow: hidden; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: center; padding: 80px 0; width: 100%; }
@media (max-width: 1100px) { .hero-layout { grid-template-columns: 1fr 440px; gap: 44px; } }
@media (max-width: 960px)  { .hero-layout { grid-template-columns: 1fr; gap: 48px; padding: 60px 0; } }
.hero-left  { animation: slideL .9s var(--ease) .3s both; }
.hero-right { animation: slideR .9s var(--ease) .45s both; }
@keyframes slideL { from { opacity: 0; transform: translateX(-22px); } to { opacity: 1; transform: none; } }
@keyframes slideR { from { opacity: 0; transform: translateX( 22px); } to { opacity: 1; transform: none; } }

/* ── Hero Eyebrow ── */
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 6px 14px 6px 8px; margin-bottom: 26px; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.live-dot { width: 20px; height: 20px; background: rgba(30,111,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.live-dot::after { content: ''; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(30,111,255,.45); } 70% { box-shadow: 0 0 0 7px rgba(30,111,255,0); } 100% { box-shadow: 0 0 0 0 rgba(30,111,255,0); } }
.eyebrow-text { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-sub); }

/* ── Hero Copy ── */
.hero-title { font-family: var(--font-d); font-size: clamp(36px,5vw,62px); font-weight: 800; line-height: 1.06; letter-spacing: -.035em; color: var(--text-main); margin-bottom: 20px; }
.hero-title .blue { color: var(--blue); }
.hero-sub { font-size: 16.5px; line-height: 1.7; color: var(--text-sub); max-width: 430px; margin-bottom: 28px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 28px; }
.hero-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--text-sub); background: var(--white); border: 1px solid var(--border); border-radius: 100px; padding: 6px 14px; }
.hero-pill .tick { width: 16px; height: 16px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--white); flex-shrink: 0; }
.hero-trust { display: flex; align-items: flex-start; gap: 14px; }
.hero-trust-text { font-size: 13px; color: var(--text-sub); line-height: 1.6; }
.hero-trust-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 3px; }

/* ── Dark Hero (start-project) ── */
.hero-dark { background: var(--black); }
.hero-dark .hero-eyebrow { background: rgba(30,111,255,.12); border-color: rgba(30,111,255,.25); box-shadow: none; }
.hero-dark .eyebrow-text { color: rgba(255,255,255,.7); }
.hero-dark .hero-title { color: var(--white); }
.hero-dark .hero-sub { color: var(--steel); }
.hero-dark .hero-trust-text { color: var(--steel); }
.hero-dark .hero-trust-text strong { color: var(--white); }

/* ── Form Card ── */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r4); padding: 36px 32px; box-shadow: 0 4px 6px rgba(0,0,0,.03), 0 20px 60px rgba(0,0,0,.08); position: relative; overflow: hidden; }
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), #5ba3ff); border-radius: var(--r4) var(--r4) 0 0; }
.form-card-title { font-family: var(--font-d); font-size: 19px; font-weight: 800; letter-spacing: -.02em; color: var(--text-main); margin-bottom: 5px; }
.form-card-sub { font-size: 13px; color: var(--text-sub); margin-bottom: 24px; line-height: 1.5; }

/* ── Form Toggle ── */
.form-toggle { display: flex; background: var(--off-white); border: 1px solid var(--border); border-radius: 100px; padding: 4px; margin-bottom: 24px; position: relative; }
.toggle-btn { flex: 1; padding: 9px 14px; border-radius: 100px; font-family: var(--font-d); font-size: 13px; font-weight: 700; color: var(--text-sub); background: transparent; border: none; cursor: pointer; transition: color .25s; position: relative; z-index: 1; text-align: center; }
.toggle-btn.active { color: var(--white); }
.toggle-track { position: absolute; top: 4px; left: 4px; height: calc(100% - 8px); width: calc(50% - 4px); background: var(--blue); border-radius: 100px; box-shadow: 0 4px 16px var(--blue-glow); transition: transform .35s var(--ease); }
.toggle-track.right { transform: translateX(100%); }

/* ── Form Panels ── */
.form-body { position: relative; }
.form-panel { transition: opacity .3s, transform .35s var(--ease); }
.form-panel.visible { opacity: 1; transform: translateX(0); }
.form-panel.hidden { opacity: 0; pointer-events: none; position: absolute; top: 0; left: 0; right: 0; transform: translateX(18px); }
.form-panel.hidden-left { opacity: 0; pointer-events: none; position: absolute; top: 0; left: 0; right: 0; transform: translateX(-18px); }

/* ── Form Fields ── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.field label { font-size: 11px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--text-sub); }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-b); font-size: 14px; color: var(--text-main); background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--r1); padding: 10px 13px; outline: none; transition: border-color .25s, box-shadow .25s, background .2s; -webkit-appearance: none; appearance: none; }
.field select { background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23878EA0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px; cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(30,111,255,.1); }
.field input::placeholder, .field textarea::placeholder { color: var(--steel); }
.field textarea { resize: none; }

/* ── Phone Field ── */
.phone-field { display: flex; }
.phone-cc { flex-shrink: 0; font-family: var(--font-b); font-size: 13px; font-weight: 600; color: var(--text-main); background: var(--off-white); border: 1.5px solid var(--border); border-right: none; border-radius: var(--r1) 0 0 var(--r1); padding: 10px 22px 10px 12px; cursor: pointer; outline: none; -webkit-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23878EA0' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 8px center; min-width: 88px; max-width: 108px; transition: border-color .25s; }
.phone-cc:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,111,255,.1); z-index: 1; }
.phone-field input { border-radius: 0 var(--r1) var(--r1) 0; flex: 1; min-width: 0; }

/* ── Talent Checkboxes ── */
.talent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 2px; }
.tc-check { display: flex; align-items: center; gap: 8px; padding: 8px 10px; border: 1.5px solid var(--border); border-radius: var(--r1); cursor: pointer; transition: all .2s; background: var(--off-white); user-select: none; }
.tc-check:hover { border-color: rgba(30,111,255,.4); background: rgba(30,111,255,.04); }
.tc-check input[type=checkbox] { display: none; }
.tc-check.checked { border-color: var(--blue); background: rgba(30,111,255,.07); }
.chk-box { width: 16px; height: 16px; border: 1.5px solid var(--border); border-radius: 4px; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .2s; }
.tc-check.checked .chk-box { background: var(--blue); border-color: var(--blue); }
.chk-tick { display: none; color: var(--white); font-size: 10px; line-height: 1; }
.tc-check.checked .chk-tick { display: block; }
.tc-label { font-size: 12.5px; font-weight: 500; color: var(--text-main); }

/* ── File Upload ── */
.file-zone { border: 1.5px dashed var(--border); border-radius: var(--r1); padding: 18px 14px; text-align: center; cursor: pointer; transition: all .25s; background: var(--off-white); position: relative; }
.file-zone:hover, .file-zone.drag-over { border-color: var(--blue); background: rgba(30,111,255,.04); }
.file-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.file-zone-icon { font-size: 22px; margin-bottom: 5px; }
.file-zone-text { font-size: 13px; font-weight: 600; color: var(--text-main); margin-bottom: 3px; }
.file-zone-hint { font-size: 11px; color: var(--steel); }
.file-zone-hint span { color: var(--blue); font-weight: 600; }
.file-names { margin-top: 7px; font-size: 11px; color: var(--blue); font-weight: 500; }

/* ── Submit Button ── */
.form-submit { width: 100%; margin-top: 6px; padding: 14px; font-family: var(--font-d); font-size: 15px; font-weight: 700; letter-spacing: -.01em; color: var(--white); background: var(--blue); border: none; border-radius: var(--r2); cursor: pointer; transition: all .3s var(--ease); box-shadow: 0 6px 24px var(--blue-glow); display: flex; align-items: center; justify-content: center; gap: 8px; }
.form-submit:hover { background: var(--blue-dim); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(30,111,255,.3); }
.form-submit:disabled { cursor: not-allowed; opacity: .75; }
.form-note { text-align: center; margin-top: 12px; font-size: 11px; color: var(--steel); }
.form-note a { color: var(--blue); text-decoration: underline; }

/* ── Marquee ── */
.marquee-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--off-white); padding: 15px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 48px; animation: marquee 26s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.m-item { display: flex; align-items: center; gap: 12px; font-family: var(--font-d); font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--steel); white-space: nowrap; }
.m-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); opacity: .5; }

/* ── Value Props ── */
.vp-section { padding: 100px 0; background: var(--white); }
.vp-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--r3); overflow: hidden; }
@media (max-width: 768px) { .vp-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .vp-grid { grid-template-columns: 1fr; } }
.vp-card { padding: 44px 36px; border-right: 1px solid var(--border); background: var(--white); transition: background .3s; }
.vp-card:last-child { border-right: none; }
@media (max-width: 768px) { .vp-card:nth-child(2) { border-right: none; } .vp-card:nth-child(1), .vp-card:nth-child(2) { border-bottom: 1px solid var(--border); } }
@media (max-width: 480px) { .vp-card { border-right: none; border-bottom: 1px solid var(--border); } .vp-card:last-child { border-bottom: none; } }
.vp-card:hover { background: var(--off-white); }
.vp-num { font-family: var(--font-d); font-size: clamp(36px,4vw,54px); font-weight: 800; letter-spacing: -.04em; color: var(--text-main); line-height: 1; margin-bottom: 10px; }
.vp-num span { color: var(--blue); }
.vp-label { font-size: 13.5px; color: var(--text-sub); line-height: 1.6; }
.vp-num-sm { font-size: clamp(26px,3vw,40px); letter-spacing: -.02em; }

/* ── Services ── */
.svc-section { padding: 100px 0; background: var(--off-white); }
.svc-section.bg-white { background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 960px) { .svc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r3); padding: 30px 26px; position: relative; overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; cursor: default; }
.svc-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue-glow) 0%, transparent 60%); opacity: 0; transition: opacity .4s; }
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.09); border-color: rgba(30,111,255,.28); }
.svc-card:hover::before { opacity: 1; }
.svc-icon { width: 46px; height: 46px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 21px; transition: background .3s, transform .3s; }
.svc-card:hover .svc-icon { background: var(--blue-glow); border-color: rgba(30,111,255,.28); transform: scale(1.08); }
.svc-name { font-family: var(--font-d); font-size: 15px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 8px; color: var(--text-main); }
.svc-desc { font-size: 13px; line-height: 1.65; color: var(--text-sub); }
.svc-arrow { position: absolute; bottom: 18px; right: 22px; font-size: 16px; color: var(--blue); opacity: 0; transform: translate(-4px,4px); transition: opacity .3s, transform .3s var(--ease); }
.svc-card:hover .svc-arrow { opacity: 1; transform: translate(0,0); }

/* ── Why Section ── */
.why-section { padding: 100px 0; background: var(--black); position: relative; overflow: hidden; }
.why-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 20%, rgba(30,111,255,.12) 0%, transparent 60%), radial-gradient(ellipse 40% 50% at 10% 80%, rgba(30,111,255,.07) 0%, transparent 60%); pointer-events: none; }
.why-hdr { max-width: 540px; position: relative; z-index: 1; margin-bottom: 52px; }
.why-hdr-title { font-family: var(--font-d); font-size: clamp(26px,3.5vw,46px); font-weight: 800; letter-spacing: -.03em; color: var(--white); line-height: 1.1; margin-top: 16px; margin-bottom: 13px; }
.why-hdr-title .blue { color: var(--blue); }
.why-hdr-desc { font-size: 15.5px; color: var(--steel); line-height: 1.65; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.07); border-radius: var(--r3); overflow: hidden; border: 1px solid rgba(255,255,255,.07); position: relative; z-index: 1; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }
.why-card { background: var(--black); padding: 44px 38px; position: relative; overflow: hidden; transition: background .4s; }
.why-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--blue), transparent); opacity: 0; transition: opacity .4s; }
.why-card:hover { background: rgba(30,111,255,.06); }
.why-card:hover::after { opacity: 1; }
.why-num { font-family: var(--font-d); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.why-title { font-family: var(--font-d); font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.why-desc { font-size: 13.5px; line-height: 1.7; color: var(--steel); }
.why-badge { display: inline-flex; align-items: baseline; gap: 4px; margin-top: 18px; background: rgba(30,111,255,.15); border: 1px solid rgba(30,111,255,.3); border-radius: var(--r1); padding: 5px 12px; }
.why-badge .price { font-family: var(--font-d); font-size: 22px; font-weight: 800; color: var(--blue); }
.why-badge .unit { font-size: 12px; color: var(--steel); }
.why-section .tag { background: rgba(30,111,255,.15); border-color: rgba(30,111,255,.3); }

/* ── Process Steps ── */
.process-section { padding: 100px 0; background: var(--white); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 40px; left: calc(12.5%); right: calc(12.5%); height: 1px; background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent); }
@media (max-width: 768px) { .process-steps { grid-template-columns: repeat(2,1fr); gap: 40px; } .process-steps::before { display: none; } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { text-align: center; padding: 0 18px; position: relative; z-index: 1; }
.step-num { width: 80px; height: 80px; border-radius: 50%; background: var(--off-white); border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; font-family: var(--font-d); font-weight: 800; font-size: 18px; color: var(--blue); transition: all .4s var(--ease); }
.process-step:hover .step-num { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 12px 32px var(--blue-glow); transform: scale(1.08); }
.step-title { font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 8px; }
.step-desc { font-size: 13px; color: var(--text-sub); line-height: 1.65; }
.how-section { padding: 100px 0; background: var(--off-white); }
.how-section .step-num { background: var(--white); }

/* ── Accordion ── */
.accordion-section { padding: 100px 0; background: var(--off-white); }
.acc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
@media (max-width: 960px) { .acc-layout { grid-template-columns: 1fr; gap: 48px; } }
.acc-item { border-bottom: 1px solid var(--border); }
.acc-hdr { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; gap: 14px; transition: color .2s; }
.acc-hdr:hover { color: var(--blue); }
.acc-hdr-title { font-family: var(--font-d); font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.acc-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--off-white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; transition: all .3s; color: var(--steel); }
.acc-item.open .acc-icon { background: var(--blue); color: var(--white); border-color: var(--blue); transform: rotate(45deg); }
.acc-body { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.acc-body-inner { font-size: 14px; line-height: 1.7; color: var(--text-sub); padding-bottom: 20px; }
.acc-visual { position: sticky; top: 100px; }
.acc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r4); padding: 44px 38px; min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.acc-card-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--blue-glow) 0%, transparent 70%); pointer-events: none; }
.acc-card-icon { font-size: 44px; margin-bottom: 20px; position: relative; }
.acc-card-title { font-family: var(--font-d); font-size: 24px; font-weight: 800; letter-spacing: -.02em; color: var(--text-main); margin-bottom: 12px; position: relative; }
.acc-card-desc { font-size: 13.5px; line-height: 1.7; color: var(--text-sub); position: relative; }
.acc-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; position: relative; }
.acc-tag { font-size: 12px; font-weight: 500; color: var(--blue); background: var(--blue-glow); border: 1px solid rgba(30,111,255,.2); border-radius: 100px; padding: 4px 11px; }

/* ── Promise / Testimonial Cards ── */
.promise-section { padding: 100px 0; background: var(--white); }
.promise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 960px) { .promise-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .promise-grid { grid-template-columns: 1fr; } }
.promise-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r3); padding: 32px; transition: all .4s var(--ease); }
.promise-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.07); }
.promise-icon { font-size: 28px; margin-bottom: 16px; }
.promise-title { font-family: var(--font-d); font-size: 16px; font-weight: 700; color: var(--text-main); margin-bottom: 10px; }
.promise-desc { font-size: 13.5px; line-height: 1.7; color: var(--text-sub); }
.promise-card.feat { background: var(--blue); border-color: var(--blue); }
.promise-card.feat .promise-title { color: var(--white); }
.promise-card.feat .promise-desc { color: rgba(255,255,255,.82); }

/* ── CTA Section ── */
.cta-section { padding: 80px 0; background: var(--off-white); border-top: 1px solid var(--border); }
.cta-card { background: var(--black); border-radius: var(--r4); padding: 80px; display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden; }
@media (max-width: 768px) { .cta-card { flex-direction: column; padding: 48px 32px; align-items: flex-start; } }
@media (max-width: 480px) { .cta-card { padding: 40px 22px; } }
.cta-card-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(30,111,255,.2) 0%, transparent 60%), radial-gradient(ellipse 30% 60% at 0% 30%, rgba(30,111,255,.1) 0%, transparent 60%); pointer-events: none; }
.cta-card-dots { position: absolute; right: 0; top: 0; bottom: 0; width: 40%; background-image: radial-gradient(circle, rgba(255,255,255,.06) 1.2px, transparent 1.2px); background-size: 20px 20px; pointer-events: none; }
.cta-left { position: relative; flex: 1; }
.cta-title { font-family: var(--font-d); font-size: clamp(24px,3.2vw,44px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--white); margin-bottom: 14px; }
.cta-title .blue { color: var(--blue); }
.cta-sub { font-size: 15.5px; color: var(--steel); line-height: 1.65; max-width: 420px; }
.cta-right { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; position: relative; }
@media (max-width: 768px) { .cta-right { flex-direction: row; flex-wrap: wrap; } }
.sp-cta-section { padding: 80px 0; border-top: 1px solid var(--border); }

/* ── Talent Cards ── */
.talent-section { padding: 100px 0; background: var(--white); }
.talent-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
@media (max-width: 960px) { .talent-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .talent-cards { grid-template-columns: 1fr; } }
.t-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r3); padding: 26px 22px; transition: all .4s var(--ease); position: relative; overflow: hidden; }
.t-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue-glow) 0%, transparent 60%); opacity: 0; transition: opacity .4s; }
.t-card:hover { transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.09); border-color: rgba(30,111,255,.28); }
.t-card:hover::before { opacity: 1; }
.t-icon { font-size: 28px; margin-bottom: 13px; display: block; }
.t-role { font-family: var(--font-d); font-size: 15px; font-weight: 700; color: var(--text-main); margin-bottom: 7px; }
.t-desc { font-size: 12.5px; color: var(--text-sub); line-height: 1.6; margin-bottom: 14px; }
.t-rate { display: inline-flex; align-items: baseline; gap: 3px; background: rgba(30,111,255,.1); border: 1px solid rgba(30,111,255,.2); border-radius: 6px; padding: 3px 9px; }
.t-from, .t-unit { font-size: 10px; color: var(--steel); }
.t-price { font-family: var(--font-d); font-size: 15px; font-weight: 800; color: var(--blue); }

/* ── FAQ ── */
.faq-section { padding: 100px 0; background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 960px) { .faq-layout { grid-template-columns: 1fr; gap: 48px; } }
.faq-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; max-width: 260px; }
.faq-cta .btn { width: 100%; justify-content: center; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-hdr { display: flex; align-items: center; justify-content: space-between; padding: 19px 0; cursor: pointer; gap: 14px; transition: color .2s; }
.faq-hdr:hover { color: var(--blue); }
.faq-q { font-family: var(--font-d); font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--off-white); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; transition: all .3s; color: var(--steel); }
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); border-color: var(--blue); transform: rotate(45deg); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.faq-body-inner { font-size: 14px; line-height: 1.7; color: var(--text-sub); padding-bottom: 18px; }

/* ── Testimonials ── */
.testi-section { padding: 100px 0; background: var(--off-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 960px) { .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r3); padding: 30px; transition: all .4s var(--ease); }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.07); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars span { color: #f59e0b; font-size: 15px; }
.testi-quote { font-size: 14.5px; line-height: 1.7; color: var(--text-main); margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-av { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.testi-info .tname { font-weight: 600; font-size: 13.5px; color: var(--text-main); }
.testi-info .trole { font-size: 12px; color: var(--text-sub); }
.testi-card.feat { background: var(--blue); border-color: var(--blue); }
.testi-card.feat .testi-stars span { color: #fde68a; }
.testi-card.feat .testi-quote { color: rgba(255,255,255,.92); }
.testi-card.feat .testi-author { border-color: rgba(255,255,255,.2); }
.testi-card.feat .testi-info .tname { color: var(--white); }
.testi-card.feat .testi-info .trole { color: rgba(255,255,255,.65); }

/* ── Footer ── */
footer { background: var(--black); color: var(--white); padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,.07); }
.ft-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
@media (max-width: 960px) { .ft-inner { grid-template-columns: 1fr 1fr; gap: 40px; } .ft-brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .ft-inner { grid-template-columns: 1fr; } }
.ft-logo { font-family: var(--font-d); font-size: 20px; font-weight: 800; margin-bottom: 13px; letter-spacing: -.03em; }
.ft-logo span { color: var(--blue); }
.ft-tagline { font-size: 13.5px; color: var(--steel); line-height: 1.65; max-width: 255px; margin-bottom: 22px; }
.ft-socials { display: flex; gap: 10px; }
.ft-soc { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all .3s; color: var(--steel); }
.ft-soc:hover { border-color: var(--blue); color: var(--blue); background: rgba(30,111,255,.1); }
.ft-col-title { font-family: var(--font-d); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.ft-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.ft-links a { font-size: 13.5px; color: var(--steel); transition: color .2s; }
.ft-links a:hover { color: var(--white); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 26px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.ft-bottom span, .ft-bottom a { font-size: 12.5px; color: rgba(255,255,255,.3); }
.ft-bottom a:hover { color: var(--white); }
.ft-bottom-links { display: flex; gap: 20px; }

/* ── Grid background helper ── */
.grid-bg { position: absolute; inset: 0; background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px); background-size: 56px 56px; opacity: .5; pointer-events: none; }

/* ── Form Validation ── */
.field-error { display: none; font-size: 11px; font-weight: 600; color: #dc2626; margin-top: 4px; letter-spacing: .01em; }
.field-error:not(:empty) { display: block; }
.field-error:not(:empty)::before { content: '⚠ '; }
.input-error { border-color: #dc2626 !important; background: #fff5f5 !important; box-shadow: 0 0 0 3px rgba(220,38,38,.1) !important; }

/* ── Home FAQ Section ── */
.home-faq-section { padding: 100px 0; background: var(--white); border-top: 1px solid var(--border); }
.home-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
@media (max-width: 768px) { .home-faq-grid { grid-template-columns: 1fr; } }
.home-faq-grid .faq-item { border-bottom: 1px solid var(--border); }
.faq-extra { display: none; }
.view-more-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-family: var(--font-d); font-size: 14px; font-weight: 700; color: var(--blue); background: var(--blue-glow); border: 1.5px solid rgba(30,111,255,.25); border-radius: 100px; padding: 11px 28px; cursor: pointer; transition: all .3s var(--ease); }
.view-more-btn:hover { background: rgba(30,111,255,.15); transform: translateY(-1px); box-shadow: 0 6px 20px var(--blue-glow); }

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

/* ── Career Hero ── */
.career-hero { min-height: 56vh; display: flex; align-items: center; padding-top: 72px; position: relative; overflow: hidden; background: var(--off-white); }
.career-hero-inner { position: relative; z-index: 2; padding: 80px 0; }
.career-hero .hero-title { font-size: clamp(34px, 5vw, 62px); }

/* ── Career Stats Bar ── */
.career-stats { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--r3); overflow: hidden; margin-top: 52px; }
@media (max-width: 640px) { .career-stats { flex-direction: column; } }
.cs-item { flex: 1; padding: 28px 32px; border-right: 1px solid var(--border); background: var(--white); transition: background .25s; text-align: center; }
.cs-item:last-child { border-right: none; }
.cs-item:hover { background: var(--off-white); }
.cs-num { font-family: var(--font-d); font-size: 32px; font-weight: 800; color: var(--blue); letter-spacing: -.04em; line-height: 1; margin-bottom: 6px; }
.cs-label { font-size: 12px; color: var(--text-sub); font-weight: 500; }

/* ── Dept Filter Tabs ── */
.dept-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.dept-tab { font-family: var(--font-d); font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 100px; border: 1.5px solid var(--border); background: var(--white); color: var(--text-sub); cursor: pointer; transition: all .25s var(--ease); }
.dept-tab:hover { border-color: var(--blue); color: var(--blue); }
.dept-tab.active { background: var(--blue); color: var(--white); border-color: var(--blue); box-shadow: 0 4px 16px var(--blue-glow); }

/* ── Jobs Section ── */
.jobs-section { padding: 100px 0; background: var(--white); }
.jobs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1024px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .jobs-grid { grid-template-columns: 1fr; } }

/* ── Job Card ── */
.job-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r3); padding: 28px; transition: all .4s var(--ease); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.job-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue-glow) 0%, transparent 60%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.job-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.08); border-color: rgba(30,111,255,.25); }
.job-card:hover::before { opacity: 1; }
.job-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.job-dept-icon { width: 46px; height: 46px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r1); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; transition: background .3s; }
.job-card:hover .job-dept-icon { background: var(--blue-glow); border-color: rgba(30,111,255,.3); }
.job-badge { font-family: var(--font-d); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; flex-shrink: 0; }
.job-badge.hot { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.job-badge.new { background: rgba(30,111,255,.1); color: var(--blue); border: 1px solid rgba(30,111,255,.25); }
.job-badge.open { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.job-title { font-family: var(--font-d); font-size: 17px; font-weight: 800; letter-spacing: -.02em; color: var(--text-main); margin-bottom: 8px; line-height: 1.2; }
.job-short { font-size: 13px; line-height: 1.65; color: var(--text-sub); margin-bottom: 18px; flex: 1; }
.job-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.job-meta-tag { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 600; color: var(--text-sub); background: var(--off-white); border: 1px solid var(--border); border-radius: 100px; padding: 3px 10px; }
.job-meta-tag svg { width: 10px; height: 10px; color: var(--blue); flex-shrink: 0; }
.job-card-actions { display: flex; gap: 8px; margin-top: auto; }
.job-card-actions .btn { flex: 1; font-size: 13px; padding: 9px 14px; }
.job-card-actions .btn-ghost { border-color: var(--border); }
.no-jobs { text-align: center; padding: 60px 20px; color: var(--text-sub); grid-column: 1/-1; }
.no-jobs-icon { font-size: 40px; margin-bottom: 12px; }
.no-jobs p { font-size: 15px; }

/* ── Apply Section ── */
.apply-section { padding: 100px 0; background: var(--off-white); border-top: 1px solid var(--border); }
.apply-layout { display: grid; grid-template-columns: 1fr 520px; gap: 72px; align-items: start; }
@media (max-width: 1024px) { .apply-layout { grid-template-columns: 1fr; gap: 52px; } }
.apply-info { position: sticky; top: 100px; }
.apply-info-title { font-family: var(--font-d); font-size: clamp(26px, 3.5vw, 42px); font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--text-main); margin-bottom: 16px; }
.apply-info-title .blue { color: var(--blue); }
.apply-info-desc { font-size: 15px; line-height: 1.75; color: var(--text-sub); margin-bottom: 32px; }
.apply-perk { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.apply-perk-dot { width: 20px; height: 20px; background: var(--blue-glow); border: 1px solid rgba(30,111,255,.25); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.apply-perk-dot::after { content: ''; width: 7px; height: 7px; background: var(--blue); border-radius: 50%; }
.apply-perk-text { font-size: 14px; line-height: 1.6; color: var(--text-sub); }
.apply-perk-text strong { color: var(--text-main); display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.career-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r4); padding: 40px 36px; box-shadow: 0 4px 6px rgba(0,0,0,.03), 0 20px 60px rgba(0,0,0,.07); position: relative; overflow: hidden; }
.career-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), #5ba3ff); border-radius: var(--r4) var(--r4) 0 0; }
.resume-zone { border: 2px dashed var(--border); border-radius: var(--r2); padding: 28px 20px; text-align: center; cursor: pointer; transition: all .25s; background: var(--off-white); position: relative; }
.resume-zone:hover, .resume-zone.drag-over { border-color: var(--blue); background: rgba(30,111,255,.04); }
.resume-zone.has-file { border-color: #16a34a; background: #f0fdf4; }
.resume-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.resume-zone-icon { font-size: 28px; margin-bottom: 8px; }
.resume-zone-text { font-size: 14px; font-weight: 600; color: var(--text-main); margin-bottom: 4px; }
.resume-zone-hint { font-size: 11.5px; color: var(--steel); }
.resume-zone-hint span { color: var(--blue); font-weight: 600; }
.resume-name { margin-top: 10px; font-size: 12px; color: #16a34a; font-weight: 600; }
.terms-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 4px; }
.terms-check { width: 16px; height: 16px; border: 1.5px solid var(--border); border-radius: 4px; background: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; cursor: pointer; margin-top: 2px; transition: all .2s; }
.terms-check.checked { background: var(--blue); border-color: var(--blue); }
.terms-check .chk-tick { display: none; color: var(--white); font-size: 10px; }
.terms-check.checked .chk-tick { display: block; }
.terms-text { font-size: 12px; color: var(--text-sub); line-height: 1.6; }
.terms-text a { color: var(--blue); text-decoration: underline; }

/* ── Job Detail Page ── */
.jd-page { background: var(--off-white); min-height: 100vh; padding-top: 72px; }
.jd-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--steel); padding: 28px 0 20px; }
.jd-breadcrumb a { color: var(--steel); transition: color .2s; }
.jd-breadcrumb a:hover { color: var(--blue); }
.jd-breadcrumb-sep { color: var(--mist); }
.jd-hero { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 0; margin-bottom: 40px; }
.jd-hero-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
@media (max-width: 768px) { .jd-hero-inner { flex-direction: column; align-items: flex-start; gap: 24px; } }
.jd-hero-left { flex: 1; min-width: 0; }
.jd-icon-title-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.jd-title { font-family: var(--font-d); font-size: clamp(24px, 4vw, 44px); font-weight: 800; letter-spacing: -.03em; color: var(--text-main); margin-bottom: 6px; line-height: 1.1; }
.jd-meta-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.jd-meta-chip { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 600; color: var(--text-sub); background: var(--off-white); border: 1px solid var(--border); border-radius: 100px; padding: 5px 12px; }
.jd-meta-chip.salary { color: var(--blue); background: var(--blue-glow); border-color: rgba(30,111,255,.2); }
.jd-posted { font-size: 12px; color: var(--steel); }
.jd-apply-hero-btn { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; flex-shrink: 0; min-width: 220px; padding-left: 24px; }
@media (max-width: 768px) { .jd-apply-hero-btn { align-items: flex-start; flex-direction: row; flex-wrap: wrap; padding-left: 0; min-width: 0; } }
.jd-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; padding-bottom: 80px; }
@media (max-width: 900px) { .jd-layout { grid-template-columns: 1fr; } }
.jd-content { background: var(--white); border: 1px solid var(--border); border-radius: var(--r3); padding: 44px; }
@media (max-width: 600px) { .jd-content { padding: 28px 22px; } }
.jd-section { margin-bottom: 40px; }
.jd-section:last-child { margin-bottom: 0; }
.jd-section-title { font-family: var(--font-d); font-size: 15px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.jd-text { font-size: 14.5px; line-height: 1.8; color: var(--text-sub); }
.jd-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.jd-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.65; color: var(--text-sub); }
.jd-list li::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.jd-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 500px) { .jd-perks { grid-template-columns: 1fr; } }
.jd-perk { display: flex; align-items: center; gap: 8px; padding: 12px 14px; background: var(--off-white); border: 1px solid var(--border); border-radius: var(--r1); font-size: 13px; color: var(--text-sub); }
.jd-perk::before { content: '✓'; width: 18px; height: 18px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; }
.jd-sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r3); padding: 28px; position: sticky; top: 100px; }
.jd-sidebar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), #5ba3ff); border-radius: var(--r3) var(--r3) 0 0; }
.jd-sidebar-card { position: relative; }
.jd-sidebar-title { font-family: var(--font-d); font-size: 16px; font-weight: 800; letter-spacing: -.01em; color: var(--text-main); margin-bottom: 6px; }
.jd-sidebar-sub { font-size: 12.5px; color: var(--text-sub); line-height: 1.55; margin-bottom: 20px; }
.jd-sidebar-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; padding: 16px; background: var(--off-white); border-radius: var(--r2); border: 1px solid var(--border); }
.jd-sd-row { display: flex; align-items: center; justify-content: space-between; font-size: 12.5px; }
.jd-sd-label { color: var(--steel); font-weight: 500; }
.jd-sd-val { color: var(--text-main); font-weight: 700; font-family: var(--font-d); font-size: 12px; }
.jd-sd-val.blue { color: var(--blue); }
.jd-sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 8px; }
.jd-share { display: flex; gap: 8px; margin-top: 16px; }
.jd-share-btn { flex: 1; font-family: var(--font-d); font-size: 12px; font-weight: 600; padding: 8px 10px; border: 1.5px solid var(--border); border-radius: var(--r1); background: transparent; color: var(--text-sub); cursor: pointer; transition: all .2s; text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; }
.jd-share-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-glow); }
.jd-not-found { text-align: center; padding: 100px 20px; }
.jd-not-found h2 { font-family: var(--font-d); font-size: 28px; font-weight: 800; color: var(--text-main); margin-bottom: 12px; }
.jd-not-found p { font-size: 15px; color: var(--text-sub); margin-bottom: 28px; }

/* ============================================================
   UTILITY REPLACEMENTS — removes Tailwind CDN dependency
   ============================================================ */

/* Hero default background (was bg-[var(--off-white)] Tailwind) */
.hero { background: var(--off-white); }

/* Section title bottom spacing (was mb-3 Tailwind) */
.sec-title { margin-bottom: 12px; }

/* Why section container sits above the absolute bg overlay */
.why-section > .container { position: relative; z-index: 1; }

/* Career hero inner container */
.career-hero .container { position: relative; z-index: 2; }

/* Flex row for hero pill / button groups */
.flex-row-wrap { display: flex; flex-wrap: wrap; gap: 12px; }

/* Optional label text inside form labels */
.lbl-opt { font-size: 10px; color: var(--steel); text-transform: none; letter-spacing: 0; font-weight: 400; }

/* Centered view-more wrapper */
.view-more-wrap { text-align: center; margin-top: 40px; }

/* FAQ narrow description (hire-talent / start-project) */
.sec-desc-narrow { font-size: 15.5px; line-height: 1.7; color: var(--text-sub); text-align: left; max-width: 300px; }

/* Promise / testimonial card text helpers */
.testi-quote-lg { font-size: 15px; font-weight: 600; line-height: 1.6; color: var(--text-main); margin-bottom: 22px; }
.testi-quote-lg.on-blue { color: rgba(255,255,255,.92); }
.testi-body-sm { font-size: 13.5px; line-height: 1.7; color: var(--text-sub); }
.testi-body-sm.on-blue { color: rgba(255,255,255,.78); }

/* ── Floating WhatsApp Button ── */
@keyframes waPulse { 0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.55); } 50% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); } }
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 100000; width: 58px; height: 58px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: waPulse 2.2s ease-in-out infinite; transition: transform .3s cubic-bezier(.16,1,.3,1), bottom .45s cubic-bezier(.16,1,.3,1); text-decoration: none; }
.wa-float:hover { transform: scale(1.12) translateY(-3px); animation: none; box-shadow: 0 14px 38px rgba(37,211,102,.65); }
.wa-float svg { flex-shrink: 0; display: block; }
.wa-float::before { content: "Chat with us"; position: absolute; right: 68px; background: #1a1a1a; color: #fff; font-size: 12px; font-weight: 500; white-space: nowrap; padding: 6px 12px; border-radius: 6px; pointer-events: none; opacity: 0; transform: translateX(6px); transition: opacity .2s, transform .2s; font-family: var(--font-s, sans-serif); }
.wa-float:hover::before { opacity: 1; transform: translateX(0); }
/* Push WhatsApp button up when cookie banner is visible */
.cookie-banner.visible ~ .wa-float,
body.cookie-open .wa-float { bottom: 120px; }
@media (max-width: 480px) { .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; } .wa-float::before { display: none; } .cookie-banner.visible ~ .wa-float, body.cookie-open .wa-float { bottom: 140px; } }

/* ── Footer padding fix — ensure ft-bottom never hugs edges on small screens ── */
footer .container { padding-left: 32px; padding-right: 32px; }
.ft-bottom { padding-left: 0; padding-right: 0; }
@media (max-width: 600px) { footer .container { padding-left: 20px; padding-right: 20px; } }

/* ── Legal pages — fix body padding so content isn't hidden behind viewport edges ── */
.legal-body { max-width: 860px; margin: 0 auto; padding: 56px 48px 80px; }
.legal-hero .container { padding-left: 48px; padding-right: 48px; }
@media (max-width: 900px) { .legal-body { padding: 44px 32px 72px; } .legal-hero .container { padding-left: 32px; padding-right: 32px; } }
@media (max-width: 600px) { .legal-body { padding: 36px 20px 60px; } .legal-hero .container { padding-left: 20px; padding-right: 20px; } }

/* ── Cookie Consent Banner ── */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999; background: rgba(13,17,23,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; transform: translateY(100%); transition: transform .45s cubic-bezier(.16,1,.3,1); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.7); margin: 0; }
.cookie-text p a { color: var(--blue); text-decoration: underline; }
.cookie-text strong { color: var(--white); font-weight: 700; display: block; font-size: 14px; margin-bottom: 4px; font-family: var(--font-d); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn { font-family: var(--font-d); font-size: 13px; font-weight: 700; padding: 10px 22px; border-radius: 100px; cursor: pointer; transition: all .25s var(--ease); white-space: nowrap; border: none; }
.cookie-accept { background: var(--blue); color: var(--white); box-shadow: 0 4px 16px var(--blue-glow); }
.cookie-accept:hover { background: var(--blue-dim); transform: translateY(-1px); }
.cookie-decline { background: transparent; color: rgba(255,255,255,.5); border: 1.5px solid rgba(255,255,255,.15); }
.cookie-decline:hover { border-color: rgba(255,255,255,.35); color: var(--white); }
@media (max-width: 600px) { .cookie-inner { flex-direction: column; align-items: flex-start; } .cookie-actions { width: 100%; } .cookie-btn { flex: 1; text-align: center; } }

/* ── Multi-file chip list (hire/project file zones) ── */
.file-chip-list { display: flex; flex-direction: column; gap: 5px; margin-top: 8px; text-align: left; }
.file-chip { display: flex; align-items: center; gap: 7px; background: var(--white); border: 1px solid #d1fae5; border-radius: 6px; padding: 6px 10px; }
.file-chip-icon { font-size: 14px; flex-shrink: 0; }
.file-chip-name { font-size: 12px; font-weight: 600; color: var(--text-main); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }
.file-chip-size { font-size: 11px; color: var(--steel); flex-shrink: 0; }
.file-chip-count { font-size: 11px; font-weight: 700; color: #16a34a; margin-top: 4px; text-align: center; letter-spacing: .02em; }
.file-chip-remove { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: none; background: #fee2e2; color: #dc2626; font-size: 16px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0; transition: background .2s, transform .15s; font-weight: 900; }
.file-chip-remove:hover { background: #dc2626; color: #fff; transform: scale(1.15); }

/* ── Blog Preview Section (Home page) ── */
.blog-preview-section #homeBlogGrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 900px) { .blog-preview-section #homeBlogGrid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .blog-preview-section #homeBlogGrid { grid-template-columns: 1fr; } }
.blog-preview-section .blog-card { background: var(--off-white); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; transition: all .3s var(--ease); display: flex; flex-direction: column; }
.blog-preview-section .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.08); border-color: rgba(30,111,255,.2); }
