* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--soft);
  line-height: 1.65;
}
body.menu-open {
  overflow: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
.container {
  width: min(var(--content-width), calc(100% - 40px));
  margin: auto;
}
.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 999;
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}
.topbar {
  background: var(--navy);
  color: #dce7f3;
  font-size: 13px;
}
.topbar .container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(223, 229, 236, 0.92);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--navy);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 25px rgba(7, 31, 63, 0.16);
}
.brand-mark svg {
  width: 38px;
  height: 38px;
}
.brand strong {
  display: block;
  font-size: 17px;
  letter-spacing: 0.01em;
  color: var(--navy);
}
.brand small {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.desktop-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-weight: 750;
  font-size: 14px;
}
.desktop-nav a {
  padding: 29px 0;
  position: relative;
}
.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 3px;
  border-radius: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: 0.22s;
}
.desktop-nav a:hover:after,
.desktop-nav a.active:after {
  transform: scaleX(1);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--button-radius);
  font-weight: 850;
  cursor: pointer;
  transition: 0.22s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #efbd4f);
  color: #14213a;
  box-shadow: 0 14px 30px rgba(216, 162, 41, 0.27);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 0;
  place-items: center;
}
.menu-lines,
.menu-lines:before,
.menu-lines:after {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--ink);
  content: "";
  border-radius: 2px;
}
.menu-lines:before {
  transform: translateY(-6px);
}
.menu-lines:after {
  transform: translateY(4px);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(216, 162, 41, 0.18),
      transparent 28%
    ),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
}
.hero:after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 670px;
  padding: 74px 0;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 66px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 900;
  color: var(--gold-2);
}
.eyebrow:before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}
.hero h1 {
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 17px 0 20px;
}
.hero p {
  font-size: 19px;
  color: #d7e4ef;
  max-width: 680px;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.micro-proof {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: #c6d7e4;
  font-size: 13px;
}
.micro-proof span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--button-radius);
  background: rgba(255, 255, 255, 0.06);
}
.hero-outcomes {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.07)
    ),
    radial-gradient(circle at 100% 0, rgba(216, 162, 41, 0.18), transparent 38%);
  backdrop-filter: blur(22px);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.hero-outcomes:before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -100px;
  bottom: -120px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.hero-outcomes-head {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.panel-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-outcomes h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1.14;
  letter-spacing: -0.035em;
}
.hero-outcomes-head p {
  margin: 0;
  color: #d6e3ee;
  font-size: 14px;
}
.outcomes-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.outcome-card {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}
.outcome-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.22);
}
.outcome-card strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.045em;
}
.outcome-card span {
  display: block;
  color: #fff;
  font-weight: 800;
}
.outcome-card small {
  display: block;
  margin-top: 4px;
  color: #bfd0df;
  line-height: 1.4;
}
.outcome-card-accent {
  background: linear-gradient(
    145deg,
    rgba(216, 162, 41, 0.24),
    rgba(255, 255, 255, 0.1)
  );
}
.outcome-card-accent strong {
  color: var(--gold-2);
}
.panel-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: #d9e5ef;
  font-size: 13px;
  font-weight: 700;
}
.panel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(216, 162, 41, 0.13);
}

.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: center;
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
}
.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #f9f2df;
  color: #936b0d;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}
.trust-item div span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: var(--section-spacing) 0;
}
.section.white {
  background: #fff;
}
.section.dark {
  background: var(--navy);
  color: #fff;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.section-head.center {
  display: block;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}
.section-head h2,
.page-hero h1 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 8px 0 0;
}
.section-head p {
  max-width: 650px;
  color: var(--muted);
  margin: 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transition: 0.24s;
  position: relative;
  overflow: hidden;
}
.service-card:before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(216, 162, 41, 0.12), transparent);
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-3));
  color: var(--gold-2);
  margin-bottom: 20px;
}
.service-icon svg {
  width: 27px;
  height: 27px;
}
.kicker {
  font-size: 11px;
  color: #9a7114;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-card h3 {
  font-size: 22px;
  line-height: 1.22;
  margin: 7px 0 11px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 17px;
}
.text-link {
  font-weight: 900;
  color: var(--navy);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}
.copy h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.045em;
  margin: 10px 0 17px;
}
.copy p {
  color: var(--muted);
}
.checks {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.checks li {
  position: relative;
  padding: 8px 0 8px 34px;
  font-weight: 700;
}
.checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f7edcf;
  color: #8c650e;
  font-size: 13px;
}

