:root {
  --bg: #05090a;
  --bg-soft: #0d1418;
  --panel: #10171c;
  --panel-strong: #1a2227;
  --gold: #f8b72b;
  --gold-soft: rgba(248, 183, 43, 0.14);
  --gold-muted: #a07318;
  --cyan: #00b8d4;
  --cyan-muted: #007e93;
  --line: #1d272d;
  --text: #f7f4ee;
  --text-soft: #c9d2dc;
  --text-muted: #8d9aa4;
  --text-faint: #4f5b63;
  --max: 1120px;
  --radius: 4px;
  --radius-sm: 2px;
  --header-height: 78px;
  --shadow: none;
  --glass: #10171c;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
  min-width: 320px;
  overflow-x: hidden;
}

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

[id] {
  scroll-margin-top: calc(var(--header-height) + 8px);
}

button,
input,
select,
textarea {
  font: inherit;
  max-width: 100%;
}

img {
  max-width: 100%;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--bg);
  border-radius: 3px;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: #05090a;
}

.form-toast {
  position: fixed;
  top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
  left: 50%;
  z-index: 140;
  width: min(560px, calc(100vw - 30px));
  padding: 0.66rem 0.92rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
  text-align: center;
  box-shadow: none;
  opacity: 0;
  transform: translate(-50%, -10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.28s cubic-bezier(0.2, 0.8, 0.22, 1);
}

.form-toast.show {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.form-toast.success {
  border-color: rgba(162, 233, 190, 0.56);
  color: rgba(209, 248, 223, 0.98);
}

.form-toast.error {
  border-color: rgba(255, 166, 166, 0.58);
  color: rgba(255, 225, 225, 0.98);
}

.nav {
  position: relative;
  width: min(calc(100% - 48px), var(--max));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  width: clamp(120px, 12vw, 160px);
  height: auto;
  max-width: 100%;
}

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.28rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.85rem;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.18rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button,
.form-submit {
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button-primary,
.form-submit {
  background: var(--gold);
  color: var(--bg);
}

.nav-cta {
  flex-shrink: 0;
  padding: 0 1rem;
}

.button {
  padding: 0 1.35rem;
}

.button,
.nav-cta,
.form-submit,
.enquiry-trigger {
  touch-action: manipulation;
}

.button-secondary {
  min-height: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--text-muted);
  padding: 0.2rem 0;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}

.nav-cta:hover,
.button:hover,
.form-submit:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.hero-section {
  border-bottom: 1px solid var(--line);
  background: #05090a;
}

.hero {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: clamp(2.2rem, 4.5vw, 3.8rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-copy,
.hero-snapshot,
.platform-copy,
.process-list,
.proof-card,
.proof-points,
.lead-panel {
  min-width: 0;
}

.eyebrow,
.panel-kicker,
.partners-label {
  margin: 0 0 0.75rem;
  color: var(--cyan-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-header h2,
.platform-copy h2,
.proof-card h2,
.final-cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 5.6vw, 4.35rem);
}

.hero h1 .hero-accent {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  max-width: 640px;
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: clamp(0.96rem, 1.2vw, 1.06rem);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-assurance {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-assurance span {
  border: 1px solid var(--line);
  border-radius: 2px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 0.46rem 0.72rem;
}

.proof-points span {
  display: flex;
  align-items: center;
  min-height: 92px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  overflow-wrap: anywhere;
  padding: 0.9rem 0.95rem;
}

.hero-snapshot {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 1.1rem;
}

.hero-snapshot::before {
  content: none;
}

.snapshot-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--line);
}

.snapshot-grid div {
  min-height: 108px;
  padding: 1rem 0.9rem;
  background: #05090a;
}

.snapshot-grid strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}

.snapshot-grid span {
  display: block;
  margin-top: 0.42rem;
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.snapshot-note {
  position: relative;
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.lead-panel {
  position: relative;
  overflow: visible;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.lead-panel-header {
  position: relative;
  margin-bottom: 0.85rem;
}

.lead-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 600;
  line-height: 1.1;
}

.lead-panel p {
  margin: 0.38rem 0 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.lead-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.62rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.26rem;
}

.honeypot-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.form-field label {
  color: var(--text-faint);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field label span {
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel-strong);
  color: var(--text);
  padding: 0.58rem 0.74rem;
  font-size: 0.95rem;
  line-height: 1.35;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  overflow-wrap: anywhere;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-faint);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: var(--panel-strong);
}

.enquiry-dropdown {
  position: relative;
  z-index: 12;
}

.enquiry-trigger {
  position: relative;
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--panel-strong);
  color: var(--text-soft);
  cursor: pointer;
  text-align: left;
  padding: 0.58rem 2.35rem 0.58rem 0.74rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.enquiry-trigger span {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enquiry-trigger::after {
  content: "";
  position: absolute;
  right: 0.95rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.6px solid var(--gold);
  border-bottom: 1.6px solid var(--gold);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease;
}

.enquiry-dropdown.open .enquiry-trigger {
  border-color: var(--gold);
  background: var(--panel-strong);
}

.enquiry-dropdown.open .enquiry-trigger::after {
  transform: translateY(-35%) rotate(-135deg);
}

.enquiry-menu {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: calc(100% + 0.42rem);
  z-index: 30;
  padding: 0.42rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: none;
  max-height: min(210px, 38vh);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--panel-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.98);
  transform-origin: bottom center;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.enquiry-dropdown.drop-down .enquiry-menu {
  top: calc(100% + 0.42rem);
  bottom: auto;
  transform-origin: top center;
}

.enquiry-dropdown.open .enquiry-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.enquiry-menu::-webkit-scrollbar {
  width: 8px;
}

.enquiry-menu::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.enquiry-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--gold);
}

.enquiry-menu::-webkit-scrollbar-thumb:hover {
  background: #ffc95c;
}

.enquiry-option {
  width: 100%;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-sm);
  padding: 0.56rem 0.66rem;
  text-align: left;
  font-size: 0.88rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  cursor: pointer;
  touch-action: manipulation;
  transition: background 0.2s ease, color 0.2s ease;
}

.enquiry-option:hover,
.enquiry-option:focus-visible {
  background: var(--gold-soft);
  color: #fff;
}

.enquiry-option.is-active {
  background: var(--gold-soft);
  color: #fff;
}

.form-submit {
  width: 100%;
  margin-top: 0.2rem;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: 0.72;
  transform: none;
}

.form-note {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.78rem;
  text-align: center;
}

.trust-strip {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 1.35rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  min-width: 0;
  padding: 0 1.2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.2rem);
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.section,
.platform-section,
.proof-section,
.partners-section,
.lead-section,
.final-cta,
.footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section,
.platform-section,
.proof-section {
  padding: clamp(2rem, 4vw, 3.15rem) 0;
  border-bottom: 1px solid var(--line);
}

.section-header {
  max-width: 720px;
  margin-bottom: 1.15rem;
}

.section-header h2,
.platform-copy h2,
.proof-card h2,
.final-cta h2 {
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
}

.section-header p,
.platform-copy p,
.proof-card p,
.final-cta p {
  color: var(--text-soft);
  font-size: 0.94rem;
}

.section-header > p:last-child {
  max-width: 620px;
  margin: 0.65rem 0 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.68rem;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.service-card {
  min-height: 164px;
  background: transparent;
  padding: 1.08rem;
  border: 1px solid var(--line);
  border-radius: 0;
}

.service-card span {
  display: block;
  width: 32px;
  height: 1px;
  overflow: hidden;
  color: transparent;
  background: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.service-card h3,
.process-item h3 {
  margin: 0.55rem 0 0.35rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.35;
}

.service-card p,
.process-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.52;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.platform-copy p {
  margin: 0.7rem 0 0;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.process-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.75rem;
  padding: 0.82rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #05090a;
}

.process-item strong {
  color: var(--gold-muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.process-item h3 {
  margin-top: 0;
}

.proof-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: clamp(1.25rem, 4vw, 3rem);
}

.proof-card {
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid var(--line);
  border-left: 2px solid var(--cyan);
  border-radius: var(--radius);
  background: var(--panel);
}

.proof-card p {
  margin: 0.7rem 0 0;
}

.proof-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.partners-section {
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.partners-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 3.2vw, 2.3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.partners-sub {
  max-width: 760px;
  margin: 0.75rem auto 1.2rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.partners-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.72rem;
}

.partners-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  overflow-wrap: anywhere;
  padding: 0.62rem 1.02rem;
}

.lead-section {
  padding: clamp(1.6rem, 3vw, 2.4rem) 0 clamp(2rem, 4vw, 3rem);
  margin-top: 0.55rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lead-section .lead-panel {
  max-width: 1040px;
  margin: 0 auto;
}

.final-cta {
  padding: clamp(2rem, 4vw, 3rem) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta div {
  max-width: 680px;
}

.final-cta p {
  margin: 1rem 0 0;
}

.final-cta a:not(.button) {
  color: var(--gold);
}

.footer {
  padding: 1.7rem 0 1.5rem;
  color: var(--text-muted);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-logo {
  display: block;
  width: clamp(130px, 11vw, 172px);
  height: auto;
  margin-bottom: 0.85rem;
}

.footer-contact,
.footer-col-links a,
.footer-legal {
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer a {
  color: var(--cyan);
}

.footer a:hover {
  color: var(--gold);
}

.footer-col-title {
  margin-bottom: 0.65rem;
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.34rem;
}

.footer-bottom {
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  width: 100%;
  text-align: center;
}

@media (max-width: 1020px) {
  .nav {
    width: min(calc(100% - 36px), var(--max));
  }

  .hero,
  .platform-section,
  .proof-section {
    grid-template-columns: 1fr;
  }

  .hero,
  .trust-strip,
  .section,
  .platform-section,
  .proof-section,
  .partners-section,
  .lead-section,
  .final-cta,
  .footer {
    width: min(calc(100% - 36px), var(--max));
  }

  .lead-panel {
    max-width: 760px;
  }

  .hero-snapshot {
    max-width: 680px;
  }
}

@media (max-width: 820px) {
  .nav {
    min-height: 62px;
    align-items: center;
  }

  .nav-links {
    display: none;
  }

  .trust-strip,
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item {
    padding: 1.2rem;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav,
  .hero,
  .trust-strip,
  .section,
  .platform-section,
  .proof-section,
  .partners-section,
  .lead-section,
  .final-cta,
  .footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav {
    gap: 0.65rem;
  }

  .form-toast {
    top: calc(72px + env(safe-area-inset-top, 0px));
    width: calc(100vw - 20px);
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .brand-logo {
    width: clamp(104px, 32vw, 138px);
  }

  .nav-cta {
    min-height: 40px;
    margin-left: auto;
    max-width: 142px;
    padding: 0 0.7rem;
    text-align: center;
    font-size: 0.64rem;
    line-height: 1.2;
  }

  .hero {
    padding: 3rem 0;
  }

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

  .hero-sub,
  .section-header p,
  .platform-copy p,
  .proof-card p,
  .final-cta p {
    font-size: 0.92rem;
  }

  .trust-strip {
    display: none;
  }

  .hero-actions,
  .final-cta .button {
    width: 100%;
  }

  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }

  .hero-assurance span,
  .proof-points span {
    font-size: 0.76rem;
  }

  .lead-panel {
    padding: 1rem;
  }

  .lead-panel-header p,
  .form-note {
    font-size: 0.8rem;
  }

  .form-field input,
  .form-field textarea,
  .form-field select,
  .enquiry-trigger {
    font-size: 0.9rem;
    padding-inline: 0.66rem;
  }

  .enquiry-trigger {
    padding-right: 2.2rem;
  }

  .form-row,
  .snapshot-grid,
  .proof-points,
  .trust-strip,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .partners-sub {
    margin-bottom: 1rem;
  }

  .partners-list span {
    font-size: 0.85rem;
    padding: 0.54rem 0.84rem;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:nth-last-child(-n+2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: auto;
    padding: 1.25rem;
  }

  .process-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .proof-card {
    border-left-width: 2px;
    padding: 1.2rem;
  }
}

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .motion-section {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 280ms cubic-bezier(0.22, 0.72, 0.22, 1), transform 320ms cubic-bezier(0.22, 0.72, 0.22, 1);
    transition-delay: var(--stagger, 0ms);
    will-change: opacity, transform;
  }

  .motion-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 390px) {
  .nav,
  .hero,
  .trust-strip,
  .section,
  .platform-section,
  .proof-section,
  .partners-section,
  .lead-section,
  .final-cta,
  .footer {
    width: min(calc(100% - 22px), var(--max));
  }

  .nav-cta {
    max-width: 116px;
    font-size: 0.6rem;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 11vw, 2.35rem);
  }

  .eyebrow,
  .panel-kicker,
  .partners-label {
    letter-spacing: 0.12em;
  }
}

@media (max-width: 350px) {
  .brand-logo {
    width: 88px;
  }

  .nav-cta {
    max-width: 98px;
    padding-inline: 0.54rem;
    font-size: 0.56rem;
  }

  .button,
  .form-submit {
    font-size: 0.68rem;
    padding-inline: 0.8rem;
  }

  .hero-actions {
    gap: 0.52rem;
  }

  .lead-panel {
    padding: 0.82rem;
  }

  .hero h1,
  .section-header h2,
  .platform-copy h2,
  .proof-card h2,
  .final-cta h2,
  .lead-panel h2 {
    overflow-wrap: anywhere;
  }

  .partners-list {
    gap: 0.52rem;
  }
}

@media (max-height: 700px) and (max-width: 1020px) {
  .hero {
    padding: clamp(1.8rem, 3.8vw, 2.8rem) 0;
  }

  .section,
  .platform-section,
  .proof-section {
    padding: clamp(1.6rem, 3.5vw, 2.4rem) 0;
  }

  .final-cta {
    padding: clamp(1.6rem, 3.5vw, 2.3rem) 0;
  }
}

@media (hover: none) and (pointer: coarse) {
  .button,
  .nav-cta,
  .form-submit,
  .enquiry-trigger,
  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 44px;
  }

  .enquiry-option {
    min-height: 42px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
