/* ── RESET & BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #4a5568; line-height: 1.6; overflow-x: hidden; background: #fff; }
a { text-decoration: none; }

/* ── TOKENS ───────────────────────────────────────── */
:root {
  --blue: #0e6ba8;       --blue-dark: #095280;
  --teal: #1a9ab5;       --teal-dark: #137a91;
  --orange: #e07b39;     --orange-dark: #c4682c;
  --navy: #0a1e35;
  --g50: #f8fafc;  --g100: #f1f5f9;  --g200: #e2e8f0;
  --g500: #64748b; --g700: #334155;
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --shadow:    0 4px 24px rgba(0,0,0,.10);
  --r: 10px; --r-lg: 16px;
}

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 1.25rem; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: .93rem;
  padding: .75rem 1.6rem; border-radius: var(--r);
  border: none; cursor: pointer; transition: all .2s ease; text-decoration: none;
}
.btn-blue  { background: var(--blue);  color: #fff; box-shadow: 0 4px 14px rgba(14,107,168,.3); }
.btn-blue:hover  { background: var(--blue-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.55); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }


/* ── HERO BANNER ──────────────────────────────────── */
.hero-banner {
  position: relative;
  background: linear-gradient(135deg, #061828 0%, #0a2f52 35%, #0e5d94 65%, #1a8fad 100%);
  padding: 5rem 0 5.5rem;
  text-align: center;
  overflow: hidden;
}
/* dot grid */
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
/* glow blobs */
.hero-banner::after {
  content: '';
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%; background: rgba(26,154,181,.2);
  filter: blur(100px); right: -8%; top: -30%; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.88);
  padding: .42rem 1.1rem; border-radius: 50px;
  font-size: .78rem; font-weight: 600; letter-spacing: .05em;
  margin-bottom: 1.6rem;
}
.hero-badge svg { width: 14px; height: 14px; color: #5ee8ff; }
.hero-banner h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff; line-height: 1.1; margin-bottom: 1.2rem;
  position: relative; z-index: 1;
}
.hero-banner p {
  color: rgba(255,255,255,.78); font-size: 1rem; line-height: 1.75;
  max-width: 560px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* ── FORM SECTION ─────────────────────────────────── */
.form-section {
  background: var(--g50);
  padding: 4rem 0 5rem;
}

.form-card {
  background: #fff;
  border: 1px solid var(--g200);
  border-radius: var(--r-lg);
  padding: 2.8rem 3rem;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.form-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid var(--g100);
}

/* form grid helpers */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.form-col { display: flex; flex-direction: column; gap: .35rem; }
.form-full { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: .35rem; }

/* labels */
.form-col label,
.form-full label {
  font-size: .82rem; font-weight: 600; color: var(--g700);
}
.req { color: #e53e3e; margin-left: 1px; }

/* inputs & selects */
.form-col input,
.form-col select,
.form-col textarea,
.form-full input,
.form-full select,
.form-full textarea {
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  padding: .75rem 1rem;
  font-size: .92rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--g50);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form-col input:focus,
.form-col select:focus,
.form-col textarea:focus,
.form-full input:focus,
.form-full select:focus,
.form-full textarea:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14,107,168,.1);
}
.form-col input::placeholder,
.form-full input::placeholder,
.form-full textarea::placeholder { color: #a0aec0; }
.form-col textarea,
.form-full textarea { resize: vertical; min-height: 100px; }

/* select wrapper (for custom arrow) */
.select-wrap { position: relative; }
.select-wrap select { padding-right: 2.5rem; cursor: pointer; }
.select-wrap::after {
  content: '';
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--g500);
  pointer-events: none;
}

/* resume upload */
.upload-zone {
  border: 2px dashed var(--g200);
  border-radius: var(--r);
  background: var(--g50);
  padding: 1.6rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
}
.upload-zone:hover { border-color: var(--blue); background: rgba(14,107,168,.03); }
.upload-zone input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}
.upload-icon {
  width: 40px; height: 40px;
  background: rgba(14,107,168,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
  color: var(--blue);
}
.upload-text { font-size: .9rem; font-weight: 600; color: var(--g700); margin-bottom: .25rem; }
.upload-hint { font-size: .78rem; color: var(--g500); }
.upload-selected { font-size: .82rem; color: var(--blue); font-weight: 600; margin-top: .5rem; display: none; }

/* submit button */
.btn-submit {
  width: 100%; padding: 1rem;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff; border: none; border-radius: var(--r);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 1rem; cursor: pointer; letter-spacing: .03em;
  transition: all .25s; box-shadow: 0 4px 18px rgba(14,107,168,.35);
  margin-top: .5rem;
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--teal-dark));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14,107,168,.45);
}

/* success message */
.success-msg {
  display: none;
  background: #f0fdf4; border: 1.5px solid #86efac;
  border-radius: var(--r); padding: 1.2rem 1.5rem;
  margin-top: 1.25rem;
  color: #166534; font-size: .9rem; font-weight: 500;
  align-items: center; gap: .75rem;
}
.success-msg.show { display: flex; }
.success-icon { width: 28px; height: 28px; flex-shrink: 0; background: #22c55e; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.3fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

/* footer logo */
.footer-logo { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer-logo-circle {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-circle svg { width: 22px; height: 22px; color: #fff; }
.footer-logo-text strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: .88rem; color: #fff; }
.footer-logo-text span  { font-size: .67rem; color: rgba(255,255,255,.5); }
.footer-brand-desc { font-size: .87rem; line-height: 1.75; opacity: .72; max-width: 280px; }

.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: .88rem; color: #fff; margin-bottom: 1.1rem; letter-spacing: .03em;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .18s; }
.footer-col ul li a:hover { color: #fff; }

.footer-contact-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: .7rem;
}
.footer-contact-item svg { color: var(--teal); flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,.55); transition: color .18s; }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-phone, .nav-cta { display: none !important; }
  .hamburger { display: flex; }

  .form-card { padding: 2rem 1.75rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .hero-banner { padding: 3.5rem 0 4rem; }
  .hero-banner h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  .form-section { padding: 2.5rem 0 3.5rem; }
  .form-card { padding: 1.5rem 1.25rem; border-radius: var(--r); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-col { margin-bottom: 1.25rem; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .hero-banner h1 { font-size: 1.65rem; }
  .form-card-title { font-size: 1.2rem; }
}