/* The Total Accounts — homepage
   Brand: royal blue #0050b0 · black · white */

:root {
  --blue: #0050b0;
  --blue-bright: #1a73e8;
  --blue-deep: #003a82;
  --navy: #061428;
  --ink: #0b1018;
  --paper: #f4f7fb;
  --white: #ffffff;
  --muted: #5c6b80;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 60px rgba(6, 20, 40, 0.18);
  --radius: 18px;
  --wrap: 1180px;
  --header: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 12px);
}

body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--blue);
  color: #fff;
  padding: 8px 14px;
  z-index: 100;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header);
  background: rgba(6, 20, 40, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(var(--wrap), calc(100% - 32px));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  width: 42px;
  height: auto;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  padding: 5px 6px 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 13px;
}

.brand-total {
  color: #4ea2ff;
}

.brand-accounts {
  color: #fff;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
}

.nav-wa {
  color: #8ee0b5 !important;
}

.nav-wa:hover,
.nav-wa:focus-visible {
  color: #fff !important;
}

.btn-whatsapp {
  background: #128c7e;
  color: #fff;
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.32);
  gap: 8px;
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: #0e7a6e;
}

.contact-copy .btn-whatsapp {
  margin-top: 26px;
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600 !important;
  box-shadow: 0 8px 24px rgba(0, 80, 176, 0.35);
}

.nav-cta:hover {
  background: var(--blue-bright);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s var(--ease);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 80, 176, 0.32);
}

.btn-primary:hover {
  background: var(--blue-bright);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn-full {
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.eyebrow.light,
.section-head.light .eyebrow {
  color: #8ec0ff;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(0, 80, 176, 0.18);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2,
.contact-copy h2,
.hero h1 {
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--ink);
}

.section-head.light h2 {
  color: #fff;
}

.section-lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Hero */

.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 72px 0 88px;
  min-height: calc(100svh - var(--header));
  display: flex;
  align-items: center;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 30% 20%, #000 20%, transparent 70%);
  pointer-events: none;
  animation: gridDrift 48s linear infinite;
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  right: -80px;
  top: -80px;
  background: radial-gradient(circle, rgba(0, 80, 176, 0.45), transparent 68%);
  pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3.1rem, 7vw, 5.4rem);
  margin-bottom: 22px;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .ch {
  display: inline-block;
  will-change: transform, opacity;
}

.hero h1 .accent .ch {
  color: #4ea2ff;
}

.js .hero h1 .ch {
  opacity: 0;
  transform: translateY(1.1em);
  animation: charIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--d, 0s);
}

.js .hero-fade {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s var(--ease) var(--d, 0s) forwards;
}

.js .hero-panel-anim {
  opacity: 0;
  transform: translate3d(36px, 16px, 0) scale(0.98);
  animation: panelIn 1s 0.5s var(--ease) forwards;
}

.hero h1 .accent {
  color: #4ea2ff;
}

.lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34rem;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 28px;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13.5px;
  font-weight: 500;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-points li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--blue-bright);
  transform: rotate(45deg);
}

/* Hero panel */

.hero-panel {
  position: relative;
  min-height: 420px;
}

.panel-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.panel-main {
  padding: 24px;
}

.panel-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 22px;
}

.panel-head img {
  background: #fff;
  border-radius: 8px;
  padding: 4px 5px 3px;
}

.panel-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.panel-title {
  font-size: 22px;
  font-weight: 700;
}

.status-pill {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(78, 162, 255, 0.18);
  color: #8ec0ff;
  border: 1px solid rgba(78, 162, 255, 0.35);
  padding: 6px 10px;
  border-radius: 999px;
  animation: livePulse 2.2s ease-in-out infinite;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 150px;
  padding: 8px 4px 16px;
}

.bars span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #4ea2ff, var(--blue));
  opacity: 0.55;
  transform-origin: bottom;
  animation: rise 1.1s var(--ease) var(--d, 0s) both;
}

.bars .now {
  opacity: 1;
  box-shadow: 0 8px 20px rgba(0, 80, 176, 0.45);
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.panel-stats dt {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.panel-stats dd {
  font-weight: 650;
  margin-top: 4px;
  font-size: 14px;
}

.panel-float {
  position: absolute;
  right: -12px;
  bottom: 28px;
  width: min(230px, 70%);
  padding: 18px 20px;
  animation: float 5s ease-in-out infinite;
}

.float-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8ec0ff;
}

.float-value {
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -0.03em;
  margin: 6px 0 8px;
}

.float-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

@keyframes rise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes charIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

@keyframes panelIn {
  to { opacity: 1; transform: none; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 56px 56px; }
}

@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(78, 162, 255, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(78, 162, 255, 0); }
}

