:root {
  /* Brand palette */
  --navy: #1c1656;
  --navy-deep: #120e3a;
  --navy-700: #2a2170;
  --logo-navy: #190b72;
  --red: #e01329;
  --red-deep: #a50c22;
  --gold: #f5a11e;
  --gold-light: #ffd24a;

  /* Neutrals */
  --ink: #16142b;
  --body: #43425a;
  --muted: #6f6e85;
  --line: #e7e6f0;
  --surface: #ffffff;
  --surface-alt: #f6f6fb;
  --surface-navy: #14103a;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(20, 16, 58, 0.06), 0 4px 16px rgba(20, 16, 58, 0.05);
  --shadow-md: 0 12px 40px rgba(20, 16, 58, 0.10);
  --container: 1160px;
  --font-head: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--surface-alt); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
}

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin: 16px 0 14px;
}
.section-head p { font-size: 1.075rem; color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 24px rgba(224, 19, 41, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(224, 19, 41, 0.34); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-700); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.brand img { width: 42px; height: 42px; border-radius: 9px; object-fit: cover; }
.brand span b { color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--body);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.2s; }

@media (max-width: 900px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 74px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    background: #fff;
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open a { padding: 10px 0; width: 100%; }
}

/* ================= HERO ================= */
.hero { position: relative; overflow: hidden; padding: 84px 0 96px; }
.hero::before {
  content: "";
  position: absolute;
  top: -220px; right: -160px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(245, 161, 30, 0.16), transparent 62%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -260px; left: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(28, 22, 86, 0.10), transparent 65%);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.65rem);
  font-weight: 800;
  margin: 20px 0 22px;
}
.hero h1 .accent { color: var(--red); }
.hero-lead { font-size: 1.16rem; color: var(--muted); max-width: 540px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats { display: flex; gap: 26px; margin-top: 48px; flex-wrap: nowrap; }
.hero-stats .stat { flex: 1 1 0; min-width: 0; }
.hero-stats .stat strong { font-family: var(--font-head); font-size: clamp(1.15rem, 2.1vw, 1.5rem); color: var(--navy); display: block; white-space: nowrap; }
.hero-stats .stat span { font-size: 0.84rem; color: var(--muted); display: block; line-height: 1.45; }
@media (max-width: 900px) {
  .hero-stats { flex-wrap: wrap; gap: 22px 30px; }
  .hero-stats .stat { flex: 1 1 40%; }
}

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-emblem-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 18%, rgba(245, 161, 30, 0.14), transparent 55%),
    var(--logo-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px rgba(20, 16, 58, 0.35);
  overflow: hidden;
}
.hero-emblem-card::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, #000 40%, transparent 78%);
}
.hero-emblem-card img { width: 92%; position: relative; z-index: 1; filter: drop-shadow(0 12px 30px rgba(0,0,0,0.35)); }
.hero-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  z-index: 2;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; }
.hero-badge.b1 { top: 26px; left: -18px; }
.hero-badge.b2 { bottom: 30px; right: -14px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { order: -1; }
  .hero-emblem-card { max-width: 320px; }
}

/* ================= MARQUEE / CAPABILITY STRIP ================= */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.strip-inner { display: flex; align-items: center; gap: 14px 40px; flex-wrap: wrap; justify-content: center; padding: 26px 0; }
.strip-label { font-family: var(--font-head); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.strip-tag { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 0.98rem; }

/* ================= SERVICES / PILLARS ================= */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.pillar-ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(150deg, var(--navy), var(--navy-700));
  color: #fff;
}
.pillar:nth-child(2) .pillar-ic { background: linear-gradient(150deg, var(--red-deep), var(--red)); }
.pillar:nth-child(3) .pillar-ic { background: linear-gradient(150deg, var(--gold), #d9862c); }
.pillar h3 { font-size: 1.28rem; margin-bottom: 12px; }
.pillar p { color: var(--muted); font-size: 0.98rem; }

/* ================= CAPABILITIES DETAIL ================= */
.cap { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.cap-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 34px;
  scroll-margin-top: 96px;
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--accent, var(--navy));
}
.cap-card .kicker { font-family: var(--font-head); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent, var(--navy)); font-weight: 600; }
.cap-card h3 { font-size: 1.5rem; margin: 10px 0 12px; }
.cap-card > p { color: var(--muted); margin-bottom: 22px; }
.cap-list { list-style: none; display: grid; gap: 12px; }
.cap-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--body); }
.cap-list li svg { flex: none; margin-top: 3px; color: var(--accent, var(--navy)); }

@media (max-width: 820px) { .cap { grid-template-columns: 1fr; } .pillars { grid-template-columns: 1fr; } }

/* ================= APPROACH ================= */
.approach-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 28px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--red);
  display: inline-block;
  margin-bottom: 14px;
}
.step::after {
  content: "";
  position: absolute; top: 34px; left: 44px; right: -11px; height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.step:last-child::after { display: none; }
.step h4 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 0.94rem; color: var(--muted); }
@media (max-width: 820px) {
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .step::after { display: none; }
}
@media (max-width: 480px) { .approach-grid { grid-template-columns: 1fr; } }

