:root {
  --navy: #1a1f36;
  --route: #e85d04;
  --route-light: #f48c06;
  --route-dark: #c44d03;
  --cream: #faf8f5;
  --white: #fff;
  --text: #2d3142;
  --muted: #5c6378;
  --radius: 10px;
  --font: 'Outfit', system-ui, sans-serif;
  --blue: #1a1f36;
  --teal: #e85d04;
  --teal-light: #f48c06;
  --gold: #f48c06;
  --bg: #faf8f5;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-light); }

img, svg { display: block; max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* Header */
.header {
  background: var(--navy);
  border-bottom: 3px solid var(--route);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo-link { display: flex; align-items: center; }
.logo-link img, .logo-link svg { height: 42px; width: auto; }

.nav { display: flex; align-items: center; gap: 1.75rem; list-style: none; }
.nav a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.nav a:hover, .nav a.active { color: var(--route-light); }
.nav .btn-primary { background: var(--route); color: var(--white); }
.nav .btn-primary:hover { background: var(--route-light); color: var(--navy); }

.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary { background: var(--route); color: var(--white); }
.btn-primary:hover { background: var(--route-light); color: var(--navy); }

.btn-outline {
  background: transparent;
  color: var(--route);
  border: 2px solid var(--route);
}

.btn-outline:hover { background: var(--route); color: var(--white); }

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

/* Hero — split layout */
.hero-split {
  background: var(--navy);
  color: var(--white);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-split::after {
  content: '';
  position: absolute;
  right: -10%;
  top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(232, 93, 4, 0.15) 100%);
  pointer-events: none;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--route-light);
  margin-bottom: 1rem;
}

.hero-split h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-split .lead {
  font-size: 1.1rem;
  opacity: 0.88;
  max-width: 520px;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-btns .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.5); }
.hero-btns .btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }

.hero-stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--route);
}

.stat-card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--route-light);
  margin-bottom: 0.25rem;
}

.stat-card span { font-size: 0.85rem; opacity: 0.8; }

/* Legacy hero (inner pages) */
.hero {
  background: linear-gradient(120deg, var(--navy) 60%, var(--route-dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.hero-btns .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.6); }
.hero-btns .btn-outline:hover { background: var(--white); color: var(--teal); }

/* Sections */
section { padding: 3rem 0; }
.section-title { font-size: 1.5rem; color: var(--blue); margin-bottom: 0.5rem; text-align: center; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 2rem; font-size: 0.95rem; }

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}

.card h3 { font-size: 1.1rem; color: var(--blue); margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: var(--muted); }

.sector-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

/* Sectors strip */
.sectors-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid #e8e4df;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.sector-tile {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid #e8e4df;
  transition: background 0.2s;
}

.sector-tile:last-child { border-right: none; }
.sector-tile:hover { background: rgba(232, 93, 4, 0.06); }

.sector-tile .icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.sector-tile h3 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.35rem; }
.sector-tile p { font-size: 0.78rem; color: var(--muted); line-height: 1.4; }

