:root {
  --blue: #0b2f7f;
  --blue-2: #123c96;
  --navy: #081f55;
  --orange: #f28f18;
  --orange-2: #ffab2f;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --bg: #f3f7fd;
  --line: #d9e2f1;
  --text: #14223d;
  --muted: #60708e;
  --success: #17a366;
  --shadow: 0 12px 30px rgba(11, 47, 127, 0.08);
  --radius: 20px;
  --radius-lg: 28px;
  --max: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}
.page-wrapper { min-height: 70vh; }
.section { padding: 36px 0; }
.section.tight { padding-top: 18px; }
.section-tag {
  margin: 0 0 8px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .84rem;
  font-weight: 800;
}
h1, h2, h3, h4, p { margin-top: 0; }
h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.5rem);
  line-height: 1.02;
  margin-bottom: 18px;
}
h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  margin-bottom: 14px;
}
h1 span, h2 span { color: var(--orange); }
p {
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(20,34,61,.08);
}
.nav-shell {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo {
  height: 56px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
}
.desktop-nav > a,
.dropdown-toggle {
  background: transparent;
  border: 0;
  padding: 10px 0;
  font-size: .96rem;
  font-weight: 600;
  color: #243456;
  cursor: pointer;
}
.desktop-nav > a:hover,
.dropdown-toggle:hover,
.desktop-nav > a.is-active,
.dropdown.is-active > .dropdown-toggle {
  color: var(--blue);
}
.desktop-nav > a.is-active,
.dropdown.is-active > .dropdown-toggle {
  position: relative;
}
.desktop-nav > a.is-active::after,
.dropdown.is-active > .dropdown-toggle::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 999px;
  background: var(--orange);
}
.dropdown { position: relative; }
.dropdown-toggle span { font-size: .8rem; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 250px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid rgba(20,34,61,.08);
  box-shadow: var(--shadow);
  padding: 10px;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: grid;
  gap: 6px;
}
.dropdown-menu a {
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
}
.dropdown-menu a:hover,
.dropdown-menu a.is-active {
  background: #eff4ff;
  color: var(--blue);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 10px 20px rgba(242, 143, 24, .24);
}
.btn-secondary {
  color: var(--blue);
  background: #f2f6fd;
  border: 1px solid var(--line);
}
.btn-outline {
  color: var(--blue);
  background: transparent;
  border: 1px solid rgba(11,47,127,.18);
}
.header-cta { margin-left: 8px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(11,47,127,.15);
  background: transparent;
}
.mobile-nav-panel {
  display: none;
  padding: 0 16px 16px;
  background: white;
  border-top: 1px solid rgba(20,34,61,.06);
}
.mobile-nav-panel a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(20,34,61,.06);
}
.mobile-nav-panel .mobile-cta {
  margin-top: 14px;
  width: 100%;
  border-bottom: 0;
}
.hero-grid,
.split-layout,
.section-top-grid,
.contact-layout,
.enquiry-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 28px;
  align-items: center;
}
.home-copy { max-width: 560px; }
.kicker-dark {
  color: var(--blue);
  font-weight: 800;
  letter-spacing: .03em;
  margin-bottom: 10px;
}
.hero-subtitle { font-size: 1.08rem; }
.button-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.oval-frame {
  position: relative;
  overflow: hidden;
  border-radius: 40px 40px 190px 190px;
  background: var(--surface);
  box-shadow: var(--shadow);
  min-height: 430px;
}
.oval-frame::after {
  content: '';
  position: absolute;
  width: 70%;
  height: 52%;
  right: -4%;
  bottom: -12%;
  border-radius: 100% 0 0 0;
  background: linear-gradient(180deg, var(--orange), var(--blue));
}
.oval-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.feature-strip,
.card-grid,
.job-grid {
  display: grid;
  gap: 16px;
}
.feature-strip { grid-template-columns: repeat(4, 1fr); margin-top: 28px; }
.three-col { grid-template-columns: repeat(3, 1fr); }
.two-col { grid-template-columns: repeat(2, 1fr); }
.four-col { grid-template-columns: repeat(4, 1fr); }
.feature-card,
.info-card,
.service-card,
.job-card,
.process-step,
.form-box,
.resume-strip,
.page-cta,
.image-panel,
.banner-image,
.contact-list li,
.value-card {
  background: var(--surface);
  border: 1px solid rgba(20,34,61,.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
}
.feature-icon,
.circle-badge,
.process-step span,
.thankyou-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feature-icon,
.circle-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #eff4ff;
  color: var(--blue);
  font-weight: 800;
}
.feature-card h3,
.info-card h3,
.service-card h3,
.job-card h3,
.process-step h3,
.page-cta h3,
.resume-strip h3 { margin-bottom: 8px; }
.image-panel,
.banner-image { overflow: hidden; }
.image-panel img,
.banner-image img,
.side-image img { width: 100%; height: 100%; object-fit: cover; }
.info-card,
.service-card,
.job-card,
.value-card { padding: 22px; }
.center-card { text-align: center; }
.compact-cards p,
.service-card p,
.job-card p,
.info-card p,
.value-card p { margin-bottom: 0; }
.page-cta,
.resume-strip {
  margin-top: 22px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.page-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.page-cta h3,
.page-cta p { color: white; }
.process-line {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.process-step { padding: 18px 16px; }
.process-step span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 14px;
  background: var(--blue);
  color: white;
  font-weight: 800;
}
.process-foot {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.form-box { padding: 26px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 16px;
}
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: .92rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfcff;
  color: var(--text);
  padding: 13px 14px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: rgba(11,47,127,.45);
  box-shadow: 0 0 0 4px rgba(11,47,127,.08);
}
.full-span { grid-column: 1 / -1; }
.form-note { margin-top: 12px; font-size: .92rem; }
.contact-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.contact-list li {
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
}
.contact-list strong { color: var(--blue); }
.clean-list { list-style: none; margin: 0; padding: 0; }
.thankyou-wrap {
  min-height: calc(100vh - 240px);
  display: grid;
  place-items: center;
}
.thankyou-box {
  max-width: 720px;
  width: 100%;
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(20,34,61,.08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 56px 24px;
}
.thankyou-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 18px;
}
.site-footer {
  background: #082968;
  color: white;
  margin-top: 28px;
}
.footer-shell {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 24px;
  padding: 26px 0;
}
.footer-logo {
  height: 56px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-shell h4 { margin-bottom: 10px; }
.footer-shell p,
.footer-shell li,
.footer-shell a { color: rgba(255,255,255,.84); }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0 20px;
}
.ref-note {
  margin-top: 10px;
  font-size: .88rem;
}
@media (max-width: 1180px) {
  .feature-strip,
  .four-col { grid-template-columns: repeat(2, 1fr); }
  .three-col { grid-template-columns: repeat(2, 1fr); }
  .process-line { grid-template-columns: repeat(3, 1fr); }
  .footer-shell { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; margin-left: auto; }
  .mobile-nav-panel[data-open='true'] { display: block; }
  .hero-grid,
  .split-layout,
  .section-top-grid,
  .contact-layout,
  .enquiry-layout,
  .feature-strip,
  .three-col,
  .two-col,
  .four-col,
  .job-grid,
  .process-line,
  .footer-shell { grid-template-columns: 1fr; }
  .page-cta,
  .resume-strip,
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-list li { grid-template-columns: 1fr; }
  .oval-frame { min-height: 340px; }
}
@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 22px)); }
  .logo { height: 48px; max-width: 165px; }
  h1 { font-size: 2.45rem; }
  .form-grid { grid-template-columns: 1fr; }
  .thankyou-box { padding: 44px 18px; }
}
