:root {
  --navy: #071a3d;
  --navy-2: #0b295a;
  --blue: #155bc5;
  --blue-bright: #2577f2;
  --gold: #cf981f;
  --gold-light: #e7ba54;
  --ink: #14223b;
  --muted: #2986cc;
  --line: #dbe3ee;
  --mist: #f3f6fa;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(9, 30, 66, .11);
  --radius: 22px;
  --shell: min(1180px, calc(100% - 44px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; }

.skip-link {
  position: fixed;
  left: 18px;
  top: -80px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.section-shell { width: var(--shell); margin-inline: auto; }
.section-block { padding-block: 112px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(219, 227, 238, .82);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: var(--shell);
  height: 88px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 156px 1fr auto;
  align-items: center;
  gap: 22px;
}
.brand { width: 138px; height: 76px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.primary-nav a { color: #344057; font-size: 14px; font-weight: 680; transition: color .2s ease; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 22px; }
.auth-slot { display: flex; align-items: center; gap: 14px; }
.auth-trigger { background: none; cursor: pointer; }
.auth-user { color: var(--navy); font-size: 14px; font-weight: 750; white-space: nowrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 14px 22px;
  border: 1px solid var(--blue);
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-weight: 750;
  line-height: 1.1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(21, 91, 197, .2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); background: #0d4cae; box-shadow: 0 14px 36px rgba(21, 91, 197, .28); }
.button-small { min-height: 44px; padding: 12px 17px; font-size: 13px; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  min-height: 720px;
  padding-block: 92px 84px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -360px;
  top: 30px;
  border: 1px solid #edf1f6;
  border-radius: 50%;
  pointer-events: none;
}
.eyebrow, .kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 830;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 2px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.12; letter-spacing: -.035em; }
h1 { max-width: 700px; margin-bottom: 20px; font-size: clamp(45px, 5.3vw, 55px); font-weight: 810; }
.hero-lead { max-width: 700px; margin-bottom: 20px; color: var(--muted); font-size: clamp(17px, 1.8vw, 20px); line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 27px; }
.text-link { color: var(--navy); font-weight: 760; border-bottom: 1px solid #a9b4c5; padding: 7px 0 4px; }
.text-link span { margin-left: 8px; color: var(--gold); }
.trust-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 610px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.trust-list li { display: flex; flex-direction: column; padding: 2px 2px 0 0; }
.trust-list li + li { padding-left: 22px; border-left: 1px solid var(--line); }
.trust-list strong { color: var(--navy); font-size: 24px; line-height: 1; }
.trust-list span { margin-top: 8px; color: var(--muted); font-size: 12px; line-height: 1.4; }

.hero-visual { position: relative; min-height: 510px; display: grid; place-items: center; }
.orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-one { width: 390px; height: 390px; top: 35px; right: 30px; background: radial-gradient(circle at 30% 25%, #4f99ff, #145bc5 38%, #0a214a 75%); }
.orb-two { width: 230px; height: 230px; left: 0; bottom: 0; border: 1px solid rgba(207, 152, 31, .45); background: rgba(255,255,255,.2); }
.insight-panel {
  position: relative;
  z-index: 2;
  width: min(470px, 94%);
  min-height: 425px;
  margin-left: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 27px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 40px 100px rgba(5, 25, 59, .26);
  backdrop-filter: blur(16px);
}
.panel-topline { display: flex; align-items: center; gap: 10px; color: #536176; font-size: 13px; font-weight: 680; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #2bb673; box-shadow: 0 0 0 5px rgba(43, 182, 115, .12); }
.signal-graphic { position: relative; height: 205px; margin-block: 24px 16px; overflow: hidden; border-radius: 16px; background: linear-gradient(180deg, #f5f8fd, #fff); }
.signal-grid { position: absolute; inset: 0; background-image: linear-gradient(#dae3ef 1px, transparent 1px), linear-gradient(90deg, #dae3ef 1px, transparent 1px); background-size: 54px 44px; opacity: .6; }
.signal-graphic svg { position: absolute; inset: 11px 10px 6px; width: calc(100% - 20px); height: calc(100% - 17px); }
.area-path { fill: url(#areaGradient); }
.line-path { fill: none; stroke: url(#lineGradient); stroke-width: 4; stroke-linecap: round; }
.expertise-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.expertise-pills span { padding: 8px 12px; border: 1px solid #dce5f1; border-radius: 999px; background: #fff; color: #35445b; font-size: 12px; font-weight: 760; }
.panel-note { display: flex; align-items: center; gap: 13px; margin-top: 20px; padding: 15px 16px; border-radius: 13px; background: var(--navy); color: #fff; }
.note-icon { display: grid; place-items: center; flex: 0 0 32px; height: 32px; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 900; }
.panel-note strong { display: block; font-size: 13px; }
.panel-note small { display: block; margin-top: 2px; color: #bac8dc; font-size: 11px; }

.credibility-band { border-block: 1px solid #e1e7ef; background: var(--mist); }
.tool-row { min-height: 88px; display: flex; align-items: center; gap: 42px; }
.tool-label { flex: 0 0 auto; color: var(--muted); font-size: 11px; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.tool-marquee { flex: 1; display: flex; justify-content: space-between; gap: 24px; overflow: hidden; }
.tool-marquee span { color: #68768b; font-size: 14px; font-weight: 780; white-space: nowrap; }

.section-intro { display: grid; grid-template-columns: 1.1fr .72fr; align-items: end; gap: 80px; margin-bottom: 56px; }
.section-intro h2, .about-copy h2, .approach h2, .enquiry-section h2 { margin-bottom: 0; font-size: clamp(35px, 4vw, 54px); }
.section-intro > p { margin: 0; color: var(--muted); font-size: 17px; }
.kicker { margin-bottom: 14px; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { position: relative; min-height: 456px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: #bbcae0; box-shadow: var(--shadow); }
.service-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 28px; border-radius: 14px; background: #ecf3ff; color: var(--blue); }
.service-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card-number { position: absolute; top: 31px; right: 34px; color: #9ca8ba; font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.service-card h3 { margin-bottom: 13px; font-size: 26px; }
.service-card > p:not(.card-number) { max-width: 470px; margin-bottom: 20px; color: var(--muted); }
.service-card ul { margin: 0 0 30px; padding: 0; list-style: none; display: grid; gap: 8px; color: #3d4d64; font-size: 14px; }
.service-card li::before { content: "•"; margin-right: 9px; color: var(--gold); font-weight: 900; }
.card-link { position: absolute; left: 34px; bottom: 30px; color: var(--blue); font-size: 14px; font-weight: 800; }
.card-link span { margin-left: 9px; color: var(--gold); }
.featured-card { border-color: transparent; background: var(--navy); }
.featured-card h3, .featured-card .card-link { color: #fff; }
.featured-card > p:not(.card-number), .featured-card ul { color: #bbc9dc; }
.featured-card .service-icon { background: rgba(255,255,255,.1); color: var(--gold-light); }
.featured-card .card-number { color: #7385a1; }
.primary-service-card { grid-column: 1 / -1; min-height: 370px; background: linear-gradient(125deg, var(--navy), #0b2e67 72%, #0f4ba2); }
.primary-service-card > p:not(.card-number) { max-width: 760px; }
.primary-service-card ul { max-width: 920px; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 42px; }
.primary-service-card::after { content: "A"; position: absolute; right: 52px; bottom: -68px; color: rgba(255,255,255,.035); font-family: Georgia, serif; font-size: 310px; font-weight: 700; line-height: 1; pointer-events: none; }
.wide-card { grid-column: 1 / -1; min-height: 310px; }
.wide-card-copy { display: grid; grid-template-columns: 1fr .9fr; gap: 65px; padding-right: 90px; }
.wide-card-copy p { color: var(--muted); }
.wide-card-copy ul { grid-template-columns: 1fr 1fr; align-content: start; }
.complementary-card { background: linear-gradient(135deg, #f5f8fc, #fff); }

.approach { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.approach::after { content: ""; position: absolute; width: 550px; height: 550px; right: -260px; bottom: -350px; border: 1px solid rgba(231,186,84,.36); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.02), 0 0 0 160px rgba(255,255,255,.018); }
.approach-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: center; }
.kicker-light { color: var(--gold-light); }
.approach h2 { color: #fff; margin-bottom: 24px; }
.approach-copy > p:not(.kicker) { max-width: 480px; color: #b8c5d8; font-size: 17px; }
.button-light { margin-top: 18px; border-color: #fff; background: #fff; color: var(--navy); box-shadow: none; }
.button-light:hover { background: #eef3fa; color: var(--navy); }
.steps-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.16); }
.steps-list li { display: grid; grid-template-columns: 58px 1fr; gap: 25px; padding-block: 28px; border-bottom: 1px solid rgba(255,255,255,.16); }
.step-number { padding-top: 4px; color: var(--gold-light); font-size: 12px; font-weight: 850; letter-spacing: .1em; }
.steps-list h3 { margin-bottom: 7px; color: #fff; font-size: 23px; }
.steps-list p { margin: 0; color: #b8c5d8; }

.about-card { display: grid; grid-template-columns: .7fr 1.3fr; gap: 75px; align-items: center; padding: 58px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, #f4f7fb, #fff 62%); }
.about-mark { display: grid; place-items: center; min-height: 365px; padding: 28px; border-radius: 22px; background: #fff; box-shadow: 0 20px 60px rgba(9,30,66,.1); }
.about-mark img { width: 100%; }
.about-copy > p:not(.kicker) { margin-block: 24px 32px; color: var(--muted); font-size: 17px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.values-grid span { display: block; margin-bottom: 14px; color: var(--gold); font-size: 11px; font-weight: 900; }
.values-grid strong { display: block; margin-bottom: 7px; color: var(--navy); }
.values-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

.resources { padding-top: 10px; }
.compact-intro { margin-bottom: 38px; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.resource-card { min-height: 340px; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line); border-radius: 19px; background: #fff; }
.resource-card:nth-child(2) { background: var(--mist); }
.resource-card:nth-child(3) { background: var(--navy); border-color: var(--navy); }
.resource-meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 42px; color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.resource-meta span:last-child { color: #8b96a8; }
.resource-card h3 { font-size: 23px; }
.resource-card > p { color: var(--muted); font-size: 14px; }
.resource-status { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); color: #728096; font-size: 11px; font-weight: 720; }
.resource-card:nth-child(3) h3 { color: #fff; }
.resource-card:nth-child(3) > p { color: #b8c5d8; }
.resource-card:nth-child(3) .resource-meta { color: var(--gold-light); }
.resource-card:nth-child(3) .resource-status { border-color: rgba(255,255,255,.14); color: #95a6c0; }

.enquiry-section { margin-top: 100px; padding-block: 110px; background: #edf3fa; }
.enquiry-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: start; }
.kicker-gold { color: #a16e00; }
.enquiry-section h2 { margin-bottom: 24px; }
.enquiry-copy > p:not(.kicker) { color: var(--muted); font-size: 17px; }
.enquiry-points { display: grid; gap: 17px; margin-top: 36px; }
.enquiry-points > div { display: flex; gap: 13px; align-items: flex-start; }
.enquiry-points > div > span { display: grid; place-items: center; flex: 0 0 26px; height: 26px; border-radius: 50%; background: #dfe9f7; color: var(--blue); font-size: 12px; font-weight: 900; }
.enquiry-points p { margin: 0; }
.enquiry-points strong, .enquiry-points small { display: block; }
.enquiry-points small { color: var(--muted); }
.direct-contact { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 11px; margin-top: 32px; }
.direct-contact a { min-width: 0; padding: 14px 15px; border: 1px solid #ccd8e7; border-radius: 11px; background: rgba(255,255,255,.65); transition: transform .2s, border-color .2s, background .2s; }
.direct-contact a:hover, .direct-contact a:focus-visible { transform: translateY(-2px); border-color: var(--blue); background: #fff; }
.direct-contact span, .direct-contact strong { display: block; }
.direct-contact span { color: var(--blue); font-size: 10px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.direct-contact strong { margin-top: 3px; overflow-wrap: anywhere; color: var(--navy); font-size: 12px; }
.enquiry-form { display: grid; gap: 18px; padding: 18px; border-radius: 18px; background: #fff; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.enquiry-form label { color: #26364d; font-size: 12px; font-weight: 790; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; margin-top: 7px; padding: 13px 14px; border: 1px solid #cfd9e6; border-radius: 9px; outline: none; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.enquiry-form input, .enquiry-form select { min-height: 49px; }
.enquiry-form textarea { resize: vertical; min-height: 130px; }
.enquiry-form input:focus, .enquiry-form select:focus, .enquiry-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21, 91, 197, .1); }
.enquiry-form .invalid { border-color: #b93636; }
.consent-field { display: flex; gap: 10px; align-items: flex-start; color: var(--muted) !important; font-weight: 550 !important; line-height: 1.45; }
.consent-field input { width: 17px; height: 17px; min-height: auto; margin: 2px 0 0; padding: 0; }
.form-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.form-button { grid-column: 1 / -1; width: 100%; border: 0; }
.channel-button { min-height: 48px; padding: 12px 15px; border: 1px solid #c9d5e4; border-radius: 10px; background: #fff; color: var(--navy); font-weight: 780; cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s; }
.channel-button:hover, .channel-button:focus-visible { transform: translateY(-2px); border-color: var(--blue); box-shadow: 0 9px 24px rgba(9,30,66,.1); }
.gmail-button::before { content: "G"; display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 8px; border-radius: 6px; background: #fff1ef; color: #c23a2b; font-weight: 900; }
.outlook-button::before { content: "O"; display: inline-grid; place-items: center; width: 22px; height: 22px; margin-right: 8px; border-radius: 6px; background: #eaf3ff; color: #1769c2; font-weight: 900; }
.form-footnote { margin: -6px 0 0; color: #7a8799; font-size: 11px; text-align: center; }
.form-message { display: none; padding: 16px; border-radius: 11px; background: #eef7f3; color: #15593e; font-size: 13px; white-space: pre-wrap; }
.form-message.is-visible { display: block; }
.form-message a { display: inline-flex; margin-top: 12px; padding: 8px 12px; border: 1px solid #8fb8a6; border-radius: 7px; background: #fff; color: #15593e; font-weight: 760; cursor: pointer; }

.site-footer { padding-top: 70px; background: #083c17; color: #aebbd0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .65fr .65fr 1fr; gap: 55px; padding-bottom: 58px; }
.footer-brand img { width: 145px; height: 105px; object-fit: contain; object-position: left center; filter: brightness(1.15); }
.footer-brand p { max-width: 300px; font-size: 14px; }
.site-footer h2 { margin: 8px 0 17px; color: #fff; font-size: 13px; letter-spacing: .02em; }
.site-footer a { display: block; margin-bottom: 8px; font-size: 13px; transition: color .2s; }
.site-footer a:hover { color: var(--gold-light); }
.footer-note p { font-size: 13px; }
.footer-social { display: inline-flex; margin-top: 6px; color: var(--gold-light); font-size: 13px; font-weight: 760; }
.footer-social:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 21px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer-bottom span:last-child { color: var(--gold-light); font-weight: 760; }
.copy-toast { position: fixed; z-index: 200; right: 25px; bottom: 25px; padding: 12px 17px; border-radius: 9px; background: var(--navy); color: #fff; font-size: 13px; opacity: 0; pointer-events: none; transform: translateY(15px); transition: opacity .2s, transform .2s; box-shadow: 0 15px 45px rgba(0,0,0,.2); }
.copy-toast.show { opacity: 1; transform: translateY(0); }

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 26, 61, .55);
  backdrop-filter: blur(4px);
}
.auth-overlay[hidden] { display: none; }
.auth-modal {
  position: relative;
  width: min(440px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 40px 36px 32px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 40px 100px rgba(7, 20, 45, .35);
}
.auth-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}
.auth-close:hover { border-color: var(--blue); color: var(--blue); }
.auth-head { margin-bottom: 24px; text-align: center; }
.auth-head h2 { margin-bottom: 8px; font-size: 26px; color: var(--navy); }
.auth-sub { margin: 0; color: var(--muted); font-size: 14px; }
.auth-oauth { display: grid; gap: 10px; margin-bottom: 24px; }
.oauth-button {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 16px;
  border: 1px solid #ccd8e7;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.oauth-button:hover, .oauth-button:focus-visible { transform: translateY(-2px); border-color: var(--blue); box-shadow: 0 9px 24px rgba(9,30,66,.1); }
.oauth-icon {
  display: grid;
  place-items: center;
  flex: 0 0 26px;
  height: 26px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
}
.oauth-google .oauth-icon { background: #fdece9; color: #c23a2b; }
.oauth-facebook .oauth-icon { background: #e8eefc; color: #1a56c4; }
.oauth-outlook .oauth-icon { background: #eaf3ff; color: #1769c2; }
.auth-divider { position: relative; margin: 4px 0 22px; text-align: center; }
.auth-divider::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: var(--line); }
.auth-divider span { position: relative; padding: 0 12px; background: #fff; color: #8b96a8; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.auth-form { display: grid; gap: 16px; }
.auth-form label { color: #26364d; font-size: 12px; font-weight: 790; }
.auth-form input { width: 100%; min-height: 49px; margin-top: 7px; padding: 13px 14px; border: 1px solid #cfd9e6; border-radius: 9px; outline: none; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s; }
.auth-form input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21, 91, 197, .1); }
.auth-submit { width: 100%; border: 0; }
.auth-message { display: none; margin: 0; padding: 13px 14px; border-radius: 10px; background: #eef7f3; color: #15593e; font-size: 13px; }
.auth-message.is-visible { display: block; }
.auth-message.is-error { background: #fdecec; color: #a3271c; }
.auth-toggle { margin: 4px 0 0; text-align: center; font-size: 13px; color: var(--muted); }
.auth-switch { background: none; border: 0; padding: 0; margin-left: 6px; color: var(--blue); font-weight: 780; cursor: pointer; }
.auth-fallback { margin: 22px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.6; text-align: center; }
.auth-fallback a { color: var(--blue); font-weight: 700; }

@media (max-width: 1040px) {
  .nav-shell { grid-template-columns: 130px 1fr auto; }
  .brand { width: 120px; }
  .primary-nav { gap: 17px; }
  .primary-nav a { font-size: 13px; }
  .hero { grid-template-columns: 1fr 1fr; gap: 36px; }
  .approach-grid, .enquiry-grid { gap: 60px; }
  .about-card { grid-template-columns: .65fr 1.35fr; gap: 45px; padding: 42px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid div { display: grid; grid-template-columns: 30px 95px 1fr; align-items: start; gap: 8px; }
  .values-grid span { margin: 2px 0 0; }
  .footer-grid { grid-template-columns: 1.2fr .65fr .65fr; }
  .footer-note { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 34px, 680px); }
  .section-block { padding-block: 82px; }
  .nav-shell { height: 76px; grid-template-columns: 118px 1fr auto; }
  .brand { width: 108px; height: 67px; }
  .nav-cta { display: none; }
  .menu-toggle { display: grid; gap: 5px; width: 42px; height: 42px; padding: 10px; border: 1px solid var(--line); border-radius: 9px; background: #fff; justify-self: end; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 2px; background: var(--navy); transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .primary-nav { position: absolute; left: 17px; right: 17px; top: 72px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: var(--shadow); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 12px 14px; border-radius: 8px; }
  .primary-nav a:hover { background: var(--mist); }
  .hero { grid-template-columns: 1fr; min-height: 0; padding-block: 75px 70px; }
  h1 { font-size: clamp(43px, 9vw, 64px); }
  .hero-visual { min-height: 490px; }
  .orb-one { right: 50%; transform: translateX(50%); }
  .tool-row { align-items: flex-start; flex-direction: column; gap: 15px; padding-block: 22px; }
  .tool-marquee { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .section-intro { grid-template-columns: 1fr; gap: 22px; }
  .service-grid { grid-template-columns: 1fr; }
  .primary-service-card { grid-column: auto; min-height: 456px; }
  .wide-card { grid-column: auto; min-height: 456px; }
  .wide-card-copy { display: block; padding: 0; }
  .wide-card-copy ul { grid-template-columns: 1fr; }
  .approach-grid, .enquiry-grid { grid-template-columns: 1fr; }
  .about-card { grid-template-columns: 1fr; }
  .about-mark { max-width: 410px; min-height: 330px; margin-inline: auto; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid div { display: block; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 290px; }
  .enquiry-section { margin-top: 50px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .section-block { padding-block: 68px; }
  .hero { padding-block: 60px 54px; }
  h1 { font-size: 42px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .trust-list { grid-template-columns: 1fr; }
  .trust-list li { display: grid; grid-template-columns: 72px 1fr; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
  .trust-list li + li { padding-left: 0; border-left: 0; }
  .trust-list span { margin-top: 0; }
  .hero-visual { min-height: 410px; }
  .orb-one { width: 300px; height: 300px; top: 25px; }
  .orb-two { width: 170px; height: 170px; }
  .insight-panel { min-height: 350px; margin: 0; padding: 20px; border-radius: 20px; }
  .signal-graphic { height: 165px; margin-block: 18px 12px; }
  .expertise-pills span { padding: 6px 9px; font-size: 10px; }
  .panel-note { padding: 12px; }
  .section-intro h2, .about-copy h2, .approach h2, .enquiry-section h2 { font-size: 36px; }
  .service-card { min-height: 485px; padding: 26px; }
  .service-card h3 { font-size: 24px; }
  .primary-service-card ul { grid-template-columns: 1fr; gap: 8px; }
  .primary-service-card::after { right: 4px; font-size: 240px; }
  .card-link { left: 26px; bottom: 25px; }
  .card-number { top: 27px; right: 27px; }
  .wide-card { min-height: 510px; }
  .approach-grid { gap: 50px; }
  .steps-list li { grid-template-columns: 42px 1fr; gap: 15px; }
  .about-card { gap: 35px; padding: 24px; }
  .about-mark { min-height: 245px; padding: 16px; }
  .values-grid { grid-template-columns: 1fr; }
  .enquiry-section { padding-block: 72px; }
  .enquiry-grid { gap: 40px; }
  .enquiry-form { padding: 23px; }
  .field-row { grid-template-columns: 1fr; }
  .direct-contact, .form-actions { grid-template-columns: 1fr; }
  .form-button { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand, .footer-note { grid-column: 1 / -1; }
  .footer-bottom { gap: 10px; flex-direction: column; }
  .auth-modal { padding: 32px 22px 26px; border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
