:root {
  --ap-blue: #0065e4;
  --ap-green: #34ed94;
  --ap-dark: #27353d;
  --ap-ice: #eaf6ff;
  --panel: #ffffff;
  --muted: #52636d;
  --soft-muted: #71828c;
  --faint: #cfe5f5;
  --red: #d84141;
  --shadow-sm: 0 4px 6px rgba(39, 53, 61, 0.1);
  --shadow-md: 0 10px 15px rgba(39, 53, 61, 0.1), 0 4px 6px rgba(39, 53, 61, 0.1);
  --shadow-lg: 0 25px 50px -12px rgba(39, 53, 61, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ap-ice);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ap-dark);
  background: linear-gradient(180deg, #f7fcff 0%, var(--ap-ice) 42%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}

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

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

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

button {
  cursor: pointer;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.theme-toggle {
  width: 48px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--faint);
  border-radius: 999px;
  color: var(--ap-blue);
  background: #f9fcff;
}

.theme-toggle-track {
  position: relative;
  width: 34px;
  height: 20px;
  border-radius: 999px;
  background: #e6f3fb;
  box-shadow: inset 0 0 0 1px rgba(0, 101, 228, 0.12);
}

.theme-toggle-track::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ap-blue);
  box-shadow: 0 2px 5px rgba(39, 53, 61, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

html.theme-dark .theme-toggle {
  color: var(--ap-green);
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--dark-line);
}

html.theme-dark .theme-toggle-track {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1px rgba(52, 237, 148, 0.28);
}

