:root {
  --ink: #0f2545;
  --ink-2: #183764;
  --muted: #6b7a92;
  --bg: #f4f6fa;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --line: rgba(15, 37, 69, 0.12);
  --navy: #0d2b56;
  --navy-2: #14386c;
  --orange: #f1a12b;
  --orange-2: #ffb03a;
  --shadow: 0 22px 60px rgba(15, 37, 69, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

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

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

.page-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(39, 88, 154, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 37, 69, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.brand {
  width: min(260px, 46vw);
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-family: "Outfit", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.header-cta,
.button-primary {
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #111;
  box-shadow: 0 14px 30px rgba(241, 161, 43, 0.2);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 28, 53, 0.3);
  color: #fff;
}

.site-nav a:hover,
.header-cta:hover,
.button:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hero-shell {
  padding: 18px 0 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(90deg, rgba(7, 21, 42, 0.84), rgba(9, 31, 61, 0.66)),
    linear-gradient(140deg, #1b416d, #0d2b56 62%);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(241, 161, 43, 0.18), transparent 16%),
    radial-gradient(circle at 88% 52%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, auto, 56px 56px, 56px 56px;
  opacity: 0.42;
}

.hero::after {
  content: "";
  position: absolute;
  right: -160px;
  top: 120px;
  width: 620px;
  height: 320px;
  border-radius: 999px;
  background:
    linear-gradient(110deg, transparent 0 22%, rgba(241, 161, 43, 0.24) 22% 23%, transparent 23% 100%),
    linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.15) 38% 39%, transparent 39% 100%),
    radial-gradient(ellipse at center, rgba(35, 84, 150, 0.48), transparent 68%);
  opacity: 0.52;
  transform: rotate(-18deg);
}

.hero-overlay {
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.16));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: 30px;
  padding: 62px 42px 30px;
}

.eyebrow,
.panel-label,
.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-2);
  font-size: 0.76rem;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
}

.hero h1,
.section-heading h2,
.advisory-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 5.8vw, 5.1rem);
}

.hero h1 span {
  color: var(--orange-2);
}

.hero-text,
.advisory-copy p,
.section-heading p,
.service-card p,
.service-card li,
.integration-copy p,
.contact-copy p,
.trust-copy p {
  line-height: 1.72;
}

.hero-text {
  max-width: 36rem;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-panels {
  display: grid;
  gap: 14px;
  align-self: center;
}

.hero-panel {
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.panel-label {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-2);
  font-size: 0.72rem;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
}

.hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 42px 28px;
}

.hero-stats > div {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-weight: 800;
  font-family: "Outfit", sans-serif;
}

.hero-stats strong {
  font-size: 1.02rem;
}

.advisory-section,
.brand-section,
.services-section,
.integration-section,
.contact-section {
  padding: 72px 0;
}

.advisory-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 28px;
  align-items: stretch;
}

.advisory-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0d2b56, #0f2341);
  color: #fff;
  box-shadow: var(--shadow);
}

.advisory-panel::before {
  content: "";
  position: absolute;
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 161, 43, 0.32), transparent 68%);
}

.advisory-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.advisory-panel p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 18rem;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.advisory-copy {
  display: grid;
  gap: 16px;
}

.advisory-copy h2,
.section-heading h2,
.contact-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.advisory-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.credential-grid article,
.service-card,
.brand-logo-tile,
.integration-panel,
.contact-card,
.direct-contact-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.credential-grid article {
  padding: 18px;
  border-radius: 14px;
}

.credential-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "Outfit", sans-serif;
}

.credential-grid p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
}

.section-heading.center {
  justify-items: center;
  text-align: center;
}

.section-heading p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.brand-logo-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  min-height: 128px;
  border-radius: 12px;
  margin: 0;
  padding: 22px;
  background: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-logo-tile img {
  max-width: 88%;
  max-height: 76px;
  object-fit: contain;
  filter: grayscale(100%) opacity(70%);
  transition: filter 180ms ease, transform 180ms ease;
}

.brand-logo-tile:hover img {
  filter: grayscale(0%) opacity(100%);
  transform: translateY(-1px);
}

.brand-logo-tile figcaption {
  color: var(--ink);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.brand-logo-fox {
  width: 58px;
  height: 58px;
}

.brand-logo-wide {
  width: 220px;
}

.trust-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 26px;
  margin-top: 24px;
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0d2b56, #14386c);
  color: #fff;
  box-shadow: var(--shadow);
}

.trust-copy h3 {
  max-width: 20ch;
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.trust-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.trust-metrics {
  display: grid;
  gap: 14px;
}

.trust-metrics > div {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.trust-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Outfit", sans-serif;
}

.trust-metrics span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

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

.service-card {
  position: relative;
  padding: 22px;
  border-radius: 14px;
}

.service-card::before {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(241, 161, 43, 0.82), transparent);
}

.service-card-featured {
  background: linear-gradient(180deg, #0d2b56, #14386c);
  color: #fff;
}

.service-card-featured p,
.service-card-featured li {
  color: rgba(255, 255, 255, 0.8);
}

.service-card h3,
.integration-copy h2 {
  margin: 0 0 10px;
  font-family: "Outfit", sans-serif;
  font-size: 1.28rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.service-card li + li {
  margin-top: 8px;
}

.integration-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.84fr);
  gap: 28px;
  align-items: center;
}

.integration-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  color: var(--ink);
}

.integration-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 42rem;
}

.integration-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.integration-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-2);
  font-weight: 600;
}

.integration-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.integration-panel {
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(180deg, #0d2b56, #14386c);
  color: #fff;
}

.integration-panel .panel-label {
  margin-bottom: 18px;
}

.panel-line + .panel-line {
  margin-top: 16px;
}

.panel-line span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.panel-line div {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.panel-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange-2), #ffd28c);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 16px;
}

.contact-copy {
  padding: 28px;
  background: linear-gradient(180deg, #0d2b56, #14386c);
  color: #fff;
}

.contact-copy h2 {
  max-width: 10ch;
}

.contact-copy p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact-copy a {
  color: #fff;
  font-weight: 700;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-points span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.direct-contact-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 320px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.direct-contact-panel h3 {
  max-width: 18ch;
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.direct-contact-panel p {
  max-width: 34rem;
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.72;
}

.direct-contact-panel .button {
  min-height: 58px;
  padding: 0 28px;
  font-size: 1rem;
}

.direct-contact-note {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-weight: 700;
}

.site-footer {
  padding: 22px 0 36px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  border-top: 1px solid rgba(15, 37, 69, 0.08);
  padding-top: 18px;
}

.footer-inner img {
  width: min(220px, 100%);
}

@media (max-width: 1080px) {
  .hero-grid,
  .advisory-grid,
  .trust-banner,
  .integration-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

  .direct-contact-panel {
    border-left: none;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .header-inner {
    min-height: auto;
    padding: 12px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    border-radius: 0 0 18px 18px;
  }

  .hero-grid {
    padding: 40px 22px 24px;
  }

  .hero h1 {
    font-size: 3.4rem;
  }

  .hero::after {
    width: 380px;
    height: 220px;
    right: -170px;
    top: 220px;
  }

  .hero-stats,
  .credential-grid,
  .brand-grid,
  .services-grid,
  .direct-contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    padding: 0 22px 22px;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .advisory-section,
  .brand-section,
  .services-section,
  .integration-section,
  .contact-section {
    padding: 56px 0;
  }

  .direct-contact-panel {
    padding: 22px;
  }

  .footer-inner {
    display: grid;
  }
}
