:root {
  --cm-navy: #082b55;
  --cm-navy-deep: #04182f;
  --cm-blue: #0d477d;
  --cm-gold: #d8a735;
  --cm-gold-light: #f4d77d;
  --cm-ink: #17202a;
  --cm-muted: #64707c;
  --cm-soft: #f3f6f7;
  --cm-line: #dce2e6;
  --cm-white: #ffffff;
  --cm-green: #1fa855;
}

* {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cm-ink);
  background: var(--cm-white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
}

body.page-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed !important;
  z-index: 99999;
  inset: 0;
  display: grid !important;
  width: 100% !important;
  height: 100% !important;
  place-items: center;
  color: var(--cm-white);
  background: var(--cm-navy-deep) !important;
  opacity: 1 !important;
  transition: visibility 500ms ease, opacity 500ms ease !important;
}

.page-loader.is-complete {
  visibility: hidden;
  opacity: 0 !important;
}

.page-loader-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 270px;
}

.page-loader-signal {
  display: flex;
  height: 50px;
  align-items: center;
  gap: 7px;
  margin-bottom: 25px;
}

.page-loader-signal i {
  display: block;
  width: 3px;
  height: 14px;
  background: var(--cm-gold-light);
  border-radius: 2px;
  animation: cm-loader-signal 900ms ease-in-out infinite;
}

.page-loader-signal i:nth-child(2),
.page-loader-signal i:nth-child(4) {
  animation-delay: 120ms;
}

.page-loader-signal i:nth-child(3) {
  animation-delay: 240ms;
}

