:root {
  --navy: #08213d;
  --navy-2: #06172c;
  --green: #16875f;
  --gold: #efb904;
  --sky: #2f9fd3;
  --red: #d64545;
  --coral: #ff6b4a;
  --platinum: #edf1f4;
  --silver: #d8e0e6;
  --nickel: #5f6d76;
  --ice: #f8fbfd;
  --graphite: #263238;
  --muted: #61717c;
  --cloud: #f5f8fb;
  --white: #ffffff;
  --line: rgba(135, 154, 166, 0.22);
  --crystal: rgba(255, 255, 255, 0.72);
  --crystal-strong: rgba(255, 255, 255, 0.9);
  --crystal-edge: rgba(255, 255, 255, 0.82);
  --blue-wash: rgba(47, 159, 211, 0.1);
  --shadow: 0 18px 42px rgba(8, 33, 61, 0.055);
  --radius: 8px;
  --container-max: 1280px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-height: 96px;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
}

body {
  margin: 0;
  padding-bottom: 40px;
  color: var(--graphite);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 54%, #edf5fa 100%);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body > *,
main,
header,
footer,
section {
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(110deg, rgba(6, 23, 44, 0.98), rgba(8, 33, 61, 0.95) 48%, rgba(95, 109, 118, 0.9) 78%, rgba(8, 58, 83, 0.92));
  box-shadow: 0 12px 30px rgba(7, 26, 49, 0.16);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  position: relative;
  width: min(1160px, calc(100% - 40px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand img {
  width: 280px;
  height: auto;
  max-width: none;
}

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

.nav-links a {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.14);
  color: var(--gold);
}

.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.nav-links .nav-action {
  color: var(--navy);
}

.nav-action:hover {
  background: var(--green);
  color: var(--white);
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 253, 0.94)),
    var(--ice);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99), rgba(247, 250, 252, 0.96) 60%, rgba(230, 240, 246, 0.82)),
    radial-gradient(circle at 86% 18%, rgba(47, 159, 211, 0.08), transparent 34%);
}

.hero-inner {
  width: min(var(--container-max), calc(100% - (var(--gutter) * 2)));
  min-height: clamp(420px, calc(78svh - var(--header-height)), 620px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: clamp(46px, 6vw, 68px) 0 clamp(38px, 5vw, 56px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), rgba(47, 159, 211, 0.45));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 4.8vw, 4.9rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-shadow: none;
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 30px;
  color: #42545f;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: normal;
}

.button.primary {
  background: linear-gradient(135deg, #f7c720, #efb904);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(239, 185, 4, 0.18);
}

.button.primary:hover {
  background: #ffd042;
}

.button.secondary {
  border-color: rgba(8, 33, 61, 0.18);
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.button.secondary:hover {
  border-color: var(--green);
  background: rgba(255, 255, 255, 0.72);
}

.section {
  padding: clamp(58px, 7vw, 88px) 0;
}

.page-hero + .section {
  padding-top: clamp(36px, 5vw, 58px);
}

.section.tight {
  padding: 58px 0;
}

.section.alt {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(238, 246, 250, 0.66)),
    var(--cloud);
}

.container {
  width: min(var(--container-max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 3.05rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.22;
}

.lead {
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid,
.value-grid,
.client-grid,
.process-grid,
.contact-grid,
.stats-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.value-card,
.client-card,
.process-card,
.contact-card,
.stat-card {
  min-width: 0;
  border: 1px solid rgba(135, 154, 166, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.92));
  box-shadow: 0 14px 34px rgba(8, 33, 61, 0.035);
  backdrop-filter: blur(10px);
}

.service-card {
  min-height: 250px;
  padding: 24px;
}

.icon-mark {
  display: inline-grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(135, 154, 166, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 247, 0.78));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(8, 33, 61, 0.06);
}

.service-card:nth-child(2n) .icon-mark {
  border-color: rgba(47, 159, 211, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(226, 239, 247, 0.78));
  color: var(--navy);
}

.service-card:nth-child(3n) .icon-mark {
  border-color: rgba(22, 135, 95, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(226, 241, 236, 0.74));
  color: var(--green);
}

.icon-mark svg {
  display: block;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.contact-row .icon-mark {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  border-radius: 13px;
}

.contact-row .icon-mark svg {
  width: 23px;
  height: 23px;
}

.service-card p,
.value-card p,
.client-card p,
.process-card p,
.stat-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 42px;
  align-items: center;
}

.panel {
  padding: 30px;
  border: 1px solid rgba(135, 154, 166, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 254, 0.86));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.identity-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 255, 0.92) 58%, rgba(235, 244, 249, 0.78) 100%);
  box-shadow: 0 18px 44px rgba(8, 33, 61, 0.055);
}

