
:root {
  --bg: #06080d;
  --panel: rgba(15, 20, 29, 0.88);
  --panel-solid: #101620;
  --card: rgba(255,255,255,0.055);
  --line: rgba(255,255,255,0.12);
  --line-strong: rgba(255,255,255,0.2);
  --text: #f7f8fb;
  --muted: #aeb7c5;
  --dim: #7b8493;
  --red: #b51223;
  --red-bright: #ff334b;
  --steel: #8d9aad;
  --max: 1180px;
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 26px 90px rgba(0,0,0,.45);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 5%, rgba(181,18,35,.24), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(133,148,172,.12), transparent 30%),
    linear-gradient(180deg, #080a0f 0%, #06080d 48%, #030408 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 76%);
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.public-wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.public-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(6, 8, 13, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap { display:flex; align-items:center; justify-content:space-between; gap:18px; padding: 14px 0; }
.brand { display:flex; align-items:center; gap:14px; text-decoration:none; min-width: 280px; }
.brand-mark { width:62px; height:62px; object-fit:contain; border:1px solid var(--line); border-radius:16px; padding:6px; background:rgba(255,255,255,.04); }
.brand-name { font-weight: 900; text-transform: uppercase; letter-spacing:.025em; line-height:1.05; }
.brand-tagline { color:var(--muted); font-size:.75rem; text-transform:uppercase; letter-spacing:.16em; margin-top:4px; }
.public-nav { display:flex; align-items:center; justify-content:flex-end; gap:18px; font-size:.88rem; font-weight:700; color:var(--muted); }
.public-nav a { text-decoration:none; transition: color .16s ease, border-color .16s ease, background .16s ease; }
.public-nav a:hover { color:var(--text); }
.nav-cta { color:#fff !important; padding:10px 14px; border-radius:999px; background:linear-gradient(135deg, rgba(181,18,35,.94), rgba(93,12,20,.94)); border:1px solid rgba(255,255,255,.16); box-shadow: 0 14px 34px rgba(181,18,35,.22); }
.nav-toggle { display:none; color:var(--text); background:rgba(255,255,255,.07); border:1px solid var(--line); border-radius:12px; padding:8px 12px; font-size:1.1rem; }
.hero-section { padding: 70px 0 34px; }
.hero-grid { display:grid; grid-template-columns: minmax(0,1.02fr) minmax(340px,.98fr); gap:28px; align-items:stretch; }
.hero-copy, .hero-visual, .request-card, .founder-grid, .service-hero-panel { border:1px solid var(--line); border-radius:var(--radius-xl); background:linear-gradient(145deg, rgba(19,25,35,.96), rgba(7,9,14,.95)); box-shadow:var(--shadow); overflow:hidden; }
.hero-copy { min-height:610px; padding: clamp(30px,5vw,58px); display:flex; flex-direction:column; justify-content:center; position:relative; }
.hero-copy::after { content:""; position:absolute; width:340px; height:340px; right:-150px; top:-150px; border-radius:50%; border:1px solid rgba(255,255,255,.13); box-shadow: inset 0 0 90px rgba(181,18,35,.12); }
.eyebrow, .section-kicker { display:inline-flex; align-items:center; gap:9px; width:fit-content; color:var(--muted); text-transform:uppercase; letter-spacing:.15em; font-weight:900; font-size:.76rem; }
.eyebrow::before, .section-kicker::before { content:""; width:8px; height:8px; border-radius:50%; background:var(--red-bright); box-shadow:0 0 20px rgba(255,51,75,.75); }
h1 { margin-top:22px; font-size: clamp(2.6rem, 6vw, 5.35rem); line-height:.94; letter-spacing:-.065em; max-width:850px; }
h2 { font-size: clamp(2rem, 4.2vw, 3.35rem); line-height:1.02; letter-spacing:-.045em; }
h3 { line-height:1.12; letter-spacing:-.025em; }
.hero-lede { margin-top:24px; color:#d9dee8; font-size:clamp(1.06rem,1.5vw,1.24rem); max-width:720px; }
.hero-subcopy { margin-top:16px; color:var(--muted); max-width:680px; }
.hero-actions, .request-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:32px; }
.button { display:inline-flex; align-items:center; justify-content:center; min-height:46px; padding:12px 18px; border-radius:999px; text-decoration:none; font-weight:850; border:1px solid var(--line-strong); cursor:pointer; font-family:inherit; }
.button.primary { color:#fff; background:linear-gradient(135deg, var(--red), #650b15); box-shadow:0 18px 42px rgba(181,18,35,.24); }
.button.secondary { color:var(--text); background:rgba(255,255,255,.055); }
.button:hover { transform: translateY(-1px); }
.trust-row { margin-top:32px; display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.trust-row div { padding:14px; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.04); }
.trust-row strong, .trust-row span { display:block; }
.trust-row strong { text-transform:uppercase; letter-spacing:.08em; font-size:.74rem; color:#fff; }
.trust-row span { color:var(--muted); font-size:.88rem; margin-top:4px; }
.hero-visual { position:relative; min-height:610px; }
.hero-visual img { width:100%; height:100%; object-fit:cover; opacity:.88; }
.hero-visual::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent 20%, rgba(0,0,0,.74)); }
.visual-card { position:absolute; left:22px; right:22px; bottom:22px; z-index:2; padding:20px; border:1px solid rgba(255,255,255,.16); border-radius:20px; background:rgba(8,10,15,.74); backdrop-filter: blur(12px); }
.visual-card span { display:block; color:var(--muted); font-size:.75rem; text-transform:uppercase; letter-spacing:.18em; font-weight:900; }
.visual-card strong { display:block; margin-top:6px; font-size:1.25rem; }
.section { padding: 78px 0; }
.compact-section { padding-top: 52px; }
.section-head { margin-bottom:30px; }
.section-head.centered { max-width:820px; margin:0 auto 34px; text-align:center; }
.section-head.centered .section-kicker { margin-inline:auto; }
.section-head.split { display:grid; grid-template-columns: minmax(0, .95fr) minmax(300px, .65fr); gap:28px; align-items:end; }
.section-head p { color:var(--muted); margin-top:12px; font-size:1.03rem; }
.trust-card-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:14px; }
.trust-card, .process-grid article, .detail-card { padding:24px; border:1px solid var(--line); border-radius:22px; background:rgba(255,255,255,.048); }
.trust-card span, .process-grid span { color:var(--red-bright); font-weight:950; letter-spacing:.12em; text-transform:uppercase; font-size:.74rem; }
.trust-card h3, .process-grid h3, .detail-card h3 { margin-top:12px; font-size:1.15rem; }
.trust-card p, .process-grid p, .detail-card p, .detail-card li { color:var(--muted); margin-top:10px; }
.service-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.service-card { display:block; min-height:100%; text-decoration:none; border:1px solid var(--line); border-radius:24px; overflow:hidden; background:rgba(255,255,255,.048); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.service-card:hover { transform:translateY(-4px); border-color:rgba(255,255,255,.22); background:rgba(255,255,255,.07); }
.service-card img { width:100%; height:210px; object-fit:cover; opacity:.88; }
.service-card div { padding:22px; }
.service-card span { color:var(--red-bright); text-transform:uppercase; font-size:.72rem; letter-spacing:.14em; font-weight:950; }
.service-card h3 { margin-top:8px; font-size:1.22rem; }
.service-card p { margin-top:10px; color:var(--muted); }
.dark-panel-section { background:linear-gradient(180deg, transparent, rgba(255,255,255,.035), transparent); }
.industry-grid { display:grid; grid-template-columns: repeat(5,1fr); gap:12px; }
.industry-grid div { padding:17px 14px; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.045); text-align:center; font-weight:800; color:#eef2f8; }
.founder-grid { display:grid; grid-template-columns: 290px minmax(0,1fr); gap:30px; align-items:center; padding:26px; }
.founder-grid img { width:100%; aspect-ratio:1/1; border-radius:22px; object-fit:cover; border:1px solid var(--line); }
.founder-grid p { color:var(--muted); margin:16px 0 20px; font-size:1.05rem; }
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.request-card { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:24px; align-items:center; padding:32px; }
.request-card p { color:var(--muted); margin-top:12px; max-width:720px; }
.license-band-public { padding:24px 0; border-block:1px solid var(--line); background:rgba(0,0,0,.28); }
.license-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.license-grid div { padding:16px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.04); }
.license-grid strong, .license-grid span { display:block; }
.license-grid span { color:var(--muted); margin-top:4px; }
.public-footer { padding:30px 0; color:var(--muted); }
.footer-grid { display:grid; grid-template-columns:1.1fr 1.2fr .7fr; gap:20px; font-size:.9rem; }
.footer-grid strong { color:#fff; }
.footer-grid a { color:inherit; text-underline-offset:4px; }
.service-hero { padding:58px 0 24px; }
.service-hero-panel { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.75fr); gap:28px; padding:30px; align-items:center; }
.service-hero-panel img { width:100%; min-height:360px; height:100%; object-fit:cover; border-radius:22px; border:1px solid var(--line); }
.service-hero-text { padding:12px; }
.service-hero-text p { color:var(--muted); margin-top:18px; font-size:1.08rem; }
.breadcrumb { color:var(--dim); text-transform:uppercase; letter-spacing:.12em; font-weight:900; font-size:.72rem; margin-bottom:12px; }
.detail-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.detail-card ul { margin-left:18px; margin-top:10px; }
.service-cta { border:1px solid var(--line); border-radius:var(--radius-xl); background:linear-gradient(145deg, rgba(181,18,35,.16), rgba(255,255,255,.04)); padding:32px; display:grid; grid-template-columns:1fr auto; gap:20px; align-items:center; }
.service-cta p { color:var(--muted); margin-top:10px; }
.contact-request-overlay[hidden] { display:none !important; }
.contact-request-overlay { position:fixed; inset:0; z-index:9999; display:flex; align-items:center; justify-content:center; padding:20px; background:rgba(0,0,0,.76); backdrop-filter:blur(14px); }
.contact-request-modal { width:min(980px,100%); max-height:92vh; overflow:auto; border:1px solid var(--line-strong); border-radius:28px; background:linear-gradient(145deg, #121823, #07090e); box-shadow:0 40px 120px rgba(0,0,0,.72); padding:28px; position:relative; }
.contact-request-close { position:absolute; top:18px; right:18px; width:40px; height:40px; border-radius:50%; border:1px solid var(--line); background:rgba(255,255,255,.06); color:var(--text); font-size:1.5rem; cursor:pointer; }
.contact-request-modal h2 { margin-top:14px; font-size:clamp(1.8rem,4vw,3rem); }
.contact-request-modal p { color:var(--muted); margin-top:10px; max-width:760px; }
.contact-request-form { margin-top:22px; }
.contact-form-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.contact-request-form label { display:grid; gap:7px; color:#eef2f8; font-weight:800; font-size:.9rem; }
.contact-request-form input, .contact-request-form select, .contact-request-form textarea { width:100%; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.065); color:#fff; padding:13px 14px; font:inherit; outline:none; }
.contact-request-form select option { background:#101620; color:#fff; }
.contact-request-form textarea { min-height:130px; resize:vertical; }
.contact-request-form > label { margin-top:14px; }
.contact-request-note { margin-top:10px; color:var(--dim); font-size:.86rem; }
.contact-request-actions { display:flex; gap:12px; margin-top:18px; flex-wrap:wrap; }
.contact-request-message { margin-top:14px; padding:12px 14px; border-radius:14px; border:1px solid var(--line); background:rgba(255,255,255,.045); color:var(--muted); }
.contact-request-message.success { border-color:rgba(77,255,151,.35); color:#b8ffd2; }
.contact-request-message.error { border-color:rgba(255,70,87,.42); color:#ffb6bf; }
body.modal-open { overflow:hidden; }
@media (max-width: 980px) {
  .public-nav { position:absolute; left:20px; right:20px; top:82px; display:none; flex-direction:column; align-items:stretch; padding:16px; background:rgba(6,8,13,.96); border:1px solid var(--line); border-radius:18px; }
  .public-nav.open { display:flex; }
  .nav-toggle { display:block; }
  .hero-grid, .service-hero-panel, .section-head.split, .founder-grid, .request-card { grid-template-columns:1fr; }
  .hero-copy, .hero-visual { min-height:auto; }
  .hero-visual img { min-height:420px; }
  .trust-card-grid, .service-grid, .process-grid, .license-grid { grid-template-columns:repeat(2,1fr); }
  .industry-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
  .public-wrap { width:min(100% - 28px, var(--max)); }
  .brand { min-width:0; }
  .brand-mark { width:54px; height:54px; }
  .brand-name { font-size:.86rem; }
  .brand-tagline { font-size:.62rem; }
  h1 { font-size:2.7rem; }
  .trust-row, .trust-card-grid, .service-grid, .process-grid, .detail-grid, .license-grid, .contact-form-grid { grid-template-columns:1fr; }
  .industry-grid { grid-template-columns:1fr; }
  .section { padding:58px 0; }
  .service-hero-panel, .hero-copy, .request-card, .contact-request-modal { padding:22px; }
}


/* Keep resume/employee portal button out of the homepage hero only. Bottom resume CTA remains visible. */
.home-page .hero-actions .button.secondary,
.home-page .hero-actions a[data-request-type="Career / Resume Submission"].button.secondary,
.home-page .hero-actions a[href="employee-portal.html"].button.secondary {
  display: none !important;
}


/* FINAL FIX: show Submit Resume only in the lower request consultation card. */
.home-page .hero-actions .button.secondary,
.home-page .hero-actions a[data-request-type="Career / Resume Submission"].button.secondary,
.home-page .hero-actions a[href="employee-portal.html"].button.secondary {
  display: none !important;
}
.home-page .request-actions .bottom-resume-cta,
.home-page .bottom-request-actions .bottom-resume-cta,
.home-page #request .bottom-resume-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  box-shadow: none;
}
.home-page .request-actions .bottom-resume-cta:hover,
.home-page .bottom-request-actions .bottom-resume-cta:hover,
.home-page #request .bottom-resume-cta:hover {
  transform: translateY(-1px);
  background: rgba(255,255,255,.085);
}