.page-loader-brand span {
  color: var(--cm-white);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.page-loader-brand span em {
  color: var(--cm-gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 600;
}

.page-loader-brand small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-loader-brand > b {
  position: relative;
  width: 150px;
  height: 1px;
  margin-top: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.page-loader-brand > b::after {
  position: absolute;
  width: 58px;
  height: 1px;
  background: var(--cm-gold-light);
  content: "";
  animation: cm-loader-line 1.25s ease-in-out infinite;
}

@keyframes cm-loader-signal {
  0%, 100% { height: 14px; opacity: 0.45; }
  50% { height: 44px; opacity: 1; }
}

@keyframes cm-loader-line {
  0% { left: -58px; }
  100% { left: 150px; }
}

@media (max-width: 1100px) {
  .sales-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 44px;
  }

  .sales-hero-copy h1,
  .ecommerce-hero-copy h1 {
    font-size: 42px;
  }

  .closing-sales-grid {
    grid-template-columns: 1fr 0.8fr;
  }

  .closing-action {
    grid-column: 1 / -1;
    min-height: 200px;
  }
}

@media (max-width: 850px) {
  .hero-sales-conversion,
  .hero-ecommerce-story {
    min-height: 0;
    padding-bottom: 42px;
  }

  .hero-sales-conversion::after {
    display: none;
  }

  .sales-backword,
  .ecommerce-index {
    display: none;
  }

  .sales-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sales-hero-copy {
    padding: 42px 0 36px;
  }

  .sales-hero-media {
    height: 420px;
  }

  .sales-hero-media figure {
    height: 385px;
  }

  .sales-hero-media aside {
    left: 18px;
  }

  .sales-process-rail {
    grid-template-columns: 1fr 1fr;
  }

  .sales-process-rail span:nth-child(2) {
    border-right: 0;
  }

  .ecommerce-hero-stage {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 34px;
  }

  .ecommerce-hero-stage > figure,
  .ecommerce-hero-copy,
  .ecommerce-demand-list {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .ecommerce-hero-stage > figure {
    height: 410px;
    order: 1;
  }

  .ecommerce-hero-copy {
    order: 2;
    margin-top: -54px;
    padding: 40px;
  }

  .ecommerce-demand-list {
    order: 3;
  }

  .closing-sales-grid,
  .closing-ecommerce-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .closing-action {
    grid-column: auto;
  }

  .closing-ecommerce figure {
    height: 400px;
  }

  .closing-ecommerce-copy {
    margin: -74px 24px 0;
    padding: 42px;
    border-right: 1px solid var(--cm-line);
    border-left: 1px solid var(--cm-line);
  }
}

@media (max-width: 560px) {
  .sales-hero-copy h1,
  .ecommerce-hero-copy h1 {
    font-size: 34px;
  }

  .sales-hero-media {
    height: 340px;
  }

  .sales-hero-media figure {
    height: 305px;
  }

  .sales-hero-media aside {
    right: 12px;
    left: 12px;
  }

  .sales-hero-media aside strong {
    font-size: 10px;
  }

  .sales-process-rail {
    grid-template-columns: 1fr;
  }

  .sales-process-rail span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--cm-line);
  }

  .ecommerce-hero-stage > figure {
    height: 300px;
  }

  .ecommerce-hero-copy {
    margin-top: -32px;
    padding: 30px 24px;
  }

  .ecommerce-demand-list {
    grid-template-columns: 1fr 1fr;
  }

  .ecommerce-demand-list span {
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .closing-sales,
  .closing-ecommerce {
    padding: 64px 0;
  }

  .closing-sales-grid > div:first-child h2,
  .closing-ecommerce-copy h2 {
    font-size: 31px;
  }

  .closing-ecommerce figure {
    height: 310px;
  }

  .closing-ecommerce-copy {
    margin: -44px 12px 0;
    padding: 30px 22px;
  }

  .closing-ecommerce-copy .hero-actions {
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader-signal i,
  .page-loader-brand > b::after {
    animation: none;
  }
}

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

h1,
h2,
h3,
h4 {
  color: var(--cm-ink);
  font-family: "Manrope", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.13;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(8, 43, 85, 0.1);
  box-shadow: 0 8px 30px rgba(4, 24, 47, 0.06);
}

.topline {
  color: rgba(255, 255, 255, 0.86);
  background: var(--cm-navy-deep);
  font-size: 12px;
  font-weight: 600;
}

.topline .cm-container {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
}

.topline a {
  color: var(--cm-white);
}

.topline i {
  margin-right: 6px;
  color: var(--cm-gold-light);
}

.nav-shell {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 190px;
  align-items: center;
  justify-content: flex-start;
}

.brand-logo {
  display: block;
  width: 170px;
  height: 76px;
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  color: var(--cm-white);
  background: var(--cm-navy);
  border: 2px solid var(--cm-gold);
  border-radius: 50%;
}

.brand-mark .fa-headset {
  font-size: 19px;
}

.brand-mark .fa-feather-pointed {
  position: absolute;
  right: -6px;
  top: -5px;
  color: var(--cm-gold);
  font-size: 15px;
  transform: rotate(18deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--cm-navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  white-space: nowrap;
}

.brand-copy small {
  margin-top: 7px;
  color: var(--cm-muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.main-nav > a,
.main-nav > .nav-group > a {
  position: relative;
  padding: 28px 0;
  color: #263542;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav > a::after,
.main-nav > .nav-group > a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--cm-gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:hover,
.main-nav > a.active,
.main-nav > .nav-group > a:hover,
.main-nav > .nav-group > a.active {
  color: var(--cm-navy);
}

.main-nav > a:hover::after,
.main-nav > a.active::after,
.main-nav > .nav-group > a:hover::after,
.main-nav > .nav-group > a.active::after {
  transform: scaleX(1);
}

.nav-group {
  display: flex;
  align-items: center;
}

.mega-toggle {
  display: inline-grid;
  width: 22px;
  height: 34px;
  margin-left: 3px;
  place-items: center;
  color: var(--cm-muted);
  background: transparent;
  border: 0;
  font-size: 9px;
}

.mega-toggle i {
  transition: transform 180ms ease;
}

.mega-menu {
  position: absolute;
  z-index: 1100;
  top: 100%;
  right: 0;
  left: 0;
  visibility: hidden;
  padding: 0 0 24px;
  background: var(--cm-white);
  border-top: 1px solid var(--cm-line);
  box-shadow: 0 24px 50px rgba(4, 24, 47, 0.16);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.mega-open .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.has-mega:hover .mega-toggle i,
.has-mega:focus-within .mega-toggle i,
.has-mega.mega-open .mega-toggle i {
  transform: rotate(180deg);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1.25fr repeat(4, 1fr);
  gap: 32px;
  padding-top: 28px;
}

.mega-intro {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding-right: 28px;
  border-right: 1px solid var(--cm-line);
}

.mega-intro img {
  width: 64px;
  height: 48px;
  margin-bottom: 10px;
  object-fit: contain;
  object-position: left center;
}

.mega-intro > span {
  margin-bottom: 7px;
  color: #9b741b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.mega-intro > strong {
  margin-bottom: 14px;
  color: var(--cm-navy);
  font-size: 18px;
  line-height: 1.35;
}

.mega-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cm-blue);
  font-size: 11px;
  font-weight: 800;
}

.mega-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.mega-column > i {
  margin-bottom: 12px;
  color: var(--cm-gold);
  font-size: 20px;
}

.mega-column > strong {
  min-height: 42px;
  color: var(--cm-navy);
  font-size: 13px;
  line-height: 1.35;
}

.mega-column > a {
  width: 100%;
  padding: 7px 0;
  color: var(--cm-muted);
  border-bottom: 1px solid #edf0f2;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.mega-column > a:hover {
  color: var(--cm-blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: var(--cm-navy);
  background: transparent;
  border: 1px solid var(--cm-line);
  border-radius: 6px;
}

.cm-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.cm-btn:hover {
  transform: translateY(-2px);
}

.cm-btn-small {
  min-height: 42px;
  padding: 0 17px;
  font-size: 12px;
}

.cm-btn-gold {
  color: var(--cm-navy-deep);
  background: var(--cm-gold-light);
  border-color: var(--cm-gold-light);
}

.cm-btn-gold:hover {
  color: var(--cm-white);
  background: var(--cm-navy);
  border-color: var(--cm-navy);
}

.cm-btn-ghost {
  color: var(--cm-white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.45);
}

.cm-btn-ghost:hover {
  color: var(--cm-navy-deep);
  background: var(--cm-white);
  border-color: var(--cm-white);
}

.cm-btn-light {
  color: var(--cm-navy-deep);
  background: var(--cm-white);
}

.cm-btn-outline {
  color: var(--cm-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
}

.home-hero {
  position: relative;
  display: flex;
  min-height: min(760px, 86vh);
  align-items: center;
  overflow: hidden;
  background: var(--cm-navy-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scaleX(-1) scale(1.01);
}

.hero-shade {
  background: linear-gradient(90deg, rgba(4, 24, 47, 0.97) 0%, rgba(4, 24, 47, 0.82) 38%, rgba(4, 24, 47, 0.28) 72%, rgba(4, 24, 47, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--cm-gold-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  margin-right: 10px;
  background: currentColor;
  content: "";
}

.eyebrow.dark {
  color: #a27716;
}

.hero-content h1 {
  max-width: 690px;
  margin-bottom: 25px;
  color: var(--cm-white);
  font-size: 68px;
  line-height: 1.01;
}

.hero-content h1 em {
  color: var(--cm-gold-light);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
}

.hero-content > p {
  max-width: 600px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof i {
  margin-right: 6px;
  color: var(--cm-gold-light);
}

.trust-strip {
  position: relative;
  z-index: 3;
  padding: 0;
  background: var(--cm-navy-deep);
  border-top: 1px solid rgba(226, 169, 39, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip .cm-container {
  display: grid;
  height: 86px;
  min-height: 86px;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.trust-strip span {
  display: flex;
  min-width: 0;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.trust-strip span i {
  flex: 0 0 auto;
  color: var(--cm-gold-light);
  font-size: 17px;
}

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

.section-band {
  padding: 100px 0;
  background: var(--cm-white);
}

.section-soft {
  background: var(--cm-soft);
}

.section-navy {
  color: rgba(255, 255, 255, 0.75);
  background: var(--cm-navy-deep);
}

.section-navy h2,
.section-navy h3 {
  color: var(--cm-white);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-heading.wide {
  max-width: 820px;
}

.section-heading h2,
.split-layout h2,
.faq-layout h2,
.form-layout h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

.section-heading p,
.split-layout p,
.faq-layout > div > p,
.form-layout > div > p {
  color: var(--cm-muted);
  font-size: 17px;
}

.section-navy .split-layout p {
  color: rgba(255, 255, 255, 0.72);
}

.service-feature-list {
  border-top: 1px solid var(--cm-line);
}

.service-feature-list > a {
  display: grid;
  min-height: 132px;
  grid-template-columns: 48px 56px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid var(--cm-line);
  transition: background 180ms ease, padding 180ms ease;
}

.service-feature-list > a:hover {
  padding: 0 22px;
  background: var(--cm-soft);
}

.service-feature-list > a > span {
  color: #8b959e;
  font-size: 13px;
  font-weight: 800;
}

.service-feature-list > a > i:first-of-type {
  color: var(--cm-gold);
  font-size: 29px;
}

.service-feature-list h3 {
  margin-bottom: 8px;
  color: var(--cm-navy);
  font-size: 23px;
}

.service-feature-list p {
  margin: 0;
  color: var(--cm-muted);
}

.service-feature-list > a > i:last-child {
  color: var(--cm-navy);
}

.center-action {
  margin-top: 40px;
  text-align: center;
}

.cm-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cm-navy);
  border-bottom: 2px solid var(--cm-gold);
  font-weight: 800;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 80px;
}

.split-layout.align-center {
  align-items: center;
}

.metric-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.metric-board > div {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.metric-board strong {
  color: var(--cm-gold-light);
  font-size: 27px;
}

.metric-board span {
  color: var(--cm-white);
  font-size: 14px;
  font-weight: 700;
}

.sector-cloud {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--cm-line);
  border-left: 1px solid var(--cm-line);
}

.sector-cloud a {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  color: var(--cm-navy);
  border-right: 1px solid var(--cm-line);
  border-bottom: 1px solid var(--cm-line);
  font-size: 14px;
  font-weight: 800;
}

.sector-cloud a:hover {
  color: var(--cm-white);
  background: var(--cm-navy);
}

.process-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--cm-line);
  border-left: 1px solid var(--cm-line);
}

.process-list.horizontal {
  grid-template-columns: repeat(4, 1fr);
}

.process-list article {
  display: flex;
  min-height: 185px;
  gap: 22px;
  padding: 32px;
  border-right: 1px solid var(--cm-line);
  border-bottom: 1px solid var(--cm-line);
}

.process-list article > span {
  color: var(--cm-gold);
  font-size: 16px;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 10px;
  color: var(--cm-navy);
  font-size: 19px;
}

.process-list p {
  margin: 0;
  color: var(--cm-muted);
  font-size: 14px;
}

.process-section {
  overflow: hidden;
}

.process-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-flow::before {
  position: absolute;
  right: 12.5%;
  bottom: 38px;
  left: 12.5%;
  height: 1px;
  background: rgba(8, 43, 85, 0.18);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  grid-template-rows: 74px auto 1fr 78px;
  justify-items: center;
  padding: 0 24px;
  text-align: center;
}

.process-step-symbol {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--cm-gold);
  background: #fff8e8;
  border-radius: 50%;
  font-size: 23px;
  transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.process-step:hover .process-step-symbol {
  color: var(--cm-white);
  background: var(--cm-gold);
  transform: translateY(-5px);
}

.process-step h3 {
  margin: 12px 0 8px;
  color: var(--cm-navy);
  font-size: 18px;
}

.process-step p {
  max-width: 250px;
  margin: 0;
  color: var(--cm-muted);
  font-size: 13px;
  line-height: 1.65;
}

.process-step-icon-box {
  align-self: end;
  margin-top: 24px;
}

.process-step-icon {
  position: relative;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  overflow: hidden;
  color: var(--cm-white);
  background: var(--cm-navy);
  border: 7px solid var(--cm-white);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(4, 24, 47, 0.16);
  font-size: 14px;
  font-weight: 800;
  transition: background 250ms ease, transform 250ms ease;
}

.process-step .process-step-icon {
  display: grid;
  place-items: center;
}

.section-soft .process-step-icon {
  border-color: var(--cm-soft);
}

.process-step:hover .process-step-icon {
  background: var(--cm-gold);
  transform: scale(1.07);
}

.process-step-icon .number {
  position: static;
  z-index: 2;
  display: block;
  inset: auto;
  color: var(--cm-white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  opacity: 1;
  visibility: visible;
  white-space: nowrap;
  transform: none;
  -webkit-text-fill-color: currentColor;
  -webkit-text-stroke: 0;
}

.process-step-icon .box-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.infographic-cycle-section {
  background: linear-gradient(180deg, var(--cm-white) 0%, #f5f7f8 100%);
}

.infographic-cycle-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
}

.infographic-cycle-card {
  --cycle-accent: var(--cm-blue);
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 210px;
  grid-template-rows: 58px auto;
  align-content: start;
  padding: 28px 26px 25px;
  overflow: hidden;
  background: var(--cm-white);
  border: 1px solid var(--cm-line);
  border-left: 4px solid var(--cycle-accent);
  border-radius: 6px;
  box-shadow: 0 18px 38px rgba(4, 24, 47, 0.08);
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.infographic-cycle-card::before {
  position: absolute;
  z-index: -1;
  top: -45px;
  right: -45px;
  width: 118px;
  height: 118px;
  background: color-mix(in srgb, var(--cycle-accent) 15%, white);
  border-radius: 50%;
  content: "";
}

.infographic-cycle-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 38px;
  height: 38px;
  background: linear-gradient(225deg, #eef2f4 0 49%, transparent 50% 100%);
  border-left: 1px solid color-mix(in srgb, var(--cycle-accent) 35%, white);
  border-bottom: 1px solid color-mix(in srgb, var(--cycle-accent) 35%, white);
  content: "";
}

.infographic-cycle-card:hover {
  border-color: color-mix(in srgb, var(--cycle-accent) 55%, white);
  box-shadow: 0 24px 48px rgba(4, 24, 47, 0.13);
  transform: translateY(-6px);
}

.cycle-tone-1 {
  --cycle-accent: #0d477d;
}

.cycle-tone-2 {
  --cycle-accent: #d8a735;
}

.cycle-tone-3 {
  --cycle-accent: #138b83;
}

.cycle-tone-4 {
  --cycle-accent: #d6634d;
}

.cycle-number {
  position: absolute;
  z-index: 0;
  top: 2px;
  right: 62px;
  color: color-mix(in srgb, var(--cycle-accent) 18%, white);
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.infographic-cycle-card > div {
  position: relative;
  z-index: 1;
}

.cycle-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--cycle-accent);
  background: color-mix(in srgb, var(--cycle-accent) 9%, white);
  border: 1px solid color-mix(in srgb, var(--cycle-accent) 20%, white);
  border-radius: 50%;
  font-size: 19px;
}

.infographic-cycle-card h3 {
  margin: 15px 0 8px;
  color: var(--cm-navy);
  font-size: 17px;
}

.infographic-cycle-card p {
  margin: 0;
  color: var(--cm-muted);
  font-size: 12px;
  line-height: 1.65;
}

.quote-panel {
  padding: 44px;
  color: var(--cm-white);
  background: var(--cm-blue);
  border-left: 5px solid var(--cm-gold);
}

.quote-panel > i {
  margin-bottom: 28px;
  color: var(--cm-gold-light);
  font-size: 32px;
}

.quote-panel p {
  color: var(--cm-white);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.4;
}

.quote-panel span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-brand-story {
  display: grid;
  grid-template-columns: minmax(480px, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 34px 68px;
}

.home-brand-story > figure {
  position: relative;
  height: 560px;
  grid-row: 1 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 24px 55px rgba(4, 24, 47, 0.14);
}

.home-brand-story > figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(8, 43, 85, 0.1);
  border-radius: inherit;
  content: "";
}

.home-brand-story > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-brand-story > div h2 {
  margin-bottom: 18px;
  font-size: 40px;
}

.home-brand-story > div p {
  color: var(--cm-muted);
}

.home-brand-story .quote-panel {
  padding: 26px 0 0 28px;
  color: var(--cm-navy);
  background: transparent;
  border-left: 3px solid var(--cm-gold);
}

.home-brand-story .quote-panel > i {
  display: none;
}

.home-brand-story .quote-panel p {
  margin-bottom: 14px;
  color: var(--cm-navy);
  font-size: 21px;
}

.home-brand-story .quote-panel span {
  color: var(--cm-muted);
}

.subhero {
  position: relative;
  padding: 82px 0 88px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--cm-navy-deep);
  overflow: hidden;
}

.subhero::after {
  position: absolute;
  right: -110px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(244, 215, 125, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(244, 215, 125, 0.03), 0 0 0 130px rgba(244, 215, 125, 0.025);
  content: "";
}

.subhero .cm-container {
  position: relative;
  z-index: 2;
}

.subhero.compact {
  padding: 72px 0 78px;
}

.detail-hero,
.collection-visual-hero,
.simple-visual-hero,
.form-visual-hero {
  position: relative;
  overflow: hidden;
}

.detail-hero h1,
.collection-visual-hero h1,
.simple-visual-hero h1,
.form-visual-hero h1 {
  margin-bottom: 20px;
  font-size: 52px;
  line-height: 1.08;
}

.detail-hero p,
.collection-visual-hero p,
.simple-visual-hero p,
.form-visual-hero p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.7;
}

/* Bespoke detail concepts: approved samples before wider rollout. */
.bespoke-hero {
  isolation: isolate;
}

.hero-sales-conversion {
  min-height: 690px;
  padding: 34px 0 0;
  background: #f7f8f8;
}

.hero-sales-conversion::after {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  background: var(--cm-navy-deep);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

.hero-sales-conversion .breadcrumbs {
  color: var(--cm-muted);
}

.sales-backword {
  position: absolute;
  z-index: -1;
  bottom: 86px;
  left: max(24px, calc((100% - 1180px) / 2));
  color: transparent;
  font-size: 142px;
  font-weight: 800;
  line-height: 0.8;
  opacity: 0.7;
  -webkit-text-stroke: 1px rgba(8, 43, 85, 0.1);
}

.sales-hero-grid {
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 72px;
}

.sales-hero-copy {
  position: relative;
  z-index: 2;
  padding: 38px 0 70px;
}

.sales-hero-copy h1 {
  max-width: 680px;
  color: var(--cm-navy);
  font-size: 50px;
}

.sales-hero-copy > p {
  max-width: 620px;
  color: var(--cm-muted);
}

.sales-hero-copy .cm-btn-ghost,
.ecommerce-hero-copy .cm-btn-ghost {
  color: var(--cm-navy);
  border-color: rgba(8, 43, 85, 0.24);
}

.sales-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 28px;
}

.sales-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cm-navy);
  font-size: 11px;
  font-weight: 800;
}

.sales-proof i {
  color: var(--cm-gold);
}

.sales-hero-media {
  position: relative;
  z-index: 2;
  height: 465px;
}

.sales-hero-media figure {
  width: 100%;
  height: 430px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(7% 0, 100% 0, 100% 88%, 91% 100%, 0 100%, 0 12%);
  box-shadow: 0 28px 60px rgba(4, 24, 47, 0.2);
}

.sales-hero-media figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sales-hero-media aside {
  position: absolute;
  right: 30px;
  bottom: 0;
  left: -30px;
  padding: 20px 24px;
  color: var(--cm-navy-deep);
  background: var(--cm-gold-light);
  border-left: 5px solid var(--cm-navy);
}

.sales-hero-media aside span {
  display: block;
  margin-bottom: 5px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.sales-hero-media aside strong {
  font-size: 12px;
}

.sales-hero-media aside i {
  margin: 0 7px;
  font-size: 9px;
}

.sales-process-rail {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--cm-white);
  border-top: 1px solid var(--cm-line);
  border-right: 1px solid var(--cm-line);
  border-left: 1px solid var(--cm-line);
}

.sales-process-rail span {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 13px;
  padding: 16px 20px;
  color: var(--cm-navy);
  border-right: 1px solid var(--cm-line);
  font-size: 11px;
  font-weight: 800;
}

.sales-process-rail span:last-child {
  border-right: 0;
}

.sales-process-rail b {
  color: var(--cm-gold);
  font-size: 10px;
}

.hero-ecommerce-story {
  min-height: 730px;
  padding: 34px 0 60px;
  background: var(--cm-white);
}

.hero-ecommerce-story::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 290px;
  background: var(--cm-navy-deep);
  content: "";
}

.hero-ecommerce-story .breadcrumbs {
  color: rgba(255, 255, 255, 0.64);
}

.ecommerce-hero-stage {
  position: relative;
  min-height: 605px;
}

.ecommerce-hero-stage > figure {
  position: absolute;
  top: 38px;
  right: 0;
  width: 68%;
  height: 500px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
}

.ecommerce-hero-stage > figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ecommerce-hero-copy {
  position: absolute;
  z-index: 3;
  top: 120px;
  left: 0;
  width: 56%;
  padding: 48px 50px 44px;
  background: var(--cm-white);
  border-left: 5px solid var(--cm-gold);
  box-shadow: 0 26px 55px rgba(4, 24, 47, 0.15);
}

.ecommerce-hero-copy h1 {
  color: var(--cm-navy);
  font-size: 46px;
}

.ecommerce-hero-copy > p {
  color: var(--cm-muted);
  font-size: 15px;
}

.ecommerce-index {
  position: absolute;
  z-index: 2;
  top: 62px;
  right: 26px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  color: var(--cm-white);
}

.ecommerce-index strong {
  font-size: 76px;
  line-height: 0.9;
  opacity: 0.34;
}

.ecommerce-index span {
  margin-top: 10px;
  color: var(--cm-gold-light);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.ecommerce-demand-list {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  display: grid;
  width: 68%;
  grid-template-columns: repeat(4, 1fr);
  color: var(--cm-white);
  background: var(--cm-navy);
}

.ecommerce-demand-list span {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 800;
}

.ecommerce-demand-list span:last-child {
  border-right: 0;
}

.ecommerce-demand-list i {
  color: var(--cm-gold-light);
}

.hero-split {
  color: rgba(255, 255, 255, 0.75);
  background: var(--cm-navy-deep);
  padding: 34px 0 58px;
}

.hero-split-grid {
  display: grid;
  min-height: 410px;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 70px;
}

.hero-split h1,
.hero-cover h1 {
  color: var(--cm-white);
}

.hero-split-copy > p,
.hero-cover-content p {
  color: rgba(255, 255, 255, 0.72);
}

.hero-split figure {
  position: relative;
  height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
}

.hero-split figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: inherit;
  content: "";
}

.hero-split figure img,
.hero-editorial figure img,
.hero-offset-media img,
.collection-visual-hero figure img,
.simple-visual-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cover {
  min-height: 590px;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.78);
}

.hero-cover-image,
.collection-cover-hero > img,
.collection-career-hero > img,
.collection-global-hero > img,
.simple-about-hero > img,
.form-visual-hero > img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  object-fit: cover;
}

.hero-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 24, 47, 0.97) 0%, rgba(4, 24, 47, 0.85) 44%, rgba(4, 24, 47, 0.15) 100%);
}

.hero-cover-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 590px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 0 68px;
}

.hero-cover-content > div {
  max-width: 650px;
}

.hero-page-number {
  position: absolute;
  right: 0;
  bottom: 34px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 88px;
  font-weight: 800;
  line-height: 1;
}

.hero-editorial {
  padding: 34px 0 70px;
  background: var(--cm-white);
}

.hero-editorial .breadcrumbs,
.hero-offset .breadcrumbs,
.collection-sector-hero .breadcrumbs,
.collection-guide-hero .breadcrumbs {
  color: var(--cm-muted);
}

.hero-editorial .breadcrumbs a:hover,
.hero-offset .breadcrumbs a:hover,
.collection-sector-hero .breadcrumbs a:hover,
.collection-guide-hero .breadcrumbs a:hover {
  color: var(--cm-navy);
}

.hero-editorial-grid {
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(480px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 75px;
}

.hero-editorial figure {
  height: 405px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 22px 48px rgba(4, 24, 47, 0.13);
}

.hero-editorial h1,
.hero-offset h1 {
  color: var(--cm-navy);
}

.hero-editorial-copy > p,
.hero-offset-copy > p {
  color: var(--cm-muted);
}

.hero-editorial .cm-btn-ghost,
.hero-offset .cm-btn-ghost {
  color: var(--cm-navy);
  border-color: rgba(8, 43, 85, 0.25);
}

.hero-category-note {
  display: block;
  margin-top: 28px;
  color: var(--cm-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-category-note b {
  padding: 0 6px;
  color: var(--cm-gold);
}

.hero-offset {
  padding: 34px 0 76px;
  background: var(--cm-soft);
}

.hero-offset-grid {
  display: grid;
  grid-template-columns: minmax(460px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 85px;
}

.hero-offset-media {
  position: relative;
  height: 390px;
}

.hero-offset-media img {
  border-radius: 6px;
  box-shadow: 0 22px 50px rgba(4, 24, 47, 0.15);
}

.hero-offset-media > span {
  position: absolute;
  right: -38px;
  bottom: -28px;
  color: transparent;
  font-size: 128px;
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(8, 43, 85, 0.18);
}

.collection-visual-hero h1,
.simple-visual-hero h1,
.form-visual-hero h1 {
  font-size: 54px;
}

.collection-service-hero {
  padding: 34px 0 64px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--cm-navy-deep);
}

.collection-service-grid {
  display: grid;
  min-height: 410px;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: 75px;
}

.collection-service-grid h1,
.collection-cover-hero h1,
.collection-career-hero h1,
.collection-global-hero h1,
.simple-about-hero h1,
.form-visual-hero h1 {
  color: var(--cm-white);
}

.collection-service-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.collection-service-grid figure {
  height: 405px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.collection-sector-hero,
.collection-guide-hero {
  padding: 34px 0 74px;
  background: var(--cm-white);
}

.collection-editorial-grid,
.collection-guide-grid {
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(500px, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 80px;
}

.collection-editorial-grid figure,
.collection-guide-grid figure {
  height: 410px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 22px 50px rgba(4, 24, 47, 0.13);
}

.collection-editorial-grid h1,
.collection-guide-grid h1 {
  color: var(--cm-navy);
}

.collection-editorial-grid p,
.collection-guide-grid p {
  color: var(--cm-muted);
}

.collection-guide-hero {
  background: var(--cm-soft);
}

.collection-guide-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
}

.collection-guide-grid figure img {
  object-position: center;
}

.guide-hero-meta {
  display: flex;
  gap: 34px;
  margin-top: 30px;
}

.guide-hero-meta span {
  color: var(--cm-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-hero-meta b {
  display: block;
  margin-bottom: 4px;
  color: var(--cm-navy);
  font-size: 28px;
}

.collection-cover-hero,
.collection-career-hero,
.collection-global-hero,
.simple-about-hero,
.form-visual-hero {
  min-height: 560px;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.76);
}

.collection-cover-shade,
.collection-career-shade,
.collection-global-shade,
.simple-about-shade,
.form-hero-shade,
.form-career-shade {
  position: absolute;
  inset: 0;
}

.collection-cover-shade,
.form-hero-shade {
  background: linear-gradient(90deg, rgba(4, 24, 47, 0.96) 0%, rgba(4, 24, 47, 0.82) 46%, rgba(4, 24, 47, 0.08) 100%);
}

.collection-cover-hero > .cm-container,
.collection-career-hero > .cm-container,
.collection-global-hero > .cm-container,
.simple-about-hero > .cm-container,
.form-visual-hero > .cm-container {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 0 70px;
}

.collection-cover-copy,
.collection-career-copy,
.collection-global-copy,
.simple-about-hero .cm-container > div,
.form-visual-hero .cm-container > div {
  max-width: 650px;
}

.collection-cover-copy p,
.collection-career-copy p,
.collection-global-copy p,
.simple-about-hero p,
.form-visual-hero p {
  color: rgba(255, 255, 255, 0.74);
}

.collection-career-shade {
  background: linear-gradient(90deg, rgba(4, 24, 47, 0.94) 0%, rgba(4, 24, 47, 0.72) 38%, rgba(4, 24, 47, 0.08) 72%);
}

.collection-global-shade {
  background: linear-gradient(270deg, rgba(4, 24, 47, 0.96) 0%, rgba(4, 24, 47, 0.78) 43%, rgba(4, 24, 47, 0.08) 74%);
}

.collection-global-copy {
  align-self: flex-end;
}

.simple-about-shade {
  background: linear-gradient(270deg, rgba(4, 24, 47, 0.94) 0%, rgba(4, 24, 47, 0.76) 43%, rgba(4, 24, 47, 0.08) 76%);
}

.simple-about-hero .cm-container > div {
  align-self: flex-end;
}

.simple-contact-hero,
.simple-policy-hero {
  padding: 58px 0;
  background: var(--cm-white);
}

.simple-contact-hero > .cm-container,
.simple-policy-hero > .cm-container {
  display: grid;
  min-height: 400px;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  align-items: center;
  gap: 75px;
}

.simple-contact-hero figure,
.simple-policy-hero figure {
  height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 22px 48px rgba(4, 24, 47, 0.13);
}

.simple-contact-hero h1,
.simple-policy-hero h1 {
  color: var(--cm-navy);
}

.simple-contact-hero p,
.simple-policy-hero p {
  color: var(--cm-muted);
}

.simple-policy-hero {
  background: var(--cm-soft);
}

.simple-thanks-hero {
  padding: 70px 0;
  color: rgba(255, 255, 255, 0.75);
  background: var(--cm-navy-deep);
}

.simple-thanks-hero > .cm-container {
  display: grid;
  min-height: 260px;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: 60px;
}

.simple-thanks-hero img {
  width: 160px;
  height: 140px;
  object-fit: contain;
}

.simple-thanks-hero h1 {
  color: var(--cm-white);
}

.form-career-shade {
  background: linear-gradient(90deg, rgba(4, 24, 47, 0.95) 0%, rgba(4, 24, 47, 0.74) 40%, rgba(4, 24, 47, 0.08) 75%);
}

.how-hero {
  padding: 78px 0 86px;
}

.how-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.how-hero h1 {
  max-width: 760px;
}

.how-hero-visual {
  position: relative;
  height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.how-hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4, 24, 47, 0.02) 35%, rgba(4, 24, 47, 0.92) 100%);
  content: "";
}

.how-hero-visual::before {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 28px;
  width: 3px;
  height: 72px;
  background: var(--cm-gold-light);
  content: "";
}

.how-hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.how-hero-visual figcaption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 70px;
  left: 28px;
}

.how-hero-visual figcaption span {
  display: block;
  margin-bottom: 7px;
  color: var(--cm-gold-light);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.how-hero-visual figcaption strong {
  display: block;
  max-width: 430px;
  color: var(--cm-white);
  font-size: 20px;
  line-height: 1.35;
}

.how-hero-visual > div {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(4, 24, 47, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.how-hero-visual > div span {
  padding: 14px 8px;
  color: rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.how-hero-visual > div span:last-child {
  border-right: 0;
}

.how-proof-strip {
  padding: 0 !important;
  background: var(--cm-white);
  border-bottom: 1px solid var(--cm-line);
}

.how-proof-strip .cm-container {
  display: grid;
  min-height: 92px;
  grid-template-columns: repeat(4, 1fr);
}

.how-proof-strip span {
  display: grid;
  grid-template-columns: 24px 30px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: var(--cm-navy);
  border-right: 1px solid var(--cm-line);
  font-size: 12px;
  font-weight: 800;
}

.how-proof-strip span:first-child {
  border-left: 1px solid var(--cm-line);
}

.how-proof-strip i {
  color: var(--cm-gold);
  font-size: 20px;
  text-align: center;
}

.how-proof-strip b {
  color: rgba(8, 43, 85, 0.32);
  font-size: 10px;
}

.how-proof-strip em {
  color: var(--cm-navy);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.35;
}

.setup-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 90px;
}

.setup-copy {
  position: sticky;
  top: 155px;
}

.setup-copy h2,
.operation-flow-layout h2,
.reporting-layout h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

.setup-copy p,
.reporting-layout p {
  color: var(--cm-muted);
  font-size: 16px;
}

.setup-list {
  border-top: 1px solid var(--cm-line);
}

.setup-list article {
  display: grid;
  min-height: 132px;
  grid-template-columns: 38px 54px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--cm-line);
  transition: padding 220ms ease, background 220ms ease;
}

.setup-list article:hover {
  padding: 0 20px;
  background: var(--cm-white);
}

.setup-list article > span {
  color: rgba(8, 43, 85, 0.34);
  font-size: 11px;
  font-weight: 800;
}

.setup-list article > i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--cm-gold);
  background: #fff8e8;
  border-radius: 50%;
  font-size: 19px;
}

.setup-list h3 {
  margin-bottom: 6px;
  color: var(--cm-navy);
  font-size: 18px;
}

.setup-list p {
  margin: 0;
  color: var(--cm-muted);
  font-size: 13px;
}

.operation-flow-section {
  position: relative;
  overflow: hidden;
}

.operation-flow-section::after {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -220px;
  top: -220px;
  border: 1px solid rgba(244, 215, 125, 0.14);
  border-radius: 50%;
  content: "";
}

.operation-flow-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 90px;
}

.operation-flow-layout > div:first-child > p {
  color: rgba(255, 255, 255, 0.7);
}

.check-list.light {
  margin-top: 28px;
}

.check-list.light li {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

.operation-roadmap {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.operation-roadmap article {
  display: grid;
  min-height: 74px;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  color: var(--cm-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.operation-roadmap article > span {
  color: var(--cm-gold-light);
  font-size: 12px;
  font-weight: 800;
}

.operation-roadmap article > strong {
  font-size: 15px;
}

.operation-roadmap article > i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--cm-navy-deep);
  background: var(--cm-gold-light);
  border-radius: 50%;
  font-size: 10px;
}

.reporting-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: 90px;
}

.reporting-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.reporting-tags span {
  padding: 8px 11px;
  color: var(--cm-navy);
  background: var(--cm-soft);
  border-left: 2px solid var(--cm-gold);
  font-size: 10px;
  font-weight: 800;
}

.reporting-board {
  padding: 12px 36px;
  background: var(--cm-soft);
  border-top: 4px solid var(--cm-gold);
  border-radius: 6px;
  box-shadow: 0 20px 45px rgba(4, 24, 47, 0.1);
}

.reporting-board > div {
  display: grid;
  min-height: 92px;
  grid-template-columns: minmax(0, 1fr) auto 36px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--cm-line);
}

.reporting-board > div:last-child {
  border-bottom: 0;
}

.reporting-board span {
  color: var(--cm-muted);
  font-size: 12px;
  font-weight: 700;
}

.reporting-board strong {
  color: var(--cm-navy);
  font-size: 13px;
}

.reporting-board i {
  color: var(--cm-gold);
  font-size: 18px;
  text-align: center;
}

.subhero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  color: var(--cm-white);
  font-size: 54px;
}

.subhero p {
  max-width: 760px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 18px;
}

.collection-hero p {
  margin-bottom: 0;
}

.services-hero {
  padding-bottom: 76px;
}

.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
  gap: 70px;
}

.services-hero-grid p {
  margin-bottom: 0;
}

.services-hero-grid > img {
  width: 170px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.25));
}

.service-jump {
  position: sticky;
  z-index: 800;
  top: 116px;
  background: var(--cm-white);
  border-bottom: 1px solid var(--cm-line);
  box-shadow: 0 10px 25px rgba(4, 24, 47, 0.06);
}

.service-jump .cm-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-jump a {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-right: 1px solid var(--cm-line);
}

.service-jump a:first-child {
  border-left: 1px solid var(--cm-line);
}

.service-jump a:hover {
  color: var(--cm-white);
  background: var(--cm-navy);
}

.service-jump a > i {
  width: 28px;
  color: var(--cm-gold);
  font-size: 21px;
  text-align: center;
}

.service-jump a span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.service-jump a strong {
  color: var(--cm-navy);
  font-size: 12px;
  line-height: 1.3;
}

.service-jump a:hover strong {
  color: var(--cm-white);
}

.service-jump a small {
  margin-top: 4px;
  color: var(--cm-muted);
  font-size: 9px;
  font-weight: 600;
}

.service-jump a:hover small {
  color: rgba(255, 255, 255, 0.7);
}

.service-group-band {
  padding: 76px 0;
  scroll-margin-top: 205px;
}

.service-group-heading {
  display: grid;
  max-width: 860px;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 32px;
}

.group-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--cm-navy);
  background: var(--cm-gold-light);
  border-radius: 50%;
  font-size: 15px;
  font-weight: 800;
}

