:root{--font-sora:'Sora',sans-serif;--font-inter:'Inter',sans-serif;}

/* ============================================================
   UKCS — Design System (tokens + components)
   ============================================================ */
:root {
  --ink: #0a1b33;
  --navy: #0b2450;
  --navy-700: #123163;
  --azure: #2563eb;
  --azure-400: #3b82f6;
  --gold: #c7a24b;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --paper: #f7f9fc;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(11, 36, 80, 0.06), 0 4px 14px rgba(11, 36, 80, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 36, 80, 0.1);
  --shadow-lg: 0 30px 60px rgba(11, 36, 80, 0.16);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-inter), system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-sora), sans-serif;
  color: var(--ink);
  line-height: 1.12;
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.02em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sora), sans-serif;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azure);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--azure), var(--gold));
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sora), sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--azure), var(--navy));
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.42);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--slate-300);
}
.btn-ghost:hover {
  border-color: var(--azure);
  color: var(--azure);
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.arrow {
  transition: transform 0.25s ease;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: 0.3s ease;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 36, 80, 0.06);
}
.site-header.scrolled .nav {
  box-shadow: var(--shadow-sm);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sora), sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.footer-logo-wrap {
  display: inline-block;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.footer-logo-wrap img {
  height: 46px;
  width: auto;
  display: block;
}
.brand small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--slate-500);
  font-weight: 600;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-700);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--azure);
  transition: width 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 500px at 82% -10%, rgba(37, 99, 235, 0.14), transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(199, 162, 75, 0.1), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 84px 0 92px;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
}
.grad {
  background: linear-gradient(120deg, var(--azure), var(--navy) 60%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  font-size: 19px;
  color: var(--slate-500);
  max-width: 540px;
  margin: 22px 0 34px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-trust .stat b {
  font-family: var(--font-sora), sans-serif;
  font-size: 30px;
  color: var(--ink);
  font-weight: 800;
  display: block;
  letter-spacing: -0.02em;
}
.hero-trust .stat span {
  font-size: 13.5px;
  color: var(--slate-500);
}
.hero-trust .divider {
  width: 1px;
  background: var(--slate-300);
}

.hero-visual {
  position: relative;
}
.hero-card {
  background: #fff;
  border: 1px solid rgba(11, 36, 80, 0.07);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 26px;
  position: relative;
  z-index: 2;
}
.hc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.hc-top .dot {
  display: flex;
  gap: 6px;
}
.hc-top .dot i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}
.hero-card h4 {
  font-size: 16px;
}
.kpi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.kpi {
  background: var(--paper);
  border: 1px solid rgba(11, 36, 80, 0.06);
  border-radius: 14px;
  padding: 14px;
}
.kpi span {
  font-size: 12px;
  color: var(--slate-500);
}
.kpi b {
  font-family: var(--font-sora), sans-serif;
  font-size: 22px;
  color: var(--ink);
  display: block;
  margin-top: 4px;
}
.kpi b em {
  font-style: normal;
  color: #16a34a;
  font-size: 12px;
  margin-left: 6px;
}
.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 96px;
  padding: 12px;
  background: var(--paper);
  border-radius: 14px;
  border: 1px solid rgba(11, 36, 80, 0.06);
}
.bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--azure), rgba(37, 99, 235, 0.35));
}
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  z-index: 3;
}
.float-badge .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
}
.fb1 {
  top: -18px;
  left: -26px;
  animation: floaty 5s ease-in-out infinite;
}
.fb2 {
  bottom: -20px;
  right: -18px;
  animation: floaty 6s ease-in-out infinite;
}
.blob {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22), transparent 70%);
  filter: blur(10px);
  right: -40px;
  top: -30px;
  z-index: 1;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Logos */
.logos {
  border-top: 1px solid rgba(11, 36, 80, 0.06);
  border-bottom: 1px solid rgba(11, 36, 80, 0.06);
  background: #fff;
}
.logos .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 24px;
  flex-wrap: wrap;
}
.logos p {
  font-size: 13px;
  color: var(--slate-500);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
  white-space: nowrap;
}
.logos .row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.62;
}
.logos .row span {
  font-family: var(--font-sora), sans-serif;
  font-weight: 700;
  color: var(--slate-700);
  font-size: 18px;
  letter-spacing: 0.02em;
}