.audience-grid,
.value-grid,
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.audience,
.value,
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 21px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(7, 31, 63, 0.05);
}
.audience-icon,
.value-icon,
.step span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: var(--gold-2);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.audience h3,
.value h3,
.step h3 {
  margin: 15px 0 7px;
}
.audience p,
.value p,
.step p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.promise-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  position: relative;
  overflow: hidden;
}
.promise-band:after {
  content: "∞";
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-54%);
  font-size: 220px;
  color: rgba(255, 255, 255, 0.04);
  font-family: Georgia, serif;
}
.promise-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.promise-wrap h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  margin: 0;
  color: #fff;
}
.promise-wrap p {
  color: #cbdbe8;
  max-width: 620px;
}

.offer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 44px;
  box-shadow: var(--shadow);
}
.offer h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  margin: 0 0 12px;
}
.offer p {
  color: var(--muted);
}
.offer-box {
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 25px;
}
.offer-box ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: #d9e5ef;
}

.page-hero {
  padding: 78px 0;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(216, 162, 41, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #eef3f9, #fff);
  border-bottom: 1px solid var(--line);
}
.page-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 760px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1.23fr 0.77fr;
  gap: 30px;
}
.surface {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.surface h2,
.surface h3 {
  margin-top: 0;
}
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-detail {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 29px;
  box-shadow: var(--shadow-soft);
}
.service-detail h2 {
  margin: 9px 0 10px;
  font-size: 27px;
}
.service-detail p {
  color: var(--muted);
}
.service-detail ul {
  padding-left: 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
}
.contact-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 19px;
}
.contact-card + .contact-card {
  margin-top: 13px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #f8efd6;
  color: #8f6810;
  font-weight: 900;
}
.form {
  display: grid;
  gap: 14px;
}
.form label {
  font-size: 13px;
  font-weight: 850;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cad5e0;
  border-radius: 13px;
  background: #fbfcfe;
  outline: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 162, 41, 0.13);
}
.form textarea {
  min-height: 145px;
  resize: vertical;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.faq {
  display: grid;
  gap: 13px;
  max-width: 900px;
  margin: auto;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 18px 20px;
}
.faq summary {
  font-weight: 850;
  cursor: pointer;
}
.faq p {
  color: var(--muted);
  margin-bottom: 0;
}

.footer {
  background: #04172f;
  color: #c8d6e5;
  padding: 60px 0 98px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 1.15fr;
  gap: 34px;
}
.footer h3 {
  color: #fff;
}
.footer a {
  color: #e0e8f0;
}
.footer small {
  display: block;
  margin-top: 26px;
  color: #8196aa;
}
.drawer,
.mobile-bottom {
  display: none;
}
.contact-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  background: var(--gold);
  color: #132238;
  padding: 12px 17px;
  border-radius: var(--button-radius);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.6s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(216, 162, 41, 0.48);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  body {
    padding-bottom: 76px;
  }
  .topbar,
  .desktop-nav,
  .header-inner > .btn {
    display: none;
  }
  .menu-btn {
    display: grid;
  }
  .header-inner {
    min-height: 74px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 58px 0;
  }
  .hero-outcomes {
    max-width: 760px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 0;
  }
  .service-grid,
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .offer,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .audience-grid,
  .value-grid,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .drawer {
    position: fixed;
    inset: 74px 0 76px;
    background: rgba(4, 23, 47, 0.52);
    z-index: 90;
  }
  .drawer.open {
    display: block;
  }
  .drawer-panel {
    height: 100%;
    width: min(360px, 88%);
    background: #fff;
    padding: 22px;
    box-shadow: 25px 0 60px rgba(7, 31, 63, 0.2);
  }
  .drawer a {
    display: block;
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
    font-weight: 850;
  }
  .mobile-bottom {
    display: grid;
    position: fixed;
    z-index: 110;
    left: 0;
    right: 0;
    bottom: 0;
    height: 76px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(4, 1fr);
  }
  .mobile-bottom a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 11px;
    color: #576a74;
    font-weight: 750;
  }
  .mobile-bottom a.active {
    color: var(--navy);
  }
  .mobile-bottom svg {
    width: 22px;
    height: 22px;
  }
  .contact-float {
    bottom: 91px;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }
  .brand-mark {
    width: 48px;
    height: 48px;
  }
  .brand strong {
    font-size: 14px;
  }
  .brand small {
    font-size: 9px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .hero p {
    font-size: 17px;
  }
  .hero-grid {
    gap: 32px;
    padding: 48px 0;
  }
  .hero-outcomes {
    padding: 22px;
    border-radius: 24px;
  }
  .outcomes-grid {
    gap: 11px;
  }
  .outcome-card {
    min-height: 138px;
    padding: 17px;
    border-radius: 18px;
  }
  .outcome-card strong {
    font-size: 34px;
  }
  .outcome-card small {
    font-size: 11px;
  }
  .section {
    padding: 60px 0;
  }
  .section-head {
    display: block;
  }
  .section-head p {
    margin-top: 12px;
  }
  .service-grid,
  .services-page-grid {
    grid-template-columns: 1fr;
  }
  .split {
    gap: 34px;
  }
  .why-visual {
    min-height: 500px;
  }
  .audience-grid,
  .value-grid,
  .process,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .offer {
    padding: 28px;
    border-radius: 23px;
  }
  .surface {
    padding: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contact-float {
    right: 14px;
    padding: 11px 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Flexible logo sizing */
.brand-logo {
  display: block;
  width: min(360px, 42vw);
  height: 56px;
  object-fit: contain;
  object-position: left center;
}
.footer-logo {
  display: block;
  width: min(320px, 100%);
  height: auto;
  margin-bottom: 18px;
}
.brand-text-fallback {
  display: none;
}
[data-logo-mode="text"] .brand-logo {
  display: none;
}
[data-logo-mode="text"] .brand-text-fallback {
  display: block;
}
.site-notice {
  display: none;
  padding: 10px 16px;
  background: #fff4d4;
  color: #684b08;
  border-bottom: 1px solid #ead28f;
  text-align: center;
  font-size: 13px;
}
.site-notice.is-visible {
  display: block;
}
.form-status {
  min-height: 22px;
  font-size: 13px;
  margin: 0;
}
.form-status.success {
  color: #157347;
}
.form-status.error {
  color: #b42318;
}
@media (max-width: 620px) {
  .brand-logo {
    width: 250px;
    height: 48px;
  }
  :root {
    --section-spacing: 60px;
  }
}

@media (max-width: 460px) {
  .outcomes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-outcomes h2 {
    font-size: 25px;
  }
  .outcome-card {
    min-height: 130px;
  }
  .outcome-card span {
    font-size: 13px;
  }
}

.why-section {
  position: relative;
  overflow: hidden;
}
.why-section:before {
  content: "";
  position: absolute;
  left: -160px;
  top: 40px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(216, 162, 41, 0.09),
    transparent 68%
  );
}
.why-visual {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(
      110deg,
      rgba(5, 25, 52, 0.98) 0%,
      rgba(7, 31, 63, 0.92) 53%,
      rgba(7, 31, 63, 0.48) 100%
    ),
    url("../images/about-office.webp") center/cover;
  box-shadow: var(--shadow);
}
.why-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(4, 19, 40, 0.48)),
    radial-gradient(
      circle at 78% 25%,
      rgba(45, 177, 224, 0.28),
      transparent 28%
    );
}
.why-visual-content {
  position: relative;
  z-index: 3;
  width: min(78%, 590px);
  padding: 48px;
  color: #fff;
}
.why-visual-content h2 {
  margin: 14px 0 18px;
  font-size: clamp(35px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.why-visual-content p {
  margin: 0;
  color: #d5e2ed;
  font-size: 17px;
}
.visual-benefits {
  display: grid;
  gap: 15px;
  margin-top: 30px;
}
.visual-benefit {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 13px;
  align-items: center;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}
.visual-benefit > span {
  grid-row: 1/3;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  border: 1px solid rgba(216, 162, 41, 0.55);
  color: var(--gold-2);
  font-size: 20px;
}
.visual-benefit strong {
  line-height: 1.2;
}
.visual-benefit small {
  color: #bbccda;
}
.growth-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  transform: rotate(-16deg);
}
.growth-orbit-one {
  width: 460px;
  height: 250px;
  right: -70px;
  bottom: 40px;
}
.growth-orbit-two {
  width: 300px;
  height: 160px;
  right: 10px;
  bottom: 84px;
}
.growth-arrow {
  position: absolute;
  z-index: 3;
  right: 72px;
  top: 95px;
  color: #fff;
  font-size: 118px;
  line-height: 1;
  filter: drop-shadow(0 0 18px rgba(68, 194, 245, 0.65));
  transform: rotate(-4deg);
}

.cta-section {
  padding-top: 20px;
}
.growth-cta {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 30px;
  background:
    linear-gradient(
      90deg,
      rgba(5, 25, 52, 0.98) 0%,
      rgba(5, 25, 52, 0.91) 48%,
      rgba(5, 25, 52, 0.27) 100%
    ),
    url("../images/growth-cta.webp") center/cover;
  box-shadow: var(--shadow);
}
.growth-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 45%,
    rgba(51, 174, 231, 0.2),
    transparent 30%
  );
}
.growth-cta-copy {
  position: relative;
  z-index: 2;
  width: min(64%, 720px);
  padding: 48px;
  color: #fff;
}
.growth-cta-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
.growth-cta-copy p {
  margin: 0;
  color: #d5e2ed;
  font-size: 17px;
}
.growth-cta-proof {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.growth-cta-proof span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 25, 52, 0.46);
  color: #e2ebf3;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