.service-group-heading h2 {
  margin-bottom: 12px;
  color: var(--cm-navy);
  font-size: 38px;
}

.service-group-heading p {
  margin: 0;
  color: var(--cm-muted);
  font-size: 16px;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 148px;
  grid-template-columns: 52px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 22px 20px;
  background: var(--cm-white);
  border: 1px solid var(--cm-line);
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(4, 24, 47, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  position: absolute;
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--cm-gold);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(216, 167, 53, 0.55);
  box-shadow: 0 16px 32px rgba(4, 24, 47, 0.09);
  transform: translateY(-3px);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--cm-gold);
  background: #fff8e8;
  border-radius: 50%;
  font-size: 21px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-card:hover .service-card-icon {
  color: var(--cm-white);
  background: var(--cm-gold);
  transform: rotate(-5deg);
}

.service-card h3 {
  margin-bottom: 6px;
  color: var(--cm-navy);
  font-size: 17px;
}

.service-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 7px;
  color: var(--cm-muted);
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.service-card .service-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--cm-blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--cm-navy);
  background: var(--cm-soft);
  border-radius: 50%;
  font-size: 11px;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.service-card:hover .service-card-arrow {
  color: var(--cm-white);
  background: var(--cm-navy);
  transform: translateX(2px);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--cm-gold-light);
}