/* Section */
.block {
  padding: 96px 0;
}
.sec-head {
  max-width: 660px;
  margin: 0 auto 56px;
  text-align: center;
}
.sec-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin: 16px 0 14px;
}
.sec-head p {
  font-size: 17px;
  color: var(--slate-500);
  margin: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc {
  background: #fff;
  border: 1px solid rgba(11, 36, 80, 0.08);
  border-radius: var(--radius);
  padding: 0;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.svc-media {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
}
.svc-media img {
  transition: transform 0.5s ease;
}
.svc:hover .svc-media img {
  transform: scale(1.06);
}
.svc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 27, 51, 0) 55%, rgba(10, 27, 51, 0.35));
}
.svc-media .ic {
  position: absolute;
  left: 20px;
  bottom: -22px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  background: linear-gradient(135deg, var(--azure), var(--navy));
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.4);
}
.svc-body {
  padding: 34px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.svc p {
  font-size: 14.5px;
  color: var(--slate-500);
  margin: 0 0 16px;
}
.svc-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.svc-points li {
  font-size: 13.5px;
  color: var(--slate-700);
  display: flex;
  gap: 9px;
  margin-bottom: 8px;
}
.svc-points li::before {
  content: "✓";
  color: var(--azure);
  font-weight: 700;
}
.svc-link {
  font-family: var(--font-sora), sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--azure);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  align-self: flex-start;
}

/* Feature split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(135deg, var(--navy), var(--ink));
  box-shadow: var(--shadow-lg);
}
.split-visual .glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.5), transparent 70%);
  top: -60px;
  right: -60px;
}
.split-visual .glow.g2 {
  background: radial-gradient(circle, rgba(199, 162, 75, 0.35), transparent 70%);
  bottom: -80px;
  left: -60px;
  top: auto;
}
.stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 18px 20px;
  color: #fff;
}
.stat-card b {
  font-family: var(--font-sora), sans-serif;
  font-size: 34px;
  font-weight: 800;
  display: block;
}
.stat-card span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.sc1 {
  top: 44px;
  left: 44px;
}
.sc2 {
  bottom: 52px;
  left: 64px;
}
.sc3 {
  top: 120px;
  right: 44px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.feature-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.feature-list .tick {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--azure);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.feature-list h4 {
  font-size: 16px;
  margin-bottom: 3px;
}
.feature-list p {
  margin: 0;
  font-size: 14px;
  color: var(--slate-500);
}

/* Process */
.process {
  background: var(--paper);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.step {
  background: #fff;
  border: 1px solid rgba(11, 36, 80, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.step .num {
  font-family: var(--font-sora), sans-serif;
  font-weight: 800;
  font-size: 14px;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--azure), var(--navy));
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.step h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--slate-500);
  margin: 0;
}

/* Stats band */
.band {
  background: linear-gradient(135deg, var(--ink), var(--navy));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.25), transparent 70%);
  top: -200px;
  right: -100px;
}
.band .wrap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 66px 24px;
  text-align: center;
}
.band b {
  font-family: var(--font-sora), sans-serif;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  display: block;
  background: linear-gradient(120deg, #fff, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.band span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  background: #fff;
  border: 1px solid rgba(11, 36, 80, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.quote .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.quote p {
  font-size: 15px;
  color: var(--slate-700);
  font-style: italic;
}
.quote .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.quote .who .av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--azure), var(--navy));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-sora), sans-serif;
  font-weight: 700;
}
.quote .who b {
  font-size: 14.5px;
  color: var(--ink);
  font-family: var(--font-sora), sans-serif;
}
.quote .who span {
  font-size: 12.5px;
  color: var(--slate-500);
}

/* CTA */
.cta-band {
  padding: 20px 0 96px;
}
.cta-inner {
  background: linear-gradient(135deg, var(--navy), var(--ink));
  border-radius: 28px;
  padding: 66px 56px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-inner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 162, 75, 0.28), transparent 70%);
  bottom: -160px;
  left: -80px;
}
.cta-inner::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4), transparent 70%);
  top: -160px;
  right: -80px;
}
.cta-inner h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 40px);
  position: relative;
}
.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 16px auto 30px;
  position: relative;
}
.cta-inner .hero-cta {
  justify-content: center;
  position: relative;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .brand {
  color: #fff;
}
.site-footer .brand small {
  color: rgba(255, 255, 255, 0.5);
}
.foot-desc {
  font-size: 14px;
  margin: 18px 0 20px;
  max-width: 300px;
}
.foot-col h5 {
  color: #fff;
  font-family: var(--font-sora), sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin: 0 0 18px;
  text-transform: uppercase;
}
.foot-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s;
}
.foot-col a:hover {
  color: #fff;
  transform: translateX(3px);
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #fff;
  transition: 0.25s;
}
.socials a:hover {
  background: var(--azure);
  transform: translateY(-3px);
}
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 10px;
}