@media (max-width: 980px) {
  .why-visual-content {
    width: min(84%, 650px);
  }
  .growth-arrow {
    right: 45px;
    top: 80px;
  }
  .growth-cta-copy {
    width: 75%;
  }
}
@media (max-width: 700px) {
  .why-visual {
    min-height: 610px;
  }
  .why-visual-content {
    width: 100%;
    padding: 30px 24px;
  }
  .why-visual-content h2 {
    font-size: 38px;
  }
  .growth-arrow {
    right: 18px;
    top: 75px;
    font-size: 78px;
    opacity: 0.45;
  }
  .growth-orbit-one {
    right: -180px;
  }
  .growth-orbit-two {
    right: -90px;
  }
  .growth-cta {
    min-height: 470px;
    align-items: flex-start;
    background-position: 68% center;
  }
  .growth-cta-copy {
    width: 100%;
    padding: 32px 24px;
  }
  .growth-cta-copy h2 {
    font-size: 39px;
  }
  .growth-cta-proof {
    left: 24px;
    right: 24px;
    bottom: 24px;
    justify-content: flex-start;
  }
}
@media (max-width: 460px) {
  .why-visual-content h2 {
    font-size: 34px;
  }
  .visual-benefit {
    padding: 11px;
  }
  .growth-cta {
    min-height: 500px;
  }
  .growth-cta-copy h2 {
    font-size: 35px;
  }
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* Final logo-matched navy/gold visual system */
.brand-logo {
  width: min(320px, 38vw);
  height: 58px;
  object-fit: contain;
  object-position: left center;
}
.footer-logo {
  width: 150px;
  max-height: 90px;
  object-fit: contain;
  object-position: left center;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

/* Centre the numbered hero cards. */
.outcome-card {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.outcome-card strong,
.outcome-card span,
.outcome-card small {
  width: 100%;
  text-align: center;
}

/* Richer inner-page backgrounds. */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 18%,
      rgba(201, 155, 47, 0.17),
      transparent 26%
    ),
    radial-gradient(
      circle at 86% 16%,
      rgba(23, 79, 143, 0.18),
      transparent 30%
    ),
    linear-gradient(135deg, #f6f8fc 0%, #edf3fb 48%, #fff9eb 100%);
}
.page-hero:before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -190px;
  border: 1px solid rgba(8, 31, 66, 0.08);
  border-radius: 50%;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}

.surface,
.service-detail,
.value,
.audience,
.step,
.service-card,
.contact-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.99),
    rgba(245, 249, 255, 0.96)
  );
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.surface:before,
.service-detail:before,
.value:before,
.audience:before,
.step:before,
.contact-card:before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -74px;
  top: -78px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 155, 47, 0.14),
    transparent 68%
  );
  pointer-events: none;
}
.surface:nth-child(even),
.service-detail:nth-child(even),
.value:nth-child(even),
.audience:nth-child(even),
.step:nth-child(even) {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.99),
    rgba(236, 244, 254, 0.97)
  );
}
.service-detail:hover,
.value:hover,
.audience:hover,
.step:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 155, 47, 0.32);
}
main
  > .section:nth-of-type(even):not(.white):not(.dark):not(.promise-band):not(
    .cta-section
  ) {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(23, 79, 143, 0.07),
      transparent 25%
    ),
    radial-gradient(
      circle at 88% 85%,
      rgba(201, 155, 47, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #f8faff, #f2f6fb);
}
.service-detail:after {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 0 5px 5px 0;
  background: linear-gradient(180deg, var(--gold), var(--navy-3));
}
.section-head h2:after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 15px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--navy-3));
}
.section-head.center h2:after {
  margin-left: auto;
  margin-right: auto;
}
.contact-grid .surface {
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(201, 155, 47, 0.12),
      transparent 28%
    ),
    linear-gradient(145deg, #fff, #f2f6fc);
}

.audience-icon,
.value-icon {
  font-size: 0;
}
.audience-icon svg,
.value-icon svg {
  width: 25px;
  height: 25px;
}
.audience-icon {
  background: linear-gradient(145deg, var(--navy), var(--navy-3));
  color: var(--gold-2);
}
.value-icon {
  background: linear-gradient(145deg, #f9eed1, #f2d992);
  color: var(--navy);
}
.icon-mark {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.fa-phone {
    margin: 0 8px;
}

.fa-envelope {
    margin: 0 8px;
}

@media (max-width: 620px) {
  .brand-logo {
    width: 245px;
    height: 48px;
  }
  .footer-logo {
    width: 150px;
  }
}