.breadcrumbs i {
  font-size: 8px;
}

.fact-panel {
  position: relative;
  align-self: start;
  overflow: hidden;
  padding: 46px;
  color: var(--cm-white);
  background: var(--cm-navy);
  border-radius: 6px;
  box-shadow: 0 22px 50px rgba(4, 24, 47, 0.16);
}

.fact-panel::after {
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(244, 215, 125, 0.16);
  border-radius: 50%;
  content: "";
}

.fact-panel-mark {
  position: absolute;
  right: 22px;
  top: 20px;
  opacity: 0.13;
}

.fact-panel-mark img {
  width: 105px;
  height: 90px;
  object-fit: contain;
}

.fact-panel > span {
  display: block;
  margin-bottom: 18px;
  color: var(--cm-gold-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.fact-panel > strong {
  display: block;
  margin-bottom: 28px;
  color: var(--cm-white);
  font-size: 26px;
  line-height: 1.3;
}

.fact-panel ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-panel li,
.check-list li {
  padding: 8px 0;
  color: var(--cm-muted);
  border-bottom: 1px solid var(--cm-line);
}

.fact-panel li {
  color: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

.fact-panel li:last-child,
.check-list li:last-child {
  border-bottom: 0;
}

.fact-panel i,
.check-list i {
  width: 22px;
  color: var(--cm-gold);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-item {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  padding: 30px;
  background: var(--cm-white);
  border: 1px solid rgba(8, 43, 85, 0.08);
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(4, 24, 47, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.benefit-item::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 120px;
  height: 120px;
  background: #fff8e8;
  border-radius: 50%;
  content: "";
  transition: transform 250ms ease;
}

.benefit-item:hover {
  border-color: rgba(216, 167, 53, 0.5);
  box-shadow: 0 20px 38px rgba(4, 24, 47, 0.11);
  transform: translateY(-5px);
}

.benefit-item:hover::after {
  transform: scale(1.25);
}

.benefit-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--cm-gold);
  background: #fff8e8;
  border-radius: 50%;
  font-size: 23px;
}

.benefit-index {
  position: absolute;
  right: 24px;
  top: 22px;
  color: rgba(8, 43, 85, 0.22);
  font-size: 12px;
  font-weight: 800;
}

.benefit-item h3 {
  margin-bottom: 13px;
  color: var(--cm-navy);
  font-size: 18px;
}

.benefit-item p {
  margin: 0;
  color: var(--cm-muted);
  font-size: 14px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
}

.faq-list details {
  border-top: 1px solid var(--cm-line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--cm-line);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--cm-navy);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list summary i {
  transition: transform 180ms ease;
}

.faq-list details p {
  padding: 0 40px 24px 0;
  color: var(--cm-muted);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.topic-link {
  display: grid;
  min-height: 122px;
  grid-template-columns: 55px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 22px;
  padding: 22px 24px;
  background: var(--cm-white);
  border: 1px solid var(--cm-line);
  border-radius: 6px;
  box-shadow: 0 8px 22px rgba(4, 24, 47, 0.04);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.topic-link:hover {
  padding-right: 24px;
  padding-left: 24px;
  border-color: var(--cm-gold);
  box-shadow: 0 16px 30px rgba(4, 24, 47, 0.09);
  transform: translateY(-3px);
}

.topic-link > span {
  color: #8e99a2;
  font-size: 12px;
  font-weight: 800;
}

.topic-link h3 {
  margin-bottom: 7px;
  color: var(--cm-navy);
  font-size: 20px;
}

.topic-link p {
  margin: 0;
  color: var(--cm-muted);
  font-size: 14px;
}

.topic-link > i {
  color: var(--cm-gold);
}

.prose {
  max-width: 850px;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 80px;
}

.editorial-aside {
  position: sticky;
  top: 150px;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  overflow: hidden;
  padding: 38px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--cm-navy);
  border-radius: 6px;
}

.editorial-aside::before {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -95px;
  top: -90px;
  border: 1px solid rgba(244, 215, 125, 0.2);
  border-radius: 50%;
  content: "";
}

.editorial-aside img {
  position: absolute;
  right: 28px;
  top: 30px;
  width: 125px;
  height: 110px;
  object-fit: contain;
}

.editorial-aside > span {
  margin-bottom: 12px;
  color: var(--cm-gold-light);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-aside > strong {
  margin-bottom: 28px;
  color: var(--cm-white);
  font-size: 22px;
  line-height: 1.4;
}

.editorial-aside > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cm-white);
  border-bottom: 2px solid var(--cm-gold);
  font-size: 12px;
  font-weight: 800;
}

.prose h2 {
  position: relative;
  margin: 54px 0 20px;
  padding-top: 22px;
  color: var(--cm-navy);
  font-size: 32px;
}

.prose h2::before {
  position: absolute;
  width: 44px;
  height: 3px;
  left: 0;
  top: 0;
  background: var(--cm-gold);
  content: "";
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  color: var(--cm-muted);
  font-size: 17px;
}

.prose a {
  color: var(--cm-blue);
  text-decoration: underline;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 0;
  align-items: start;
  overflow: hidden;
  background: var(--cm-white);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(4, 24, 47, 0.12);
}

.form-intro {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  padding: 52px 46px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--cm-navy);
}

.form-intro::after {
  position: absolute;
  width: 250px;
  height: 250px;
  right: -120px;
  bottom: -110px;
  border: 1px solid rgba(244, 215, 125, 0.2);
  border-radius: 50%;
  content: "";
}

.form-intro > img {
  width: 92px;
  height: 80px;
  margin-bottom: 38px;
  object-fit: contain;
}

.form-intro h2,
.form-intro p {
  color: var(--cm-white);
}

.form-intro .check-list {
  margin: 30px 0;
}

.form-intro .check-list li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.13);
}