/* Page hero (inner pages) */
.page-hero {
  background: radial-gradient(1000px 400px at 80% -20%, rgba(37, 99, 235, 0.12), transparent 60%),
    linear-gradient(180deg, #fff, var(--paper));
  padding: 72px 0 64px;
  text-align: center;
  border-bottom: 1px solid rgba(11, 36, 80, 0.05);
}
.page-hero h1 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin: 16px 0 14px;
}
.page-hero p {
  font-size: 18px;
  color: var(--slate-500);
  max-width: 620px;
  margin: 0 auto;
}
.crumbs {
  font-size: 13px;
  color: var(--slate-500);
  margin-top: 22px;
}
.crumbs a:hover {
  color: var(--azure);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 44px;
  align-items: start;
}
.contact-info .info-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(11, 36, 80, 0.08);
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: #fff;
  transition: 0.25s;
}
.contact-info .info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.contact-info .info-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex: none;
  display: grid;
  place-items: center;
  font-size: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.04));
  color: var(--azure);
}
.contact-info .info-card h4 {
  font-size: 15px;
  margin-bottom: 3px;
}
.contact-info .info-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--slate-500);
}
.form-card {
  background: #fff;
  border: 1px solid rgba(11, 36, 80, 0.08);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  font-family: var(--font-sora), sans-serif;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--slate-300);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: var(--paper);
  transition: 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  background: #fff;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  font-size: 13px;
  color: var(--slate-500);
  margin-top: 4px;
}
.form-success {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.25);
  color: #15803d;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Values / about grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value {
  background: #fff;
  border: 1px solid rgba(11, 36, 80, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: 0.3s;
}
.value:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.value .ic {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(199, 162, 75, 0.18), rgba(199, 162, 75, 0.05));
  color: var(--gold);
  margin-bottom: 16px;
}
.value h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.value p {
  font-size: 14px;
  color: var(--slate-500);
  margin: 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 0 70px;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services-grid,
  .quotes,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .band .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .services-grid,
  .quotes,
  .steps,
  .foot-grid,
  .value-grid,
  .field-row {
    grid-template-columns: 1fr;
  }
  .band .wrap {
    grid-template-columns: 1fr 1fr;
  }
  .block {
    padding: 64px 0;
  }
  .cta-inner {
    padding: 44px 22px;
  }
  .hero-trust {
    gap: 18px;
  }
  .hero-trust .divider {
    display: none;
  }
  .mobile-menu.open {
    display: block;
    position: fixed;
    inset: 76px 0 0;
    background: #fff;
    z-index: 40;
    padding: 22px 24px;
    animation: fade 0.25s ease;
  }
  .mobile-menu.open ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-menu.open ul a {
    display: block;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1px solid var(--slate-100);
  }
  .mobile-menu.open .btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 22px;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================
   Imagery helpers (photos supplied in /public)
   ============================================================ */

/* Hero cutout photo */
.hero-photo {
  position: relative;
}
.hero-photo .hp-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 68%);
  left: 52%;
  top: 54%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.hero-photo .hp-img {
  position: relative;
  z-index: 2;
}
.hero-photo .hp-img img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 55px rgba(11, 36, 80, 0.22));
}

/* Photo variant of the split visual */
.split-visual.photo {
  background: var(--navy);
}
.split-visual .sv-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.split-visual .sv-img img {
  object-fit: cover;
}
.split-visual.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10, 27, 51, 0.28), rgba(11, 36, 80, 0.55));
  z-index: 1;
}
.split-visual .stat-card {
  z-index: 2;
}

/* Generic media frame for about-page splits */
.media-frame {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.media-frame img {
  object-fit: cover;
}
.media-frame .mf-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
}
.media-frame .mf-badge b {
  font-family: var(--font-sora), sans-serif;
  font-size: 24px;
  color: var(--ink);
  display: block;
  line-height: 1;
}
.media-frame .mf-badge span {
  font-size: 12.5px;
  color: var(--slate-500);
}