@keyframes waIn {
  from { opacity: 0; transform: translateY(16px) scale(0.9); }
  to { opacity: 1; transform: none; }
}

@keyframes waRing {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}

.js .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0s);
}

.js .reveal.in {
  opacity: 1;
  transform: none;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.38);
  animation: waIn 0.55s 1.35s both;
  isolation: isolate;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.wa-float:hover {
  transform: translateY(-2px);
  background: #1ebe5d;
}

.wa-pulse {
  position: absolute;
  width: 48px;
  height: 48px;
  left: 4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.45);
  animation: waRing 2s ease-out infinite;
  pointer-events: none;
}

/* Trust */

.trust {
  background: #0a1c36;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.trust p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 650;
  white-space: nowrap;
}

.trust ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 14px;
}

/* Services */

.services {
  padding: 96px 0;
  background:
    radial-gradient(circle at top left, rgba(0, 80, 176, 0.06), transparent 40%),
    var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  border: 1px solid rgba(6, 20, 40, 0.06);
  box-shadow: 0 10px 30px rgba(6, 20, 40, 0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.service::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}

.service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service:hover::before {
  transform: scaleY(1);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 80, 176, 0.08);
  color: var(--blue);
  margin-bottom: 18px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.service p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Pillars */

.pillars {
  background: linear-gradient(145deg, #061428 0%, #08244a 48%, #003a82 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.pillars::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  bottom: -160px;
  background: radial-gradient(circle, rgba(78, 162, 255, 0.22), transparent 70%);
  pointer-events: none;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}

.pillar {
  padding: 28px 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
}

.pillar:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(142, 192, 255, 0.35);
}

.pillar-num {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #8ec0ff;
  font-weight: 700;
}

.pillar h3 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
  margin: 14px 0 12px;
}

.pillar p {
  color: rgba(255, 255, 255, 0.7);
}

/* Who */

.who {
  padding: 96px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.who-card {
  border-radius: 24px;
  padding: 36px 32px;
  min-height: 100%;
}

.who-biz {
  background: var(--navy);
  color: #fff;
}

.who-ind {
  background: var(--paper);
  border: 1px solid rgba(6, 20, 40, 0.06);
}

.who-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #4ea2ff;
  margin-bottom: 10px;
}

.who-ind .who-label {
  color: var(--blue);
}

.who-card h3 {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 22px;
}

.who-card ul {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 28px;
}

.who-card li {
  padding-left: 18px;
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

.who-ind li {
  color: #3d4b5c;
}

.who-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 2px;
  background: #4ea2ff;
}

.who-ind li::before {
  background: var(--blue);
}

.text-link {
  font-weight: 650;
  color: #8ec0ff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.who-ind .text-link {
  color: var(--blue);
}

.text-link::after {
  content: "→";
  transition: transform 0.2s;
}

.text-link:hover::after {
  transform: translateX(4px);
}

/* Process */

.process {
  padding: 0 0 96px;
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: none;
}

.steps li {
  padding-top: 22px;
  border-top: 2px solid var(--blue);
}

.step-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
}

.steps h3 {
  font-size: 1.45rem;
  margin: 12px 0 8px;
  letter-spacing: -0.03em;
}

.steps p {
  color: var(--muted);
}

/* Contact */

.contact {
  background: var(--navy);
  color: #fff;
  padding: 96px 0;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
  pointer-events: none;
}

.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 14px;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 28rem;
}

.contact-notes {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-notes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.contact-notes li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 5px rgba(26, 115, 232, 0.18);
}

.enquiry {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d7dee8;
  border-radius: 12px;
  padding: 12px 14px;
  background: #f8fafc;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 80, 176, 0.12);
  background: #fff;
}

.form-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--muted);
}

.form-success {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #e8f3ff;
  color: var(--blue-deep);
  font-weight: 600;
  font-size: 14px;
}

.enquiry.sent .btn {
  display: none;
}

/* Footer */