.identity-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.62), transparent 36%),
    linear-gradient(180deg, rgba(47, 159, 211, 0.035), rgba(255, 255, 255, 0.18));
  pointer-events: none;
}

.identity-head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid rgba(135, 154, 166, 0.18);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 253, 0.84) 64%, rgba(233, 242, 247, 0.72));
  color: var(--navy);
}

.identity-logo {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(135, 154, 166, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(10, 35, 66, 0.1);
}

.identity-logo img {
  width: 42px;
}

.identity-head span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: none;
}

.identity-head strong {
  color: var(--navy);
  font-size: 1.22rem;
}

.identity-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 10px 26px 24px;
}

.identity-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(135, 154, 166, 0.16);
}

.identity-item.wide {
  grid-column: 1 / -1;
}

.identity-item .icon-mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  border-color: rgba(135, 154, 166, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(241, 247, 251, 0.9)),
    rgba(45, 156, 219, 0.08);
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(8, 33, 61, 0.035);
}

.identity-item .identity-label {
  display: block;
  margin-bottom: 1px;
  color: #687a86;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.identity-item strong,
.identity-item a {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.panel.dark {
  border-color: rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(228, 238, 244, 0.78));
  color: var(--navy);
}

.panel.dark h3,
.panel.dark strong {
  color: var(--navy);
}

.panel.dark p,
.panel.dark li {
  color: var(--muted);
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding: 0 0 12px 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 135, 95, 0.12);
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
}

.value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  padding: 22px;
  background:
    linear-gradient(180deg, #ffffff, #f8fbfd);
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-card {
  padding: 20px;
}

.step {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
}

.page-hero {
  overflow: hidden;
  color: var(--navy);
  background:
    radial-gradient(circle at 86% 16%, rgba(47, 159, 211, 0.06), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 253, 0.96) 54%, rgba(235, 244, 249, 0.9));
  border-bottom: 1px solid rgba(135, 154, 166, 0.14);
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(135, 154, 166, 0.08));
}

.page-hero-grid {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: 34px 0;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 14px;
  font-size: clamp(2.05rem, 3.1vw, 3.35rem);
  line-height: 1.04;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.page-hero p {
  max-width: 820px;
  margin-bottom: 0;
  color: #42545f;
  font-size: 1.12rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.client-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.client-card {
  padding: 28px;
}

.client-card.featured {
  border-color: rgba(22, 135, 95, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 248, 0.86));
}

.client-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(22, 135, 95, 0.1);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.76fr) minmax(320px, 0.64fr);
  align-items: start;
  gap: 22px;
}

.contact-card {
  overflow: hidden;
  padding: 28px;
  border-color: rgba(135, 154, 166, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 254, 0.9));
  box-shadow: 0 18px 40px rgba(8, 33, 61, 0.045);
}

.reach-card {
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(249, 252, 254, 0.9) 58%, rgba(236, 245, 250, 0.76));
}

.enquiry-card {
  border-top: 1px solid rgba(255, 255, 255, 0.78);
}

.contact-card-head {
  padding: 26px 28px 20px;
  border-bottom: 1px solid rgba(135, 154, 166, 0.16);
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 253, 0.86) 58%, rgba(234, 243, 248, 0.7));
  color: var(--navy);
}

.contact-card-head.compact {
  margin: -28px -28px 22px;
  padding: 24px 28px;
}

.contact-card-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: none;
}

.contact-card-head h2 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
}