/* Photo background for the stats band */
.band.band-photo {
  background: linear-gradient(135deg, rgba(10, 27, 51, 0.9), rgba(11, 36, 80, 0.9)),
    url("/team-meeting.webp");
  background-size: cover;
  background-position: center;
}

/* ============================================================
   Service detail page
   ============================================================ */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.detail-hero-img {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
}
.detail-hero-img img {
  object-fit: cover;
}
.detail-lead {
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 22px;
}
.detail-p {
  font-size: 16px;
  color: var(--slate-700);
  margin: 0 0 18px;
}
.detail-subhead {
  font-size: 22px;
  margin: 34px 0 18px;
}
.detail-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.detail-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: var(--slate-700);
  background: var(--paper);
  border: 1px solid rgba(11, 36, 80, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
}
.detail-checklist .tick {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--azure);
  display: grid;
  place-items: center;
  font-size: 13px;
}
.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 20px;
}
.side-card {
  background: #fff;
  border: 1px solid rgba(11, 36, 80, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.side-card h4 {
  font-size: 16px;
  margin: 0 0 16px;
}
.side-nav {
  display: grid;
}
.side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--slate-700);
  padding: 12px 14px;
  border-radius: 10px;
  transition: 0.2s;
}
.side-nav a .arrow {
  opacity: 0;
  transition: 0.2s;
}
.side-nav a:hover {
  background: var(--paper);
  color: var(--ink);
}
.side-nav a:hover .arrow {
  opacity: 1;
}
.side-nav a.active {
  background: linear-gradient(135deg, var(--azure), var(--navy));
  color: #fff;
}
.side-nav a.active .arrow {
  opacity: 1;
}
.side-cta {
  background: linear-gradient(135deg, var(--navy), var(--ink));
  border: 0;
}
.side-cta h4,
.side-cta p {
  color: #fff;
}
.side-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 18px;
}

/* ============================================================
   Blog
   ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: #fff;
  border: 1px solid rgba(11, 36, 80, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.post-media {
  position: relative;
  display: block;
  height: 200px;
  overflow: hidden;
}
.post-media img {
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-media img {
  transform: scale(1.06);
}
.post-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-family: var(--font-sora), sans-serif;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.post-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--slate-500);
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.post-body h3 {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.post-body h3 a:hover {
  color: var(--azure);
}
.post-body p {
  font-size: 14.5px;
  color: var(--slate-500);
  margin: 0 0 16px;
}
.post-body .svc-link {
  margin-top: auto;
}

/* Featured post */
.post-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  background: #fff;
  border: 1px solid rgba(11, 36, 80, 0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.post-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pf-media {
  position: relative;
  min-height: 320px;
}
.pf-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pf-body {
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pf-body h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 14px 0 14px;
}
.pf-body p {
  font-size: 15.5px;
  color: var(--slate-500);
  margin: 0 0 18px;
}

/* Article */
.article-hero h1 {
  font-size: clamp(30px, 4vw, 46px);
}
.article-wrap {
  max-width: 860px;
}
.article-img {
  position: relative;
  width: 100%;
  height: 440px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}
.article-img img {
  object-fit: cover;
}
.article-body h2 {
  font-size: 26px;
  margin: 34px 0 14px;
}
.article-body p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--slate-700);
  margin: 0 0 20px;
}
.article-cta {
  margin-top: 40px;
  padding: 30px 32px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(11, 36, 80, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.article-cta h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.article-cta p {
  margin: 0;
  font-size: 14.5px;
  color: var(--slate-500);
}

@media (max-width: 980px) {
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .detail-side {
    position: static;
  }
  .post-grid {
    grid-template-columns: 1fr 1fr;
  }
  .post-featured {
    grid-template-columns: 1fr;
  }
  .pf-media {
    min-height: 260px;
  }
}
@media (max-width: 640px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
  .pf-body {
    padding: 30px 24px;
  }
  .article-img {
    height: 240px;
  }
  .detail-hero-img {
    height: 240px;
  }
  .article-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Gallery cards */
.gallery-item {
  position: relative;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gallery-item img {
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 16px 18px;
  background: linear-gradient(transparent, rgba(10, 27, 51, 0.82));
  color: #fff;
  font-family: var(--font-sora), sans-serif;
  font-weight: 600;
  font-size: 15px;
}

@media (max-width: 640px) {
  .media-frame {
    height: 320px;
  }
}