.form-intro > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cm-gold-light);
  font-size: 13px;
  font-weight: 800;
}

.cm-form {
  display: grid;
  gap: 20px;
  padding: 42px;
  background: var(--cm-white);
  border-top: 0;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cm-form label {
  display: grid;
  gap: 8px;
  color: var(--cm-navy);
  font-size: 12px;
  font-weight: 800;
}

.cm-form input,
.cm-form select,
.cm-form textarea {
  width: 100%;
  color: var(--cm-ink);
  background: var(--cm-white);
  border: 1px solid #ccd5da;
  border-radius: 4px;
  outline: none;
}

.cm-form input,
.cm-form select {
  height: 52px;
  padding: 0 15px;
}

.cm-form textarea {
  min-height: 120px;
  padding: 14px 15px;
  resize: vertical;
}

.cm-form input:focus,
.cm-form select:focus,
.cm-form textarea:focus {
  border-color: var(--cm-gold);
  box-shadow: 0 0 0 3px rgba(216, 167, 53, 0.14);
}

.cm-form label small {
  color: var(--cm-muted);
  font-size: 11px;
  font-weight: 500;
}

.cm-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--cm-muted);
  font-weight: 500;
  line-height: 1.5;
}

.cm-form .consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
}

.cm-form .consent a {
  color: var(--cm-blue);
  text-decoration: underline;
}

.cm-form .cm-btn {
  width: fit-content;
}

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

.form-status {
  min-height: 24px;
  color: var(--cm-muted);
  font-size: 13px;
}

.form-status.error {
  color: #a72626;
}

.form-status.success {
  color: #11743a;
}

.success-message {
  padding: 50px;
  text-align: center;
  background: var(--cm-soft);
  border-top: 4px solid var(--cm-gold);
}

.success-message > i {
  margin-bottom: 20px;
  color: var(--cm-green);
  font-size: 56px;
}

.cta-band {
  color: var(--cm-white);
  background: var(--cm-blue);
}

.cta-band .cm-container {
  display: flex;
  min-height: 270px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-band h2 {
  max-width: 760px;
  margin: 0;
  color: var(--cm-white);
  font-size: 38px;
}

.bespoke-closing {
  position: relative;
  overflow: hidden;
}

.closing-sales {
  padding: 95px 0;
  background: #f5f7f8;
  border-top: 1px solid var(--cm-line);
}

.closing-sales-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(270px, 0.68fr) minmax(260px, 0.6fr);
  align-items: stretch;
  gap: 55px;
}

.closing-sales-grid > div:first-child h2 {
  margin-bottom: 18px;
  color: var(--cm-navy);
  font-size: 38px;
}

.closing-sales-grid > div:first-child p {
  margin: 0;
  color: var(--cm-muted);
}

.sales-diagnostic {
  border-top: 1px solid var(--cm-line);
}

.sales-diagnostic article {
  display: grid;
  min-height: 74px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--cm-line);
}

.sales-diagnostic b {
  color: var(--cm-gold);
  font-size: 10px;
}

.sales-diagnostic span {
  color: var(--cm-navy);
  font-size: 12px;
  font-weight: 800;
}

.closing-action {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 34px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--cm-navy-deep);
  border-top: 5px solid var(--cm-gold);
}