/* ================= ABOUT ================= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin: 16px 0 20px; }
.about-copy p { color: var(--body); margin-bottom: 16px; font-size: 1.03rem; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.fact { background: var(--surface-alt); border-radius: var(--radius-sm); padding: 20px 22px; border: 1px solid var(--line); }
.fact strong { display: block; font-family: var(--font-head); color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.fact span { font-size: 0.9rem; color: var(--muted); }
.about-panel {
  border-radius: 24px;
  background: linear-gradient(160deg, #211a63, #14103a);
  padding: 44px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.about-panel::before {
  content: ""; position: absolute; top: -80px; right: -80px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(245,161,30,0.25), transparent 65%);
}
.about-panel .quote { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; line-height: 1.4; position: relative; z-index: 1; }
.about-panel .sig { margin-top: 26px; font-size: 0.9rem; color: rgba(255,255,255,0.7); position: relative; z-index: 1; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ================= CTA ================= */
.cta {
  background: linear-gradient(150deg, #1c1656, #120e3a);
  color: #fff;
  border-radius: 28px;
  padding: 64px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(224,19,41,0.28), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(245,161,30,0.22), transparent 45%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 600px) { .cta { padding: 48px 28px; } }

/* ================= FOOTER ================= */
.footer { background: var(--surface-navy); color: rgba(255,255,255,0.72); padding: 68px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer .brand span b { color: #fff; }
.footer-about { font-size: 0.95rem; max-width: 320px; }
.footer h5 { font-family: var(--font-head); color: #fff; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a { font-size: 0.94rem; transition: color 0.15s ease; }
.footer ul a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 26px; flex-wrap: wrap; font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-bottom address { font-style: normal; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: 0.18s ease;
}
.socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* ================= CONTACT FORM (CTA) ================= */
.cta-form { max-width: 640px; margin: 30px auto 0; text-align: left; }
.cta-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-form .field { margin-bottom: 14px; }
.cta-form label { display: block; font-family: var(--font-head); font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 7px; }
.cta-form label span { color: rgba(255,255,255,0.45); font-weight: 400; }
.cta-form input[type="text"], .cta-form input[type="email"], .cta-form textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  color: #fff; font-family: var(--font-body); font-size: 0.96rem;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.cta-form input:focus, .cta-form textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.13); }
.cta-form textarea { resize: vertical; min-height: 118px; }
.cta-form .form-submit { width: 100%; margin-top: 6px; border: 0; cursor: pointer; font-size: 0.98rem; }
.cta-form .form-submit[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }
.cta-form .hp { position: absolute; left: -9999px; opacity: 0; }
.form-status { margin-top: 14px; font-size: 0.93rem; text-align: center; min-height: 20px; }
.form-status.ok { color: #7ee2b8; }
.form-status.err { color: #ff9aa2; }
@media (max-width: 560px) { .cta-form .form-row { grid-template-columns: 1fr; } }

/* ================= ENQUIRY MODULE ================= */
.enquiry-module {
  margin-top: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.enquiry-module h3 { font-size: 1.25rem; margin-bottom: 6px; }
.enquiry-module p { color: var(--muted); font-size: 0.97rem; }
.enquiry-module .btn { cursor: pointer; }
@media (max-width: 560px) { .enquiry-module { padding: 24px; } .enquiry-module .btn { width: 100%; } }

/* ================= MODAL ================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(10, 8, 30, 0.62);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  width: 100%; max-width: 600px;
  max-height: 90vh; overflow-y: auto;
  background: linear-gradient(150deg, #1c1656, #120e3a);
  border-radius: 24px;
  padding: 38px 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}
.modal h3 { color: #fff; font-size: 1.6rem; margin-bottom: 8px; }
.modal-sub { color: rgba(255, 255, 255, 0.7); font-size: 0.98rem; }
.modal .cta-form { margin-top: 20px; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1); border: 0; color: #fff;
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  transition: background 0.18s ease;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.22); }
body.modal-open { overflow: hidden; }
@media (max-width: 560px) { .modal { padding: 32px 22px; } }

/* ================= LEGAL PAGES ================= */
.legal-hero { padding: 64px 0 28px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); margin: 14px 0 12px; }
.legal-hero p { color: var(--muted); }
.legal-body { padding: 48px 0 88px; }
.legal-body .container { max-width: 780px; }
.legal-body h2 { font-size: 1.35rem; margin: 38px 0 12px; }
.legal-body h3 { font-size: 1.08rem; margin: 26px 0 8px; }
.legal-body p, .legal-body li { color: var(--body); font-size: 1rem; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul { margin: 0 0 16px 20px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--navy); text-decoration: underline; }
.legal-note {
  background: var(--surface-alt); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 18px 20px; margin: 28px 0;
  font-size: 0.94rem; color: var(--muted);
}