.contact-card-head p {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 28px;
  border-bottom: 1px solid rgba(135, 154, 166, 0.15);
}

.contact-row:last-child {
  border-bottom: 0;
}

.highlight-row {
  background: rgba(255, 255, 255, 0.3);
}

.office-row {
  align-items: flex-start;
}

.contact-row strong {
  display: block;
  color: var(--navy);
  font-size: 0.96rem;
}

.contact-row span,
.contact-row a {
  color: #536879;
  overflow-wrap: anywhere;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin-top: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(22, 135, 95, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--green) !important;
  font-size: 0.86rem;
  font-weight: 800;
}

.form {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: var(--navy);
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--graphite);
  font: inherit;
  background: var(--white);
}

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

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-status {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.form-status:empty {
  display: none;
}

.form-status[data-tone="pending"] {
  color: var(--nickel);
}

.form-status[data-tone="success"] {
  color: var(--green);
}

.form-status[data-tone="error"] {
  color: var(--red);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 18;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(105deg, var(--navy-2), var(--navy) 50%, var(--nickel) 82%, #0b3856);
  color: var(--white);
  box-shadow: 0 -12px 34px rgba(7, 26, 49, 0.2);
}

.footer-grid {
  display: none;
  grid-template-columns: 1fr 0.8fr 0.8fr;
  gap: 36px;
  padding: 56px 0 36px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.74);
}

.site-footer h3 {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 34px;
  padding: 5px 0;
  border-top: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  line-height: 1.25;
}

@media (max-width: 980px) {
  :root {
    --header-height: 92px;
    --gutter: clamp(14px, 4vw, 28px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: var(--header-height);
    right: 20px;
    left: 20px;
    display: none;
    grid-template-columns: 1fr;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: #08213d;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-action {
    justify-content: center;
  }

  .hero-inner,
  .page-hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-inner {
    min-height: auto;
    padding: clamp(46px, 7vw, 70px) 0 clamp(42px, 7vw, 64px);
  }

  .service-grid,
  .value-grid,
  .process-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  :root {
    --header-height: 92px;
    --gutter: 14px;
  }

  body {
    padding-bottom: 46px;
    overflow-x: hidden;
  }

  .nav-wrap,
  .container,
  .hero-inner {
    width: calc(100vw - 28px);
    max-width: 100%;
  }

  .brand img {
    width: 188px;
    height: auto;
    max-width: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
  }

  .hero {
    background: linear-gradient(135deg, #f6f8fa, var(--platinum) 56%, #dcecf7);
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(246, 248, 250, 0.98), rgba(220, 236, 247, 0.88));
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.78rem, 7.8vw, 2.22rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
  }

  .page-hero h1 {
    max-width: calc(100vw - 28px);
    font-size: clamp(1.42rem, 5.7vw, 1.72rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .page-hero p {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .page-hero-grid {
    min-height: auto;
    gap: 20px;
    padding: 34px 0;
    overflow: hidden;
  }

  .hero-inner {
    gap: 24px;
    padding: 38px 0 30px;
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .panel,
  .identity-panel,
  .contact-card,
  .service-card,
  .value-card,
  .client-card,
  .stat-card,
  .process-card {
    max-width: 100%;
  }

  .contact-row,
  .identity-item {
    min-width: 0;
  }

  .section {
    padding: 52px 0;
  }

  .section.tight {
    padding: 42px 0;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .service-grid,
  .value-grid,
  .process-grid,
  .stats-grid,
  .client-grid,
  .identity-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
    min-height: 38px;
    padding: 5px 0;
    font-size: 0.68rem;
    text-align: center;
  }

  .footer-bottom span:last-child {
    display: none;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
  }
}

@media (max-width: 380px) {
  :root {
    --gutter: 12px;
  }

  .brand img {
    width: 172px;
    height: auto;
    max-width: none;
  }

  h1,
  .page-hero h1 {
    font-size: clamp(1.5rem, 6.6vw, 1.75rem);
  }

  .eyebrow {
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.09em;
  }

  .eyebrow::before {
    width: 30px;
  }
}