.closing-action > span {
  margin-bottom: 9px;
  color: var(--cm-gold-light);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.closing-action > strong {
  margin-bottom: 24px;
  color: var(--cm-white);
  font-size: 18px;
  line-height: 1.45;
}

.closing-ecommerce {
  padding: 90px 0;
  background: var(--cm-white);
  border-top: 1px solid var(--cm-line);
}

.closing-ecommerce-grid {
  display: grid;
  min-height: 480px;
  grid-template-columns: minmax(520px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.closing-ecommerce figure {
  position: relative;
  height: 480px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 0 100%);
}

.closing-ecommerce figure::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  background: var(--cm-gold);
  content: "";
}

.closing-ecommerce figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.closing-ecommerce-copy {
  position: relative;
  z-index: 2;
  margin-left: -38px;
  padding: 52px 0 52px 70px;
  background: var(--cm-white);
  border-top: 1px solid var(--cm-line);
  border-bottom: 1px solid var(--cm-line);
}

.closing-ecommerce-copy h2 {
  margin-bottom: 18px;
  color: var(--cm-navy);
  font-size: 40px;
}

.closing-ecommerce-copy > p {
  color: var(--cm-muted);
}

.closing-channel-row {
  display: flex;
  margin: 28px 0;
  border-top: 1px solid var(--cm-line);
  border-bottom: 1px solid var(--cm-line);
}

.closing-channel-row span {
  flex: 1;
  padding: 12px;
  color: var(--cm-navy);
  border-right: 1px solid var(--cm-line);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.closing-channel-row span:last-child {
  border-right: 0;
}

.closing-ecommerce-copy .hero-actions {
  align-items: center;
}

.site-footer {
  padding-top: 78px;
  color: rgba(255, 255, 255, 0.65);
  background: var(--cm-navy-deep);
}

.site-footer .brand-copy strong,
.site-footer .brand-copy small {
  color: var(--cm-white);
}

.site-footer .brand-logo {
  width: 180px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 4px;
}

.site-footer .brand-mark {
  background: transparent;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 1fr 1fr;
  gap: 55px;
  padding-bottom: 60px;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid p {
  margin: 8px 0 0;
  font-size: 13px;
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--cm-white);
  font-size: 14px;
}

.footer-grid a,
.footer-grid span {
  font-size: 13px;
}

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

.footer-grid i {
  width: 18px;
  color: var(--cm-gold-light);
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 11px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  color: var(--cm-white);
  background: var(--cm-green);
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(10, 73, 36, 0.28);
  font-size: 13px;
  font-weight: 800;
}

.whatsapp-float i {
  font-size: 22px;
}

@media (max-width: 850px) {
  .detail-hero h1,
  .collection-visual-hero h1,
  .simple-visual-hero h1,
  .form-visual-hero h1 {
    font-size: 43px;
  }

  .hero-split,
  .hero-editorial,
  .hero-offset,
  .collection-service-hero,
  .collection-sector-hero,
  .collection-guide-hero {
    padding: 28px 0 58px;
  }

  .hero-split-grid,
  .hero-editorial-grid,
  .hero-offset-grid,
  .collection-service-grid,
  .collection-editorial-grid,
  .collection-guide-grid,
  .simple-contact-hero > .cm-container,
  .simple-policy-hero > .cm-container {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-split-grid figure,
  .hero-editorial-grid figure,
  .hero-offset-media,
  .collection-service-grid figure,
  .collection-editorial-grid figure,
  .collection-guide-grid figure,
  .simple-contact-hero figure,
  .simple-policy-hero figure {
    width: 100%;
    height: 340px;
  }

  .hero-editorial-grid figure,
  .collection-editorial-grid figure {
    order: 2;
  }

  .hero-offset-media > span {
    right: 20px;
    bottom: -22px;
    font-size: 104px;
  }

  .collection-guide-grid figure {
    order: 2;
  }

  .collection-global-copy,
  .simple-about-hero .cm-container > div {
    align-self: flex-start;
  }

  .collection-cover-hero,
  .collection-career-hero,
  .collection-global-hero,
  .simple-about-hero,
  .form-visual-hero,
  .collection-cover-hero > .cm-container,
  .collection-career-hero > .cm-container,
  .collection-global-hero > .cm-container,
  .simple-about-hero > .cm-container,
  .form-visual-hero > .cm-container {
    min-height: 610px;
  }

  .collection-global-shade,
  .simple-about-shade {
    background: linear-gradient(90deg, rgba(4, 24, 47, 0.95) 0%, rgba(4, 24, 47, 0.76) 55%, rgba(4, 24, 47, 0.2) 100%);
  }

  .collection-global-hero > img,
  .simple-about-hero > img {
    object-position: 42% center;
  }

  .simple-contact-hero,
  .simple-policy-hero {
    padding: 52px 0;
  }
}

@media (max-width: 560px) {
  .detail-hero h1,
  .collection-visual-hero h1,
  .simple-visual-hero h1,
  .form-visual-hero h1 {
    margin-bottom: 15px;
    font-size: 35px;
  }

  .detail-hero p,
  .collection-visual-hero p,
  .simple-visual-hero p,
  .form-visual-hero p {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-split,
  .hero-editorial,
  .hero-offset,
  .collection-service-hero,
  .collection-sector-hero,
  .collection-guide-hero {
    padding: 22px 0 46px;
  }

  .hero-split-grid,
  .hero-editorial-grid,
  .hero-offset-grid,
  .collection-service-grid,
  .collection-editorial-grid,
  .collection-guide-grid,
  .simple-contact-hero > .cm-container,
  .simple-policy-hero > .cm-container {
    gap: 28px;
  }

  .hero-split-grid figure,
  .hero-editorial-grid figure,
  .hero-offset-media,
  .collection-service-grid figure,
  .collection-editorial-grid figure,
  .collection-guide-grid figure,
  .simple-contact-hero figure,
  .simple-policy-hero figure {
    height: 255px;
  }

  .hero-split figure img,
  .collection-service-grid figure img,
  .simple-contact-hero figure img {
    object-position: 67% center;
  }

  .hero-offset-media > span {
    right: 12px;
    bottom: -15px;
    font-size: 76px;
  }

  .hero-cover,
  .hero-cover-content {
    min-height: 630px;
  }

  .hero-cover-content {
    padding: 22px 0 48px;
  }

  .hero-cover-image,
  .collection-cover-hero > img,
  .form-offer-hero > img {
    object-position: 69% center;
  }

  .hero-cover-shade,
  .collection-cover-shade,
  .form-hero-shade {
    background: linear-gradient(180deg, rgba(4, 24, 47, 0.3) 0%, rgba(4, 24, 47, 0.75) 43%, rgba(4, 24, 47, 0.98) 100%);
  }

  .hero-page-number {
    right: 4px;
    bottom: 20px;
    font-size: 62px;
  }

  .hero-category-note {
    margin-top: 22px;
    font-size: 9px;
  }

  .collection-cover-hero,
  .collection-career-hero,
  .collection-global-hero,
  .simple-about-hero,
  .form-visual-hero,
  .collection-cover-hero > .cm-container,
  .collection-career-hero > .cm-container,
  .collection-global-hero > .cm-container,
  .simple-about-hero > .cm-container,
  .form-visual-hero > .cm-container {
    min-height: 640px;
  }

  .collection-cover-hero > .cm-container,
  .collection-career-hero > .cm-container,
  .collection-global-hero > .cm-container,
  .simple-about-hero > .cm-container,
  .form-visual-hero > .cm-container {
    padding: 22px 0 48px;
  }

  .collection-career-hero > img,
  .form-career-hero > img {
    object-position: 58% center;
  }

  .collection-career-shade,
  .form-career-shade {
    background: linear-gradient(180deg, rgba(4, 24, 47, 0.22) 0%, rgba(4, 24, 47, 0.68) 43%, rgba(4, 24, 47, 0.98) 100%);
  }

  .collection-global-hero > img,
  .simple-about-hero > img {
    object-position: 34% center;
  }

  .collection-global-shade,
  .simple-about-shade {
    background: linear-gradient(180deg, rgba(4, 24, 47, 0.3) 0%, rgba(4, 24, 47, 0.72) 45%, rgba(4, 24, 47, 0.98) 100%);
  }

  .guide-hero-meta {
    gap: 26px;
    margin-top: 22px;
  }

  .guide-hero-meta b {
    font-size: 24px;
  }

  .simple-contact-hero,
  .simple-policy-hero {
    padding: 44px 0;
  }

  .simple-thanks-hero {
    padding: 52px 0;
  }

  .simple-thanks-hero > .cm-container {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .simple-thanks-hero img {
    width: 112px;
    height: 98px;
  }
}

@media (max-width: 1100px) {
  .nav-shell {
    gap: 16px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav > a,
  .main-nav > .nav-group > a {
    font-size: 12px;
  }

  .mega-menu-inner {
    gap: 22px;
  }

  .nav-cta {
    display: none;
  }

  .process-list.horizontal {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  .cm-container {
    width: min(100% - 32px, 720px);
  }

  .topline span {
    display: none;
  }

  .topline .cm-container {
    justify-content: flex-end;
  }

  .nav-shell {
    min-height: 70px;
    justify-content: space-between;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 104px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 18px;
    background: var(--cm-white);
    border-bottom: 1px solid var(--cm-line);
    box-shadow: 0 20px 30px rgba(4, 24, 47, 0.12);
    max-height: calc(100vh - 104px);
    overflow-y: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .main-nav > .nav-group > a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--cm-line);
    font-size: 14px;
  }

  .main-nav > a::after,
  .main-nav > .nav-group > a::after {
    display: none;
  }

  .nav-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .mega-toggle {
    width: 44px;
    height: 46px;
    margin: 0;
    border-bottom: 1px solid var(--cm-line);
  }

  .mega-menu {
    position: static;
    display: none;
    grid-column: 1 / -1;
    visibility: visible;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .has-mega:hover .mega-menu,
  .has-mega:focus-within .mega-menu {
    display: none;
  }

  .has-mega.mega-open .mega-menu {
    display: block;
  }

  .mega-menu-inner {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 22px 8px;
  }

  .mega-intro {
    grid-column: 1 / -1;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid var(--cm-line);
  }

  .service-jump {
    position: relative;
    top: auto;
  }

  .service-jump .cm-container {
    grid-template-columns: 1fr 1fr;
  }

  .service-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-hero {
    min-height: 720px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 35% center;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(4, 24, 47, 0.25) 0%, rgba(4, 24, 47, 0.7) 43%, rgba(4, 24, 47, 0.98) 100%);
  }

  .hero-content {
    padding: 230px 0 60px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .trust-strip .cm-container {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .trust-strip span {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip span:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .section-band {
    padding: 72px 0;
  }

  .section-heading h2,
  .split-layout h2,
  .faq-layout h2,
  .form-layout h2 {
    font-size: 34px;
  }

  .service-feature-list > a {
    min-height: 140px;
    grid-template-columns: 34px 44px minmax(0, 1fr) 20px;
    gap: 14px;
  }

  .split-layout,
  .faq-layout,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .sector-cloud {
    grid-template-columns: 1fr 1fr;
  }

  .subhero h1 {
    font-size: 43px;
  }

  .cta-band .cm-container {
    min-height: 290px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .cm-container {
    width: calc(100% - 28px);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-logo {
    width: 145px;
    height: 56px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-copy small {
    margin-top: 5px;
    font-size: 8px;
  }

  .main-nav {
    top: 104px;
  }

  .services-hero-grid {
    grid-template-columns: 1fr 90px;
    gap: 20px;
  }

  .services-hero-grid > img {
    width: 90px;
    height: 82px;
  }

  .service-group-band {
    padding: 58px 0;
  }

  .service-group-heading {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
  }

  .group-number {
    width: 44px;
    height: 44px;
  }

  .service-group-heading h2 {
    font-size: 29px;
  }

  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-jump a {
    min-height: 78px;
    padding: 12px;
  }

  .service-jump a small {
    display: none;
  }

  .home-hero {
    min-height: 700px;
  }

  .hero-content {
    padding-bottom: 45px;
  }

  .hero-content h1 {
    font-size: 39px;
  }

  .hero-content > p,
  .subhero p {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .cm-btn {
    width: 100%;
  }

  .hero-proof {
    gap: 10px 18px;
  }

  .section-band {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .split-layout h2,
  .faq-layout h2,
  .form-layout h2,
  .cta-band h2 {
    font-size: 29px;
  }

  .service-feature-list > a {
    min-height: 0;
    grid-template-columns: 28px 34px minmax(0, 1fr);
    padding: 22px 0;
  }

  .service-feature-list > a > i:last-child {
    display: none;
  }

  .service-feature-list h3 {
    font-size: 18px;
  }

  .service-feature-list p {
    font-size: 13px;
  }

  .metric-board,
  .sector-cloud,
  .process-list,
  .process-list.horizontal,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .metric-board > div {
    min-height: 110px;
  }

  .subhero,
  .subhero.compact {
    padding: 54px 0 60px;
  }

  .subhero h1 {
    font-size: 35px;
  }

  .fact-panel,
  .quote-panel,
  .cm-form {
    padding: 28px;
  }

  .benefit-item {
    min-height: 0;
  }

  .benefit-item > i {
    margin-bottom: 24px;
  }

  .process-list article {
    min-height: 0;
    padding: 25px;
  }

  .topic-link {
    min-height: 0;
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 22px 0;
  }

  .topic-link > i {
    display: none;
  }

  .topic-link h3 {
    font-size: 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (max-width: 850px) {
  .how-hero-grid,
  .home-brand-story,
  .setup-layout,
  .operation-flow-layout,
  .reporting-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-hero-visual {
    height: 390px;
  }

  .home-brand-story > figure {
    height: 430px;
    grid-row: auto;
  }

  .how-proof-strip .cm-container {
    grid-template-columns: 1fr 1fr;
  }

  .how-proof-strip span {
    border-bottom: 1px solid var(--cm-line);
  }

  .setup-copy {
    position: relative;
    top: auto;
  }

  .operation-flow-layout {
    gap: 55px;
  }

  .process-flow {
    grid-template-columns: 1fr 1fr;
    gap: 48px 0;
  }

  .infographic-cycle-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-flow::before {
    display: none;
  }

  .editorial-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .editorial-aside {
    position: relative;
    top: auto;
    min-height: 330px;
  }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-intro {
    padding: 42px;
  }

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

@media (max-width: 560px) {
  .how-hero {
    padding: 54px 0 64px;
  }

  .how-hero-grid {
    gap: 30px;
  }

  .how-hero-visual {
    height: 280px;
  }

  .how-hero-visual > img {
    width: 100%;
    height: 100%;
  }

  .how-hero-visual > div span {
    padding: 11px 3px;
    font-size: 8px;
  }

  .how-hero-visual figcaption {
    right: 18px;
    bottom: 55px;
    left: 18px;
  }

  .how-hero-visual figcaption strong {
    font-size: 16px;
  }

  .home-brand-story {
    gap: 28px;
  }

  .home-brand-story > figure {
    height: 320px;
  }

  .home-brand-story > div h2 {
    font-size: 32px;
  }

  .how-proof-strip .cm-container {
    grid-template-columns: 1fr;
  }

  .how-proof-strip span {
    min-height: 64px;
    border-left: 1px solid var(--cm-line);
  }

  .setup-copy h2,
  .operation-flow-layout h2,
  .reporting-layout h2 {
    font-size: 29px;
  }

  .setup-list article {
    min-height: 118px;
    grid-template-columns: 28px 44px minmax(0, 1fr);
    gap: 12px;
  }

  .setup-list article > i {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .operation-roadmap article {
    grid-template-columns: 34px minmax(0, 1fr) 26px;
  }

  .reporting-board {
    padding: 8px 20px;
  }

  .reporting-board > div {
    grid-template-columns: minmax(0, 1fr) 34px;
  }

  .reporting-board strong {
    display: none;
  }

  .process-flow {
    display: block;
  }

  .infographic-cycle-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .infographic-cycle-card {
    min-height: 0;
    grid-template-columns: 52px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: start;
    gap: 0 16px;
    padding: 23px 22px;
  }

  .infographic-cycle-card h3 {
    margin-top: 1px;
  }

  .cycle-number {
    top: 4px;
    right: 62px;
    font-size: 58px;
  }

  .process-step {
    grid-template-areas:
      "node title"
      "node copy";
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto auto;
    justify-items: start;
    gap: 4px 16px;
    padding: 22px 0;
    border-bottom: 1px solid var(--cm-line);
    text-align: left;
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step-symbol {
    display: none;
  }

  .process-step h3 {
    grid-area: title;
    margin: 3px 0 4px;
  }

  .process-step p {
    grid-area: copy;
    max-width: none;
  }

  .process-step-icon-box {
    grid-area: node;
    align-self: start;
    margin: 0;
  }

  .process-step-icon {
    width: 54px;
    height: 54px;
    border-width: 5px;
  }

  .process-step-icon .number {
    font-size: 18px;
  }

  .benefit-grid {
    gap: 12px;
  }

  .benefit-item {
    min-height: 0;
    padding: 26px;
  }

  .editorial-aside {
    min-height: 300px;
    padding: 28px;
  }

  .editorial-aside > strong {
    max-width: 250px;
    font-size: 19px;
  }

  .form-intro,
  .cm-form {
    padding: 28px;
  }

  .form-intro > img {
    width: 74px;
    height: 64px;
    margin-bottom: 28px;
  }

  .topic-link {
    padding: 20px;
  }

  .topic-link:hover {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 1100px) {
  .sales-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
    gap: 44px;
  }

  .sales-hero-copy h1,
  .ecommerce-hero-copy h1 {
    font-size: 42px;
  }

  .closing-sales-grid {
    grid-template-columns: 1fr 0.8fr;
  }

  .closing-action {
    grid-column: 1 / -1;
    min-height: 200px;
  }
}

@media (max-width: 850px) {
  .hero-sales-conversion,
  .hero-ecommerce-story {
    min-height: 0;
    padding-bottom: 42px;
  }

  .hero-sales-conversion::after {
    display: none;
  }

  .sales-backword,
  .ecommerce-index {
    display: none;
  }

  .sales-hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sales-hero-copy {
    padding: 42px 0 36px;
  }

  .sales-hero-media {
    height: 420px;
  }

  .sales-hero-media figure {
    height: 385px;
  }

  .sales-hero-media aside {
    left: 18px;
  }

  .sales-process-rail {
    grid-template-columns: 1fr 1fr;
  }

  .sales-process-rail span:nth-child(2) {
    border-right: 0;
  }

  .ecommerce-hero-stage {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-top: 34px;
  }

  .ecommerce-hero-stage > figure,
  .ecommerce-hero-copy,
  .ecommerce-demand-list {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .ecommerce-hero-stage > figure {
    height: 410px;
    order: 1;
  }

  .ecommerce-hero-copy {
    order: 2;
    margin-top: -54px;
    padding: 40px;
  }

  .ecommerce-demand-list {
    order: 3;
  }

  .closing-sales-grid,
  .closing-ecommerce-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .closing-action {
    grid-column: auto;
  }

  .closing-ecommerce figure {
    height: 400px;
  }

  .closing-ecommerce-copy {
    margin: -74px 24px 0;
    padding: 42px;
    border-right: 1px solid var(--cm-line);
    border-left: 1px solid var(--cm-line);
  }
}

@media (max-width: 560px) {
  .sales-hero-copy h1,
  .ecommerce-hero-copy h1 {
    font-size: 34px;
  }

  .sales-hero-media {
    height: 340px;
  }

  .sales-hero-media figure {
    height: 305px;
  }

  .sales-hero-media aside {
    right: 12px;
    left: 12px;
  }

  .sales-hero-media aside strong {
    font-size: 10px;
  }

  .sales-process-rail {
    grid-template-columns: 1fr;
  }

  .sales-process-rail span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--cm-line);
  }

  .ecommerce-hero-stage > figure {
    height: 300px;
  }

  .ecommerce-hero-copy {
    margin-top: -32px;
    padding: 30px 24px;
  }

  .ecommerce-demand-list {
    grid-template-columns: 1fr 1fr;
  }

  .ecommerce-demand-list span {
    min-height: 58px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .closing-sales,
  .closing-ecommerce {
    padding: 64px 0;
  }

  .closing-sales-grid > div:first-child h2,
  .closing-ecommerce-copy h2 {
    font-size: 31px;
  }

  .closing-ecommerce figure {
    height: 310px;
  }

  .closing-ecommerce-copy {
    margin: -44px 12px 0;
    padding: 30px 22px;
  }

  .closing-ecommerce-copy .hero-actions {
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Category-specific detail heroes */
.family-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 700px;
  padding: 34px 0 58px;
  background: var(--cm-white);
}

.family-hero > .cm-container {
  position: relative;
  z-index: 2;
}

.family-hero .breadcrumbs {
  color: var(--cm-muted);
}

.family-hero-surface {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.family-hero-surface > span {
  position: absolute;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 38px;
  color: transparent;
  font-size: 132px;
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(8, 43, 85, 0.13);
}

.family-hero-surface > b {
  position: absolute;
  right: 20px;
  top: 50%;
  color: rgba(8, 43, 85, 0.26);
  font-size: 9px;
  text-transform: uppercase;
  transform: rotate(90deg);
}

.family-hero-grid {
  display: grid;
  min-height: 535px;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: 72px;
}

.family-hero-copy {
  position: relative;
  z-index: 3;
  padding: 40px 0;
}

.family-hero-copy h1 {
  margin-bottom: 22px;
  color: var(--cm-navy);
}

.family-hero-copy h1 > span {
  display: block;
  margin-bottom: 12px;
  color: var(--cm-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.family-hero-copy h1 > strong {
  display: block;
  font-size: 45px;
  line-height: 1.12;
}

.family-hero-copy > p {
  max-width: 600px;
  color: var(--cm-muted);
  font-size: 14px;
}

.family-hero-copy .cm-btn-ghost {
  color: var(--cm-navy);
  border-color: rgba(8, 43, 85, 0.25);
}

.family-hero-media {
  position: relative;
  height: 455px;
}

.family-hero-media figure {
  width: 100%;
  height: 425px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(7% 0, 100% 0, 100% 88%, 91% 100%, 0 100%, 0 12%);
  box-shadow: 0 26px 55px rgba(4, 24, 47, 0.17);
}

.family-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.family-hero:hover .family-hero-media img {
  transform: scale(1.035);
}

.family-hero-media aside {
  position: absolute;
  right: 28px;
  bottom: 0;
  left: -28px;
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  color: var(--cm-navy);
  background: var(--cm-gold-light);
  border-left: 5px solid var(--cm-navy);
}

.family-hero-media aside i {
  font-size: 20px;
}

.family-hero-media aside span {
  font-size: 11px;
  font-weight: 800;
}

.family-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 26px;
}

.family-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--cm-navy);
  font-size: 10px;
  font-weight: 800;
}

.family-hero-points b {
  color: var(--cm-gold);
  font-size: 9px;
}

.family-variant-1 .family-hero-media {
  order: -1;
}

.family-variant-1 .family-hero-media figure {
  clip-path: polygon(0 0, 93% 0, 100% 12%, 100% 100%, 9% 100%, 0 88%);
}

.family-variant-1 .family-hero-media aside {
  right: -28px;
  left: 28px;
}

.family-variant-2 .family-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
}

.family-variant-2 .family-hero-media {
  height: 500px;
}

.family-variant-2 .family-hero-media figure {
  height: 470px;
  clip-path: polygon(0 8%, 9% 0, 100% 0, 100% 100%, 0 100%);
}

.detail-family-hizmetler {
  background: #f4f7f8;
}

.detail-family-hizmetler::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  background: var(--cm-navy-deep);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
}

/* Duplicate only the title's navy-facing pixels so the angled plane can pass
   through the typography without sacrificing contrast. */
.detail-family-hizmetler.family-variant-1 .family-hero-copy h1 > strong {
  --tone-top: 42%;
  --tone-bottom: 36%;
  position: relative;
  color: var(--cm-navy);
}

.detail-family-hizmetler.family-variant-1 .family-hero-copy h1 > strong::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  color: var(--cm-white);
  clip-path: polygon(var(--tone-top) 0, 100% 0, 100% 100%, var(--tone-bottom) 100%);
  content: attr(data-copy);
  pointer-events: none;
}

.detail-family-hizmetler.family-variant-1 .family-hero-copy > p {
  display: table;
  padding: 5px 9px;
  color: var(--cm-muted);
  background: rgba(244, 247, 248, 0.9);
  border-left: 2px solid var(--cm-gold);
}

.detail-family-hizmetler.family-variant-1 .family-hero-points span {
  padding: 6px 8px;
  color: var(--cm-navy);
  background: rgba(255, 255, 255, 0.92);
}

.detail-family-hizmetler.family-variant-1 .family-hero-copy .cm-btn-ghost {
  color: var(--cm-navy);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(8, 43, 85, 0.2);
}

@media (min-width: 1600px) {
  .detail-family-hizmetler.family-variant-1 .family-hero-copy h1 > strong {
    --tone-top: 52%;
    --tone-bottom: 47%;
  }
}

@media (max-width: 1250px) and (min-width: 851px) {
  .detail-family-hizmetler.family-variant-1 .family-hero-copy h1 > strong {
    --tone-top: 34%;
    --tone-bottom: 25%;
  }
}

.detail-family-sektorler {
  background: var(--cm-white);
}

.detail-family-sektorler::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 285px;
  background: var(--cm-navy-deep);
  content: "";
}

.detail-family-sektorler .breadcrumbs {
  color: rgba(255, 255, 255, 0.62);
}

.detail-family-sektorler .family-hero-copy {
  padding: 40px;
  background: var(--cm-white);
  border-left: 5px solid var(--cm-gold);
  box-shadow: 0 22px 48px rgba(4, 24, 47, 0.12);
}

.detail-family-cozumler {
  background: #f7f8f8;
  border-bottom: 1px solid var(--cm-line);
}

.detail-family-cozumler::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 9px;
  background: var(--cm-gold);
  content: "";
}

.detail-family-cozumler .family-hero-media figure {
  border: 12px solid var(--cm-white);
}

.detail-family-rehber {
  background: var(--cm-white);
  border-bottom: 1px solid var(--cm-line);
}

.detail-family-rehber .family-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
}

.detail-family-rehber .family-hero-media {
  height: 510px;
}

.detail-family-rehber .family-hero-media figure {
  height: 480px;
  clip-path: none;
  border-radius: 0;
  box-shadow: 18px 18px 0 #edf1f3;
}

.detail-family-rehber .family-hero-media aside {
  right: -22px;
  left: 42px;
}

.detail-family-kariyer {
  background: #edf5f2;
}

.detail-family-kariyer .family-hero-media figure {
  border-radius: 50% 50% 6px 6px;
  clip-path: none;
}

.detail-family-en {
  color: rgba(255, 255, 255, 0.75);
  background: var(--cm-navy-deep);
}

.detail-family-en .breadcrumbs,
.detail-family-en .family-hero-copy > p,
.detail-family-en .family-hero-points span {
  color: rgba(255, 255, 255, 0.68);
}

.detail-family-en .family-hero-copy h1 {
  color: var(--cm-white);
}

.detail-family-en .family-hero-copy .cm-btn-ghost {
  color: var(--cm-white);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Page-family closings */
.family-closing {
  position: relative;
  overflow: hidden;
}

.service-closing {
  padding: 88px 0;
  color: rgba(255, 255, 255, 0.7);
  background: var(--cm-navy-deep);
  border-top: 7px solid var(--cm-gold);
}

.service-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr) auto;
  align-items: center;
  gap: 55px;
}

.service-closing h2 {
  margin-bottom: 16px;
  color: var(--cm-white);
  font-size: 38px;
}

.service-closing p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.closing-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.closing-steps span {
  display: grid;
  min-height: 58px;
  grid-template-columns: 34px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 800;
}

.closing-steps b {
  color: var(--cm-gold-light);
}

.sector-closing,
.guide-closing,
.solution-closing {
  padding: 88px 0;
  background: #f5f7f8;
  border-top: 1px solid var(--cm-line);
}

.sector-closing-grid {
  display: grid;
  grid-template-columns: minmax(500px, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 0;
}

.sector-closing figure {
  height: 470px;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 92% 0, 100% 12%, 100% 100%, 0 100%);
}

.sector-closing figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sector-closing-grid > div {
  position: relative;
  z-index: 2;
  margin-left: -42px;
  padding: 48px 0 48px 70px;
  background: #f5f7f8;
}

.sector-closing h2,
.solution-closing h2,
.guide-closing h2 {
  color: var(--cm-navy);
  font-size: 39px;
}

.solution-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr) minmax(260px, 0.6fr);
  align-items: stretch;
  gap: 48px;
}

.solution-question-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--cm-line);
}

.solution-question-list span {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 12px;
  color: var(--cm-navy);
  border-bottom: 1px solid var(--cm-line);
  font-size: 11px;
  font-weight: 800;
}

.solution-question-list i {
  color: var(--cm-gold);
}

.guide-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.72fr);
  gap: 70px;
}

.guide-closing-grid aside {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--cm-navy-deep);
  border-top: 5px solid var(--cm-gold);
}

.guide-closing-grid aside > span {
  margin-bottom: 10px;
  color: var(--cm-gold-light);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.guide-closing-grid aside > strong {
  margin-bottom: 24px;
  color: var(--cm-white);
  font-size: 18px;
  line-height: 1.5;
}

.career-closing {
  min-height: 500px;
  color: var(--cm-white);
}

.career-closing > img,
.career-closing-shade {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.career-closing > img {
  object-fit: cover;
}

.career-closing-shade {
  background: rgba(4, 24, 47, 0.72);
}

.career-closing > .cm-container {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 500px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.career-closing h2 {
  max-width: 720px;
  color: var(--cm-white);
  font-size: 44px;
}

/* Multi-step offer dialog */
.offer-modal[hidden] {
  display: none !important;
}

.offer-modal {
  position: fixed;
  z-index: 100000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.offer-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(4, 24, 47, 0.82);
  border: 0;
  backdrop-filter: blur(5px);
}

.offer-dialog {
  position: relative;
  display: flex;
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: hidden;
  flex-direction: column;
  background: var(--cm-white);
  border-top: 6px solid var(--cm-gold);
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.offer-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 30px 18px;
  border-bottom: 1px solid var(--cm-line);
}

.offer-dialog-header span {
  display: block;
  color: var(--cm-gold);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-dialog-header strong {
  color: var(--cm-navy);
  font-size: 18px;
}

.offer-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--cm-navy);
  background: var(--cm-soft);
  border: 1px solid var(--cm-line);
  border-radius: 50%;
}

.offer-progress {
  display: grid;
  height: 4px;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: var(--cm-soft);
}

.offer-progress span {
  background: transparent;
  transition: background-color 250ms ease;
}

.offer-progress span.active {
  background: var(--cm-gold);
}

.offer-wizard {
  display: flex;
  min-height: 0;
  overflow-y: auto;
  flex: 1;
  flex-direction: column;
  padding: 32px 38px 24px;
}

.offer-step {
  display: none;
  animation: offer-step-in 320ms ease both;
}

.offer-step.active {
  display: block;
}

.offer-step-no {
  display: block;
  margin-bottom: 8px;
  color: var(--cm-gold);
  font-size: 10px;
  font-weight: 800;
}

.offer-step h2 {
  margin-bottom: 10px;
  color: var(--cm-navy);
  font-size: 30px;
}

.offer-step > p {
  margin-bottom: 24px;
  color: var(--cm-muted);
  font-size: 13px;
}

.offer-choice-grid {
  display: grid;
  gap: 12px;
}

.offer-choice-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.offer-choice-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.offer-choice-grid label,
.offer-channel-field label {
  cursor: pointer;
}

.offer-choice-grid input,
.offer-channel-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.offer-choice-grid label > span {
  display: flex;
  min-height: 150px;
  align-items: flex-start;
  flex-direction: column;
  padding: 22px;
  background: var(--cm-white);
  border: 1px solid var(--cm-line);
  border-radius: 6px;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.offer-choice-grid label:hover > span {
  transform: translateY(-2px);
}

.offer-choice-grid input:checked + span {
  background: #fff9e9;
  border-color: var(--cm-gold);
  box-shadow: inset 0 0 0 1px var(--cm-gold);
}

.offer-choice-grid i {
  margin-bottom: 20px;
  color: var(--cm-gold);
  font-size: 24px;
}

.offer-choice-grid strong {
  margin-bottom: 5px;
  color: var(--cm-navy);
  font-size: 16px;
}

.offer-choice-grid small {
  color: var(--cm-muted);
  font-size: 11px;
  line-height: 1.5;
}

.offer-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.offer-field-grid label,
.offer-channel-field legend {
  color: var(--cm-navy);
  font-size: 11px;
  font-weight: 800;
}

.offer-field-grid input,
.offer-field-grid select,
.offer-field-grid textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--cm-ink);
  background: var(--cm-white);
  border: 1px solid var(--cm-line);
  border-radius: 5px;
  font: inherit;
  font-size: 13px;
}

.offer-field-wide {
  grid-column: 1 / -1;
}

.offer-channel-field {
  margin: 22px 0 0;
  padding: 0;
  border: 0;
}

.offer-channel-field > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 9px;
}

.offer-channel-field label > span {
  display: block;
  padding: 10px;
  color: var(--cm-navy);
  border: 1px solid var(--cm-line);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.offer-channel-field input:checked + span {
  color: var(--cm-navy-deep);
  background: var(--cm-gold-light);
  border-color: var(--cm-gold);
}

.offer-consent {
  margin-top: 18px;
}

.offer-wizard-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
}

.offer-back {
  min-height: 46px;
  padding: 0 12px;
  color: var(--cm-navy);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 800;
}

.offer-back:disabled {
  visibility: hidden;
}

.offer-wizard-footer > span {
  color: var(--cm-muted);
  font-size: 10px;
  text-align: center;
}

.offer-submit[hidden] {
  display: none !important;
}

.offer-modal .form-status {
  margin-top: 12px;
}

body.offer-modal-open {
  overflow: hidden;
}

.offer-page-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--cm-white);
}

.offer-page-hero > img,
.offer-page-shade {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.offer-page-hero > img {
  object-fit: cover;
}

.offer-page-shade {
  background: rgba(4, 24, 47, 0.82);
}

.offer-page-hero > .cm-container {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 690px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.offer-page-hero h1 {
  max-width: 830px;
  color: var(--cm-white);
  font-size: 54px;
}

.offer-page-hero p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.72);
}

.offer-page-points {
  display: grid;
  width: min(760px, 100%);
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.offer-page-points span {
  padding: 16px 12px 0;
  color: rgba(255, 255, 255, 0.75);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 800;
}

.offer-page-points b {
  display: block;
  margin-bottom: 5px;
  color: var(--cm-gold-light);
}

/* Lightweight motion system */
.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-enabled [data-reveal="left"] {
  transform: translateX(-34px);
}

.reveal-enabled [data-reveal="right"] {
  transform: translateX(34px);
}

.reveal-enabled [data-reveal="scale"] {
  transform: scale(0.95);
}

.reveal-enabled [data-reveal].reveal-visible {
  opacity: 1;
  transform: none;
}

@keyframes offer-step-in {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .family-hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    gap: 46px;
  }

  .family-hero-copy h1 > strong {
    font-size: 39px;
  }

  .service-closing-grid,
  .solution-closing-grid {
    grid-template-columns: 1fr 0.78fr;
  }

  .service-closing-grid > .cm-btn,
  .solution-closing-grid > .closing-action {
    grid-column: 1 / -1;
  }
}

@media (max-width: 850px) {
  .family-hero,
  .offer-page-hero,
  .offer-page-hero > .cm-container {
    min-height: 0;
  }

  .family-hero {
    padding-bottom: 44px;
  }

  .family-hero-surface > b,
  .family-hero-surface > span {
    display: none;
  }

  .detail-family-hizmetler::after {
    display: none;
  }

  .detail-family-hizmetler.family-variant-1 .family-hero-copy h1 > strong::after {
    display: none;
  }

  .family-hero-grid,
  .family-variant-2 .family-hero-grid,
  .detail-family-rehber .family-hero-grid,
  .service-closing-grid,
  .sector-closing-grid,
  .solution-closing-grid,
  .guide-closing-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .family-variant-1 .family-hero-media {
    order: initial;
  }

  .family-hero-copy,
  .detail-family-sektorler .family-hero-copy {
    padding: 38px 0 30px;
    background: transparent;
    border-left: 0;
    box-shadow: none;
  }

  .detail-family-sektorler .family-hero-copy {
    padding: 32px;
    background: var(--cm-white);
    border-left: 4px solid var(--cm-gold);
  }

  .family-hero-media,
  .family-variant-2 .family-hero-media,
  .detail-family-rehber .family-hero-media {
    height: 405px;
  }

  .family-hero-media figure,
  .family-variant-2 .family-hero-media figure,
  .detail-family-rehber .family-hero-media figure {
    height: 370px;
  }

  .sector-closing-grid > div {
    margin: -70px 24px 0;
    padding: 42px;
  }

  .service-closing-grid > .cm-btn,
  .solution-closing-grid > .closing-action {
    grid-column: auto;
  }

  .offer-dialog {
    max-height: calc(100vh - 24px);
  }

  .offer-choice-grid-3 {
    grid-template-columns: 1fr;
  }

  .offer-choice-grid label > span {
    min-height: 110px;
  }

  .offer-page-hero {
    padding: 90px 0;
  }

  .offer-page-points {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .family-hero-copy h1 > strong,
  .offer-page-hero h1 {
    font-size: 33px;
  }

  .family-hero-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .family-hero-media,
  .family-variant-2 .family-hero-media,
  .detail-family-rehber .family-hero-media {
    height: 330px;
  }

  .family-hero-media figure,
  .family-variant-2 .family-hero-media figure,
  .detail-family-rehber .family-hero-media figure {
    height: 295px;
  }

  .family-hero-media aside,
  .family-variant-1 .family-hero-media aside,
  .detail-family-rehber .family-hero-media aside {
    right: 12px;
    left: 12px;
  }

  .service-closing,
  .sector-closing,
  .solution-closing,
  .guide-closing {
    padding: 62px 0;
  }

  .service-closing h2,
  .sector-closing h2,
  .solution-closing h2,
  .guide-closing h2,
  .career-closing h2 {
    font-size: 31px;
  }

  .sector-closing figure {
    height: 310px;
  }

  .sector-closing-grid > div {
    margin: -44px 12px 0;
    padding: 30px 22px;
  }

  .offer-modal {
    padding: 0;
  }

  .offer-dialog {
    width: 100%;
    height: 100%;
    max-height: 100%;
    border-top-width: 4px;
    border-radius: 0;
  }

  .offer-dialog-header {
    padding: 16px 18px 13px;
  }

  .offer-dialog-header strong {
    font-size: 14px;
  }

  .offer-wizard {
    padding: 22px 18px 16px;
  }

  .offer-step h2 {
    font-size: 24px;
  }

  .offer-choice-grid-2,
  .offer-field-grid {
    grid-template-columns: 1fr;
  }

  .offer-choice-grid label > span {
    min-height: 96px;
    padding: 16px;
  }

  .offer-choice-grid i {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .offer-field-wide {
    grid-column: auto;
  }

  .offer-channel-field > div {
    grid-template-columns: 1fr 1fr;
  }

  .offer-wizard-footer {
    grid-template-columns: auto 1fr;
    gap: 8px;
  }

  .offer-wizard-footer > span {
    display: none;
  }

  .offer-next,
  .offer-submit {
    grid-column: 2;
  }

  .offer-page-points {
    grid-template-columns: 1fr;
  }
}