.site-footer {
  background: #040b16;
  color: rgba(255, 255, 255, 0.72);
  padding: 48px 0 96px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
  margin-top: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: #8ec0ff;
  font-weight: 650;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 28px;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-cols a,
.footer-cols span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-cols span {
  color: rgba(255, 255, 255, 0.38);
}

.footer-cols a:hover {
  color: #fff;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* Mobile */

.nav a.is-active {
  color: #fff;
}

.service-more {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 650;
  font-size: 14px;
  color: var(--blue);
}

.service:hover .service-more {
  text-decoration: underline;
}

.insights-home {
  padding: 0 0 96px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.blog-card {
  background: #fff;
  border: 1px solid rgba(6, 20, 40, 0.06);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  color: inherit;
  text-decoration: none;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card time,
.blog-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 650;
}

.blog-card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.page-hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  padding: 64px 0 56px;
}

.page-hero .hero-grid,
.page-hero .hero-glow {
  position: absolute;
  pointer-events: none;
}

.page-hero .hero-glow {
  width: 480px;
  height: 480px;
  right: -120px;
  top: -140px;
}

.page-hero .wrap {
  position: relative;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.crumbs a {
  color: #8ec0ff;
}

.crumbs a:hover {
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1.08;
  max-width: 18ch;
  margin-bottom: 16px;
}

.page-hero .lead {
  max-width: 40rem;
}

.page-body {
  padding: 72px 0 96px;
  background: var(--paper);
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.prose {
  background: #fff;
  border-radius: 24px;
  padding: 36px 40px;
  border: 1px solid rgba(6, 20, 40, 0.06);
}

.prose h2 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin: 32px 0 12px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  font-size: 1.12rem;
  margin: 22px 0 8px;
}

.prose p,
.prose li {
  color: #3d4b5c;
  font-size: 1.02rem;
  line-height: 1.7;
}

.prose p + p {
  margin-top: 14px;
}

.prose ul,
.prose ol {
  margin: 12px 0 18px 1.2em;
  display: grid;
  gap: 8px;
}

.prose a {
  color: var(--blue);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose .note {
  margin-top: 28px;
  padding: 16px 18px;
  background: #f4f7fb;
  border-radius: 14px;
  font-size: 0.92rem;
  color: var(--muted);
}

.aside-card {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 28px 24px;
  position: sticky;
  top: calc(var(--header) + 16px);
}

.aside-card h2 {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.aside-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.aside-card .btn {
  width: 100%;
  margin-bottom: 10px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.related {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #e6edf5;
}

.related h2 {
  margin-top: 0;
}

.faq details {
  border-top: 1px solid #e6edf5;
  padding: 14px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details p {
  margin-top: 8px;
}

.calendar {
  display: grid;
  gap: 12px;
}

.cal-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(6, 20, 40, 0.06);
}

.cal-row strong {
  color: var(--blue);
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
}

.error-page h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.04em;
  margin: 12px 0;
}

.error-page .btn-ghost {
  color: var(--ink);
  border-color: rgba(11, 16, 24, 0.25);
}

.page-hero.compact {
  padding: 48px 0 40px;
}

.page-hero.compact h1 {
  max-width: none;
}

@media (max-width: 960px) {
  .hero-inner,
  .contact-inner,
  .who-grid,
  .pillar-grid,
  .service-grid,
  .steps,
  .blog-grid,
  .page-layout,
  .cal-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
    padding: 48px 0 64px;
  }

  .hero-panel {
    min-height: unset;
  }

  .panel-float {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: 14px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 68px;
  }

  .menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header) 0 auto 0;
    background: rgba(6, 20, 40, 0.97);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 20px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s var(--ease);
  }

  .nav.open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nav a {
    padding: 12px 8px;
    font-size: 17px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .menu-btn.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-btn.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .service-grid,
  .field-row,
  .footer-cols {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 3.4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .wa-float-label {
    display: none;
  }

  .wa-float {
    padding: 12px;
    right: 16px;
    bottom: 16px;
  }

  .wa-pulse {
    left: 4px;
  }

  .wrap {
    width: min(var(--wrap), calc(100% - 28px));
  }

  .services,
  .pillars,
  .who,
  .contact,
  .page-body,
  .insights-home {
    padding: 72px 0;
  }

  .prose {
    padding: 24px 20px;
  }

  .aside-card {
    position: static;
  }

  .process {
    padding-bottom: 72px;
  }

  .enquiry {
    padding: 20px;
  }

  .panel-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .bars span,
  .panel-float,
  .service,
  .btn,
  .hero-grid,
  .hero-glow,
  .status-pill,
  .wa-float,
  .wa-pulse,
  .js .hero h1 .ch,
  .js .hero-fade,
  .js .hero-panel-anim {
    animation: none !important;
  }

  .js .hero h1 .ch,
  .js .hero-fade,
  .js .hero-panel-anim,
  .js .reveal,
  .js .reveal.in {
    opacity: 1 !important;
    transform: none !important;
  }
}