.cta-band {
  background: var(--route);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.cta-band p { opacity: 0.92; margin-bottom: 1.25rem; }
.cta-band .btn-primary { background: var(--navy); }
.cta-band .btn-primary:hover { background: var(--white); color: var(--navy); }

/* Page header */
.page-head {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 2.5rem;
  border-bottom: 4px solid var(--route);
}

.page-head h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.page-head p { opacity: 0.85; font-size: 1rem; }

/* Content */
.content { padding: 2.5rem 0 3rem; max-width: 720px; margin: 0 auto; }
.content h2 { font-size: 1.2rem; color: var(--blue); margin: 1.5rem 0 0.5rem; }
.content p, .content li { color: var(--muted); margin-bottom: 0.75rem; }
.content ul { margin-left: 1.25rem; }

.info-box {
  background: var(--white);
  border-left: 4px solid var(--route);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

/* Form */
.form-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  max-width: 520px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; color: var(--blue); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-card--wide { max-width: 560px; }

.form-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.booking-slot {
  margin: 0 0 1rem;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: #f8fafc;
}

.booking-slot legend {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0 0.35rem;
}

.booking-slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-slot .form-group { margin-bottom: 0; }

.booking-slot input[type="date"] {
  cursor: pointer;
}

.booking-preview {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px dashed #cbd5e1;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.booking-preview--ready {
  border-style: solid;
  border-color: rgba(232, 93, 4, 0.35);
  background: rgba(232, 93, 4, 0.06);
  color: var(--navy);
}

.booking-preview strong { color: var(--teal); }

@media (max-width: 520px) {
  .booking-slot-grid { grid-template-columns: 1fr; }
}

.accept-role-form { max-width: 680px; }

.form-section-title {
  margin: 1.75rem 0 1rem;
  font-size: 1rem;
  color: var(--blue);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.form-section-title:first-of-type { margin-top: 0; }

.upload-grid--id {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.upload-zone {
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius);
  background: #f8fafc;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.upload-zone:hover,
.upload-zone--drag {
  border-color: var(--route);
  background: rgba(232, 93, 4, 0.05);
}

.upload-zone--filled {
  border-style: solid;
  border-color: rgba(232, 93, 4, 0.45);
  background: rgba(232, 93, 4, 0.06);
}

.upload-zone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  gap: 0.35rem;
}

.upload-icon { font-size: 1.75rem; line-height: 1; }

.upload-zone-inner strong {
  font-size: 0.9rem;
  color: var(--blue);
}

.upload-label {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 220px;
}

.upload-action {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
}

.upload-filename {
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--blue);
  word-break: break-all;
}

.upload-zone--single { margin-bottom: 1.5rem; }

.id-upload-panel.hidden { display: none; }

.radio-fieldset {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
}

.radio-fieldset legend {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.radio-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.radio-pill {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.radio-pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-pill span {
  display: block;
  padding: 0.55rem 1.25rem;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.15s;
}

.radio-pill input:checked + span {
  border-color: var(--route);
  background: rgba(232, 93, 4, 0.1);
  color: var(--route-dark);
  font-weight: 600;
}

@media (max-width: 600px) {
  .upload-grid--id { grid-template-columns: 1fr; }
}

.thank-you-section {
  padding: 4rem 0 5rem;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.thank-you-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(13, 40, 64, 0.06);
}

.thank-you-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(232, 93, 4, 0.12);
  color: var(--route);
  font-size: 2rem;
  font-weight: 700;
  line-height: 64px;
}

.thank-you-card h1 {
  margin: 0 0 0.75rem;
  color: var(--blue);
}

.thank-you-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 0.75rem;
}

.thank-you-card p {
  color: var(--muted);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.thank-you-ref {
  font-size: 0.9rem;
  color: var(--teal);
  font-weight: 600;
}

.thank-you-card .btn {
  margin-top: 0.5rem;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.85rem;
  border-top: 4px solid var(--route);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  color: var(--route-light);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 0.4rem; }
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: var(--white); }

.footer-logo svg { height: 36px; margin-bottom: 0.75rem; }
.footer-logo svg text { fill: #fff !important; }
.footer-logo svg text:last-child { fill: var(--gold) !important; }
.footer-logo svg circle { fill: var(--teal-light); }

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1rem 1.5rem;
    border-bottom: 3px solid var(--route);
    align-items: flex-start;
  }
  .menu-btn { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-split-inner { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; display: grid; }
  .sectors-strip { grid-template-columns: 1fr; }
  .sector-tile { border-right: none; border-bottom: 1px solid #e8e4df; }
}

.bg-white { background: var(--white); }

/* Client reviews */
.reviews-section {
  padding: 2.5rem 0 3rem;
  background: var(--bg);
  border-top: 1px solid #e2e8f0;
}

.reviews-section .section-title { margin-bottom: 1.5rem; font-size: 1.35rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  margin: 0;
  padding: 1.35rem 1.4rem;
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
}

.review-stars {
  color: var(--route-light);
  font-size: 0.72rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-card blockquote {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text);
  font-style: normal;
}

.review-card figcaption {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}

.review-card figcaption span {
  display: block;
  font-weight: 500;
  color: var(--muted);
  margin-top: 0.2rem;
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