html.theme-dark .theme-toggle-track::before {
  background: var(--ap-green);
  transform: translateX(14px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 80px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(207, 229, 245, 0.85);
  backdrop-filter: blur(10px);
}

.header-inner,
.footer-inner {
  width: min(1440px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.header-inner {
  justify-content: space-between;
  gap: 42px;
}

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

.brand img {
  width: 145px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  flex: 1 1 auto;
  font-size: 12px;
  font-weight: 700;
}

.main-nav a {
  padding: 30px 0 24px;
  border-bottom: 2px solid transparent;
}

.main-nav .active {
  color: var(--ap-blue);
  border-bottom-color: var(--ap-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.flags {
  display: flex;
  gap: 13px;
}

.flag {
  position: relative;
  width: 32px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 1;
}

.flag::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--faint);
}

.flag.active::after {
  background: var(--ap-blue);
}

.icon-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--faint);
  border-radius: 50%;
  background: #f9fcff;
  color: var(--ap-blue);
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.page-shell {
  overflow: hidden;
}

.section-contained {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-section {
  min-height: 792px;
  display: grid;
  grid-template-columns: minmax(0, 584px) minmax(0, 584px);
  gap: 64px;
  align-items: start;
  padding: 128px 24px 80px;
}

.hero-copy {
  padding-top: 50px;
}

.eyebrow {
  width: max-content;
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 4px 12px;
  color: var(--ap-dark);
  background: var(--ap-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.2px;
}

.eyebrow img {
  width: 12px;
  height: 12px;
}

.hero-copy h1 {
  max-width: 620px;
  margin-bottom: 25px;
  color: var(--ap-dark);
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-copy h1 strong {
  color: var(--ap-blue);
}

.hero-copy > p {
  width: min(585px, 100%);
  color: var(--muted);
  font-size: 20px;
  line-height: 32.5px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.button {
  min-width: 174px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 10px;
  border: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  white-space: nowrap;
}

.button-primary {
  color: #fff;
  background: var(--ap-blue);
  box-shadow: 0 10px 15px rgba(39, 53, 61, 0.1), 0 4px 6px rgba(39, 53, 61, 0.1);
}

.button-secondary {
  color: var(--ap-blue);
  background: #fff;
  border: 1.2px solid var(--faint);
}

.button-green {
  color: var(--ap-dark);
  background: var(--ap-green);
}

.button-small {
  min-width: 0;
  min-height: 48px;
  padding: 12px 34px;
  font-size: 14px;
}

.button-dark {
  min-width: 179px;
  color: #fff;
  background: var(--ap-dark);
}

.hero-visual {
  position: relative;
  width: 584px;
  max-width: 100%;
  aspect-ratio: 1;
}

.hero-image-card {
  position: absolute;
  inset: -10px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 101, 228, 0.2) 0%, rgba(39, 53, 61, 0.08) 58%, rgba(39, 53, 61, 0) 100%);
}

.hero-image-card img,
.square-media img,
.case-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roi-badge {
  position: absolute;
  left: -24px;
  bottom: -24px;
  width: 226px;
  min-height: 101px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 25px;
  background: #fff;
  border: 1.2px solid #f3f8fc;
  border-radius: 16px;
  box-shadow: 0 20px 25px rgba(39, 53, 61, 0.1), 0 8px 10px rgba(39, 53, 61, 0.1);
}

.badge-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(52, 237, 148, 0.2);
}

.badge-icon img {
  width: 20px;
  height: 12px;
}

.roi-badge small {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.roi-badge strong {
  display: block;
  color: var(--ap-dark);
  font-size: 24px;
  line-height: 32px;
  font-weight: 800;
}

.logo-band,
.steps-band,
.results-band,
.light-band {
  background: var(--ap-ice);
}

.logo-band {
  min-height: 310px;
}

.logo-band-inner {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 48px;
  padding: 0 24px;
}

.logo-band p {
  color: var(--soft-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 1.45px;
  text-align: center;
  text-transform: uppercase;
}

.logo-carousel {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  gap: 24px;
  align-items: center;
}

.logo-carousel button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.logo-carousel button:first-child {
  opacity: 0.3;
}

.logo-carousel button img {
  width: 20px;
  height: 20px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.logo-track img {
  height: 40px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-track img:nth-child(5) {
  height: 48px;
}

.audience-section {
  min-height: 763px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 576px));
  gap: 80px;
  padding: 96px 24px;
}

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

.audience-column header {
  min-height: 117px;
}

.audience-column h2,
.split-copy h2 {
  color: var(--ap-dark);
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
}

.audience-column header p {
  width: min(577px, 100%);
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.feature-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(39, 53, 61, 0.1), 0 1px 2px rgba(39, 53, 61, 0.1);
}

.feature-icon img {
  width: 20px;
  max-height: 20px;
}

.audience-green .feature-icon {
  background: var(--ap-green);
}

.feature-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ap-dark);
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.feature-item small {
  display: block;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.steps-band {
  min-height: 696px;
  padding: 96px 0;
}

.center-title {
  margin-bottom: 64px;
  color: var(--ap-dark);
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
  text-align: center;
}

.step-grid {
  display: grid;
  grid-template-columns: 389fr 495fr 284fr;
  gap: 32px;
  padding: 0 24px;
}

.step-card {
  position: relative;
  min-height: 401px;
  overflow: hidden;
  padding: 48px;
  border-radius: 10px;
}

.step-card span {
  display: block;
  margin-bottom: 16px;
  font-size: 60px;
  font-weight: 300;
  line-height: 60px;
}

.step-card h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.step-card p {
  font-size: 16px;
  line-height: 26px;
}

.step-white {
  background: #fff;
}

.step-white span {
  color: #dfe8f2;
}

.step-white p {
  color: var(--muted);
}

.step-blue {
  color: #fff;
  background: var(--ap-blue);
}

.step-blue span {
  color: rgba(255, 255, 255, 0.22);
}

.step-blue p {
  max-width: 399px;
  color: rgba(255, 255, 255, 0.84);
}

.step-blue img {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 176px;
  height: 176px;
  opacity: 0.18;
}

.step-green {
  background: var(--ap-green);
}

.step-green span {
  color: rgba(39, 53, 61, 0.22);
}

.step-green p,
.step-green h3 {
  color: rgba(39, 53, 61, 0.92);
}

.stats-section {
  min-height: 431px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 96px 24px;
}

.stat-card {
  min-height: 239px;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.stat-card.highlighted {
  border: 1.2px solid var(--ap-green);
  box-shadow: 0 10px 15px rgba(52, 237, 148, 0.2), 0 4px 6px rgba(39, 53, 61, 0.08);
}

.stat-card img {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}

.stat-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ap-dark);
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
}

.stat-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.security-section {
  padding: 96px 0;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 576px));
  gap: 80px;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
}

.split-copy p {
  width: min(577px, 100%);
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.mini-card-grid article {
  min-height: 144px;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
}

.mini-card-grid img {
  width: 20px;
  height: 20px;
  margin-bottom: 12px;
}

.mini-card-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ap-dark);
  font-size: 14px;
  line-height: 20px;
}

.mini-card-grid small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.square-media {
  width: min(512px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
}

.shadow-media {
  box-shadow: var(--shadow-lg);
}

.growth-section {
  min-height: 688px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.growth-section .square-media {
  justify-self: start;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
  color: var(--ap-dark);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ap-green);
}

.check-list li::after {
  content: "✓";
  position: absolute;
  top: 0;
  left: 5px;
  color: var(--ap-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 22px;
}

.publisher-section {
  min-height: 672px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.align-right {
  text-align: right;
}

.align-right p {
  margin-left: auto;
}

.check-list-right li {
  padding-right: 32px;
  padding-left: 0;
}

.check-list-right li::before {
  right: 0;
  left: auto;
  background: var(--ap-blue);
}

.check-list-right li::after {
  right: 5px;
  left: auto;
  color: #fff;
}

.publisher-section .square-media {
  justify-self: end;
}

.results-band {
  min-height: 1602px;
  padding: 96px 0 144px;
}

.results-header {
  max-width: 1232px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}

.results-header h2 {
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 800;
  line-height: 48px;
}

.results-header p {
  max-width: 896px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 28px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 600px));
  gap: 32px;
  padding: 0 24px;
}

.case-card {
  display: block;
  overflow: hidden;
  min-height: 577px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.case-card:hover,
.case-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(39, 53, 61, 0.16);
  outline: 0;
}

.case-card > img,
.metric-top {
  width: 100%;
  height: 375px;
}

.case-card > img {
  opacity: 0.9;
}

.case-card > div:not(.metric-top) {
  min-height: 202px;
  padding: 32px;
}

.case-card h3 {
  margin-bottom: 12px;
  color: var(--ap-dark);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.case-card p {
  min-height: 52px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 26px;
}

.case-card span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin-right: 8px;
  padding: 3px 12px;
  color: var(--ap-blue);
  background: var(--ap-ice);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.case-card:nth-child(2) span,
.metric-case span {
  color: var(--ap-dark);
  background: rgba(52, 237, 148, 0.18);
}

.metric-top {
  display: grid;
  place-content: center;
  color: #fff;
  text-align: center;
  background: linear-gradient(148deg, var(--ap-blue) 0%, #14b8d6 50%, var(--ap-green) 100%);
}

.metric-top strong {
  display: block;
  font-size: 60px;
  font-weight: 800;
  line-height: 60px;
}

.metric-top small {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}

.case-detail-page {
  background: #fff;
}

.case-detail-hero {
  padding: 80px 0;
}

.case-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
  padding: 0 24px;
}

.case-detail-copy h1 {
  margin-bottom: 24px;
  color: var(--ap-dark);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
}

.case-detail-copy p {
  color: var(--muted);
  font-size: 19px;
  line-height: 32px;
}

.case-detail-eyebrow {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin-bottom: 24px;
  padding: 4px 12px;
  color: var(--ap-dark);
  background: var(--ap-green);
  font-size: 13px;
  font-weight: 800;
  line-height: 20px;
  text-transform: uppercase;
}

.case-detail-media {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.case-detail-media img,
.case-detail-metric {
  width: 100%;
  aspect-ratio: 1.42;
}

.case-detail-media img {
  object-fit: cover;
}

.case-detail-metric {
  display: grid;
  place-content: center;
  color: #fff;
  text-align: center;
  background: linear-gradient(148deg, var(--ap-blue) 0%, #14b8d6 50%, var(--ap-green) 100%);
}

.case-detail-metric strong {
  display: block;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
}

.case-detail-metric span {
  margin-top: 10px;
  font-size: 22px;
  font-weight: 700;
}

.case-detail-body {
  padding: 88px 24px;
}

.case-detail-content {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 64px;
}

.case-detail-content h2 {
  margin-bottom: 18px;
  color: var(--ap-dark);
  font-size: 34px;
  line-height: 40px;
}

.case-detail-content p,
.case-detail-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 29px;
}

.case-detail-content ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding-left: 22px;
}

.case-detail-panel {
  align-self: start;
  padding: 28px;
  border-radius: 16px;
  background: var(--ap-ice);
}

.case-detail-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ap-dark);
  font-size: 28px;
  line-height: 34px;
}

.case-detail-panel span {
  display: block;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}

.case-detail-back {
  display: inline-flex;
  margin-top: 36px;
  color: var(--ap-blue);
  font-weight: 800;
}

@media (max-width: 980px) {
  .case-detail-grid,
  .case-detail-content {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .case-detail-copy h1 {
    font-size: 44px;
  }
}

@media (max-width: 760px) {
  .case-detail-hero {
    padding: 56px 0;
  }

  .case-detail-grid,
  .case-detail-content {
    padding-left: 0;
    padding-right: 0;
  }

  .case-detail-copy h1 {
    font-size: 36px;
  }

  .case-detail-copy p,
  .case-detail-content p,
  .case-detail-content li {
    font-size: 16px;
    line-height: 27px;
  }

  .case-detail-body {
    padding: 56px 0;
  }

  .case-detail-metric strong {
    font-size: 48px;
  }
}

.contact-section {
  min-height: 780px;
  display: flex;
  align-items: center;
  padding: 96px 24px;
}

.contact-card {
  width: 100%;
  min-height: 588px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.contact-info {
  padding: 80px;
  color: #fff;
  background: var(--ap-blue);
}

.contact-info h2 {
  margin-bottom: 32px;
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
}

.contact-info p {
  max-width: 457px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
  line-height: 32.5px;
}

.contact-info a,
.contact-info > span {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.contact-info a span,
.contact-info > span span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.12);
}

.contact-info img {
  width: 20px;
  height: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  color: var(--ap-dark);
  background: #f4fbff;
  font-size: 16px;
  line-height: 24px;
}

.contact-form input {
  height: 52px;
  padding: 14px 16px;
}

.contact-form select {
  height: 48px;
  padding: 0 16px;
  appearance: none;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  padding: 12px 16px;
}

.contact-form button {
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 10px;
  color: var(--ap-dark);
  background: var(--ap-green);
  box-shadow: 0 10px 15px rgba(39, 53, 61, 0.1), 0 4px 6px rgba(39, 53, 61, 0.1);
  font-size: 16px;
  font-weight: 700;
}

.site-footer {
  min-height: 116px;
  background: var(--ap-dark);
  color: #fff;
}

.footer-inner {
  justify-content: space-between;
  gap: 28px;
  min-height: 116px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-inner > nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex: 1 1 auto;
  font-weight: 600;
}

.footer-sitemap {
  position: relative;
  flex: 0 0 auto;
}

.footer-sitemap-button {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.footer-sitemap-button::after {
  content: "v";
  font-size: 10px;
  transition: transform 160ms ease;
}

.footer-sitemap.is-open .footer-sitemap-button::after {
  transform: rotate(180deg);
}

.footer-sitemap-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  z-index: 5;
  width: min(330px, calc(100vw - 32px));
  max-height: 360px;
  overflow: auto;
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(207, 229, 245, 0.95);
  border-radius: 8px;
  color: var(--ap-dark);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.footer-sitemap-panel[hidden] {
  display: none;
}

.footer-sitemap-panel a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--ap-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-sitemap-panel a:hover,
.footer-sitemap-panel a:focus-visible,
.footer-sitemap-panel a[aria-current="page"] {
  color: var(--ap-blue);
  background: #eef7ff;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
}

.socials svg {
  width: 16px;
  height: 16px;
}

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

.auth-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.auth-button-primary {
  color: #fff;
  background: var(--ap-blue);
  box-shadow: var(--shadow-sm);
}

.auth-button-secondary {
  color: var(--ap-blue);
  background: #fff;
  border-color: var(--faint);
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.line-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.page-container {
  width: min(1216px, calc(100% - 96px));
  margin: 0 auto;
}

.breadcrumb-section {
  width: min(1216px, calc(100% - 96px));
  margin: 0 auto;
  padding-top: 28px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb-list li + li::before {
  content: "/";
  margin-right: 10px;
  color: var(--soft-muted);
}

.breadcrumb-list a {
  color: var(--ap-blue);
}

.breadcrumb-list [aria-current="page"] {
  color: var(--ap-dark);
}

.advertiser-page {
  overflow: hidden;
  background: #f7fcff;
}

.advertiser-page .section-pill {
  width: fit-content;
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 4px 13px;
  color: var(--ap-dark);
  background: var(--ap-green);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.advertiser-page .section-pill .line-icon {
  width: 12px;
  height: 12px;
  stroke-width: 2.4;
}

.advertiser-page .primary-button,
.advertiser-page .secondary-button,
.advertiser-page .green-button,
.advertiser-page .dark-button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.advertiser-page .primary-button {
  color: #fff;
  background: var(--ap-blue);
  box-shadow: var(--shadow-md);
}

.advertiser-page .secondary-button {
  color: var(--ap-blue);
  background: #fff;
  border-color: var(--faint);
}

.advertiser-page .green-button {
  color: #fff;
  background: #087f58;
}

.advertiser-page .compact {
  min-height: 48px;
  padding: 0 30px;
  font-size: 14px;
}

.advertiser-page .hero-section {
  min-height: 0;
  display: block;
  padding: 74px 0 76px;
}

.advertiser-page .hero-grid,
.advertiser-page .split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 70px;
  align-items: center;
}

.advertiser-page .hero-copy {
  padding-top: 0;
}

.advertiser-page .hero-copy h1 {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--ap-dark);
  font-size: 62px;
  font-weight: 800;
  line-height: 1.08;
}

.advertiser-page .hero-copy > p {
  width: auto;
  max-width: 610px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.advertiser-page .hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.advertiser-dashboard {
  position: relative;
  min-height: 506px;
  padding: 30px;
  overflow: hidden;
  border-radius: 10px;
  color: #fff;
  background: radial-gradient(circle at 78% 18%, rgba(52, 237, 148, 0.34), transparent 32%), linear-gradient(145deg, #1f2f38, #101a22);
  box-shadow: var(--shadow-lg);
}

.advertiser-dashboard::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.dashboard-top,
.dashboard-metric,
.dashboard-grid,
.dashboard-note {
  position: relative;
}

.dashboard-top {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
}

.dashboard-top span,
.dashboard-metric span,
.dashboard-grid span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.dashboard-top strong {
  font-size: 30px;
  line-height: 1.1;
}

.dashboard-metric {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 108px;
  margin-bottom: 22px;
  padding: 24px;
  border-radius: 10px;
  background: #fff;
  color: var(--ap-dark);
}

.dashboard-metric .line-icon {
  width: 42px;
  height: 42px;
  color: var(--ap-blue);
  stroke-width: 1.8;
}

.dashboard-metric span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.dashboard-metric strong {
  display: block;
  font-size: 27px;
  line-height: 1.1;
}

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

.dashboard-grid article {
  min-height: 118px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-grid p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 400;
}

.dashboard-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-radius: 10px;
  color: #143b2b;
  background: var(--ap-green);
}

.dashboard-note .line-icon {
  width: 24px;
  height: 24px;
}

.dashboard-note span {
  font-size: 12px;
  line-height: 1.45;
  font-weight: 800;
}

.logo-strip {
  padding: 56px 0 60px;
  background: var(--ap-ice);
  text-align: center;
}

.advertiser-logo-strip {
  padding-top: 52px;
}

.advertiser-logo-strip .logo-carousel {
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  max-width: 1040px;
  margin: 34px auto 35px;
}

.advertiser-logo-strip .carousel-button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--faint);
  border-radius: 8px;
  color: var(--soft-muted);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.advertiser-logo-strip .carousel-button svg {
  width: 18px;
  height: 18px;
}

.logo-strip p,
.logo-strip span {
  margin: 0;
  color: var(--soft-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
}

.client-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-width: 0;
}

.client-logos img {
  max-height: 38px;
  width: auto;
  object-fit: contain;
}

.advertiser-benefits {
  min-height: 0;
  display: block;
  padding: 88px 0 86px;
  background: #f7fcff;
}

.section-heading-center {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading-center h2 {
  margin-bottom: 24px;
  color: var(--ap-dark);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
}

.section-heading-center p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.compact-heading {
  margin-bottom: 42px;
}

.compact-heading h2 {
  font-size: 38px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr;
  gap: 28px;
}

.benefit-card {
  min-height: 292px;
  padding: 34px 32px;
  border: 1px solid var(--faint);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.benefit-card.highlighted {
  color: #fff;
  background: var(--ap-blue);
  border-color: var(--ap-blue);
  box-shadow: var(--shadow-md);
}

.benefit-card .feature-icon {
  margin-bottom: 28px;
}

.feature-icon.blue {
  color: var(--ap-blue);
  background: #fff;
}

.feature-icon.green {
  color: var(--ap-dark);
  background: var(--ap-green);
}

.feature-icon .line-icon {
  width: 20px;
  height: 20px;
}

.benefit-card h3 {
  margin-bottom: 18px;
  color: inherit;
  font-size: 22px;
  line-height: 1.15;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.benefit-card.highlighted p {
  color: rgba(255, 255, 255, 0.82);
}

.split-section {
  padding: 86px 0;
}

.advertiser-model {
  background: #fff;
}

.advertiser-page .split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
}

.advertiser-page .split-grid.reverse {
  grid-template-columns: minmax(380px, 520px) minmax(0, 1fr);
}

.split-copy h2 {
  color: var(--ap-dark);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.12;
}

.split-copy > p {
  width: auto;
  max-width: 580px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.commission-panel article {
  min-height: 196px;
  display: grid;
  align-content: start;
  padding: 28px;
  border-radius: 10px;
  background: var(--ap-ice);
}

.commission-panel article:first-child {
  color: #fff;
  background: var(--ap-blue);
}

.commission-panel article:nth-child(4) {
  background: var(--ap-green);
}

.commission-panel .line-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
}

.commission-panel span {
  margin-bottom: 10px;
  color: var(--soft-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.commission-panel strong {
  margin-bottom: 9px;
  color: inherit;
  font-size: 30px;
  line-height: 1;
}

.commission-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.commission-panel article:first-child span,
.commission-panel article:first-child p {
  color: rgba(255, 255, 255, 0.78);
}

.commission-panel article:nth-child(4) span,
.commission-panel article:nth-child(4) p {
  color: rgba(18, 69, 53, 0.72);
}

.advertiser-page .security-section {
  padding: 86px 0;
  background: var(--ap-ice);
}

.split-image {
  width: min(456px, 100%);
  min-height: 456px;
  justify-self: center;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.mini-card-grid article h3 {
  margin-bottom: 9px;
  color: var(--ap-dark);
  font-size: 14px;
}

.mini-card-grid article p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.process-section {
  padding: 86px 0 88px;
  background: var(--ap-ice);
}

.process-section h2 {
  margin-bottom: 58px;
  color: var(--ap-dark);
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.12;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.28fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.process-card {
  position: relative;
  min-height: 318px;
  padding: 48px 46px;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
}

.process-card strong {
  display: block;
  margin-bottom: 22px;
  color: #dfe8f2;
  font-size: 56px;
  font-weight: 800;
  line-height: 0.9;
}

.process-card h3 {
  margin-bottom: 20px;
  color: inherit;
  font-size: 22px;
  line-height: 1.1;
}

.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.process-card.blue {
  color: #fff;
  background: var(--ap-blue);
}

.process-card.blue strong {
  color: rgba(255, 255, 255, 0.2);
}

.process-card.blue p {
  color: rgba(255, 255, 255, 0.84);
}

.process-card.green {
  color: #126144;
  background: var(--ap-green);
}

.process-card.green strong {
  color: rgba(18, 97, 68, 0.16);
}

.process-card.green p {
  color: rgba(18, 69, 53, 0.75);
}

.process-mark {
  position: absolute;
  right: -4px;
  bottom: -6px;
  width: 118px;
  height: 118px;
  color: rgba(255, 255, 255, 0.14);
  stroke-width: 1.45;
}

.results-section {
  padding: 88px 0 94px;
  background: var(--ap-ice);
}

.advertiser-results .case-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
}

.advertiser-results .case-card {
  min-height: 0;
}

.advertiser-results .case-card img,
.advertiser-results .metric-panel {
  width: 100%;
  height: 278px;
}

.advertiser-results .metric-panel {
  display: grid;
  place-items: center;
  align-content: center;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, var(--ap-blue), #10bfd9 50%, var(--ap-green));
}

.advertiser-results .metric-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 48px;
  line-height: 1;
}

.advertiser-results .metric-panel span {
  display: block;
  color: #fff;
  background: transparent;
  font-size: 18px;
  font-weight: 800;
}

.advertiser-results .case-card > div:last-child {
  min-height: 0;
  padding: 30px 32px 28px;
}

.tags {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}

.tags span {
  min-height: 0;
  padding: 5px 10px;
  color: var(--ap-blue);
  background: #e8f2ff;
  font-size: 11px;
  font-weight: 700;
}

.green-tags span {
  color: #087f58;
  background: #ddfaec;
}

.advertiser-contact {
  padding-top: 96px;
  background: #f7fcff;
}

.contact-info ul {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  line-height: 1.4;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.12);
}

.contact-icon .line-icon {
  width: 18px;
  height: 18px;
}

.publisher-page {
  overflow: hidden;
  background: #f7fcff;
}

.publisher-breadcrumbs {
  width: min(1184px, calc(100% - 48px));
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 22px;
  position: relative;
  z-index: 2;
  margin: 0 auto 48px;
  padding: 0 36px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
}

.publisher-breadcrumbs svg {
  width: 16px;
  height: 16px;
}

.publisher-breadcrumbs a {
  color: inherit;
}

.publisher-breadcrumbs strong {
  color: #fff;
  font-weight: 500;
}

.publisher-page .primary-button,
.publisher-page .secondary-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.publisher-page .primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--ap-blue), #004eb6);
  box-shadow: 0 16px 32px rgba(0, 101, 228, 0.3);
}

.publisher-page .secondary-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.34);
}

.publisher-hero {
  position: relative;
  min-height: 712px;
  padding: 24px 0 54px;
  color: #fff;
  background: radial-gradient(circle at 76% 10%, rgba(52, 237, 148, 0.2), transparent 25%), radial-gradient(circle at 70% 78%, rgba(0, 101, 228, 0.34), transparent 36%), linear-gradient(135deg, #02070c 0%, #05101a 42%, #0a2230 100%);
}

.publisher-hero::before,
.publisher-hero::after,
.publisher-final-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.publisher-hero::before,
.publisher-final-card::before {
  background-image: linear-gradient(rgba(52, 237, 148, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 101, 228, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
}

.publisher-hero::after {
  background: radial-gradient(circle at 86% 62%, rgba(52, 237, 148, 0.14), transparent 24%);
}

.publisher-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(480px, 0.96fr) minmax(530px, 1.04fr);
  gap: 32px;
  align-items: start;
}

.publisher-hero-copy h1 {
  max-width: 690px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
}

.publisher-hero-copy h1 span,
.publisher-audience h2 span,
.publisher-steps h2 span,
.publisher-growth-copy h2 span,
.publisher-faq h2 span,
.publisher-final-card h2 span {
  color: var(--ap-green);
}

.publisher-hero-copy > p {
  max-width: 560px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.72;
}

.publisher-actions,
.publisher-hero-benefits {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.publisher-actions {
  margin-bottom: 34px;
}

.publisher-actions .primary-button::after,
.publisher-final-actions .primary-button::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
}

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

.publisher-hero-benefits article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px 12px;
  align-items: center;
}

.publisher-hero-benefits .line-icon {
  width: 34px;
  height: 34px;
  grid-row: span 2;
  color: rgba(255, 255, 255, 0.9);
  --icon-base: rgba(255, 255, 255, 0.9);
  --icon-accent: var(--ap-green);
}

.publisher-hero-benefits strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}

.publisher-hero-benefits span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.35;
}

.publisher-hero-visual {
  position: relative;
  min-height: 520px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  isolation: isolate;
}

.publisher-hero-visual::before,
.publisher-hero-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.publisher-hero-visual::before {
  display: none;
  top: -92px;
  right: -62px;
  z-index: 0;
  width: 440px;
  height: 280px;
  opacity: 0.72;
  background-image: url("data:image/svg+xml,%3Csvg width='440' height='280' viewBox='0 0 440 280' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2334ed94' stroke-opacity='.42' stroke-width='1'%3E%3Cpath d='M32 130 96 78 164 108 235 43 316 86 406 24'/%3E%3Cpath d='M96 78 128 22 235 43'/%3E%3Cpath d='M164 108 208 178 314 150 406 218'/%3E%3Cpath d='M235 43 314 150 406 24'/%3E%3Cpath d='M32 130 86 210 208 178'/%3E%3C/g%3E%3Cg fill='%2334ed94' fill-opacity='.95'%3E%3Ccircle cx='32' cy='130' r='3'/%3E%3Ccircle cx='96' cy='78' r='3'/%3E%3Ccircle cx='128' cy='22' r='3'/%3E%3Ccircle cx='164' cy='108' r='3'/%3E%3Ccircle cx='235' cy='43' r='3'/%3E%3Ccircle cx='316' cy='86' r='3'/%3E%3Ccircle cx='314' cy='150' r='3'/%3E%3Ccircle cx='406' cy='24' r='3'/%3E%3Ccircle cx='406' cy='218' r='3'/%3E%3Ccircle cx='86' cy='210' r='3'/%3E%3Ccircle cx='208' cy='178' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: drop-shadow(0 0 12px rgba(52, 237, 148, 0.36));
}

.publisher-hero-visual::after {
  display: none;
  right: 8px;
  bottom: 8px;
  z-index: 0;
  width: 520px;
  height: 230px;
  border-radius: 50%;
  opacity: 0.36;
  background: repeating-radial-gradient(ellipse at 50% 50%, transparent 0 18px, rgba(52, 237, 148, 0.56) 19px 20px, transparent 21px 36px);
  transform: perspective(520px) rotateX(66deg) rotate(-7deg);
  transform-origin: center;
}

.publisher-hero-image {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.34));
}

.performance-panel {
  position: absolute;
  top: 56px;
  left: 10px;
  z-index: 2;
  width: min(438px, calc(100% - 144px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(17, 39, 50, 0.92), rgba(17, 47, 60, 0.74));
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.performance-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.performance-top strong {
  color: var(--ap-green);
  font-size: 16px;
}

.performance-top span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.performance-chart {
  height: 156px;
  margin-bottom: 18px;
  color: rgba(52, 237, 148, 0.88);
}

.performance-chart svg {
  width: 100%;
  height: 100%;
  stroke-width: 2;
}

.performance-chart path {
  stroke: rgba(255, 255, 255, 0.08);
}

.performance-chart polyline {
  fill: none;
  stroke: var(--ap-green);
  stroke-width: 4;
}

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

.performance-stats div {
  padding: 15px 13px;
  border-radius: 8px;
  background: rgba(0, 101, 228, 0.16);
}

.performance-stats span,
.performance-stats small {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.performance-stats strong {
  display: block;
  margin: 7px 0;
  color: #fff;
  font-size: 18px;
}

.performance-stats small {
  color: var(--ap-green);
  font-weight: 800;
}

.program-stack {
  position: absolute;
  top: 36px;
  right: 2px;
  z-index: 3;
  display: grid;
  gap: 20px;
}

.program-stack article {
  width: 120px;
  min-height: 130px;
  display: grid;
  align-content: center;
  padding: 18px;
  border-radius: 12px;
  color: var(--ap-dark);
  background: linear-gradient(145deg, #fff, #eaf6ff);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.34);
  transform: rotate(2deg) translateY(-4px);
}

.program-stack article:nth-child(2) {
  transform: rotate(-3deg);
}

.program-stack article:nth-child(3) {
  transform: rotate(5deg) translateY(2px);
}

.program-stack strong {
  width: max-content;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.1;
}

.program-stack article:first-child strong {
  padding: 5px 8px;
  color: #fff;
  background: var(--ap-dark);
  letter-spacing: 0.04em;
}

.program-stack span {
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.program-stack small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.tracking-badge {
  position: absolute;
  right: 132px;
  bottom: 62px;
  z-index: 3;
  width: 270px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(12, 31, 42, 0.9), rgba(20, 58, 72, 0.72));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.tracking-badge .line-icon {
  width: 48px;
  height: 48px;
  color: rgba(255, 255, 255, 0.92);
  --icon-base: rgba(255, 255, 255, 0.92);
  --icon-accent: var(--ap-green);
}

.tracking-badge strong,
.tracking-badge span {
  display: block;
}

.tracking-badge strong {
  margin-bottom: 4px;
}

.tracking-badge span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.4;
}

.publisher-audience,
.publisher-steps,
.publisher-perks,
.publisher-faq {
  padding: 72px 0;
  background: #f7fcff;
}

.publisher-audience h2,
.publisher-steps h2,
.publisher-perks h2,
.publisher-faq h2 {
  margin-bottom: 42px;
  color: var(--ap-dark);
  text-align: center;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.16;
}

.publisher-audience-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.publisher-audience-cards article {
  min-height: 270px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 34px 28px;
  border: 1px solid #d9e9f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.publisher-audience-cards .line-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: var(--ap-dark);
  --icon-base: var(--ap-dark);
  --icon-accent: var(--ap-green);
}

.publisher-audience-cards h3 {
  margin-bottom: 14px;
  color: var(--ap-dark);
  font-size: 20px;
  line-height: 1.18;
}

.publisher-audience-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.publisher-reasons {
  padding: 76px 0;
  color: #fff;
  background: linear-gradient(135deg, #02070c, #07121b 58%, #0c2636);
}

.publisher-reasons h2 {
  margin-bottom: 52px;
  text-align: center;
  font-size: 30px;
  line-height: 1.18;
}

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

.publisher-reason-grid article {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  align-items: start;
}

.publisher-reason-grid article + article {
  border-left: 1px solid rgba(52, 237, 148, 0.4);
  padding-left: 40px;
}

.publisher-reason-grid .line-icon {
  width: 74px;
  height: 74px;
  padding: 16px;
  border: 1px solid var(--ap-green);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.92);
  --icon-base: rgba(255, 255, 255, 0.92);
  --icon-accent: var(--ap-green);
}

.publisher-reason-grid h3 {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.2;
}

.publisher-reason-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.publisher-steps {
  background: #fff;
}

.publisher-step-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.publisher-step-row article {
  position: relative;
  min-height: 245px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  grid-template-rows: 104px auto auto;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.publisher-step-row article:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 38px;
  right: -18px;
  color: var(--ap-green);
  font-size: 34px;
  line-height: 1;
}

.publisher-step-row article > span {
  position: static;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  color: rgba(39, 53, 61, 0.12);
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

.publisher-step-row article > div {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.publisher-step-row .line-icon {
  width: 36px;
  height: 36px;
  color: var(--ap-dark);
  --icon-base: var(--ap-dark);
  --icon-accent: var(--ap-green);
}

.publisher-step-row h3 {
  grid-column: 1 / -1;
  min-height: 48px;
  margin-top: 18px;
  margin-bottom: 12px;
  color: var(--ap-dark);
  font-size: 17px;
  line-height: 1.24;
}

.publisher-step-row p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.publisher-growth {
  padding: 0;
  color: #fff;
  background: radial-gradient(circle at 70% 48%, rgba(52, 237, 148, 0.14), transparent 28%), linear-gradient(135deg, #02070c, #07121b 58%, #0a2230);
}

.publisher-growth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 42px;
  align-items: center;
  min-height: 392px;
}

.publisher-growth-copy {
  padding: 64px 0;
}

.publisher-growth-copy h2 {
  max-width: 520px;
  margin-bottom: 26px;
  color: #fff;
  font-size: 36px;
  line-height: 1.12;
}

.publisher-growth-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.publisher-growth-visual {
  position: relative;
  min-height: 392px;
  overflow: hidden;
}

.publisher-growth-visual img {
  width: 100%;
  height: 392px;
  object-fit: cover;
  object-position: center center;
  opacity: 0.76;
  filter: saturate(0.86) contrast(1.1);
}

.publisher-growth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 52% 50%, rgba(52, 237, 148, 0.3), transparent 24%), radial-gradient(circle at 68% 54%, rgba(0, 101, 228, 0.18), transparent 34%), linear-gradient(90deg, rgba(2, 7, 12, 0.78), transparent 44%);
}

.publisher-growth-visual > div {
  position: absolute;
  right: 42px;
  bottom: 38px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(76px, 0.32fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 6px;
  align-items: center;
  align-content: center;
  width: min(320px, calc(100% - 84px));
  min-width: 292px;
  min-height: 112px;
  padding: 20px 24px;
  border: 1px solid rgba(52, 237, 148, 0.42);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(2, 7, 12, 0.86), rgba(8, 32, 43, 0.76));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.publisher-growth-visual .line-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 62px;
  height: 62px;
  justify-self: center;
  color: rgba(255, 255, 255, 0.92);
  --icon-base: rgba(255, 255, 255, 0.92);
  --icon-accent: var(--ap-green);
}

.publisher-growth-visual strong,
.publisher-growth-visual span {
  display: block;
  grid-column: 2;
  text-align: left;
}

.publisher-growth-visual strong {
  grid-row: 1;
  align-self: end;
  line-height: 1.25;
}

.publisher-growth-visual span {
  grid-row: 2;
  align-self: start;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.35;
}

.publisher-perk-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #d9e9f6;
  border-bottom: 1px solid #d9e9f6;
}

.publisher-perk-row article {
  min-height: 132px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  padding: 20px 14px;
  text-align: center;
}

.publisher-perk-row article + article {
  border-left: 1px solid #d9e9f6;
}

.publisher-perk-row .line-icon {
  width: 42px;
  height: 42px;
  color: var(--ap-dark);
  --icon-base: var(--ap-dark);
  --icon-accent: var(--ap-green);
}

.publisher-perk-row span {
  color: var(--ap-dark);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.publisher-faq {
  padding-top: 16px;
}

.publisher-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 42px;
}

.publisher-faq details {
  border: 1px solid #d9e9f6;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.publisher-faq summary {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  color: var(--ap-dark);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  list-style: none;
}

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

.publisher-faq summary::after {
  content: "⌄";
  color: var(--ap-blue);
  font-size: 18px;
}

.publisher-faq details[open] summary::after {
  transform: rotate(180deg);
}

.publisher-faq p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.publisher-final-cta {
  padding: 0 0 72px;
  background: #f7fcff;
}

.publisher-final-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 42px;
  align-items: center;
  padding: 42px 80px;
  border-radius: 10px;
  color: #fff;
  background: radial-gradient(circle at 78% 14%, rgba(52, 237, 148, 0.2), transparent 30%), linear-gradient(135deg, #02070c, #07121b 70%, #0c2636);
  box-shadow: var(--shadow-lg);
}

.publisher-final-card > * {
  position: relative;
  z-index: 1;
}

.publisher-final-card h2 {
  max-width: 760px;
  font-size: 32px;
  line-height: 1.16;
}

.publisher-final-actions {
  display: grid;
  gap: 16px;
}

.publisher-final-actions p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 1280px) {
  .header-inner {
    gap: 24px;
  }

  .main-nav {
    gap: 24px;
  }

  .header-actions {
    gap: 10px;
  }

  .flags {
    gap: 9px;
  }

  .auth-button {
    padding: 0 15px;
  }
}

@media (max-width: 1100px) {
  .advertiser-page .hero-grid,
  .advertiser-page .split-grid,
  .advertiser-page .split-grid.reverse {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .publisher-hero-grid,
  .publisher-growth-grid,
  .publisher-final-card {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .benefit-grid,
  .process-grid,
  .advertiser-results .case-grid {
    grid-template-columns: 1fr;
  }

  .publisher-audience-cards,
  .publisher-step-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advertiser-dashboard {
    min-height: auto;
  }

  .publisher-hero-visual {
    width: min(720px, 100%);
    min-height: 548px;
    justify-self: center;
  }

  .advertiser-page .hero-copy h1 {
    font-size: 52px;
  }

  .publisher-hero-copy h1 {
    font-size: 44px;
  }

  .benefit-card {
    min-height: 230px;
  }

  .publisher-reason-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .publisher-reason-grid article + article {
    border-left: 0;
    padding-left: 0;
  }

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

  .publisher-final-actions {
    max-width: 390px;
  }
}

@media (max-width: 760px) {
  .page-container,
  .breadcrumb-section,
  .publisher-breadcrumbs {
    width: min(100% - 32px, 1216px);
  }

  .publisher-breadcrumbs {
    min-height: 58px;
    padding: 16px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .auth-actions {
    flex: 1 1 100%;
    justify-content: center;
  }

  .advertiser-page .hero-section,
  .advertiser-benefits,
  .split-section,
  .process-section,
  .results-section,
  .advertiser-contact,
  .publisher-hero,
  .publisher-audience,
  .publisher-reasons,
  .publisher-steps,
  .publisher-perks,
  .publisher-faq,
  .publisher-final-cta {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .advertiser-page .hero-copy h1,
  .publisher-hero-copy h1 {
    font-size: 40px;
  }

  .advertiser-page .hero-copy > p,
  .publisher-hero-copy > p,
  .publisher-growth-copy p,
  .split-copy > p,
  .section-heading-center p,
  .benefit-card p {
    font-size: 16px;
    line-height: 1.65;
  }

  .advertiser-page .hero-actions,
  .publisher-actions,
  .form-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .advertiser-page .primary-button,
  .advertiser-page .secondary-button,
  .advertiser-page .green-button,
  .publisher-page .primary-button,
  .publisher-page .secondary-button,
  .publisher-page .green-button,
  .publisher-page .secondary-dark {
    width: 100%;
    white-space: normal;
  }

  .dashboard-grid,
  .dashboard-metric,
  .commission-panel,
  .publisher-audience-cards,
  .publisher-reason-grid,
  .publisher-step-row,
  .publisher-growth-grid,
  .publisher-faq-grid,
  .publisher-final-card,
  .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .publisher-final-card,
  .performance-panel,
  .tracking-badge {
    padding: 26px;
  }

  .publisher-hero-benefits,
  .performance-stats,
  .program-stack {
    grid-template-columns: 1fr;
  }

  .publisher-hero {
    min-height: 0;
  }

  .publisher-hero-copy h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  .publisher-hero-visual {
    min-height: 0;
  }

  .publisher-hero-visual::before,
  .publisher-hero-visual::after {
    display: none;
  }

  .performance-panel,
  .program-stack,
  .tracking-badge {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .program-stack {
    margin-top: 16px;
  }

  .program-stack article,
  .program-stack article:nth-child(2),
  .program-stack article:nth-child(3) {
    width: 100%;
    min-height: 104px;
    transform: none;
  }

  .tracking-badge {
    margin-top: 16px;
  }

  .publisher-reason-grid article {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .publisher-reason-grid .line-icon {
    width: 58px;
    height: 58px;
    padding: 12px;
  }

  .publisher-step-row article:not(:last-child)::after {
    display: none;
  }

  .publisher-growth-visual img {
    height: 300px;
  }

  .publisher-growth-visual > div {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    min-width: 0;
  }

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

  .publisher-perk-row article:nth-child(odd) {
    border-left: 0;
  }

  .advertiser-logo-strip .logo-carousel {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 12px;
  }

  .client-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
    gap: 24px;
  }

  .client-logos img {
    max-width: 120px;
  }

  .section-heading-center h2,
  .publisher-audience h2,
  .publisher-reasons h2,
  .publisher-steps h2,
  .publisher-growth-copy h2,
  .publisher-perks h2,
  .publisher-faq h2,
  .publisher-final-card h2,
  .split-copy h2,
  .process-section h2,
  .contact-info h2 {
    font-size: 32px;
    line-height: 1.18;
  }

  .split-image {
    min-height: auto;
  }

  .advertiser-results .metric-panel strong {
    font-size: 34px;
  }
}

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .hero-section,
  .audience-section,
  .split-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-section {
    gap: 48px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .audience-section,
  .split-layout {
    gap: 56px;
  }

  .step-grid,
  .stats-section,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .publisher-section .square-media,
  .growth-section .square-media {
    justify-self: start;
  }

  .align-right {
    text-align: left;
  }

  .align-right p {
    margin-left: 0;
  }

  .check-list-right li {
    padding-right: 0;
    padding-left: 32px;
  }

  .check-list-right li::before {
    right: auto;
    left: 0;
  }

  .check-list-right li::after {
    right: auto;
    left: 5px;
  }

  .footer-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 24px 0;
    text-align: center;
  }

  .footer-sitemap {
    order: 3;
  }

  .footer-sitemap-panel {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 760px) {
  .header-inner,
  .footer-inner,
  .section-contained {
    width: min(100% - 32px, 1280px);
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    min-height: 80px;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 12px 0;
  }

  .brand img {
    width: 124px;
  }

  .main-nav {
    order: 3;
    flex: 0 0 100%;
    justify-content: flex-start;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav a {
    flex: 0 0 auto;
    padding: 8px 0 10px;
    white-space: nowrap;
  }

  .header-actions {
    margin-left: auto;
  }

  .flags {
    display: none;
  }

  .hero-section,
  .audience-section,
  .steps-band,
  .stats-section,
  .security-section,
  .growth-section,
  .publisher-section,
  .results-band,
  .contact-section {
    min-height: 0;
  }

  .hero-section {
    padding: 64px 0 72px;
  }

  .hero-copy h1 {
    font-size: 48px;
    line-height: 1.08;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .hero-copy > p,
  .split-copy p,
  .audience-column header p,
  .results-header p,
  .contact-info p {
    font-size: 17px;
    line-height: 28px;
  }

  .hero-visual {
    width: 100%;
  }

  .roi-badge {
    left: 16px;
    bottom: -32px;
  }

  .logo-band-inner {
    gap: 32px;
    padding: 56px 0;
  }

  .logo-carousel {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 12px;
  }

  .logo-carousel button {
    width: 32px;
    height: 32px;
  }

  .logo-track {
    gap: 28px;
  }

  .audience-section,
  .steps-band,
  .stats-section,
  .security-section,
  .growth-section,
  .publisher-section,
  .results-band,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .audience-section,
  .split-layout,
  .stats-section,
  .case-grid,
  .results-header,
  .contact-section {
    padding-left: 0;
    padding-right: 0;
  }

  .audience-column h2,
  .split-copy h2,
  .center-title,
  .contact-info h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .feature-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .feature-icon {
    width: 44px;
    height: 44px;
  }

  .step-card {
    min-height: 0;
    padding: 32px;
  }

  .stat-card strong,
  .results-header h2,
  .metric-top strong {
    font-size: 40px;
    line-height: 44px;
  }

  .mini-card-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-info,
  .contact-form {
    padding: 40px 28px;
  }

  .case-card > img,
  .metric-top {
    height: 280px;
  }

  .footer-inner > nav {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-sitemap {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
  }

  .footer-sitemap-panel {
    bottom: calc(100% + 10px);
  }
}

.catalog-page {
  min-height: calc(100vh - 80px);
  background: #f6fbff;
}

.catalog-section {
  padding: 48px 0 72px;
}

.catalog-layout {
  width: min(1216px, calc(100% - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.catalog-filters {
  border-radius: 8px;
  background: var(--ap-ice);
}

.filter-form {
  display: grid;
  gap: 28px;
  padding: 28px 24px 26px;
}

.filter-form h2 {
  color: var(--ap-dark);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
}

.filter-search,
.filter-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.filter-search,
.filter-form fieldset {
  display: grid;
  gap: 15px;
}

.filter-search > span:first-child,
.filter-form legend {
  color: #324452;
  font-size: 11px;
  font-weight: 700;
}

.filter-form legend {
  margin-bottom: 18px;
}

.search-field {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid #dceaf7;
  border-radius: 5px;
  background: #fff;
  color: #8a99a8;
}

.search-field svg {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
}

.search-field input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--ap-dark);
  font-size: 11px;
}

.search-field input::placeholder {
  color: #9cabbd;
}

.filter-check {
  min-height: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #384a58;
  font-size: 11px;
  line-height: 1.25;
}

.filter-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.filter-check > span {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border: 1px solid #bfd2e3;
  border-radius: 3px;
  background: #fff;
}

.filter-check input:checked + span {
  border-color: var(--ap-blue);
  background: var(--ap-blue);
  box-shadow: inset 0 0 0 3px #fff;
}

.filter-check img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.more-filters {
  width: fit-content;
  color: var(--ap-blue);
  font-size: 11px;
  font-weight: 800;
}

.market-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.market-chips button {
  min-width: 31px;
  height: 24px;
  padding: 0 9px;
  border: 0;
  border-radius: 99px;
  color: #405165;
  background: #dae7f4;
  font-size: 10px;
  font-weight: 800;
}

.market-chips .active {
  color: #fff;
  background: var(--ap-blue);
}

.feed-toggle {
  min-height: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 6px;
  background: #dce9f6;
}

.feed-toggle label {
  display: grid;
}

.feed-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.feed-toggle span {
  display: grid;
  place-items: center;
  color: #394b59;
  font-size: 10px;
  font-weight: 700;
}

.feed-toggle input:checked + span {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.clear-filters {
  min-height: 44px;
  margin-top: -2px;
  border: 0;
  border-top: 1px solid #d9e8f6;
  background: transparent;
  color: #657588;
  font-size: 11px;
  font-weight: 700;
}

.catalog-content {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.catalog-toolbar h1 {
  margin-bottom: 8px;
  color: var(--ap-dark);
  font-size: 34px;
  line-height: 1.08;
  font-weight: 900;
}

.catalog-toolbar p {
  color: #607184;
  font-size: 13px;
  line-height: 1.45;
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  color: #3d4f5f;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.sort-control select {
  min-width: 130px;
  height: 36px;
  padding: 0 34px 0 14px;
  border: 1px solid #dceaf7;
  border-radius: 5px;
  background: #fff;
  color: #344555;
  font-size: 11px;
  font-weight: 700;
}

.program-list {
  display: grid;
  gap: 22px;
}

.program-card {
  min-height: 144px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 148px;
  gap: 24px;
  align-items: center;
  padding: 25px 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(39, 53, 61, 0.06);
}

.program-logo {
  width: 84px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 2px;
  color: #fff;
  text-align: center;
}

.program-logo span {
  display: block;
  font-size: 13px;
  font-weight: 900;
}

.program-logo-tech {
  background: radial-gradient(circle at 28% 48%, rgba(255, 92, 38, 0.9) 0 5px, transparent 6px), linear-gradient(135deg, #08182a, #113c65 52%, #051120);
}

.program-logo-travel {
  background: linear-gradient(135deg, #0a4271, #0b91c9);
}

.program-logo-bank {
  background: linear-gradient(135deg, #236f5d, #62d99d);
}

.program-copy {
  min-width: 0;
}

.program-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  flex-wrap: wrap;
}

.program-title-row h2 {
  color: var(--ap-dark);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 900;
}

.program-status,
.country-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 16px;
  border-radius: 3px;
  padding: 0 6px;
  font-size: 8px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.status-new {
  color: #006c4b;
  background: #d8fae9;
}

.status-paused {
  color: #6f7e8e;
  background: #edf3f8;
}

.country-tag {
  color: #6b7a8a;
  background: #f0f5fa;
}

.program-copy p {
  max-width: 620px;
  margin-bottom: 14px;
  color: #536579;
  font-size: 12px;
  line-height: 1.45;
}

.program-stats {
  display: flex;
  gap: 34px;
  margin: 0;
}

.program-stats div {
  min-width: 78px;
}

.program-stats dt {
  margin-bottom: 3px;
  color: #778699;
  font-size: 10px;
  font-weight: 700;
}

.program-stats dd {
  margin: 0;
  color: #1f5fbf;
  font-size: 11px;
  font-weight: 900;
}

.program-stats div:last-child dd {
  color: #384a58;
}

.program-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 136px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--ap-blue);
  box-shadow: 0 9px 18px rgba(0, 101, 228, 0.18);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.program-button.is-disabled {
  color: #7e8da0;
  background: #eef4fa;
  box-shadow: none;
  cursor: not-allowed;
}

.load-more {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 28px auto 0;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--ap-blue);
  font-size: 12px;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .catalog-layout {
    grid-template-columns: 228px minmax(0, 1fr);
    gap: 28px;
  }

  .program-card {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .program-logo {
    width: 76px;
    height: 66px;
  }

  .program-button {
    grid-column: 2;
    justify-self: start;
    margin-top: -4px;
  }
}

@media (max-width: 900px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filter-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .filter-form h2,
  .clear-filters {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .catalog-layout {
    width: min(100% - 32px, 1216px);
  }

  .catalog-section {
    padding: 34px 0 48px;
  }

  .catalog-toolbar {
    display: grid;
    gap: 16px;
  }

  .catalog-toolbar h1 {
    font-size: 30px;
  }

  .sort-control {
    justify-content: space-between;
    padding-top: 0;
  }

  .filter-form {
    grid-template-columns: 1fr;
  }

  .program-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .program-logo {
    width: 100%;
    height: 92px;
  }

  .program-button {
    grid-column: auto;
    width: 100%;
  }

  .program-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px 18px;
  }
}

.reference-page {
  overflow: hidden;
  color: #fff;
  background: #f7fcff;
}

.reference-hero {
  position: relative;
  min-height: 616px;
  padding: 0 0 78px;
  background:
    linear-gradient(115deg, rgba(0, 101, 228, 0.22), transparent 38%),
    linear-gradient(180deg, #020915 0%, #061021 52%, #07111f 100%);
}

.reference-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(52, 237, 148, 0.42), transparent);
}

.reference-breadcrumbs {
  margin-bottom: 12px;
}

.reference-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 650px);
  gap: 78px;
  align-items: center;
}

.reference-hero-copy {
  padding-top: 28px;
}

.reference-eyebrow {
  margin-bottom: 24px;
  color: var(--ap-green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.reference-eyebrow.blue {
  color: var(--ap-blue);
}

.reference-hero-copy h1 {
  margin-bottom: 28px;
  color: #fff;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.12;
}

.reference-hero-copy h1 span {
  color: var(--ap-green);
}

.reference-hero-copy > p:not(.reference-eyebrow) {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.7;
}

.reference-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ap-green);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.reference-link span {
  color: var(--ap-green);
  font-size: 22px;
  line-height: 1;
}

.reference-link.blue {
  margin-top: 0;
  color: var(--ap-blue);
  border-bottom-color: var(--ap-blue);
}

.reference-link.blue span {
  color: var(--ap-blue);
}

.reference-hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 650px);
}

.reference-hero-visual img {
  width: 100%;
  border-radius: 8px;
  filter: drop-shadow(0 34px 62px rgba(0, 0, 0, 0.28));
}

.reference-stat {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.reference-logo-band {
  padding: 50px 0 42px;
  background:
    linear-gradient(100deg, rgba(0, 101, 228, 0.16), transparent 52%),
    linear-gradient(180deg, #091024 0%, #080c1c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.reference-logo-grid {
  display: grid;
  grid-template-columns: 276px minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}

.reference-logo-grid h2 {
  color: #fff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.22;
}

.reference-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
}

.logo-wordmark {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
}

.logo-wordmark:nth-child(6n + 1) {
  border-left: 0;
}

.logo-wordmark.alza,
.logo-wordmark.zoot {
  font-size: 23px;
  font-weight: 950;
}

.logo-wordmark.tchibo {
  font-family: Georgia, serif;
  font-size: 25px;
  font-style: italic;
}

.logo-wordmark.more {
  justify-content: flex-start;
  font-size: 15px;
  font-weight: 700;
}

.reference-testimonials {
  position: relative;
  padding: 72px 0 46px;
  background:
    linear-gradient(115deg, #080d22, #111639 45%, #080d20 100%);
}

.reference-testimonials .page-container {
  position: relative;
}

.reference-carousel-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.reference-carousel-head .reference-eyebrow {
  margin-bottom: 0;
}

.reference-carousel-controls {
  display: flex;
  gap: 10px;
}

.reference-carousel-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(52, 237, 148, 0.48);
  border-radius: 50%;
  color: var(--ap-green);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.reference-carousel-button:hover,
.reference-carousel-button:focus-visible {
  color: #061021;
  background: var(--ap-green);
  border-color: var(--ap-green);
  transform: translateY(-1px);
}

.reference-carousel-button svg {
  width: 20px;
  height: 20px;
}

.reference-carousel {
  overflow: hidden;
  margin-top: -18px;
  padding-top: 32px;
}

.reference-quote-grid {
  display: flex;
  gap: 14px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.reference-quote-grid.is-rotating {
  opacity: 0.58;
  transform: translateY(5px);
}

.reference-quote-card {
  position: relative;
  flex: 0 0 calc((100% - 28px) / 3);
  min-height: 344px;
  display: flex;
  flex-direction: column;
  padding: 36px 34px 28px;
  border-radius: 8px;
}

.reference-quote-card.dark {
  color: #fff;
  background: linear-gradient(145deg, rgba(8, 15, 27, 0.96), rgba(20, 28, 41, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.reference-quote-card.light {
  color: var(--ap-dark);
  background: linear-gradient(135deg, #fff, #f4f8ff);
  box-shadow: 0 16px 48px rgba(0, 28, 61, 0.16);
}

.quote-mark {
  position: absolute;
  top: -30px;
  left: -6px;
  color: var(--ap-green);
  font-size: 86px;
  font-weight: 950;
  line-height: 1;
}

.reference-carousel-mark {
  top: 76px;
  left: -6px;
  z-index: 2;
  pointer-events: none;
}

.quote-logo {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  margin-bottom: 46px;
  color: inherit;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.quote-logo.notino {
  padding: 8px 13px;
  color: #fff;
  background: #02050b;
  font-size: 17px;
  letter-spacing: 1.6px;
}

.quote-logo.alza {
  color: #123467;
  font-size: 25px;
}

.quote-logo.zoot {
  font-size: 30px;
}

.reference-quote-card p {
  color: inherit;
  font-size: 16px;
  line-height: 1.65;
}

.reference-quote-card footer {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid currentColor;
  color: inherit;
}

.reference-quote-card.dark footer {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.reference-quote-card.light footer {
  border-top-color: rgba(39, 53, 61, 0.22);
}

.reference-quote-card footer strong,
.reference-quote-card footer span {
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.reference-quote-card footer span {
  opacity: 0.82;
}

.reference-cases {
  padding: 48px 0 34px;
  color: var(--ap-dark);
  background:
    linear-gradient(135deg, #f7fcff 0%, #fff 54%, var(--ap-ice) 100%);
}

.reference-section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 14px;
}

.reference-section-head h2 {
  color: #11192a;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.12;
}

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

.reference-case-card {
  overflow: hidden;
  position: relative;
  min-height: 240px;
  aspect-ratio: 290 / 190;
  border-radius: 8px;
  color: #fff;
  background-image: var(--case-image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 18px 40px rgba(9, 20, 38, 0.16);
}

.reference-case-card > * {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.reference-bottom {
  padding: 0 0 48px;
  color: #fff;
  background: linear-gradient(180deg, #f7fcff 0%, #fff 100%);
}

.reference-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: 8px;
}

.reference-wallet,
.reference-cta {
  min-height: 292px;
  border-radius: 8px;
}

.reference-wallet {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 24px;
  padding: 42px 54px 34px;
  background:
    linear-gradient(120deg, rgba(0, 101, 228, 0.24), transparent 58%),
    linear-gradient(145deg, #040914, #0a1223 70%, #081323);
}

.reference-wallet h2,
.reference-cta h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.16;
}

.reference-wallet p:not(.reference-eyebrow),
.reference-cta p:not(.reference-eyebrow) {
  max-width: 380px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.6;
}

.reference-wallet .reference-link,
.reference-cta .reference-link {
  margin-top: 34px;
}

.reference-wallet figure {
  position: relative;
  align-self: end;
  justify-self: end;
  margin: 0;
  padding: 4px 8px 0 0;
  perspective: 760px;
}

.reference-wallet img {
  position: relative;
  z-index: 1;
}

.reference-wallet-preview {
  width: 214px;
  max-width: 100%;
  border-radius: 0;
  transform: rotateZ(6deg) rotateY(-16deg);
  transform-origin: 50% 88%;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.42));
}

.reference-cta {
  padding: 42px 54px 34px;
  background:
    linear-gradient(135deg, rgba(52, 237, 148, 0.2), transparent 42%),
    linear-gradient(145deg, var(--ap-blue), #0d47b8 55%, #082b72);
}

@media (max-width: 1100px) {
  .reference-hero-grid,
  .reference-logo-grid,
  .reference-bottom-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .reference-hero-visual {
    justify-self: start;
  }

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

  .logo-wordmark:nth-child(6n + 1) {
    border-left: 1px solid rgba(255, 255, 255, 0.11);
  }

  .logo-wordmark:nth-child(3n + 1) {
    border-left: 0;
  }

  .reference-case-grid {
    grid-template-columns: 1fr;
  }

  .reference-quote-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .reference-case-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .reference-hero {
    min-height: 0;
    padding-bottom: 58px;
  }

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

  .reference-hero-copy {
    padding-top: 0;
  }

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

  .reference-hero-copy > p:not(.reference-eyebrow) {
    font-size: 16px;
  }

  .reference-link {
    margin-top: 34px;
  }

  .reference-carousel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .reference-carousel-controls {
    align-self: flex-end;
  }

  .reference-carousel-button {
    width: 42px;
    height: 42px;
  }

  .reference-quote-card {
    flex-basis: 100%;
  }

  .reference-logo-band,
  .reference-testimonials,
  .reference-cases {
    padding-top: 56px;
    padding-bottom: 56px;
  }

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

  .logo-wordmark,
  .logo-wordmark:nth-child(3n + 1) {
    min-height: 58px;
    border-left: 1px solid rgba(255, 255, 255, 0.11);
    font-size: 15px;
  }

  .logo-wordmark:nth-child(2n + 1) {
    border-left: 0;
  }

  .reference-section-head {
    display: grid;
    gap: 22px;
    align-items: start;
  }

  .reference-section-head h2 {
    font-size: 30px;
  }

  .reference-quote-card {
    min-height: 0;
    padding: 32px 26px 26px;
  }

  .reference-wallet {
    grid-template-columns: 1fr;
    padding: 34px 28px 0;
  }

  .reference-wallet figure {
    justify-self: center;
  }

  .reference-cta {
    padding: 34px 28px;
  }

  .reference-wallet h2,
  .reference-cta h2 {
    font-size: 29px;
  }
}

@media (max-width: 430px) {
  .reference-hero-copy h1 {
    font-size: 34px;
  }

  .reference-logo-wall {
    grid-template-columns: 1fr;
  }

  .logo-wordmark,
  .logo-wordmark:nth-child(2n + 1),
  .logo-wordmark:nth-child(3n + 1) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
  }

  .logo-wordmark:first-child {
    border-top: 0;
  }
}

.about-page {
  overflow: hidden;
  background: linear-gradient(180deg, #fbfdff 0%, #f3fbff 48%, #ffffff 100%);
}

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

.about-hero {
  position: relative;
  padding: 18px 0 34px;
  background: linear-gradient(118deg, #ffffff 0%, #f3fbf8 48%, #fff7ed 100%);
}

.about-breadcrumbs {
  width: min(1184px, calc(100% - 48px));
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 auto 18px;
  padding: 0;
  color: #7f8fa3;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 12px;
}

.about-breadcrumbs svg {
  width: 16px;
  height: 16px;
}

.about-breadcrumbs a {
  color: inherit;
}

.about-breadcrumbs strong {
  color: var(--ap-dark);
  font-weight: 600;
}

.about-hero-grid {
  min-height: 575px;
  display: grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.about-hero-copy {
  display: grid;
  gap: 22px;
  align-content: center;
}

.about-kicker {
  color: #02b86f;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-hero-copy h1,
.about-feature-intro h2,
.about-data-copy h2,
.about-team-intro h2,
.about-final-cta h2 {
  color: #07184f;
  font-weight: 900;
}

.about-hero-copy h1 {
  max-width: 390px;
  font-size: 52px;
  line-height: 1.16;
}

.about-hero-copy p:not(.about-kicker) {
  color: #44556d;
  font-size: 16px;
  line-height: 1.82;
}

.about-primary-link {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #00bb71, #0ad082);
  box-shadow: 0 14px 26px rgba(0, 166, 101, 0.22);
  font-size: 14px;
  font-weight: 900;
}

.about-primary-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.about-hero-copy small {
  max-width: 290px;
  color: #607187;
  font-size: 14px;
  line-height: 1.6;
}

.about-orbit {
  width: min(700px, 100%);
  justify-self: center;
}

.about-orbit-graphic {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.about-orbit-curve {
  fill: none;
  stroke-linecap: round;
  stroke-width: 3;
  stroke-dasharray: 4 10;
}

.about-orbit-curve-green {
  stroke: #00b971;
}

.about-orbit-curve-orange {
  stroke: #ff9d00;
}

.about-orbit-curve-blue {
  stroke: #0065e4;
}

.about-orbit-node circle {
  fill: rgba(255, 255, 255, 0.96);
  filter: drop-shadow(0 24px 18px rgba(39, 53, 61, 0.1));
  stroke: rgba(207, 229, 245, 0.84);
  stroke-width: 1.2;
}

.about-orbit-node text {
  fill: #475a72;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.about-orbit-heart path {
  fill: none;
  stroke: #19bd7a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.about-orbit-family {
  fill: #07184f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.about-projects {
  margin-top: 32px;
  margin-bottom: 0;
  padding: 44px 32px 44px;
  border: 1px solid rgba(207, 229, 245, 0.95);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 44px rgba(39, 53, 61, 0.06);
}

.about-section-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 44px;
  text-align: center;
}

.about-section-heading h2 {
  color: #07184f;
  font-size: 34px;
  line-height: 1.18;
}

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

.about-project-card {
  display: grid;
  align-content: start;
  gap: 22px;
  min-height: 410px;
  padding: 34px 26px 28px;
  border: 1px solid rgba(207, 229, 245, 0.95);
  border-top: 4px solid var(--ap-blue);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 34px rgba(39, 53, 61, 0.06);
}

.about-project-card-orange {
  border-top-color: #ff7900;
}

.about-project-card-amber {
  border-top-color: #f3a000;
}

.about-project-brand {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.about-project-brand img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.about-project-brand .about-project-logo-affiliate,
.about-project-brand .about-project-logo-wallet {
  height: 64px;
}

.about-project-brand .about-project-logo-creative {
  height: 64px;
  max-width: min(230px, 100%);
}

.about-project-brand-text strong {
  max-width: 220px;
  color: var(--ap-blue);
  font-size: 32px;
  font-weight: 900;
  line-height: 0.98;
}

.about-project-card-orange .about-project-brand-text strong {
  color: #ff7900;
}

.about-project-card-amber .about-project-brand-text strong {
  color: #2352b8;
}

.about-project-card p {
  color: #283c55;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.72;
}

.about-project-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-project-card li {
  position: relative;
  padding-left: 28px;
  color: #31445d;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.about-project-card li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #14c783;
}

.about-project-card li::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 5px;
  width: 6px;
  height: 3px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

.about-project-card-orange li::before,
.about-project-card-amber li::before {
  background: #ff9d00;
}

.about-project-card a {
  width: fit-content;
  align-self: end;
  margin-top: 6px;
  color: #02a965;
  font-size: 15px;
  font-weight: 900;
}

.about-project-card-orange a,
.about-project-card-amber a {
  color: #ff7900;
}

.about-benefits,
.about-pillars {
  padding: 70px 0;
}

.about-benefits {
  background: linear-gradient(90deg, #f4fff9 0%, #ffffff 52%, #f7fbff 100%);
}

.about-pillars {
  background: linear-gradient(90deg, #fbfaff 0%, #ffffff 48%, #f7fbff 100%);
}

.about-intro-pillars {
  padding-top: 52px;
  padding-bottom: 60px;
}

.about-feature-row {
  display: grid;
  grid-template-columns: minmax(220px, 330px) repeat(4, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.about-feature-intro {
  display: grid;
  gap: 14px;
}

.about-feature-intro h2 {
  max-width: 330px;
  font-size: 34px;
  line-height: 1.18;
}

.about-feature-row article {
  display: grid;
  gap: 14px;
}

.about-feature-row h3 {
  color: #07184f;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
}

.about-feature-row p {
  color: #42546a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
}

.about-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.about-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.8;
}

.about-icon-green {
  color: #06b86f;
}

.about-icon-purple {
  color: #8b45cf;
  border: 1px solid #eadfff;
}

.about-data {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 26px;
  margin-bottom: 68px;
  padding: 38px 28px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #020e2f, #061b4d 62%, #082451);
  box-shadow: 0 26px 48px rgba(7, 24, 79, 0.18);
}

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

.about-data-copy h2 {
  color: #fff;
  font-size: 30px;
  line-height: 1.18;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
}

.about-stat-grid div {
  display: grid;
  grid-template-columns: 34px minmax(88px, 124px);
  grid-template-areas:
    "value value"
    "icon label";
  justify-content: center;
  column-gap: 10px;
  row-gap: 12px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.about-stat-grid dt,
.about-stat-grid dd {
  margin: 0;
}

.about-stat-grid dt {
  grid-area: icon;
  align-self: start;
}

.about-stat-grid dd {
  display: contents;
}

.about-stat-grid dt svg {
  width: 34px;
  height: 34px;
  color: #fff;
  stroke-width: 1.8;
}

.about-stat-grid strong {
  grid-area: value;
  justify-self: center;
  color: #21e889;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.about-stat-grid span {
  grid-area: label;
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.about-team {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 62px;
}

.about-team-intro {
  display: grid;
  gap: 18px;
}

.about-team-intro h2 {
  font-size: 36px;
  line-height: 1.18;
}

.about-team-intro p:not(.about-kicker) {
  color: #42546a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.74;
}

.about-text-link {
  width: fit-content;
  color: #02a965;
  font-size: 14px;
  font-weight: 900;
}

.about-team-photo {
  overflow: hidden;
  margin-top: 10px;
  border-radius: 8px;
  background: #e9f6f2;
  box-shadow: 0 18px 34px rgba(39, 53, 61, 0.08);
}

.about-team-photo img {
  width: 100%;
  min-height: 208px;
  object-fit: cover;
}

.about-team-content {
  display: grid;
  gap: 44px;
}

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

.about-role-grid article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  column-gap: 16px;
  row-gap: 16px;
  align-content: start;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(207, 229, 245, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 28px rgba(39, 53, 61, 0.04);
}

.about-role-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #10b978;
  background: #edfff7;
}

.about-role-icon svg {
  width: 26px;
  height: 26px;
}

.about-role-grid h3 {
  align-self: center;
  color: #07184f;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.about-role-grid p {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: #42546a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.65;
}

.about-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 42px;
  align-items: center;
  margin-bottom: 72px;
  padding: 42px 46px;
  border-radius: 12px;
  background: linear-gradient(110deg, #d8f9e8 0%, #ffffff 52%, #efe4ff 100%);
}

.about-final-cta h2 {
  max-width: 560px;
  font-size: 38px;
  line-height: 1.18;
}

.about-final-cta p {
  max-width: 440px;
  margin-bottom: 22px;
  color: #42546a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.about-paper-plane {
  position: absolute;
  right: 26px;
  bottom: 12px;
  width: 190px;
  color: #14b978;
  opacity: 0.7;
  pointer-events: none;
}

.about-paper-plane path:first-child {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.about-paper-plane path:last-child {
  fill: #17bd73;
  stroke: #17bd73;
  stroke-width: 1;
}

@media (max-width: 1180px) {
  .about-hero-grid,
  .about-team,
  .about-data {
    grid-template-columns: 1fr;
  }

  .about-hero-grid {
    gap: 34px;
  }

  .about-hero-copy h1 {
    max-width: 720px;
  }

  .about-orbit {
    width: min(720px, 100%);
    margin: 0 auto;
  }

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

  .about-feature-intro {
    grid-column: 1 / -1;
  }

  .about-feature-intro h2 {
    max-width: 760px;
  }

  .about-stat-grid div:first-child {
    border-left: 0;
  }
}

@media (max-width: 900px) {
  .about-project-grid,
  .about-role-grid {
    grid-template-columns: 1fr;
  }

  .about-project-card {
    min-height: 0;
  }

  .about-stat-grid,
  .about-final-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat-grid div:nth-child(odd) {
    border-left: 0;
  }

  .about-stat-grid div {
    grid-template-columns: 34px minmax(110px, 160px);
    padding: 22px 18px;
  }

}

@media (max-width: 700px) {
  .about-container,
  .about-breadcrumbs {
    width: min(100% - 32px, 1216px);
  }

  .about-hero {
    padding-top: 14px;
  }

  .about-breadcrumbs {
    min-height: 34px;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
    padding: 0;
  }

  .about-hero-grid {
    min-height: 0;
  }

  .about-hero-copy h1 {
    font-size: 38px;
  }

  .about-hero-copy p:not(.about-kicker) {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-primary-link {
    width: 100%;
    min-height: 52px;
  }

  .about-orbit {
    width: min(100%, 560px);
  }

  .about-projects {
    width: min(100% - 32px, 1216px);
    padding: 36px 18px;
  }

  .about-section-heading h2,
  .about-feature-intro h2,
  .about-data-copy h2,
  .about-team-intro h2,
  .about-final-cta h2 {
    font-size: 29px;
  }

  .about-benefits,
  .about-pillars {
    padding: 52px 0;
  }

  .about-feature-row,
  .about-stat-grid,
  .about-final-cta {
    grid-template-columns: 1fr;
  }

  .about-data {
    gap: 16px;
    margin-bottom: 52px;
    padding: 28px 20px;
  }

  .about-stat-grid div,
  .about-stat-grid div:nth-child(odd) {
    grid-template-columns: 34px minmax(130px, 180px);
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 22px 0;
  }

  .about-stat-grid div:first-child {
    border-top: 0;
  }

  .about-role-grid article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px;
  }

  .about-final-cta {
    margin-bottom: 52px;
    padding: 34px 24px;
  }

  .about-paper-plane {
    display: none;
  }
}

.legal-page {
  min-height: calc(100vh - 80px);
  background:
    radial-gradient(circle at 83% 7%, rgba(52, 237, 148, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 48%, #ffffff 100%);
}

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

.legal-hero {
  padding: 18px 0 50px;
  background: linear-gradient(118deg, #ffffff 0%, #f8fdfb 48%, #f8fcff 100%);
}

.legal-breadcrumbs {
  width: min(1128px, calc(100% - 48px));
  margin-bottom: 14px;
}

.legal-hero-grid {
  min-height: 355px;
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
}

.legal-hero-copy {
  display: grid;
  gap: 24px;
  padding-top: 40px;
}

.legal-hero-copy h1 {
  color: #07184f;
  font-size: 58px;
  font-weight: 900;
  line-height: 1.08;
}

.legal-hero-copy p {
  max-width: 520px;
  color: #31425f;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.72;
}

.legal-hero-card {
  min-height: 320px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(0, 169, 101, 0.46);
  border-radius: 10px;
  color: #0cae67;
  background:
    radial-gradient(circle at 50% 42%, rgba(52, 237, 148, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(247, 255, 251, 0.96), rgba(255, 255, 255, 0.94));
  text-align: center;
}

.legal-hero-card svg {
  width: 86px;
  height: 86px;
  stroke-width: 2.5;
}

.legal-hero-card strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.legal-index {
  padding: 48px 0 76px;
}

.legal-index > h2 {
  margin-bottom: 22px;
  color: #07184f;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.legal-tabs {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 54px;
  overflow-x: auto;
  scrollbar-width: none;
}

.legal-tabs::-webkit-scrollbar {
  display: none;
}

.legal-tab {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 16px;
  padding: 0 4px 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: #667086;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-tab svg {
  width: 27px;
  height: 27px;
  color: #20bf70;
  stroke-width: 2.1;
}

.legal-tab.is-active {
  color: var(--ap-blue);
  border-bottom-color: currentColor;
}

.legal-tab.is-active svg {
  color: var(--ap-blue);
}

.legal-panel {
  margin-top: 0;
}

.legal-panel[hidden] {
  display: none;
}

.legal-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: start;
}

.legal-main {
  min-width: 0;
  display: grid;
  gap: 26px;
}

.legal-summary-card,
.legal-topic-card,
.legal-contact-card {
  border: 1px solid rgba(52, 237, 148, 0.38);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 50%, rgba(52, 237, 148, 0.08), transparent 22%),
    #ffffff;
}

.legal-summary-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 34px;
}

.legal-summary-icon,
.legal-topic-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #13b96f;
  background: rgba(52, 237, 148, 0.12);
}

.legal-summary-icon svg,
.legal-topic-icon svg {
  width: 42px;
  height: 42px;
  stroke-width: 2.2;
}

.legal-summary-card h3,
.legal-topic-card h3 {
  margin-bottom: 12px;
  color: #0cae67;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.legal-summary-card p,
.legal-topic-card p {
  color: #31425f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.legal-text-block,
.legal-detail {
  color: #31425f;
}

.legal-text-block h3 {
  margin-bottom: 10px;
  color: #07184f;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.legal-text-block h3 span,
.legal-detail summary strong {
  color: var(--ap-blue);
}

.legal-text-block p,
.legal-detail p {
  color: #31425f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.72;
}

.legal-detail {
  border-bottom: 1px solid #d8e5ef;
}

.legal-detail summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #07184f;
  cursor: pointer;
  list-style: none;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.legal-detail summary::-webkit-details-marker {
  display: none;
}

.legal-detail summary svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--ap-blue);
  transition: transform 0.2s ease;
}

.legal-detail[open] summary svg {
  transform: rotate(180deg);
}

.legal-detail p {
  padding: 0 40px 24px 0;
}

.legal-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 6px;
  padding: 20px 28px;
  border: 1px solid rgba(0, 101, 228, 0.28);
  border-radius: 8px;
  background: #f4f9ff;
}

.legal-note > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--ap-blue);
  box-shadow: 0 0 0 8px rgba(0, 101, 228, 0.09);
  font-size: 24px;
  font-weight: 900;
  font-style: normal;
}

.legal-note p {
  color: #07184f;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

.legal-download,
.legal-contact-question a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 6px;
  color: var(--ap-blue);
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-download {
  cursor: default;
}

.legal-download svg,
.legal-contact-question a svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}

.legal-side-nav {
  position: sticky;
  top: 108px;
  min-width: 0;
}

.legal-side-nav h3 {
  margin-bottom: 20px;
  color: #07184f;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.legal-side-nav nav {
  display: grid;
}

.legal-side-nav a {
  position: relative;
  min-height: 55px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d8e5ef;
  color: #4b5d76;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.legal-side-nav a.is-active,
.legal-side-nav a:hover,
.legal-side-nav a:focus-visible {
  color: #0cae67;
}

.legal-side-nav a.is-active::before {
  content: "";
  width: 4px;
  height: 24px;
  margin-right: 12px;
  border-radius: 8px;
  background: #14bf74;
}

.legal-topic-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 36px;
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.legal-card-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(0, 101, 228, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(39, 53, 61, 0.06);
}

.legal-card-grid h4 {
  margin: 0 0 12px;
  color: #07184f;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.legal-card-grid p {
  margin: 0;
  color: #31425f;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.68;
}

.legal-contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 44px;
  align-items: center;
  margin-top: 44px;
  padding: 34px;
}

.legal-contact-question {
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.legal-contact-question > span {
  width: 102px;
  height: 102px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #14bf74;
  background: rgba(52, 237, 148, 0.12);
  font-size: 58px;
  font-weight: 400;
}

.legal-contact-question h2 {
  margin-bottom: 12px;
  color: #07184f;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.25;
}

.legal-contact-question p {
  max-width: 420px;
  margin-bottom: 22px;
  color: #31425f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.legal-contact-question a {
  color: #0cae67;
}

.legal-contact-list {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 6px 0 6px 42px;
  border-left: 1px solid #d8e5ef;
}

.legal-contact-list div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.legal-contact-list dt {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #13b96f;
  background: rgba(52, 237, 148, 0.13);
}

.legal-contact-list svg {
  width: 24px;
  height: 24px;
}

.legal-contact-list dd {
  display: grid;
  gap: 4px;
  margin: 0;
  color: #07184f;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.legal-contact-list dd span {
  color: #6b7890;
  font-weight: 600;
}

.legal-contact-list a,
.legal-contact-list strong {
  color: #00a965;
  font-weight: 900;
}

@media (max-width: 1080px) {
  .legal-hero-grid,
  .legal-content-layout,
  .legal-contact-card {
    grid-template-columns: 1fr;
  }

  .legal-hero-grid {
    min-height: 0;
    gap: 38px;
  }

  .legal-hero-copy {
    padding-top: 18px;
  }

  .legal-hero-card {
    min-height: 260px;
  }

  .legal-side-nav {
    position: static;
    order: -1;
  }

  .legal-side-nav nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 28px;
  }

  .legal-contact-list {
    padding-left: 0;
    border-left: 0;
  }

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

@media (max-width: 760px) {
  .legal-container,
  .legal-breadcrumbs {
    width: min(100% - 32px, 1128px);
  }

  .legal-hero {
    padding-top: 14px;
    padding-bottom: 42px;
  }

  .legal-hero-copy h1 {
    font-size: 40px;
    line-height: 1.14;
  }

  .legal-hero-copy p {
    font-size: 16px;
    line-height: 1.68;
  }

  .legal-hero-card {
    min-height: 230px;
    padding: 28px 18px;
  }

  .legal-index {
    padding: 42px 0 64px;
  }

  .legal-tabs {
    gap: 22px;
    margin: 0 -16px 38px;
    padding: 0 16px;
  }

  .legal-tab {
    max-width: 260px;
    white-space: normal;
  }

  .legal-summary-card,
  .legal-topic-card {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .legal-detail summary {
    min-height: 66px;
    font-size: 18px;
  }

  .legal-detail p {
    padding-right: 0;
  }

  .legal-note {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .legal-download,
  .legal-contact-question a {
    width: 100%;
    white-space: normal;
  }

  .legal-side-nav nav {
    grid-template-columns: 1fr;
  }

  .legal-side-nav {
    order: 0;
  }

  .legal-side-nav a {
    min-height: 48px;
  }

  .legal-contact-card {
    padding: 28px;
  }

  .legal-contact-question {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .legal-contact-question > span {
    width: 82px;
    height: 82px;
    font-size: 46px;
  }

  .legal-contact-question h2 {
    font-size: 22px;
  }

  .legal-contact-list div {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .legal-contact-list dt {
    width: 46px;
    height: 46px;
  }
}

.news-page {
  min-height: calc(100vh - 80px);
  background:
    radial-gradient(circle at 82% 9%, rgba(52, 237, 148, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fcff 50%, #ffffff 100%);
}

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

.news-hero {
  position: relative;
  padding: 18px 0 50px;
  background: linear-gradient(118deg, #ffffff 0%, #f4fbf8 48%, #f8fcff 100%);
}

.news-breadcrumbs {
  width: min(1128px, calc(100% - 48px));
  margin-bottom: 14px;
}

.news-hero-grid {
  min-height: 498px;
  display: grid;
  grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
  gap: 86px;
  align-items: center;
}

.news-hero-copy {
  display: grid;
  gap: 25px;
  align-content: center;
}

.news-card-meta i {
  width: 5px;
  height: 5px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #2ac987;
}

.news-hero-copy h1 {
  max-width: 470px;
  color: #07184f;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.16;
}

.news-hero-copy > p {
  max-width: 460px;
  color: #31425f;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.68;
}

.news-primary-link {
  width: fit-content;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 28px;
  border: 1px solid var(--ap-blue);
  border-radius: 7px;
  color: var(--ap-blue);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.news-primary-link:hover,
.news-primary-link:focus-visible {
  color: #fff;
  background: var(--ap-blue);
  box-shadow: 0 14px 28px rgba(0, 101, 228, 0.18);
}

.news-primary-link svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.news-hero-visual {
  min-height: 390px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(52, 237, 148, 0.48);
  border-radius: 10px;
  color: #667086;
  background:
    radial-gradient(circle at 50% 42%, rgba(52, 237, 148, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(247, 255, 251, 0.96), rgba(255, 255, 255, 0.92));
  text-align: center;
}

.news-hero-visual svg {
  width: 84px;
  height: 84px;
  color: #74dfa9;
  stroke-width: 2.4;
}

.news-hero-visual strong {
  max-width: 320px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.7;
  text-transform: uppercase;
}

.news-index {
  padding: 52px 0 86px;
}

.news-index h2 {
  margin-bottom: 20px;
  color: #07184f;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.25;
}

.news-topic-tabs {
  display: flex;
  align-items: center;
  gap: 34px;
}

.news-topic-tab {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px 17px 24px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: #667086;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.news-topic-tab svg {
  width: 28px;
  height: 28px;
  color: currentColor;
  stroke-width: 2;
}

.news-topic-tab[data-news-filter="kariera"] svg,
.news-topic-tab[data-news-filter="udalosti"] svg {
  color: #00a965;
}

.news-topic-tab[data-news-filter="oznameni"] svg,
.news-topic-tab[data-news-filter="all"].is-active svg {
  color: var(--ap-blue);
}

.news-topic-tab.is-active {
  color: var(--ap-blue);
  border-bottom-color: currentColor;
}

.news-topic-tab[data-news-filter="kariera"].is-active,
.news-topic-tab[data-news-filter="udalosti"].is-active {
  color: #00a965;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 64px;
  margin-top: 50px;
}

.news-card {
  min-width: 0;
  display: grid;
  gap: 20px;
  color: inherit;
}

.news-card[hidden] {
  display: none !important;
}

.news-card-visual {
  height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(52, 237, 148, 0.36);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 45%, rgba(52, 237, 148, 0.08), transparent 34%),
    linear-gradient(135deg, #f8fffb 0%, #ffffff 72%);
}

.news-card-body {
  display: grid;
  gap: 14px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: #66758c;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.news-tag {
  font-weight: 900;
  text-transform: uppercase;
}

.news-tag-blue {
  color: var(--ap-blue);
}

.news-tag-green {
  color: #00a965;
}

.news-card h3 {
  color: #07184f;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.24;
  transition: color 0.2s ease;
}

.news-card-body > p:not(.news-card-meta) {
  color: #31425f;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.news-card:hover h3,
.news-card:focus-visible h3 {
  color: var(--ap-blue);
}

.news-read-more {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  color: var(--ap-blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.news-read-more-green {
  color: #00a965;
}

.news-read-more svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.5;
}

.news-image-placeholder svg,
.news-event-placeholder svg,
.news-trend-placeholder svg {
  width: 90px;
  height: 90px;
  color: #74dfa9;
  stroke-width: 2.4;
}

.news-chart-placeholder {
  border-color: rgba(52, 237, 148, 0.4);
  background: linear-gradient(135deg, rgba(250, 255, 253, 0.96), #ffffff 76%);
}

.news-chart-placeholder svg {
  width: min(92%, 420px);
  height: auto;
  color: #c7ccd5;
  overflow: visible;
}

.news-chart-track {
  fill: none;
  stroke: #dce9f2;
  stroke-width: 18;
}

.news-chart-ring {
  fill: none;
  stroke-width: 18;
  stroke-linecap: butt;
  transform: rotate(-90deg);
  transform-origin: 108px 105px;
}

.news-chart-ring-blue {
  stroke: var(--ap-blue);
  stroke-dasharray: 250 365;
}

.news-chart-ring-green {
  stroke: #7be0aa;
  stroke-dasharray: 58 365;
  stroke-dashoffset: -250;
}

.news-chart-placeholder text {
  fill: #07184f;
  stroke: none;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 29px;
  font-weight: 900;
}

.news-chart-placeholder path {
  color: #c5cad2;
  stroke-width: 4;
}

.news-chart-dot {
  stroke: none;
}

.news-chart-dot-blue {
  fill: var(--ap-blue);
}

.news-chart-dot-mid {
  fill: #3d8bdd;
}

.news-chart-dot-soft {
  fill: #6cb9ce;
}

.news-chart-dot-green {
  fill: #7be0aa;
}

.news-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 52px;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(0, 101, 228, 0.42);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(39, 53, 61, 0.06);
}

.news-card-featured .news-card-visual {
  height: 310px;
  border-color: transparent;
}

.news-video-placeholder {
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 101, 228, 0.08), transparent 36%),
    linear-gradient(135deg, #eef6ff 0%, #ffffff 100%);
}

.news-play-button {
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ap-blue);
  border-radius: 50%;
  color: var(--ap-blue);
  background: rgba(255, 255, 255, 0.78);
}

.news-play-button svg {
  width: 42px;
  height: 42px;
  margin-left: 6px;
  fill: currentColor;
  stroke: none;
}

.news-event-placeholder {
  border-color: rgba(0, 169, 101, 0.34);
  background: linear-gradient(135deg, #f3fff9 0%, #ffffff 74%);
}

.news-trend-placeholder {
  border-color: rgba(0, 101, 228, 0.24);
  background: linear-gradient(135deg, #f3f8ff 0%, #ffffff 74%);
}

.news-trend-placeholder svg {
  color: var(--ap-blue);
}

@media (max-width: 1080px) {
  .news-hero-grid,
  .news-card-featured {
    grid-template-columns: 1fr;
  }

  .news-hero-grid {
    min-height: 0;
    gap: 42px;
  }

  .news-hero-copy h1 {
    max-width: 720px;
  }

  .news-hero-visual {
    min-height: 320px;
  }

  .news-grid {
    gap: 48px 34px;
  }
}

@media (max-width: 760px) {
  .news-container,
  .news-breadcrumbs {
    width: min(100% - 32px, 1128px);
  }

  .news-hero {
    padding-top: 14px;
    padding-bottom: 42px;
  }

  .news-hero-grid {
    gap: 34px;
  }

  .news-hero-copy {
    gap: 22px;
  }

  .news-hero-copy h1 {
    font-size: 38px;
    line-height: 1.13;
  }

  .news-hero-copy > p {
    font-size: 16px;
    line-height: 1.66;
  }

  .news-primary-link {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
  }

  .news-hero-visual {
    min-height: 244px;
    padding: 28px 18px;
  }

  .news-hero-visual strong {
    font-size: 13px;
  }

  .news-index {
    padding: 42px 0 64px;
  }

  .news-index h2 {
    font-size: 21px;
  }

  .news-topic-tabs {
    gap: 22px;
    overflow-x: auto;
    margin-right: -16px;
    padding-right: 16px;
    scrollbar-width: none;
  }

  .news-topic-tabs::-webkit-scrollbar {
    display: none;
  }

  .news-topic-tab {
    min-height: 56px;
    gap: 12px;
    padding: 0 6px 14px;
  }

  .news-topic-tab svg {
    width: 24px;
    height: 24px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 34px;
  }

  .news-card-visual,
  .news-card-featured .news-card-visual {
    height: 220px;
  }

  .news-card-featured {
    gap: 24px;
    padding: 20px;
  }

  .news-card h3 {
    font-size: 23px;
  }

  .news-play-button {
    width: 88px;
    height: 88px;
  }
}

.post-page {
  min-height: calc(100vh - 80px);
  background:
    radial-gradient(circle at 82% 10%, rgba(52, 237, 148, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 54%, #ffffff 100%);
}

.post-shell {
  width: min(1128px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 92px;
}

.post-breadcrumbs {
  width: 100%;
  margin-bottom: 36px;
}

.post-breadcrumbs a:not([aria-label]) {
  color: #7f8fa3;
}

.post-breadcrumbs strong {
  color: var(--ap-dark);
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 704px) minmax(280px, 340px);
  gap: 58px;
  align-items: start;
}

.post-content {
  min-width: 0;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #66758c;
  font-size: 14px;
  font-weight: 800;
}

.post-meta a {
  color: var(--ap-blue);
  text-transform: uppercase;
}

.post-meta span {
  color: #35c985;
}

.post-hero {
  max-width: 620px;
  display: grid;
  gap: 22px;
}

.post-hero h1 {
  color: #07184f;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.16;
}

.post-hero p {
  color: #31425f;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.72;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.post-author-avatar {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 101, 228, 0.12);
  border-radius: 50%;
  color: var(--ap-blue);
  background: #edf5ff;
  font-size: 15px;
  font-weight: 900;
}

.post-author div {
  display: grid;
  gap: 4px;
}

.post-author strong {
  color: #07184f;
  font-size: 15px;
  font-weight: 900;
}

.post-author span:not(.post-author-avatar) {
  color: #71809a;
  font-size: 15px;
  font-weight: 700;
}

.post-media {
  position: relative;
  overflow: hidden;
  margin: 54px 0 34px;
  border: 1px solid rgba(7, 24, 79, 0.1);
  border-radius: 8px;
  background: #dcebf4;
  box-shadow: 0 20px 44px rgba(39, 53, 61, 0.08);
}

.post-media img {
  width: 100%;
  height: 356px;
  object-fit: cover;
  object-position: center;
}

.post-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 24, 79, 0.04), rgba(7, 24, 79, 0.18));
  pointer-events: none;
}

.post-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(0, 101, 228, 0.5);
  border-radius: 50%;
  color: var(--ap-blue);
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 101, 228, 0.2);
  transform: translate(-50%, -50%);
}

.post-play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
  fill: currentColor;
  stroke: none;
}

.post-body {
  display: grid;
  gap: 30px;
  color: #263755;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.74;
}

.post-body section {
  display: grid;
  gap: 10px;
}

.post-body h2 {
  color: #07184f;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.32;
}

.post-body p {
  max-width: 690px;
}

.post-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 24px 0;
  border: 1px solid rgba(52, 237, 148, 0.32);
  border-radius: 8px;
  background: linear-gradient(105deg, rgba(234, 255, 247, 0.96), #ffffff 52%, rgba(234, 246, 255, 0.9));
}

.post-stats div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 0 28px;
}

.post-stats div + div {
  border-left: 1px solid rgba(207, 229, 245, 0.95);
}

.post-stats dt,
.post-stats dd {
  margin: 0;
}

.post-stats dt {
  color: #20be76;
}

.post-stats div:nth-child(2) dt {
  color: var(--ap-blue);
}

.post-stats dt svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.8;
}

.post-stats dd {
  display: grid;
  gap: 8px;
}

.post-stats strong {
  color: #07184f;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.post-stats span {
  color: #42516a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.post-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(207, 229, 245, 0.95);
}

.post-share strong {
  margin-right: 8px;
  color: #07184f;
  font-size: 16px;
  font-weight: 900;
}

.post-share a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 101, 228, 0.18);
  border-radius: 50%;
  color: var(--ap-blue);
  background: rgba(255, 255, 255, 0.9);
}

.post-share a svg {
  width: 22px;
  height: 22px;
}

.post-share-link {
  color: #10b978;
  border-color: rgba(52, 237, 148, 0.56);
}

.post-sidebar {
  display: grid;
  gap: 58px;
  min-width: 0;
}

.post-banner {
  min-height: 364px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 26px;
  border: 1px solid rgba(52, 237, 148, 0.52);
  border-radius: 8px;
  color: #16ad6f;
  background: linear-gradient(145deg, rgba(243, 255, 250, 0.96), rgba(255, 255, 255, 0.92));
}

.post-banner svg {
  width: 68px;
  height: 68px;
  color: #66cf9b;
  stroke-width: 1.9;
}

.post-banner strong {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.post-section-nav {
  display: grid;
}

.post-section-nav h2 {
  margin-bottom: 20px;
  color: #07184f;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.post-section-nav a {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 16px 0 16px 16px;
  border-bottom: 1px solid rgba(207, 229, 245, 0.95);
  color: #3e4e66;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.post-section-nav a.active {
  color: #00a965;
}

.post-section-nav a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 4px;
  border-radius: 99px;
  background: #0cc677;
}

.post-newsletter {
  display: grid;
  gap: 16px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(0, 101, 228, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 16%, rgba(0, 101, 228, 0.15), transparent 32%),
    linear-gradient(145deg, #f8fbff 0%, #ffffff 70%);
  box-shadow: 0 18px 42px rgba(39, 53, 61, 0.06);
}

.post-newsletter > span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  color: #ffffff;
  background: var(--ap-blue);
  box-shadow: 0 12px 22px rgba(0, 101, 228, 0.28);
}

.post-newsletter > span svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.8;
}

.post-newsletter h2 {
  color: #07184f;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.post-newsletter p {
  color: #43536c;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
}

.post-newsletter a {
  width: fit-content;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
  padding: 0 26px;
  border: 1px solid var(--ap-blue);
  border-radius: 6px;
  color: var(--ap-blue);
  background: #ffffff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.post-newsletter a svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

@media (max-width: 1020px) {
  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-sidebar {
    grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
    gap: 28px;
  }

  .post-section-nav {
    grid-column: 1 / -1;
    order: -1;
  }

  .post-banner {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .post-shell {
    width: min(100% - 32px, 1128px);
    padding: 36px 0 64px;
  }

  .post-breadcrumbs {
    margin-bottom: 28px;
  }

  .post-layout {
    gap: 42px;
  }

  .post-hero h1 {
    font-size: 38px;
    line-height: 1.13;
  }

  .post-hero p,
  .post-body {
    font-size: 16px;
    line-height: 1.68;
  }

  .post-media {
    margin: 38px 0 28px;
  }

  .post-media img {
    height: 280px;
  }

  .post-play {
    width: 74px;
    height: 74px;
  }

  .post-stats {
    grid-template-columns: 1fr;
    padding: 0 22px;
  }

  .post-stats div {
    padding: 22px 0;
  }

  .post-stats div + div {
    border-top: 1px solid rgba(207, 229, 245, 0.95);
    border-left: 0;
  }

  .post-sidebar {
    grid-template-columns: 1fr;
  }

  .post-section-nav {
    order: 0;
  }

  .post-newsletter a {
    width: 100%;
  }
}

/* Unified dark mode across legacy and new pages */
:root {
  --dark-page: #02070c;
  --dark-page-soft: #05101a;
  --dark-section: #07121b;
  --dark-section-2: #0a2230;
  --dark-panel: rgba(10, 24, 36, 0.96);
  --dark-panel-solid: #0a1824;
  --dark-panel-soft: rgba(15, 36, 52, 0.9);
  --dark-line: rgba(143, 201, 244, 0.22);
  --dark-line-strong: rgba(52, 237, 148, 0.36);
  --dark-text: #f5fbff;
  --dark-muted: rgba(224, 238, 248, 0.78);
  --dark-soft-muted: rgba(203, 222, 236, 0.62);
  --dark-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

html.theme-dark {
  background: var(--dark-page);
}

html.theme-dark body {
  color: var(--dark-text);
  background:
    radial-gradient(circle at 80% 0%, rgba(52, 237, 148, 0.16), transparent 29%),
    radial-gradient(circle at 12% 18%, rgba(0, 101, 228, 0.2), transparent 34%),
    linear-gradient(180deg, var(--dark-page) 0%, var(--dark-page-soft) 44%, var(--dark-section) 100%);
}

html.theme-dark .site-header {
  background: rgba(2, 7, 12, 0.9);
  box-shadow: 0 1px 0 rgba(52, 237, 148, 0.16);
  color: var(--dark-text);
}

html.theme-dark .main-nav a {
  color: rgba(245, 251, 255, 0.78);
}

html.theme-dark .main-nav .active {
  color: var(--ap-green);
  border-bottom-color: var(--ap-green);
}

html.theme-dark .flag::after {
  background: rgba(245, 251, 255, 0.24);
}

html.theme-dark .flag.active::after {
  background: var(--ap-green);
}

html.theme-dark .icon-button,
html.theme-dark .auth-button-secondary {
  color: var(--ap-green);
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--dark-line);
}

html.theme-dark body :is(
  .page-shell,
  .advertiser-page,
  .publisher-page,
  .reference-page,
  .catalog-page,
  .about-page,
  .legal-page,
  .news-page,
  .post-page,
  .case-detail-page
) {
  color: var(--dark-text);
  background:
    radial-gradient(circle at 86% 8%, rgba(52, 237, 148, 0.12), transparent 31%),
    linear-gradient(180deg, var(--dark-page) 0%, var(--dark-section) 100%);
}

html.theme-dark body :is(
  .logo-band,
  .steps-band,
  .results-band,
  .light-band,
  .advertiser-benefits,
  .logo-strip,
  .advertiser-model,
  .advertiser-page .security-section,
  .process-section,
  .results-section,
  .advertiser-contact,
  .publisher-audience,
  .publisher-steps,
  .publisher-perks,
  .publisher-faq,
  .publisher-final-cta,
  .reference-cases,
  .reference-bottom,
  .about-benefits,
  .about-pillars,
  .legal-index,
  .news-index
) {
  background:
    linear-gradient(115deg, rgba(0, 101, 228, 0.08), transparent 42%),
    linear-gradient(180deg, #06101b 0%, #081827 100%);
}

html.theme-dark body :is(
  .about-hero,
  .legal-hero,
  .news-hero,
  .case-detail-hero,
  .advertiser-page .hero-section
) {
  background:
    radial-gradient(circle at 78% 16%, rgba(52, 237, 148, 0.18), transparent 28%),
    radial-gradient(circle at 16% 10%, rgba(0, 101, 228, 0.16), transparent 32%),
    linear-gradient(135deg, #02070c 0%, #06111d 52%, #0a2230 100%);
}

html.theme-dark body :is(
  .button-secondary,
  .advertiser-page .secondary-button,
  .news-primary-link,
  .legal-download,
  .legal-contact-question a,
  .post-newsletter a,
  .roi-badge,
  .logo-carousel button,
  .feature-icon,
  .step-white,
  .stat-card,
  .mini-card-grid article,
  .case-card,
  .case-detail-panel,
  .contact-card,
  .dashboard-metric,
  .benefit-card:not(.highlighted),
  .commission-panel article:not(:first-child):not(:nth-child(4)),
  .process-card:not(.blue):not(.green),
  .catalog-filters,
  .search-field,
  .feed-toggle,
  .program-card,
  .sort-control select,
  .publisher-audience-cards article,
  .publisher-step-row article > div,
  .publisher-faq details,
  .reference-quote-card.light,
  .about-projects,
  .about-project-card,
  .about-icon,
  .about-role-grid article,
  .about-final-cta,
  .legal-hero-card,
  .legal-summary-card,
  .legal-topic-card,
  .legal-contact-card,
  .legal-note,
  .legal-card-grid article,
  .news-hero-visual,
  .news-card-visual,
  .news-card-featured,
  .post-stats,
  .post-share a,
  .post-banner,
  .post-newsletter
) {
  color: var(--dark-text);
  background:
    linear-gradient(145deg, var(--dark-panel), var(--dark-panel-soft));
  border-color: var(--dark-line);
  box-shadow: var(--dark-shadow);
}

html.theme-dark body :is(
  .hero-copy h1,
  .audience-column h2,
  .split-copy h2,
  .center-title,
  .feature-item strong,
  .stat-card strong,
  .mini-card-grid strong,
  .results-header h2,
  .case-card h3,
  .case-detail-copy h1,
  .case-detail-content h2,
  .case-detail-panel strong,
  .section-heading-center h2,
  .advertiser-page .hero-copy h1,
  .benefit-card:not(.highlighted) h3,
  .process-section h2,
  .process-card:not(.blue):not(.green) h3,
  .catalog-toolbar h1,
  .filter-form h2,
  .program-title-row h2,
  .publisher-audience h2,
  .publisher-steps h2,
  .publisher-perks h2,
  .publisher-faq h2,
  .publisher-audience-cards h3,
  .publisher-step-row h3,
  .publisher-perk-row span,
  .publisher-faq summary,
  .reference-section-head h2,
  .reference-quote-card.light,
  .reference-quote-card.light .quote-logo.alza,
  .about-hero-copy h1,
  .about-feature-intro h2,
  .about-data-copy h2,
  .about-team-intro h2,
  .about-final-cta h2,
  .about-section-heading h2,
  .about-feature-row h3,
  .about-role-grid h3,
  .legal-hero-copy h1,
  .legal-index > h2,
  .legal-text-block h3,
  .legal-detail summary,
  .legal-side-nav h3,
  .legal-card-grid h4,
  .legal-contact-question h2,
  .legal-contact-list dd,
  .news-hero-copy h1,
  .news-index h2,
  .news-card h3,
  .post-breadcrumbs strong,
  .post-hero h1,
  .post-author strong,
  .post-body h2,
  .post-stats strong,
  .post-share strong,
  .post-section-nav h2,
  .post-newsletter h2
) {
  color: var(--dark-text);
}

html.theme-dark body :is(
  .hero-copy > p,
  .roi-badge small,
  .audience-column header p,
  .feature-item small,
  .stat-card p,
  .split-copy p,
  .mini-card-grid small,
  .results-header p,
  .case-card p,
  .case-detail-copy p,
  .case-detail-content p,
  .case-detail-content li,
  .case-detail-panel span,
  .contact-form label,
  .breadcrumb-list,
  .section-heading-center p,
  .benefit-card:not(.highlighted) p,
  .commission-panel span,
  .commission-panel p,
  .process-card:not(.blue):not(.green) p,
  .catalog-toolbar p,
  .sort-control,
  .filter-search > span:first-child,
  .filter-form legend,
  .filter-check,
  .program-copy p,
  .program-stats dt,
  .program-stats div:last-child dd,
  .publisher-audience-cards p,
  .publisher-step-row p,
  .publisher-faq p,
  .reference-quote-card.light footer,
  .about-hero-copy p:not(.about-kicker),
  .about-hero-copy small,
  .about-project-card p,
  .about-project-card li,
  .about-feature-row p,
  .about-team-intro p:not(.about-kicker),
  .about-role-grid p,
  .about-final-cta p,
  .legal-hero-copy p,
  .legal-summary-card p,
  .legal-topic-card p,
  .legal-text-block,
  .legal-text-block p,
  .legal-detail,
  .legal-detail p,
  .legal-note p,
  .legal-side-nav a,
  .legal-card-grid p,
  .legal-contact-question p,
  .legal-contact-list dd span,
  .news-hero-copy > p,
  .news-hero-visual,
  .news-card-meta,
  .news-card-body > p:not(.news-card-meta),
  .post-meta,
  .post-hero p,
  .post-author span:not(.post-author-avatar),
  .post-body,
  .post-stats span,
  .post-section-nav a,
  .post-newsletter p
) {
  color: var(--dark-muted);
}

html.theme-dark body :is(
  .button-secondary,
  .advertiser-page .secondary-button,
  .news-primary-link,
  .legal-download,
  .legal-contact-question a,
  .post-newsletter a
) {
  color: var(--ap-green);
  border-color: var(--dark-line-strong);
}

html.theme-dark body :is(
  .button-secondary:hover,
  .button-secondary:focus-visible,
  .advertiser-page .secondary-button:hover,
  .advertiser-page .secondary-button:focus-visible,
  .news-primary-link:hover,
  .news-primary-link:focus-visible
) {
  color: #06111d;
  background: var(--ap-green);
}

html.theme-dark body :is(
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .search-field input
) {
  color: var(--dark-text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--dark-line);
}

html.theme-dark body :is(
  .contact-form input::placeholder,
  .contact-form textarea::placeholder,
  .search-field input::placeholder
) {
  color: rgba(224, 238, 248, 0.52);
}

html.theme-dark body :is(
  .logo-band p,
  .logo-strip p,
  .logo-strip span,
  .breadcrumb-list li + li::before,
  .about-breadcrumbs,
  .legal-breadcrumbs,
  .news-breadcrumbs,
  .post-breadcrumbs a:not([aria-label])
) {
  color: var(--dark-soft-muted);
}

html.theme-dark body :is(
  .about-breadcrumbs strong,
  .breadcrumb-list [aria-current="page"]
) {
  color: var(--dark-text);
}

html.theme-dark body :is(
  .logo-track img,
  .client-logos img
) {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

html.theme-dark body :is(
  .case-card span,
  .tags span,
  .country-tag,
  .market-chips button,
  .feed-toggle span,
  .program-button.is-disabled,
  .status-paused,
  .legal-tab,
  .news-topic-tab
) {
  color: var(--dark-muted);
  background: rgba(255, 255, 255, 0.065);
}

html.theme-dark body :is(
  .case-card:nth-child(2) span,
  .metric-case span,
  .green-tags span,
  .status-new
) {
  color: #05141c;
  background: rgba(52, 237, 148, 0.86);
}

html.theme-dark body :is(
  .market-chips .active,
  .legal-tab.is-active,
  .news-topic-tab.is-active
) {
  color: var(--ap-green);
  background: rgba(52, 237, 148, 0.08);
}

html.theme-dark .feed-toggle input:checked + span {
  color: #05141c;
  background: var(--ap-green);
}

html.theme-dark .filter-check > span {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--dark-line);
}

html.theme-dark .filter-check input:checked + span {
  border-color: var(--ap-green);
  background: var(--ap-green);
  box-shadow: inset 0 0 0 3px #06111d;
}

html.theme-dark .feature-icon.blue,
html.theme-dark .feature-icon.green,
html.theme-dark .publisher-step-row .line-icon,
html.theme-dark .publisher-perk-row .line-icon,
html.theme-dark .publisher-audience-cards .line-icon,
html.theme-dark .mini-card-grid article img {
  color: var(--ap-green);
  --icon-base: var(--dark-text);
  --icon-accent: var(--ap-green);
}

html.theme-dark .step-white span,
html.theme-dark .process-card:not(.blue):not(.green) strong,
html.theme-dark .publisher-step-row article > span {
  color: rgba(245, 251, 255, 0.14);
}

html.theme-dark .stat-card.highlighted,
html.theme-dark .publisher-audience-cards article,
html.theme-dark .publisher-faq details,
html.theme-dark .about-projects,
html.theme-dark .legal-summary-card,
html.theme-dark .legal-topic-card,
html.theme-dark .legal-contact-card,
html.theme-dark .news-card-featured,
html.theme-dark .post-stats {
  border-color: var(--dark-line-strong);
}

html.theme-dark .contact-form {
  background: transparent;
}

html.theme-dark .contact-info {
  background:
    radial-gradient(circle at 80% 18%, rgba(52, 237, 148, 0.2), transparent 30%),
    linear-gradient(145deg, var(--ap-blue), #06377f 68%, #061a3c);
}

html.theme-dark .case-detail-body {
  background: linear-gradient(180deg, #07121b 0%, #06101b 100%);
}

html.theme-dark .case-card:hover,
html.theme-dark .case-card:focus-visible {
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.42);
}

html.theme-dark .publisher-steps {
  background:
    linear-gradient(115deg, rgba(52, 237, 148, 0.07), transparent 42%),
    linear-gradient(180deg, #06101b 0%, #081827 100%);
}

html.theme-dark .publisher-perk-row,
html.theme-dark .publisher-perk-row article + article,
html.theme-dark .publisher-faq details,
html.theme-dark .legal-detail,
html.theme-dark .legal-side-nav a,
html.theme-dark .post-share,
html.theme-dark .post-section-nav a,
html.theme-dark .post-stats div + div {
  border-color: var(--dark-line);
}

html.theme-dark .about-orbit-node circle {
  fill: rgba(10, 24, 36, 0.96);
  stroke: var(--dark-line);
}

html.theme-dark .about-orbit-node text,
html.theme-dark .about-orbit-family {
  fill: var(--dark-text);
}

html.theme-dark .about-team-photo {
  background: var(--dark-panel-solid);
  box-shadow: var(--dark-shadow);
}

html.theme-dark .legal-summary-icon,
html.theme-dark .legal-topic-icon,
html.theme-dark .legal-contact-question > span,
html.theme-dark .legal-contact-list dt,
html.theme-dark .about-role-icon,
html.theme-dark .post-author-avatar {
  color: var(--ap-green);
  background: rgba(52, 237, 148, 0.12);
  border-color: var(--dark-line-strong);
}

html.theme-dark .legal-contact-list {
  border-left-color: var(--dark-line);
}

html.theme-dark .news-chart-track {
  stroke: rgba(245, 251, 255, 0.16);
}

html.theme-dark .news-chart-placeholder text {
  fill: var(--dark-text);
}

html.theme-dark .news-play-button,
html.theme-dark .post-play {
  color: var(--ap-green);
  background: rgba(5, 16, 26, 0.94);
  border-color: var(--dark-line-strong);
}

html.theme-dark .post-media {
  background: var(--dark-panel-solid);
  border-color: var(--dark-line);
  box-shadow: var(--dark-shadow);
}

html.theme-dark .post-banner svg,
html.theme-dark .news-hero-visual svg,
html.theme-dark .news-image-placeholder svg,
html.theme-dark .news-event-placeholder svg,
html.theme-dark .news-trend-placeholder svg {
  color: var(--ap-green);
}

html.theme-dark .footer-sitemap-button {
  color: var(--ap-green);
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--dark-line-strong);
}

html.theme-dark .footer-sitemap-panel {
  color: var(--dark-text);
  background: var(--dark-panel-solid);
  border-color: var(--dark-line);
  box-shadow: var(--dark-shadow);
}

html.theme-dark .footer-sitemap-panel a {
  color: var(--dark-muted);
}

html.theme-dark .footer-sitemap-panel a:hover,
html.theme-dark .footer-sitemap-panel a:focus-visible,
html.theme-dark .footer-sitemap-panel a[aria-current="page"] {
  color: var(--ap-green);
  background: rgba(52, 237, 148, 0.08);
}

/* Light mode pages: Publisher + Reference */
html:not(.theme-dark).light-mode-page {
  background: #f7fcff;
}

html:not(.theme-dark) body.publisher-light,
html:not(.theme-dark) body.reference-light {
  color: var(--ap-dark);
  background: linear-gradient(180deg, #ffffff 0%, #f7fcff 46%, #ffffff 100%);
}

html:not(.theme-dark) body.publisher-light .site-header,
html:not(.theme-dark) body.reference-light .site-header {
  color: var(--ap-dark);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(207, 229, 245, 0.85);
}

html:not(.theme-dark) body.publisher-light .main-nav a,
html:not(.theme-dark) body.reference-light .main-nav a {
  color: var(--ap-dark);
}

html:not(.theme-dark) body.publisher-light .main-nav .active,
html:not(.theme-dark) body.reference-light .main-nav .active {
  color: var(--ap-blue);
  border-bottom-color: var(--ap-blue);
}

html:not(.theme-dark) body.publisher-light .flag::after,
html:not(.theme-dark) body.reference-light .flag::after {
  background: var(--faint);
}

html:not(.theme-dark) body.publisher-light .flag.active::after,
html:not(.theme-dark) body.reference-light .flag.active::after {
  background: var(--ap-blue);
}

html:not(.theme-dark) body.publisher-light .icon-button,
html:not(.theme-dark) body.reference-light .icon-button {
  color: var(--ap-blue);
  background: #f9fcff;
  border-color: var(--faint);
}

html:not(.theme-dark) body.publisher-light .publisher-page,
html:not(.theme-dark) body.reference-light .reference-page {
  color: var(--ap-dark);
  background: linear-gradient(180deg, #ffffff 0%, #f7fcff 50%, #ffffff 100%);
}

html:not(.theme-dark) body.publisher-light .publisher-breadcrumbs,
html:not(.theme-dark) body.reference-light .publisher-breadcrumbs {
  color: var(--muted);
}

html:not(.theme-dark) body.publisher-light .publisher-breadcrumbs strong,
html:not(.theme-dark) body.reference-light .publisher-breadcrumbs strong {
  color: var(--ap-dark);
  font-weight: 700;
}

html:not(.theme-dark) body.publisher-light .publisher-page .primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--ap-blue), #004eb6);
  box-shadow: 0 16px 32px rgba(0, 101, 228, 0.24);
}

html:not(.theme-dark) body.publisher-light .publisher-page .secondary-button {
  color: var(--ap-blue);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(0, 101, 228, 0.28);
  box-shadow: 0 10px 26px rgba(39, 53, 61, 0.08);
}

html:not(.theme-dark) body.publisher-light .publisher-hero {
  color: var(--ap-dark);
  background:
    radial-gradient(circle at 78% 16%, rgba(52, 237, 148, 0.2), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(0, 101, 228, 0.13), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #eef9ff 54%, #f8fff9 100%);
}

html:not(.theme-dark) body.publisher-light .publisher-hero::before,
html:not(.theme-dark) body.publisher-light .publisher-final-card::before {
  background-image:
    linear-gradient(rgba(0, 101, 228, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 237, 148, 0.09) 1px, transparent 1px);
}

html:not(.theme-dark) body.publisher-light .publisher-hero::after {
  background: radial-gradient(circle at 86% 62%, rgba(52, 237, 148, 0.12), transparent 26%);
}

html:not(.theme-dark) body.publisher-light .publisher-hero-copy h1,
html:not(.theme-dark) body.publisher-light .publisher-audience h2,
html:not(.theme-dark) body.publisher-light .publisher-reasons h2,
html:not(.theme-dark) body.publisher-light .publisher-steps h2,
html:not(.theme-dark) body.publisher-light .publisher-growth-copy h2,
html:not(.theme-dark) body.publisher-light .publisher-perks h2,
html:not(.theme-dark) body.publisher-light .publisher-faq h2,
html:not(.theme-dark) body.publisher-light .publisher-final-card h2,
html:not(.theme-dark) body.reference-light .reference-hero-copy h1,
html:not(.theme-dark) body.reference-light .reference-logo-grid h2,
html:not(.theme-dark) body.reference-light .reference-section-head h2,
html:not(.theme-dark) body.reference-light .reference-wallet h2,
html:not(.theme-dark) body.reference-light .reference-cta h2 {
  color: var(--ap-dark);
}

html:not(.theme-dark) body.publisher-light .publisher-hero-copy h1 span,
html:not(.theme-dark) body.publisher-light .publisher-audience h2 span,
html:not(.theme-dark) body.publisher-light .publisher-steps h2 span,
html:not(.theme-dark) body.publisher-light .publisher-growth-copy h2 span,
html:not(.theme-dark) body.publisher-light .publisher-faq h2 span,
html:not(.theme-dark) body.publisher-light .publisher-final-card h2 span,
html:not(.theme-dark) body.reference-light .reference-hero-copy h1 span {
  color: var(--ap-blue);
}

html:not(.theme-dark) body.publisher-light .publisher-hero-copy > p,
html:not(.theme-dark) body.publisher-light .publisher-reason-grid p,
html:not(.theme-dark) body.publisher-light .publisher-growth-copy p,
html:not(.theme-dark) body.publisher-light .publisher-faq p,
html:not(.theme-dark) body.publisher-light .publisher-final-actions p,
html:not(.theme-dark) body.reference-light .reference-hero-copy > p:not(.reference-eyebrow),
html:not(.theme-dark) body.reference-light .reference-wallet p:not(.reference-eyebrow),
html:not(.theme-dark) body.reference-light .reference-cta p:not(.reference-eyebrow),
html:not(.theme-dark) body.reference-light .reference-quote-card footer {
  color: var(--muted);
}

html:not(.theme-dark) body.publisher-light .publisher-hero-benefits .line-icon,
html:not(.theme-dark) body.publisher-light .publisher-audience-cards .line-icon,
html:not(.theme-dark) body.publisher-light .publisher-step-row .line-icon,
html:not(.theme-dark) body.publisher-light .publisher-perk-row .line-icon {
  color: var(--ap-dark);
  --icon-base: var(--ap-dark);
  --icon-accent: var(--ap-blue);
}

html:not(.theme-dark) body.publisher-light .publisher-hero-benefits strong,
html:not(.theme-dark) body.publisher-light .publisher-audience-cards h3,
html:not(.theme-dark) body.publisher-light .publisher-reason-grid h3,
html:not(.theme-dark) body.publisher-light .publisher-step-row h3,
html:not(.theme-dark) body.publisher-light .publisher-perk-row span,
html:not(.theme-dark) body.publisher-light .publisher-faq summary {
  color: var(--ap-dark);
}

html:not(.theme-dark) body.publisher-light .publisher-hero-benefits span,
html:not(.theme-dark) body.publisher-light .publisher-audience-cards p,
html:not(.theme-dark) body.publisher-light .publisher-step-row p {
  color: var(--muted);
}

html:not(.theme-dark) body.publisher-light .publisher-hero-image {
  filter: drop-shadow(0 30px 58px rgba(0, 70, 130, 0.16));
}

html:not(.theme-dark) body.publisher-light .publisher-audience,
html:not(.theme-dark) body.publisher-light .publisher-steps,
html:not(.theme-dark) body.publisher-light .publisher-perks,
html:not(.theme-dark) body.publisher-light .publisher-faq,
html:not(.theme-dark) body.publisher-light .publisher-final-cta {
  background:
    linear-gradient(115deg, rgba(0, 101, 228, 0.05), transparent 42%),
    linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

html:not(.theme-dark) body.publisher-light .publisher-audience-cards article,
html:not(.theme-dark) body.publisher-light .publisher-step-row article > div,
html:not(.theme-dark) body.publisher-light .publisher-faq details {
  color: var(--ap-dark);
  background: #fff;
  border-color: #d9e9f6;
  box-shadow: var(--shadow-sm);
}

html:not(.theme-dark) body.publisher-light .publisher-reasons {
  color: var(--ap-dark);
  background:
    linear-gradient(120deg, rgba(52, 237, 148, 0.14), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #eef9ff 100%);
}

html:not(.theme-dark) body.publisher-light .publisher-reason-grid article + article {
  border-left-color: rgba(0, 101, 228, 0.18);
}

html:not(.theme-dark) body.publisher-light .publisher-reason-grid .line-icon {
  color: var(--ap-dark);
  border-color: rgba(0, 101, 228, 0.24);
  background: #fff;
  --icon-base: var(--ap-dark);
  --icon-accent: var(--ap-blue);
}

html:not(.theme-dark) body.publisher-light .publisher-step-row article > span {
  color: rgba(0, 101, 228, 0.1);
}

html:not(.theme-dark) body.publisher-light .publisher-growth {
  color: var(--ap-dark);
  background:
    radial-gradient(circle at 70% 48%, rgba(52, 237, 148, 0.15), transparent 30%),
    linear-gradient(135deg, #ffffff, #eff9ff 62%, #f8fff9);
}

html:not(.theme-dark) body.publisher-light .publisher-growth-visual img {
  opacity: 0.92;
  filter: saturate(1.02) contrast(1.02);
}

html:not(.theme-dark) body.publisher-light .publisher-growth-visual::after {
  background:
    radial-gradient(circle at 52% 50%, rgba(52, 237, 148, 0.18), transparent 25%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 46%);
}

html:not(.theme-dark) body.publisher-light .publisher-growth-visual > div {
  color: var(--ap-dark);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 101, 228, 0.2);
  box-shadow: 0 18px 44px rgba(39, 53, 61, 0.12);
}

html:not(.theme-dark) body.publisher-light .publisher-growth-visual .line-icon {
  color: var(--ap-dark);
  --icon-base: var(--ap-dark);
  --icon-accent: var(--ap-blue);
}

html:not(.theme-dark) body.publisher-light .publisher-growth-visual span {
  color: var(--muted);
}

html:not(.theme-dark) body.publisher-light .publisher-perk-row,
html:not(.theme-dark) body.publisher-light .publisher-perk-row article + article,
html:not(.theme-dark) body.publisher-light .publisher-faq details {
  border-color: #d9e9f6;
}

html:not(.theme-dark) body.publisher-light .publisher-final-card {
  color: var(--ap-dark);
  background:
    radial-gradient(circle at 78% 14%, rgba(52, 237, 148, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff, #eef9ff 70%, #f8fff9);
  border: 1px solid #d9e9f6;
  box-shadow: 0 22px 48px rgba(39, 53, 61, 0.12);
}

html:not(.theme-dark) body.reference-light .reference-hero {
  color: var(--ap-dark);
  background:
    radial-gradient(circle at 76% 18%, rgba(52, 237, 148, 0.18), transparent 29%),
    linear-gradient(115deg, rgba(0, 101, 228, 0.11), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

html:not(.theme-dark) body.reference-light .reference-hero::after {
  background: linear-gradient(90deg, transparent, rgba(0, 101, 228, 0.18), transparent);
}

html:not(.theme-dark) body.reference-light .reference-eyebrow {
  color: #008552;
}

html:not(.theme-dark) body.reference-light .reference-eyebrow.blue {
  color: var(--ap-blue);
}

html:not(.theme-dark) body.reference-light .reference-link {
  color: var(--ap-blue);
  border-bottom-color: var(--ap-blue);
}

html:not(.theme-dark) body.reference-light .reference-link span {
  color: var(--ap-blue);
}

html:not(.theme-dark) body.reference-light .reference-hero-visual img {
  filter: drop-shadow(0 30px 54px rgba(0, 70, 130, 0.16));
}

html:not(.theme-dark) body.reference-light .reference-logo-band {
  background:
    linear-gradient(100deg, rgba(0, 101, 228, 0.08), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
  border-top-color: #d9e9f6;
  border-bottom-color: #d9e9f6;
}

html:not(.theme-dark) body.reference-light .logo-wordmark {
  color: var(--ap-dark);
  border-left-color: #d9e9f6;
}

html:not(.theme-dark) body.reference-light .reference-testimonials {
  background:
    linear-gradient(115deg, rgba(52, 237, 148, 0.08), transparent 45%),
    linear-gradient(180deg, #eef9ff 0%, #ffffff 100%);
}

html:not(.theme-dark) body.reference-light .reference-carousel-button {
  color: var(--ap-blue);
  background: #fff;
  border-color: rgba(0, 101, 228, 0.24);
  box-shadow: var(--shadow-sm);
}

html:not(.theme-dark) body.reference-light .reference-carousel-button:hover,
html:not(.theme-dark) body.reference-light .reference-carousel-button:focus-visible {
  color: #fff;
  background: var(--ap-blue);
  border-color: var(--ap-blue);
}

html:not(.theme-dark) body.reference-light .reference-quote-card.dark,
html:not(.theme-dark) body.reference-light .reference-quote-card.light {
  color: var(--ap-dark);
  background: linear-gradient(135deg, #fff, #f7fcff);
  border: 1px solid #d9e9f6;
  box-shadow: 0 16px 44px rgba(39, 53, 61, 0.1);
}

html:not(.theme-dark) body.reference-light .reference-quote-card.dark footer,
html:not(.theme-dark) body.reference-light .reference-quote-card.light footer {
  border-top-color: rgba(39, 53, 61, 0.16);
}

html:not(.theme-dark) body.reference-light .reference-quote-card footer strong {
  color: var(--ap-dark);
}

html:not(.theme-dark) body.reference-light .reference-quote-card footer span {
  color: var(--muted);
}

html:not(.theme-dark) body.reference-light .reference-quote-card.light .quote-logo.alza {
  color: #123467;
}

html:not(.theme-dark) body.reference-light .reference-cases,
html:not(.theme-dark) body.reference-light .reference-bottom {
  background:
    linear-gradient(135deg, #f7fcff 0%, #fff 54%, var(--ap-ice) 100%);
}

html:not(.theme-dark) body.reference-light .reference-wallet,
html:not(.theme-dark) body.reference-light .reference-cta {
  color: var(--ap-dark);
  border: 1px solid #d9e9f6;
  box-shadow: 0 18px 42px rgba(39, 53, 61, 0.1);
}

html:not(.theme-dark) body.reference-light .reference-wallet {
  background:
    linear-gradient(120deg, rgba(0, 101, 228, 0.1), transparent 58%),
    linear-gradient(145deg, #ffffff, #f0f9ff 70%, #f8fff9);
}

html:not(.theme-dark) body.reference-light .reference-cta {
  background:
    linear-gradient(135deg, rgba(52, 237, 148, 0.18), transparent 44%),
    linear-gradient(145deg, #ffffff, #eef9ff 70%, #f8fff9);
}

@media (max-width: 1100px) {
  html:not(.theme-dark) body.publisher-light .publisher-reason-grid article + article {
    border-left: 0;
  }
}

@media (max-width: 430px) {
  html:not(.theme-dark) body.reference-light .logo-wordmark,
  html:not(.theme-dark) body.reference-light .logo-wordmark:nth-child(2n + 1),
  html:not(.theme-dark) body.reference-light .logo-wordmark:nth-child(3n + 1) {
    border-top-color: #d9e9f6;
  }
}
