@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/quicksand-v36-latin-regular.woff2")
    format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/quicksand-v36-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-main:
    "Quicksand", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --blue: #2563eb;
  --blue-dark: #172554;
  --cyan: #22d3ee;
  --coral: #fb7185;
  --lime: #a3e635;
  --ink: #111827;
  --text: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --surface: #ffffff;
  --soft-blue: #eff6ff;
  --soft-warm: #fff7ed;
  --soft-cyan: #ecfeff;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
  --shadow-strong: 0 28px 70px rgba(15, 23, 42, 0.18);
  --radius-card: 8px;
  --radius-panel: 16px;
  --container: 1180px;
}

@keyframes adgo-cosmic-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.34);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes adgo-float-particles {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) translateX(10px) rotate(90deg);
  }

  50% {
    transform: translateY(-40px) translateX(0) rotate(180deg);
  }

  75% {
    transform: translateY(-20px) translateX(-10px) rotate(270deg);
  }

  100% {
    transform: translateY(0) translateX(0) rotate(360deg);
  }
}

@keyframes adgo-wave-morph {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    transform: rotate(0deg);
  }

  33% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    transform: rotate(120deg);
  }

  66% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    transform: rotate(240deg);
  }

  100% {
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    transform: rotate(360deg);
  }
}

@keyframes adgo-slide-3d-in {
  from {
    opacity: 0;
    transform: perspective(1000px) rotateY(18deg) translateY(42px) scale(0.94);
  }

  to {
    opacity: 1;
    transform: perspective(1000px) rotateY(0) translateY(0) scale(1);
  }
}

@keyframes adgo-scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.9;
  }

  50% {
    transform: translateY(14px);
    opacity: 0.45;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: #fbfdff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.template-mobile-menu {
  position: fixed;
  z-index: 60;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  display: none;
  background: #fff;
  pointer-events: none;
}

.template-mobile-menu.is-open {
  display: block;
  pointer-events: auto;
}

.mobile-menu-toggle .menu-close {
  display: none;
}

.mobile-menu-toggle.is-active .menu-open {
  display: none;
}

.mobile-menu-toggle.is-active .menu-close {
  display: block;
}

.template-header {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif !important;
  background: #fff !important;
  border-top: 3px solid #fff;
  border-bottom: 1px solid #eef1f6;
  box-shadow: none;
  backdrop-filter: none;
}

.template-header nav {
  max-width: 1200px;
}

.template-header nav > div.hidden.lg\:flex {
  height: 76px;
}

.template-header .template-brand {
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif !important;
  transform: none !important;
}

.template-header .template-brand img {
  width: 86px;
  height: auto;
  object-fit: contain;
}

.template-header .template-brand span {
  display: none;
  color: #111827;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.template-header .navbar-menu {
  display: flex;
  align-items: stretch;
  height: 76px;
}

.template-header .template-nav-links {
  align-items: stretch;
  height: 100%;
  gap: 0;
}

.template-header .template-nav-links a {
  position: relative;
  align-items: center;
  height: 76px;
  padding: 0 17px;
  color: #6b7280;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.template-header .template-nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -3px;
  width: 70px;
  height: 3px;
  margin-left: -35px;
  background: #3366ff;
  border-radius: 0;
  opacity: 0;
  transform: none;
  transition:
    opacity 0.2s ease;
}

.template-header .template-nav-links a:hover,
.template-header .template-nav-links a.is-active {
  color: #3366ff !important;
  background: transparent;
}

.template-header .template-nav-links a:hover::after,
.template-header .template-nav-links a.is-active::after {
  opacity: 1;
}

.template-header a[href*="developer.adgo.link/#/login"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 36px;
  padding: 0 22px;
  color: #3366ff !important;
  background: #eef3ff;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.template-header a[href*="developer.adgo.link/#/login"]:hover {
  color: #2456f5 !important;
  background: #e4ecff;
}

.template-header a[href*="developer.adgo.link/#/reg"] {
  min-width: 88px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: #fff !important;
  background: #3366ff !important;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.template-header a[href*="developer.adgo.link/#/reg"]:hover {
  background: #2456f5 !important;
  transform: none;
}

.template-nav-links a.is-active,
.template-mobile-nav a.is-active {
  color: var(--color-primary);
  background: transparent;
}

.template-header.is-scrolled {
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .template-header nav {
    padding-right: 22px;
    padding-left: 22px;
  }

  .template-header .template-brand img {
    width: 78px;
  }

  .template-header .template-nav-links a {
    padding: 0 10px;
    font-size: 15px;
  }

  .template-header .template-nav-links a::after {
    width: 58px;
    margin-left: -29px;
  }

  .template-header a[href*="developer.adgo.link/#/login"] {
    min-width: 136px;
    height: 36px;
    padding: 0 18px;
    font-size: 15px;
  }

  .template-header a[href*="developer.adgo.link/#/reg"] {
    min-width: 78px;
    height: 36px;
    padding: 0 20px;
    font-size: 15px;
  }
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.68);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.1);
}

.navbar-container {
  position: relative;
}

.navbar-mobile {
  display: none;
}

.navbar-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
  height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.brand:hover {
  transform: scale(1.04);
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.login-link {
  color: #475569;
  font-size: 15px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.login-link:hover {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.btn-register {
  padding: 10px 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--blue), #0ea5e9);
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.22);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.close-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  color: var(--blue-dark);
  transition: background 0.2s ease;
}

.close-menu:hover {
  background: var(--soft-blue);
}

.close-menu svg {
  width: 20px;
  height: 20px;
}

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  margin: 0;
  list-style: none;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  color: #334155;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.is-active {
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: #475569;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.mobile-nav-links a:hover {
  background: var(--soft-blue);
  color: var(--blue);
}

.mobile-register {
  margin-top: 8px;
  padding: 14px 16px !important;
  color: #fff !important;
  text-align: center;
  background: linear-gradient(135deg, var(--blue), #0ea5e9) !important;
}

.mobile-register:hover {
  background: linear-gradient(135deg, #1d4ed8, var(--blue)) !important;
}

/* Mobile Header Toggle */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  color: var(--blue-dark);
}

.menu-icon {
  width: 20px;
  height: 20px;
}

.menu-icon .menu-close {
  display: none;
}

.menu-toggle.is-active .menu-open {
  display: none;
}

.menu-toggle.is-active .menu-close {
  display: block;
}

.hero {
  position: relative;
  min-height: 94vh;
  padding: 132px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 15% 10%,
      rgba(34, 211, 238, 0.26),
      transparent 26%
    ),
    linear-gradient(135deg, #f8fbff 0%, #eef6ff 42%, #fff7ed 100%);
}

.template-hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #172554;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 88%);
}

.adgo-hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.adgo-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 112px 0 74px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition:
    opacity 0.75s ease,
    transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.12);
}

.adgo-hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.adgo-hero-slide--primary {
  background: linear-gradient(135deg, #2563eb 0%, #172554 100%);
}

.adgo-hero-slide--secondary {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.adgo-hero-slide--success {
  justify-content: center;
  background: linear-gradient(135deg, #4facfe 0%, #00c2d8 100%);
}

.hero-wave {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  animation: adgo-wave-morph 12s infinite ease-in-out;
  pointer-events: none;
}

.hero-wave--a {
  width: 500px;
  height: 500px;
  top: -210px;
  left: -170px;
  background: rgba(255, 255, 255, 0.07);
}

.hero-wave--b {
  width: 360px;
  height: 360px;
  right: -105px;
  bottom: -110px;
}

.hero-wave--c {
  width: 520px;
  height: 520px;
  top: -210px;
  right: -180px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-wave--d {
  width: 270px;
  height: 270px;
  left: -80px;
  bottom: -92px;
  animation-delay: 3s;
}

.hero-wave--e {
  width: 610px;
  height: 610px;
  top: -310px;
  left: 20%;
  background: rgba(255, 255, 255, 0.07);
}

.hero-wave--f {
  width: 360px;
  height: 360px;
  right: 18%;
  bottom: -150px;
  animation-delay: 2.5s;
}

.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  animation: adgo-float-particles 8s infinite ease-in-out;
  pointer-events: none;
}

.hero-particle--1 {
  width: 16px;
  height: 16px;
  top: 25%;
  left: 22%;
  animation-duration: 6s;
}

.hero-particle--2 {
  width: 24px;
  height: 24px;
  top: 72%;
  left: 30%;
  background: rgba(255, 255, 255, 0.22);
  animation-delay: 1s;
}

.hero-particle--3 {
  width: 12px;
  height: 12px;
  top: 34%;
  right: 22%;
  background: rgba(255, 255, 255, 0.42);
  animation-delay: 2s;
}

.template-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 52px;
  align-items: center;
  z-index: 3;
}

.template-hero__inner--wide {
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.92fr);
}

.template-hero__inner--single {
  display: flex;
  justify-content: center;
  min-height: 560px;
}

.template-hero__copy--center {
  position: relative;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.template-hero__copy--center h1,
.template-hero__copy--center .hero-lead {
  margin-right: auto;
  margin-left: auto;
}

.template-hero__copy--center .hero-actions,
.template-hero__copy--center .trust-row {
  justify-content: center;
}

.template-hero .cosmic-slide-content {
  opacity: 0;
  transform: perspective(1000px) rotateY(10deg) translateY(30px);
}

.template-hero .is-active .cosmic-slide-content {
  animation: adgo-slide-3d-in 0.95s cubic-bezier(0.175, 0.885, 0.32, 1.12)
    forwards;
}

.template-hero .is-active .cosmic-slide-content:nth-child(2) {
  animation-delay: 0.12s;
}

.template-hero h1 {
  max-width: 820px;
  color: #fff;
  margin-bottom: 22px;
  font-size: clamp(36px, 3.8vw, 52px);
  line-height: 1.08;
  text-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
}

.template-hero h1 span + span {
  margin-top: 0.18em;
}

.hero-accent {
  color: #fff7ad;
  background: linear-gradient(100deg, #fff7ad 0%, #7dd3fc 48%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.template-hero .hero-lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  line-height: 1.78;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin: 0 0 22px;
  padding: 0 22px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: adgo-cosmic-pulse 3s infinite;
}

.hero-badge svg {
  width: 20px;
  height: 20px;
  color: #ffef99;
  stroke-width: 2;
}

.hero-floating-icons {
  position: absolute;
  inset: -90px -60px;
  z-index: -1;
  pointer-events: none;
}

.hero-template-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 34px;
}

.template-float-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  animation: adgo-float-particles 7s infinite ease-in-out;
}

.template-float-icon:nth-child(2) {
  animation-delay: 1s;
}

.template-float-icon:nth-child(3) {
  animation-delay: 2s;
}

.template-float-icon svg {
  width: 40px;
  height: 40px;
  stroke-width: 2;
}

.floating-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(16px);
  animation: adgo-float-particles 7s infinite ease-in-out;
}

.floating-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.9;
}

.floating-icon--coin {
  top: 18%;
  left: 2%;
}

.floating-icon--chart {
  top: 8%;
  right: 9%;
  animation-delay: 1s;
}

.floating-icon--spark {
  right: 0;
  bottom: 20%;
  animation-delay: 2s;
}

.floating-icon--shield {
  bottom: 10%;
  left: 10%;
  animation-delay: 1.6s;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row span {
  padding: 9px 13px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.learnbe-style-panel {
  position: relative;
  padding: 22px;
  background: rgba(15, 23, 42, 0.32);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.34);
  backdrop-filter: blur(22px);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.panel-head strong,
.panel-head span {
  display: block;
}

.panel-head strong {
  color: #fff;
  font-size: 22px;
}

.panel-head span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.panel-arrows {
  display: flex;
  gap: 10px;
}

.panel-arrows button {
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.panel-arrows button:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-2px);
}

.panel-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: 24px;
  min-height: 390px;
  padding: 34px;
  background:
    radial-gradient(
      circle at 22% 18%,
      rgba(255, 255, 255, 0.2),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
}

.stage-copy {
  align-self: center;
}

.stage-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.stage-copy h2 {
  margin: 12px 0 14px;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 42px);
}

.stage-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.stage-copy a {
  display: inline-flex;
  margin-top: 8px;
  color: #fff;
  font-weight: 700;
}

.stage-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: center;
}

.stage-cards article {
  min-height: 134px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.stage-cards article:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
}

.stage-cards p,
.stage-cards span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
}

.stage-cards strong {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}

.hero-feature-list {
  display: grid;
  gap: 16px;
  max-width: 640px;
  margin: 0 0 28px;
}

.hero-feature-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.hero-feature-list .feature-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-top: 2px;
  color: #ffef99;
  background: rgba(240, 147, 251, 0.25);
  border-radius: 16px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.hero-feature-list div:hover .feature-icon {
  background: rgba(240, 147, 251, 0.4);
  transform: translateY(-2px);
}

.hero-feature-list .feature-icon svg {
  width: 20px;
  height: 20px;
}

.hero-feature-list .feature-copy {
  display: grid;
  gap: 4px;
}

.hero-feature-list strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.hero-feature-list em {
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-style: normal;
  line-height: 1.55;
}

.quantum-panel {
  position: relative;
}

.quantum-pulse {
  position: absolute;
  inset: -18px;
  background: linear-gradient(
    135deg,
    rgba(255, 239, 153, 0.22),
    rgba(255, 153, 168, 0.22)
  );
  border-radius: 30px;
  filter: blur(22px);
  animation: adgo-cosmic-pulse 3s infinite;
}

.quantum-card {
  position: relative;
  padding: 30px;
  background: rgba(15, 23, 42, 0.38);
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(22px);
}

.quantum-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  color: #fff;
  background: linear-gradient(135deg, #f093fb, #f5576c);
  border-radius: 24px;
}

.quantum-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 2;
}

.quantum-card h2 {
  color: #fff;
  font-size: 34px;
}

.quantum-card p {
  color: rgba(255, 255, 255, 0.78);
}

.rank-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.rank-list span {
  display: grid;
  gap: 4px;
  align-items: center;
  padding: 16px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  text-align: center;
}

.rank-list b {
  color: transparent;
  background: linear-gradient(90deg, #ffffff, #ff99a8);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
  font-size: 24px;
  line-height: 1;
}

.rank-list span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.rank-list em {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-style: normal;
}

.progress-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 12px;
  color: #fff;
}

.progress-row i {
  grid-column: 1 / -1;
  height: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.progress-row i::before {
  display: block;
  width: 84%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #f093fb, #ffef99);
  border-radius: inherit;
}

.quantum-float {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.26);
  animation: adgo-float-particles 7s infinite ease-in-out;
}

.quantum-float svg {
  width: 30px;
  height: 30px;
}

.quantum-float--bolt {
  top: -50px;
  right: -34px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ffef99, #ffb6e7);
}

.quantum-float--check {
  bottom: -22px;
  left: -26px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #aaddff, #99f6ff);
  animation-delay: 1.2s;
}

.hero-center {
  z-index: 3;
  flex: 0 1 980px;
  width: min(100% - 40px, 980px);
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hero-center h1 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hero-center .hero-lead {
  margin-right: auto;
  margin-left: auto;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px auto 30px;
}

.hero-stat-grid div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.hero-stat-grid div:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-5px);
}

.hero-stat-grid strong,
.hero-stat-grid span,
.hero-stat-grid small {
  display: block;
}

.hero-stat-grid strong {
  color: #fff;
  font-size: 38px;
  line-height: 1;
}

.hero-stat-grid span {
  margin: 12px 0 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.hero-stat-grid small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-actions--center {
  justify-content: center;
}

.template-hero .hero-actions {
  gap: 24px;
  margin-top: 30px;
  margin-bottom: 0;
}

.adgo-hero-slide--secondary .hero-actions {
  margin-top: 28px;
}

.adgo-hero-slide--success .hero-actions {
  gap: 16px;
  margin-top: 28px;
}

.hero-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  overflow: hidden;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.hero-cta--large {
  min-height: 58px;
  padding: 0 32px;
  font-size: 18px;
}

.hero-cta svg {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.hero-cta > span {
  position: relative;
  z-index: 1;
}

.hero-cta:hover {
  transform: scale(1.05);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-cta--primary-main,
.hero-cta--success-main {
  color: #111827;
  background: linear-gradient(90deg, #ffffff 0%, #e5e7eb 100%);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22);
}

.hero-cta--primary-main::before,
.hero-cta--success-main::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hero-cta--primary-main::before {
  background: var(--color-primary);
}

.hero-cta--success-main::before {
  background: linear-gradient(
    90deg,
    #4facfe 0%,
    var(--color-primary) 50%,
    #00f2fe 100%
  );
}

.hero-cta--primary-main:hover,
.hero-cta--success-main:hover {
  color: #fff;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.3);
}

.hero-cta--primary-main:hover::before,
.hero-cta--success-main:hover::before {
  opacity: 1;
}

.hero-cta--outline {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(8px);
}

.hero-cta--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.26);
}

.hero-cta--secondary-gradient {
  color: #fff;
  background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
  box-shadow: 0 18px 36px rgba(245, 87, 108, 0.32);
}

.hero-cta--secondary-gradient svg {
  margin-right: 12px;
  margin-left: 0;
}

.hero-cta--secondary-gradient:hover {
  box-shadow: 0 22px 46px rgba(245, 87, 108, 0.44);
}

.hero-nav {
  position: absolute;
  z-index: 5;
  top: 50%;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  font-size: 0;
  transform: translateY(-50%);
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.hero-nav::before {
  display: block;
  color: currentColor;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.hero-nav--prev::before {
  content: "‹";
}

.hero-nav--next::before {
  content: "›";
}

.hero-nav:hover {
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.28);
  transform: translateY(-50%) scale(1.08);
}

.hero-nav--prev {
  left: 26px;
}

.hero-nav--next {
  right: 26px;
}

.hero-pagination {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 34px;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-pagination button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.7;
  transition:
    width 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    background 0.25s ease,
    opacity 0.25s ease;
}

.hero-pagination button.is-active {
  width: 28px;
  background: #fff;
  opacity: 1;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
}

.hero-scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 70px;
  width: 30px;
  height: 46px;
  padding: 8px;
  border: 3px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  transform: translateX(-50%);
}

.hero-scroll-cue span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  animation: adgo-scroll-bounce 1.6s infinite ease-in-out;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.hero-inner,
.section-inner {
  position: relative;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 62px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h3 {
  color: var(--ink);
  line-height: 1.28;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 32px;
  color: #475569;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #06b6d4);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
  margin: 0;
}

.hero-metrics div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(226, 232, 240, 0.82);
  border-radius: var(--radius-card);
}

.hero-metrics dt {
  color: var(--blue-dark);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.dashboard-shell {
  position: relative;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-strong);
}

.dashboard-top {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.dashboard-top span {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 50%;
}

.dashboard-top span:first-child {
  background: var(--coral);
}

.dashboard-top span:nth-child(2) {
  background: #facc15;
}

.dashboard-top span:nth-child(3) {
  background: var(--lime);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
}

.metric-panel {
  min-height: 118px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.metric-panel p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.metric-panel strong {
  display: block;
  color: var(--blue-dark);
  font-size: 30px;
  line-height: 1.1;
}

.metric-panel span {
  display: block;
  margin-top: 10px;
  color: #059669;
  font-size: 13px;
  font-weight: 700;
}

.main-panel {
  grid-row: span 2;
  min-height: 248px;
  color: #fff;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(34, 211, 238, 0.55),
      transparent 30%
    ),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.main-panel p,
.main-panel strong,
.main-panel span {
  color: #fff;
}

.main-panel strong {
  margin-top: 40px;
  font-size: 44px;
}

.chart-card {
  position: relative;
  margin-top: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.chart-line {
  height: 3px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--coral));
  border-radius: 999px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 11px;
  height: 120px;
}

.chart-bars span {
  flex: 1;
  min-width: 18px;
  background: linear-gradient(
    180deg,
    rgba(34, 211, 238, 0.78),
    rgba(37, 99, 235, 0.88)
  );
  border-radius: 6px 6px 0 0;
}

.ad-network-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.ad-network-strip img {
  width: 100%;
  height: 58px;
  padding: 12px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.logo-band {
  padding: 22px 0;
  background: #fff;
  border-block: 1px solid var(--line);
}

.logo-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(6, minmax(80px, 1fr));
  gap: 18px;
  align-items: center;
}

.logo-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.logo-grid img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  filter: saturate(0.95);
}

.section {
  padding: 96px 0;
}

.section:nth-of-type(odd) {
  background: #fff;
}

.section:nth-of-type(even) {
  background: #f8fbff;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 56px;
  align-items: center;
}

.section-copy p,
.section-heading p,
.contact-copy p {
  color: var(--muted);
}

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

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #475569;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 14px;
  height: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  border-radius: 50%;
}

.media-panel {
  padding: 18px;
  background: linear-gradient(135deg, var(--soft-blue), #fff);
  border: 1px solid #dbeafe;
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow);
}

.media-panel img,
.advantage-visual img,
.case-card img,
.format-card img {
  width: 100%;
  object-fit: cover;
}

.media-panel img {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
}

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

.format-card,
.service-card,
.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.format-card:hover,
.service-card:hover,
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.format-card {
  padding: 16px;
}

.format-card img {
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  background: var(--soft-blue);
  border-radius: 6px;
}

.format-card h3,
.service-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.format-card p,
.service-card p,
.case-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.workflow {
  background:
    linear-gradient(135deg, rgba(23, 37, 84, 0.96), rgba(37, 99, 235, 0.9)),
    #172554 !important;
}

.workflow h2,
.workflow h3,
.workflow .eyebrow {
  color: #fff;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.step-list li {
  min-height: 230px;
  padding: 22px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
}

.step-list span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 700;
}

.step-list h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.step-list p {
  margin: 0;
  font-size: 14px;
}

.tab-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 22px;
}

.tab-controls button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  cursor: pointer;
}

.tab-controls button.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.tab-panel {
  display: none;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.tab-panel.is-active {
  display: block;
}

.tab-panel h3 {
  margin-bottom: 8px;
}

.advantage-visual {
  padding: 18px;
  background: linear-gradient(135deg, var(--soft-cyan), #fff);
  border: 1px solid #cffafe;
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow);
}

.advantage-visual img {
  aspect-ratio: 1.23 / 1;
  object-fit: contain;
}

.enterprise {
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(251, 113, 133, 0.12),
      transparent 24%
    ),
    var(--soft-warm) !important;
}

.service-card {
  padding: 24px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
  color: var(--muted);
}

.service-card li {
  position: relative;
  padding-left: 20px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
}

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

.case-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 16px;
  align-items: center;
}

.case-card img {
  aspect-ratio: 1 / 0.78;
  border-radius: 6px;
}

.case-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.case-card h3 {
  margin: 6px 0 8px;
}

.scenario-section {
  background: #fff !important;
}

.original-scene-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
  min-height: 560px;
  padding: 48px;
  background: linear-gradient(
    90deg,
    rgba(148, 199, 255, 0.3),
    rgba(230, 241, 255, 0.45)
  );
  border-radius: var(--radius-panel);
  overflow: hidden;
}

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

.scene-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 174px;
  padding: 22px;
  color: var(--blue-dark);
  background: #fff;
  border: 0;
  border-radius: var(--radius-card);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.scene-card:hover,
.scene-card.is-active {
  color: #fff;
  background: var(--blue);
  transform: translateY(-3px);
}

.scene-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.scene-card span {
  font-size: 18px;
  font-weight: 700;
}

.phone-preview {
  position: relative;
  width: 330px;
  justify-self: center;
}

.phone-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  pointer-events: none;
}

.phone-screen {
  position: absolute;
  z-index: 1;
  top: 2.2%;
  left: 19.4%;
  width: 61.5%;
  height: 83.8%;
  object-fit: cover;
  border-radius: 22px;
}

.income-section {
  background: #fff !important;
}

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

.income-step {
  position: relative;
  min-height: 238px;
  padding: 28px 18px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.income-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 70px;
  right: -16px;
  width: 30px;
  height: 30px;
  background: url("../images/adgo/income/next.svg") center / contain no-repeat;
}

.income-step img {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
}

.income-step span {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #bfdbfe;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.income-step h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.income-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.original-advantage {
  padding: 34px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.original-advantage .tab-controls {
  justify-content: center;
  margin-top: 0;
  margin-bottom: 28px;
}

.advantage-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.adgo-integrations {
  padding: 116px 0 34px;
  overflow: hidden;
  background: #fff;
}

.adgo-integrations__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  width: min(1194px, calc(100% - 40px));
  margin: 0 auto;
}

.adgo-integrations__copy {
  order: 2;
}

.adgo-integrations__copy .eyebrow {
  display: block;
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.adgo-integrations__copy h2 {
  margin: 0 0 22px;
  color: #1e293b;
  font-family: "Plus Jakarta Sans", var(--font-main);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.22;
}

.adgo-integrations__copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: #454e5a;
  font-size: 18px;
  line-height: 1.85;
}

.adgo-integrations__logos {
  display: grid;
  grid-template-columns: repeat(4, 120px);
  gap: 16px;
  order: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.adgo-integrations__logos li {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.72);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.07);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.adgo-integrations__logos li:hover {
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.12);
  transform: translateY(-6px);
}

.adgo-integrations__logos img {
  width: 58px;
  max-height: 58px;
  object-fit: contain;
}

.adgo-platform-edge {
  position: relative;
  padding: 106px 0 34px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(31, 103, 243, 0.08),
      transparent 30%
    ),
    #fff;
}

.adgo-platform-edge__inner {
  width: min(1194px, calc(100% - 40px));
  margin: 0 auto;
}

.adgo-platform-edge__heading {
  max-width: 680px;
  margin: 0 auto 42px;
  text-align: center;
}

.adgo-platform-edge__heading .eyebrow {
  margin: 0 0 12px;
  color: #1f67f3;
  font-size: 18px;
  font-weight: 700;
}

.adgo-platform-edge__heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 1.2;
}

.adgo-platform-edge__heading p:not(.eyebrow) {
  margin: 18px auto 0;
  color: #5f6b7a;
  font-size: 17px;
  line-height: 1.8;
}

.adgo-platform-edge__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.adgo-platform-edge__card {
  display: grid;
  gap: 18px;
  min-height: 228px;
  padding: 28px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 255, 0.86));
  border: 1px solid rgba(218, 228, 242, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.adgo-platform-edge__card:hover {
  border-color: rgba(31, 103, 243, 0.26);
  box-shadow: 0 24px 56px rgba(31, 103, 243, 0.13);
  transform: translateY(-5px);
}

.adgo-platform-edge__card img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.adgo-platform-edge__card h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 20px;
  font-weight: 700;
}

.adgo-platform-edge__card p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.adgo-platforms {
  position: relative;
  padding: 92px 0 44px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.adgo-platforms__inner,
.adgo-cases__inner {
  width: min(1194px, calc(100% - 40px));
  margin: 0 auto;
}

.adgo-platforms__heading,
.adgo-cases__heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.adgo-cases__heading {
  max-width: 960px;
}

.adgo-platforms__heading .eyebrow,
.adgo-cases__heading .eyebrow {
  margin: 0 0 12px;
  color: #1f67f3;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.adgo-platforms__heading h2,
.adgo-cases__heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 800;
  line-height: 1.22;
}

.adgo-cases__heading h2 {
  font-size: clamp(30px, 3vw, 40px);
}

.adgo-platforms__heading p {
  max-width: 620px;
  margin: 18px auto 0;
  color: #5f6b7a;
  font-size: 17px;
  line-height: 1.8;
}

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

.adgo-platforms__item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(218, 228, 242, 0.88);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.adgo-platforms__item:hover {
  border-color: rgba(31, 103, 243, 0.26);
  box-shadow: 0 22px 44px rgba(31, 103, 243, 0.12);
  transform: translateY(-5px);
}

.adgo-platforms__item img {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.adgo-platforms__item span {
  color: #263241;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.adgo-platforms__item b {
  font-weight: 800;
}

.adgo-cases {
  position: relative;
  padding: 102px 0 46px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(31, 103, 243, 0.08),
      transparent 28%
    ),
    #fff;
}

.adgo-cases__shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.adgo-cases__tabs {
  display: grid;
  gap: 14px;
}

.adgo-cases__tabs button {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 18px 20px;
  color: #526071;
  background: #fff;
  border: 1px solid rgba(218, 228, 242, 0.9);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.adgo-cases__tabs button:hover {
  border-color: rgba(31, 103, 243, 0.2);
  transform: translateY(-3px);
}

.adgo-cases__tabs button.is-active {
  color: #fff;
  background: linear-gradient(135deg, #1f67f3, #35a6ff);
  border-color: transparent;
  box-shadow: 0 20px 44px rgba(31, 103, 243, 0.24);
}

.adgo-cases__tabs .case-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.adgo-cases__tabs .case-icon--active,
.adgo-cases__tabs button.is-active .case-icon--default {
  display: none;
}

.adgo-cases__tabs button.is-active .case-icon--active {
  display: block;
}

.adgo-cases__panels {
  position: relative;
  min-height: 432px;
}

.adgo-case {
  display: none;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 26px;
  align-items: center;
  min-height: 432px;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.9));
  border: 1px solid rgba(218, 228, 242, 0.92);
  border-radius: 24px;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.08);
}

.adgo-case.is-active {
  display: grid;
  animation: adgoCaseIn 0.38s ease both;
}

@keyframes adgoCaseIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.adgo-case__copy {
  display: grid;
  gap: 22px;
}

.adgo-case__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.adgo-case__brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.adgo-case__brand span {
  display: block;
  margin-bottom: 5px;
  color: #1f67f3;
  font-size: 14px;
  font-weight: 700;
}

.adgo-case__brand h3 {
  margin: 0;
  color: #142033;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.adgo-case__copy p {
  margin: 0;
  color: #526071;
  font-size: 17px;
  line-height: 1.85;
}

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

.adgo-case__metrics div {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: #fff;
  border: 1px solid rgba(218, 228, 242, 0.84);
  border-radius: 16px;
}

.adgo-case__metrics img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.adgo-case__metrics strong {
  color: #1f67f3;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.adgo-case__metrics span {
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}

.adgo-case__visual {
  display: grid;
  min-height: 330px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(31, 103, 243, 0.1),
      transparent 42%
    ),
    #f3f8ff;
  border-radius: 22px;
}

.adgo-case__visual img {
  width: min(100%, 520px);
  max-height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(31, 103, 243, 0.12));
}

/* Direct mapping from original/src/pages/Home/components/Scene/components/web */
.adgo-scene {
  width: 100%;
  margin: 0 auto;
  padding: 96px 0 104px;
  background-color: #fff !important;
  font-family: "Microsoft YaHei", var(--font-main);
}

.adgo-scene__heading {
  width: min(1080px, calc(100% - 56px));
  margin: 0 auto 32px;
}

.adgo-scene__heading .eyebrow {
  margin: 0 0 12px;
  color: #1f67f3;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.adgo-scene__heading h2 {
  margin: 0;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.adgo-scene__intro {
  max-width: 760px;
  margin: 12px 0 0;
  color: #5f6b7a;
  font-size: 17px;
  line-height: 1.75;
}

.adgo-scene .phone-scene-subtitle {
  display: none;
}

.adgo-scene .container {
  position: relative;
  width: min(1080px, calc(100% - 56px));
  height: 420px;
  margin: 0 auto;
  padding: 40px 0 48px 44px;
  overflow: visible;
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(238, 247, 255, 0.5) 46%,
      rgba(207, 229, 255, 0.38) 100%
    ),
    linear-gradient(
      90deg,
      rgba(148, 199, 255, 0.42) 0%,
      rgba(230, 241, 255, 0.58) 105%
    );
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 26px 70px rgba(31, 103, 243, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(148, 199, 255, 0.22);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.adgo-scene .container::before {
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(255, 255, 255, 0.8),
      transparent 28%
    ),
    radial-gradient(
      circle at 84% 18%,
      rgba(31, 103, 243, 0.14),
      transparent 34%
    );
  opacity: 0.9;
}

.adgo-scene .tabs-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 200px);
  gap: 32px 56px;
  height: 100%;
  padding-right: 324px;
}

.adgo-scene .scene-item {
  position: relative;
  width: 200px;
  height: 150px;
  padding: 0;
  color: #333;
  background: #fff;
  border: 1px solid rgba(31, 103, 243, 0.08);
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(31, 73, 125, 0.07);
  font-family: "Microsoft YaHei", var(--font-main);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.adgo-scene .scene-item:hover {
  box-shadow: 0 18px 42px rgba(31, 73, 125, 0.12);
  transform: translateY(-3px);
}

.adgo-scene .scene-item.selected-scene-item:hover {
  box-shadow: none;
  transform: none;
}

.adgo-scene .scene-item img {
  position: absolute;
  z-index: 10;
  top: 32px;
  left: 75px;
  width: 50px;
  height: 50px;
}

.adgo-scene .scene-item div {
  position: absolute;
  z-index: 10;
  top: 96px;
  width: 100%;
  text-align: center;
}

.adgo-scene .selected-scene-item {
  background: transparent;
  color: #fff;
  text-shadow: 0 1px 10px rgba(15, 23, 42, 0.18);
  transition:
    color 0.3s,
    background-color 0.3s;
}

.adgo-scene .selected-scene-bg {
  position: absolute;
  z-index: 1;
  width: 200px;
  height: 150px;
  background:
    linear-gradient(
      145deg,
      rgba(59, 130, 246, 0.92) 0%,
      rgba(31, 103, 243, 0.86) 54%,
      rgba(13, 74, 204, 0.88) 100%
    );
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 14px;
  box-shadow:
    0 22px 44px rgba(31, 103, 243, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -1px 0 rgba(8, 47, 132, 0.18);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition:
    top 0.3s,
    left 0.3s;
}

.adgo-scene .selected-scene-bg::after {
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(255, 255, 255, 0.36),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0)
    );
}

.adgo-scene .selected-scene-bg-1 {
  top: 40px;
  left: 44px;
}
.adgo-scene .selected-scene-bg-2 {
  top: 40px;
  left: 300px;
}
.adgo-scene .selected-scene-bg-3 {
  top: 40px;
  left: 556px;
}
.adgo-scene .selected-scene-bg-4 {
  top: 222px;
  left: 44px;
}
.adgo-scene .selected-scene-bg-5 {
  top: 222px;
  left: 300px;
}
.adgo-scene .selected-scene-bg-6 {
  top: 222px;
  left: 556px;
}

.adgo-scene .adgo-scene-phone {
  position: absolute;
  top: -66px;
  right: -34px;
  width: 382px;
  height: 602px;
}

.adgo-scene .scene-phone-dots,
.adgo-scene .scene-phone-nav {
  display: none;
}

.adgo-scene .phone-frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.adgo-scene .phone-screen {
  position: absolute;
  z-index: 1;
  top: 11px;
  left: 74px;
  width: 234px;
  height: 501px;
  object-fit: cover;
  border-radius: 30px;
}

.adgo-h5-scenarios {
  width: 100%;
  margin: 0 auto;
  padding: 86px 0 96px;
  background: #fff;
  font-family: "Microsoft YaHei", var(--font-main);
}

.adgo-h5-scenarios__inner {
  width: min(1080px, calc(100% - 56px));
  margin: 0 auto;
}

.adgo-h5-scenarios__heading {
  max-width: 760px;
  margin: 0 0 32px;
}

.adgo-h5-scenarios__heading .eyebrow {
  margin: 0 0 12px;
  color: #1f67f3;
  font-size: 18px;
  font-weight: 700;
}

.adgo-h5-scenarios__heading h2 {
  margin: 0;
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.adgo-h5-scenarios__heading p:not(.eyebrow) {
  margin: 14px 0 0;
  color: #5f6b7a;
  font-size: 17px;
  line-height: 1.75;
}

.adgo-h5-scenarios__panel {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.78) 0%,
      rgba(239, 247, 255, 0.54) 44%,
      rgba(207, 229, 255, 0.42) 100%
    ),
    linear-gradient(
      90deg,
      rgba(148, 199, 255, 0.42) 0%,
      rgba(230, 241, 255, 0.62) 105%
    );
  box-shadow:
    0 26px 70px rgba(31, 103, 243, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(148, 199, 255, 0.22);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.adgo-h5-scenarios__panel::before {
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(
      circle at 17% 11%,
      rgba(255, 255, 255, 0.78),
      transparent 28%
    ),
    radial-gradient(
      circle at 84% 20%,
      rgba(31, 103, 243, 0.13),
      transparent 36%
    );
  opacity: 0.92;
}

.adgo-h5-scenarios__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.adgo-h5-scenario-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 386px;
  padding: 18px 14px 20px;
  color: #1f2937;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 103, 243, 0.1);
  border-radius: 16px;
  box-shadow:
    0 14px 34px rgba(31, 73, 125, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.adgo-h5-scenario-card:hover {
  border-color: rgba(31, 103, 243, 0.22);
  box-shadow:
    0 20px 44px rgba(31, 73, 125, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.adgo-h5-scenario-card img {
  width: 100%;
  max-width: 168px;
  aspect-ratio: 55 / 108;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(31, 73, 125, 0.12));
}

.adgo-h5-scenario-card span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  color: #fff;
  background:
    linear-gradient(
      145deg,
      rgba(59, 130, 246, 0.96),
      rgba(31, 103, 243, 0.9)
    );
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(31, 103, 243, 0.2);
  font-size: 16px;
  line-height: 1.25;
}

/* Direct mapping from original/src/pages/Home/components/Income */
.adgo-help {
  padding: 80px 0 129px;
  text-align: center;
  font-family: "Microsoft YaHei", var(--font-main);
  background: #f8fbff !important;
}

.adgo-help .title {
  margin-bottom: 121px;
  color: #333;
  font-size: 38px;
  font-weight: 700;
}

.adgo-help .icons {
  display: flex;
  padding: 0 160px;
}

.adgo-help .icon {
  flex: 1;
  height: 200px;
  padding-top: 124px;
  margin-right: 55px;
  color: #333;
  background-color: #fff;
  border-radius: 8px;
  font-size: 16px;
}

.adgo-help .icon:last-child {
  margin-right: 0;
}

.adgo-help .icon-bg {
  position: relative;
  background-position: 50% 52px;
  background-repeat: no-repeat;
  background-size: 48px 48px;
}

.adgo-help .icon-bg::after {
  content: "";
  position: absolute;
  top: 71px;
  right: -32px;
  width: 16px;
  height: 16px;
  background: url("../images/adgo/income/next.svg") center / 100% no-repeat;
}

.adgo-help .icon-bg:last-child::after {
  display: none;
}

.adgo-help .icon-bg:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.adgo-help .icon-bg-1 {
  background-image: url("../images/adgo/income/icon1.png");
}
.adgo-help .icon-bg-2 {
  background-image: url("../images/adgo/income/icon2.png");
}
.adgo-help .icon-bg-3 {
  background-image: url("../images/adgo/income/icon3.png");
}
.adgo-help .icon-bg-4 {
  background-image: url("../images/adgo/income/icon4.png");
}
.adgo-help .icon-bg-5 {
  background-image: url("../images/adgo/income/icon5.png");
}

/* Direct mapping from original/src/pages/Home/components/Advantage */
.adgo-advantage {
  width: 100%;
  padding-top: 80px;
  background: #fff !important;
  font-family: "Microsoft YaHei", var(--font-main);
}

.adgo-advantage > .title {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}

.adgo-advantage .tabs {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 65px;
}

.adgo-advantage .tab-controls {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 38px;
  border-bottom: 1px solid var(--line);
}

.adgo-advantage .tab-controls button {
  width: 100%;
  min-height: 58px;
  color: #333;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 18px;
}

.adgo-advantage .tab-controls button.is-active {
  color: #1f67f3;
  background: transparent;
  box-shadow: inset 0 -3px #1f67f3;
}

.adgo-advantage-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 518px;
}

.adgo-advantage-card .advantage-visual {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.adgo-advantage-card img {
  width: 600px;
  height: 488px;
  object-fit: contain;
}

.adgo-advantage-card .data-list {
  width: 530px;
}

.adgo-advantage-card .item .label {
  margin-bottom: 8px;
  color: #333;
  font-size: 16px;
}

.adgo-advantage-card .item .content {
  margin-bottom: 30px;
  color: #717d93;
  font-size: 14px;
  line-height: 24px;
}

.adgo-advantage-card .tab-panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

/* Direct mapping from original/src/pages/Home/components/Services */
.adgo-services-container {
  padding-top: 80px;
  background: #fff !important;
  font-family: "Microsoft YaHei", var(--font-main);
}

.adgo-services-container > .title {
  margin-bottom: 62px;
  color: #333;
  font-size: 38px;
  font-weight: 700;
  text-align: center;
}

.adgo-services-container .list {
  display: flex;
  justify-content: space-between;
  width: min(1202px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 51px;
}

.adgo-services-container .card {
  width: 350px;
  min-height: 460px;
  padding-bottom: 45px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.adgo-services-container .sub-title {
  padding-top: 80px;
  margin-bottom: 62px;
  color: #333;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.adgo-services-container .item {
  width: 100%;
  padding: 0 46px 0 77px;
  margin-bottom: 24px;
}

.adgo-services-container .label {
  position: relative;
  margin-bottom: 8px;
  color: #333;
  font-size: 18px;
}

.adgo-services-container .label::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: -24px;
  width: 16px;
  height: 16px;
  background: url("../images/adgo/services/selected.svg") center / 100%
    no-repeat;
}

.adgo-services-container .content {
  color: #717d93;
  font-size: 16px;
  line-height: 26px;
}

.case-grid-goad .case-card {
  overflow: hidden;
  padding: 0;
  background: #fff;
}

.case-grid-goad .case-card img {
  height: 100%;
  min-height: 230px;
  border-radius: 0;
}

.case-grid-goad .case-card div {
  padding: 24px 24px 24px 0;
}

.case-grid-goad .case-card strong {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
}

.content-rich {
  background: #f8fbff !important;
}

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

.article-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.article-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.article-card h3 {
  margin: 10px 0;
}

.article-card p {
  color: var(--muted);
}

.article-card a {
  color: var(--blue);
  font-weight: 700;
}

.faq-preview {
  background: #fff !important;
}

.faq-mini {
  display: grid;
  gap: 12px;
}

.faq-mini details {
  padding: 20px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
}

.faq-mini summary {
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.faq-mini p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-cta {
  background: #fff !important;
}

.contact-cta__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(34, 211, 238, 0.34),
      transparent 28%
    ),
    linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-strong);
}

.contact-cta__box h2,
.contact-cta__box .eyebrow {
  color: #fff;
}

.contact-cta__box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact {
  color: #fff;
  background:
    radial-gradient(
      circle at 80% 10%,
      rgba(34, 211, 238, 0.28),
      transparent 28%
    ),
    linear-gradient(135deg, var(--blue-dark), #0f172a) !important;
}

.contact h2,
.contact .eyebrow {
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

address {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-strong);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  color: #fff;
  background: linear-gradient(180deg, #111827 0%, #030712 100%);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 58px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.footer-description {
  margin: 0 0 20px;
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 22px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-section ul li a {
  color: #9ca3af;
  font-size: 14px;
  transition:
    color 0.2s ease,
    text-decoration-color 0.2s ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-section ul li a:hover {
  color: #fff;
  text-decoration-color: currentColor;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #9ca3af;
  font-size: 14px;
}

.contact-item a {
  color: inherit;
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-badges,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badges span {
  padding: 7px 10px;
  color: #dbeafe;
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #9ca3af;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.social-icon {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
}

.footer-bottom p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

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

.footer-bottom a {
  color: #9ca3af;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

.page-hero {
  position: relative;
  padding: 132px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 18% 14%,
      rgba(34, 211, 238, 0.2),
      transparent 26%
    ),
    linear-gradient(135deg, #f8fbff, #eff6ff 58%, #fff7ed);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.page-hero .section-inner {
  max-width: 860px;
}

.page-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.article-list {
  display: grid;
  gap: 26px;
}

.long-article {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.long-article img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 6px;
}

.long-article span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.long-article h2 {
  margin: 8px 0 12px;
  font-size: clamp(26px, 3vw, 36px);
}

.long-article p {
  color: var(--muted);
}

.learning-hero {
  position: relative;
  padding: 142px 0 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(51, 102, 255, 0.16), transparent 32%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.learning-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(51, 102, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 102, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.learning-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: end;
}

.learning-hero--compact .learning-hero__inner {
  grid-template-columns: minmax(0, 860px);
}

.learning-hero h1 {
  margin: 10px 0 18px;
  color: #111827;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
}

.learning-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: #536173;
  font-size: 18px;
  line-height: 1.85;
}

.learning-hero__panel {
  display: grid;
  gap: 8px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(51, 102, 255, 0.86)),
    #111827;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.2);
}

.learning-hero__panel strong {
  font-size: 26px;
  line-height: 1.1;
}

.learning-hero__panel span {
  color: #c7d2fe;
  font-size: 18px;
  font-weight: 800;
}

.learning-hero__panel em {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-style: normal;
}

.learning-index {
  position: sticky;
  z-index: 30;
  top: 79px;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(226, 232, 240, 0.82);
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  backdrop-filter: blur(14px);
}

.learning-index__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.learning-index a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  height: 42px;
  padding: 0 18px;
  color: #263241;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.learning-index a:hover {
  color: #fff;
  background: #3366ff;
  border-color: #3366ff;
  transform: translateY(-2px);
}

.learning-content {
  padding: 54px 0 98px;
  background: #fff;
}

.learning-content--tabs {
  padding-top: 34px;
}

.learning-tabs {
  position: sticky;
  top: 78px;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 30px;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.learning-tab {
  position: relative;
  min-width: auto;
  height: 44px;
  padding: 0 2px;
  color: #64748b;
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.learning-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: #3366ff;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.55);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.learning-tab:hover,
.learning-tab.is-active {
  color: #1d4ed8;
  background: transparent;
}

.learning-tab:hover::after,
.learning-tab.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (min-width: 721px) {
  .learning-tabs {
    width: max-content;
    max-width: 100%;
    gap: 4px;
    padding: 6px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
  }

  .learning-tab {
    height: 40px;
    padding: 0 18px;
    border-radius: 10px;
  }

  .learning-tab::after {
    display: none;
  }

  .learning-tab:hover,
  .learning-tab.is-active {
    color: #1d4ed8;
    background: #fff;
    box-shadow:
      0 8px 22px rgba(51, 102, 255, 0.12),
      inset 0 0 0 1px rgba(51, 102, 255, 0.08);
  }
}

.learning-panels {
  min-height: 520px;
}

.learning-category {
  display: none;
  padding: 0;
  scroll-margin-top: 150px;
}

.learning-category.is-active {
  display: block;
}

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

.learning-card {
  overflow: hidden;
  min-height: 442px;
  color: #111827;
  background: #fff;
  border: 1px solid #e5eaf2;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.learning-card:hover {
  border-color: rgba(51, 102, 255, 0.26);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.16);
  transform: translateY(-5px);
}

.learning-card__visual {
  position: relative;
  min-height: 204px;
  padding: 28px 24px 24px;
  overflow: hidden;
  color: #fff;
  background: #b93220;
}

.learning-card__visual::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -36px;
  width: 190px;
  height: 158px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
  border: 12px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  transform: rotate(-11deg);
}

.learning-card__visual::after {
  content: "";
  position: absolute;
  right: 66px;
  top: 72px;
  width: 96px;
  height: 96px;
  border-right: 20px solid rgba(255, 255, 255, 0.12);
  border-bottom: 20px solid rgba(255, 255, 255, 0.12);
  transform: rotate(45deg);
}

.learning-card--blue .learning-card__visual {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
}

.learning-card--green .learning-card__visual {
  background: linear-gradient(135deg, #047857 0%, #10b981 100%);
}

.learning-card--purple .learning-card__visual {
  background: linear-gradient(135deg, #4338ca 0%, #7c3aed 100%);
}

.learning-card__brand {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 900;
}

.learning-card__visual strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 82%;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.learning-card__visual i {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.96);
  font-size: 28px;
  font-style: italic;
  font-weight: 900;
  line-height: 0.92;
  text-align: right;
}

.learning-card__body {
  padding: 24px 24px 28px;
}

.learning-card__body span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #3366ff;
  font-size: 13px;
  font-weight: 900;
}

.learning-card__body h3 {
  display: -webkit-box;
  min-height: 70px;
  margin: 0 0 14px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #2b3138;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.45;
}

.learning-card__body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: #64748b;
  font-size: 15px;
  line-height: 1.75;
}

.learning-article-hero {
  padding: 142px 0 72px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #b93220, #dc3f27);
}

.learning-article-page--blue .learning-article-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #2563eb, #3b82f6);
}

.learning-article-page--green .learning-article-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #047857, #10b981);
}

.learning-article-page--purple .learning-article-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #4338ca, #7c3aed);
}

.learning-article-hero__inner {
  max-width: 920px;
}

.learning-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.learning-back:hover {
  color: #fff;
}

.learning-article-hero p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
}

.learning-article-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.15;
}

.learning-article-hero span {
  display: block;
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.8;
}

.learning-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 42px;
  align-items: start;
  padding: 66px 0 96px;
}

.learning-article-body {
  color: #334155;
  font-size: 18px;
  line-height: 1.9;
}

.learning-article-body .lead {
  margin-top: 0;
  color: #111827;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.7;
}

.learning-article-body h2 {
  margin: 38px 0 14px;
  color: #111827;
  font-size: 28px;
  font-weight: 900;
}

.learning-article-body ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.learning-article-body li {
  padding: 16px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.learning-article-side {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 12px;
  padding: 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.learning-article-side strong {
  color: #111827;
  font-size: 20px;
  font-weight: 900;
}

.learning-article-side span,
.learning-article-side a {
  color: #475569;
  font-size: 15px;
}

.learning-article-side > a {
  color: #3366ff;
  font-weight: 900;
}

.learning-related {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.learning-related em {
  color: #111827;
  font-style: normal;
  font-weight: 900;
}

.learning-related a {
  line-height: 1.5;
}

.blog-detail-main {
  padding: 112px 0 86px;
  background:
    linear-gradient(180deg, #f8fafc 0%, #fff 46%),
    #fff;
}

.blog-detail-shell {
  width: min(100% - 40px, 1180px);
}

.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
  color: #94a3b8;
  font-size: 14px;
}

.blog-breadcrumb a {
  color: #64748b;
  font-weight: 800;
}

.blog-breadcrumb a:hover {
  color: #3366ff;
}

.blog-breadcrumb em {
  color: #111827;
  font-style: normal;
  font-weight: 900;
}

.blog-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 32px;
  align-items: start;
}

.blog-detail-card,
.blog-side-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.blog-detail-cover-wrap {
  position: relative;
}

.blog-detail-cover {
  position: relative;
  min-height: 320px;
  padding: 44px 46px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #b93220, #dc3f27);
}

.blog-detail-cover--blue {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.blog-detail-cover--green {
  background: linear-gradient(135deg, #047857, #10b981);
}

.blog-detail-cover--purple {
  background: linear-gradient(135deg, #4338ca, #7c3aed);
}

.blog-detail-cover::before {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -56px;
  width: 320px;
  height: 240px;
  background: rgba(255, 255, 255, 0.09);
  border: 18px solid rgba(255, 255, 255, 0.1);
  border-radius: 42px;
  transform: rotate(-11deg);
}

.blog-detail-cover span,
.blog-detail-cover strong,
.blog-detail-cover i {
  position: relative;
  z-index: 1;
}

.blog-detail-cover span {
  display: inline-flex;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 900;
}

.blog-detail-cover strong {
  display: block;
  max-width: 620px;
  color: #fff;
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1.12;
}

.blog-detail-cover i {
  position: absolute;
  right: 46px;
  bottom: 36px;
  font-size: 42px;
  font-style: italic;
  font-weight: 900;
  line-height: 0.92;
  text-align: right;
}

.blog-detail-badge {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  padding: 8px 14px;
  color: #fff;
  background: rgba(15, 23, 42, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.blog-detail-content {
  padding: clamp(26px, 4vw, 42px);
}

.blog-detail-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.blog-detail-avatar,
.blog-side-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  color: #fff;
  background: #3366ff;
  border-radius: 50%;
  font-weight: 900;
}

.blog-detail-meta strong {
  color: #111827;
  font-size: 16px;
}

.blog-detail-meta p {
  margin: 3px 0 0;
  color: #64748b;
  font-size: 14px;
}

.blog-detail-content h1 {
  margin: 0 0 20px;
  color: #111827;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.18;
}

.blog-detail-lead {
  margin: 0 0 28px;
  color: #536173;
  font-size: 20px;
  line-height: 1.8;
}

.blog-detail-prose {
  color: #334155;
  font-size: 17px;
  line-height: 1.9;
}

.blog-detail-prose h2 {
  margin: 36px 0 14px;
  color: #111827;
  font-size: 28px;
  font-weight: 900;
}

.blog-detail-prose h3 {
  margin: 26px 0 8px;
  color: #172554;
  font-size: 20px;
  font-weight: 900;
}

.blog-detail-prose p {
  margin: 0 0 18px;
}

.blog-detail-insight {
  margin: 28px 0;
  padding: 22px 24px;
  color: #1e3a8a;
  background: #eff6ff;
  border-left: 4px solid #3366ff;
  border-radius: 8px;
}

.blog-detail-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.blog-detail-footer span {
  padding: 7px 12px;
  color: #475569;
  background: #f1f5f9;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.blog-detail-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.blog-side-card {
  padding: 22px;
}

.blog-side-author {
  text-align: center;
}

.blog-side-author .blog-side-avatar {
  width: 76px;
  height: 76px;
  margin: 0 auto 14px;
  font-size: 24px;
}

.blog-side-card h3 {
  margin: 0 0 14px;
  color: #111827;
  font-size: 18px;
  font-weight: 900;
}

.blog-side-card p {
  margin: 0 0 16px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.blog-side-card > a {
  display: inline-flex;
  justify-content: center;
  min-width: 116px;
  padding: 10px 14px;
  color: #fff;
  background: #3366ff;
  border-radius: 8px;
  font-weight: 900;
}

.blog-related-list,
.blog-category-list {
  display: grid;
  gap: 12px;
}

.blog-related-list article {
  display: grid;
  gap: 5px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.blog-related-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-related-list a,
.blog-category-list a {
  color: #263241;
  font-weight: 800;
  line-height: 1.45;
}

.blog-related-list a:hover,
.blog-category-list a:hover {
  color: #3366ff;
}

.blog-related-list span {
  color: #94a3b8;
  font-size: 13px;
}

.faq-page {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-page details {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.faq-page summary {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.faq-page p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-page {
  padding-top: 86px;
}

.auth-wrap {
  min-height: calc(100vh - 120px);
  display: grid;
  place-items: center;
  padding: 132px 20px 80px;
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(34, 211, 238, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, #f8fbff, #eff6ff 56%, #fff7ed);
}

.auth-card {
  width: min(520px, 100%);
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-strong);
}

.auth-card h1 {
  font-size: 42px;
}

.auth-card form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.auth-card label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-weight: 700;
}

.auth-card input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  outline: none;
}

.auth-link {
  margin: 20px 0 0;
  color: var(--muted);
}

.auth-link a {
  color: var(--blue);
  font-weight: 700;
}

.legal-content {
  max-width: 900px;
  color: var(--muted);
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 26px;
}

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

.legal-content p {
  margin-bottom: 16px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  color: #fff;
  font-size: 22px;
}

.footer-inner p {
  margin: 6px 0 0;
  font-size: 14px;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

footer.bg-gray-900 p,
footer.bg-gray-900 a,
footer.bg-gray-900 span,
footer.bg-gray-900 svg {
  color: #9ca3af !important;
}

footer.bg-gray-900 h3,
footer.bg-gray-900 .text-2xl.font-bold,
footer.bg-gray-900 .text-white,
footer.bg-gray-900 a:hover {
  color: #fff !important;
}

.footer-copyright-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: center;
}

.footer-icp {
  white-space: nowrap;
}

@media (min-width: 640px) {
  .footer-copyright-line {
    justify-content: flex-start;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

/* About Page Styles - Two Column Layout & Card Style */
.page-hero--about {
  background:
    radial-gradient(
      circle at 18% 14%,
      rgba(37, 99, 235, 0.15),
      transparent 26%
    ),
    linear-gradient(135deg, #eff6ff, #fff 58%);
  padding: 60px 0 80px;
}

.page-hero--about h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.page-hero--about p {
  font-size: 18px;
  color: var(--muted);
  max-width: 800px;
}

.about-intro {
  padding: 80px 0;
  background: #fff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.values-section {
  padding: 80px 0;
  background: #f8fbff;
}

.values-section .section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.values-section h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.value-card {
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.value-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 24px;
}

.value-icon svg {
  width: 32px;
  height: 32px;
}

.value-icon--transparent {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
}

.value-icon--professional {
  background: rgba(163, 230, 53, 0.15);
  color: #65a30d;
}

.value-icon--secure {
  background: rgba(251, 113, 133, 0.1);
  color: var(--coral);
}

.value-icon--growth {
  background: rgba(34, 211, 238, 0.15);
  color: var(--cyan);
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.stats-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.1), transparent 30%),
    linear-gradient(135deg, var(--blue-dark), #0f172a);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  display: block;
  margin-bottom: 8px;
  font-size: 48px;
  font-weight: 700;
  color: var(--cyan);
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

/* FAQ Page Styles */
.page-hero--faq {
  background:
    radial-gradient(
      circle at 82% 14%,
      rgba(34, 211, 238, 0.15),
      transparent 26%
    ),
    linear-gradient(135deg, #f8fbff, #fff 58%);
  padding: 60px 0 80px;
}

.page-hero--faq h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.page-hero--faq p {
  font-size: 18px;
  color: var(--muted);
  max-width: 800px;
}

.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

.faq-items {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  background: #fff;
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
}

.faq-question span {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--blue);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.faq-answer p {
  margin: 0;
}

/* Contact Page Styles */
.page-hero--contact {
  background:
    radial-gradient(
      circle at 60% 14%,
      rgba(37, 99, 235, 0.15),
      transparent 26%
    ),
    linear-gradient(135deg, #f8fbff, #fff 58%);
  padding: 60px 0 80px;
}

.page-hero--contact h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.page-hero--contact p {
  font-size: 18px;
  color: var(--muted);
  max-width: 800px;
}

.contact-section {
  padding: 80px 0;
  background: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-header h2 {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
}

.contact-header p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #f8fbff;
  border-radius: 16px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.contact-method:hover {
  background: #eff6ff;
  transform: translateY(-2px);
}

.contact-icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.contact-icon--email {
  background: rgba(37, 99, 235, 0.1);
  color: var(--blue);
}

.contact-icon--support {
  background: rgba(163, 230, 53, 0.15);
  color: #65a30d;
}

.contact-icon--wechat {
  background: rgba(34, 211, 238, 0.15);
  color: var(--cyan);
}

.contact-icon--location {
  background: rgba(251, 113, 133, 0.1);
  color: var(--coral);
}

.contact-details h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}

.contact-details a,
.contact-details span {
  font-size: 15px;
  color: var(--muted);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--blue);
}

.contact-form {
  padding: 40px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-form h3 {
  margin: 0 0 28px;
  font-size: 24px;
  font-weight: 700;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

/* Template-derived inner page surfaces */
body[data-motion-enabled="true"] {
  background: linear-gradient(
    to bottom right,
    #e0e7ff 0%,
    #ffffff 50%,
    #e9d5ff 100%
  );
}

body:has(.page-hero) {
  background: linear-gradient(to bottom right, #e0e7ff, #ffffff, #e9d5ff);
}

.page-hero {
  padding: 128px 0 48px;
  background:
    radial-gradient(
      circle at 18% 14%,
      rgba(37, 99, 235, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 16%,
      rgba(34, 211, 238, 0.14),
      transparent 26%
    ),
    linear-gradient(180deg, #f8fafc 0%, #eff6ff 100%);
}

.page-hero::before {
  opacity: 0.55;
}

.page-hero .section-inner {
  max-width: 1180px;
}

.page-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.14);
  border-radius: 999px;
  letter-spacing: 0.08em;
}

.page-hero h1 {
  max-width: 850px;
  color: #0f172a;
  font-size: clamp(38px, 4.6vw, 58px);
}

.page-hero p:last-child {
  color: #64748b;
}

.about-intro,
.faq-section,
.contact-section,
.section:has(.legal-content) {
  background: #f8fafc;
}

.about-content,
.contact-container,
.legal-content,
.faq-category {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.about-content,
.contact-container {
  padding: clamp(24px, 4vw, 48px);
}

.about-image img {
  border-radius: 10px;
}

.value-card,
.faq-item,
.contact-method,
.contact-form,
.auth-card {
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.values-section {
  background: #f1f5f9;
}

.faq-container {
  display: grid;
  gap: 28px;
}

.faq-category {
  padding: clamp(22px, 3vw, 32px);
}

.faq-category-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #0f172a;
  font-size: 22px;
}

.faq-category-title svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.faq-item {
  background: #fff;
  border-color: rgba(226, 232, 240, 0.95);
  box-shadow: none;
}

.faq-question {
  padding: 20px 22px;
}

.faq-answer {
  padding: 0 22px 22px;
}

.contact-method {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.contact-form {
  background: #fff;
}

.legal-content {
  padding: clamp(28px, 5vw, 56px);
  color: #475569;
}

.legal-content h2 {
  color: #0f172a;
}

.legal-content p {
  color: #475569;
  line-height: 1.85;
}

.auth-wrap {
  background:
    radial-gradient(
      circle at 20% 18%,
      rgba(37, 99, 235, 0.14),
      transparent 26%
    ),
    linear-gradient(180deg, #f8fafc, #eff6ff);
}

/* CTA Section Styles */
.cta-section {
  padding: 80px 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(34, 211, 238, 0.2),
      transparent 30%
    ),
    linear-gradient(135deg, var(--blue-dark), #0f172a);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
}

.cta-content p {
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-secondary {
  padding: 16px 32px;
  color: var(--blue);
  background: #fff;
  border: 2px solid #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.btn-secondary:hover {
  color: #fff;
  background: transparent;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content,
  .values-grid,
  .stats-grid,
  .contact-container,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 40px 24px;
  }

  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .page-hero--about h1,
  .page-hero--faq h1,
  .page-hero--contact h1 {
    font-size: 28px;
  }

  .page-hero--about p,
  .page-hero--faq p,
  .page-hero--contact p {
    font-size: 16px;
  }

  .about-text h2,
  .contact-header h2,
  .cta-content h2 {
    font-size: 26px;
  }

  .about-content,
  .contact-container {
    gap: 32px;
  }

  .value-card,
  .contact-form {
    padding: 28px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 20px;
    font-size: 14px;
  }

  .hero-inner,
  .template-hero__inner,
  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .template-hero,
  .adgo-hero-slider,
  .adgo-hero-slide {
    min-height: 1120px;
  }

  .adgo-hero-slide {
    padding-top: 104px;
  }

  .template-hero__inner,
  .template-hero__inner--wide {
    gap: 32px;
  }

  .quantum-panel,
  .learnbe-style-panel {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

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

  .step-list {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .income-step:not(:last-child)::after {
    display: none;
  }

  .original-scene-layout,
  .advantage-body,
  .panel-stage {
    grid-template-columns: 1fr;
  }

  .phone-preview {
    width: min(330px, 100%);
  }

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

  .logo-grid span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 66px;
  }

  .navbar-desktop {
    display: none;
  }

  .navbar-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 56px);
    height: 66px;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding-top: 106px;
  }

  .template-hero,
  .page-hero {
    padding-top: 104px;
  }

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

  .template-hero,
  .adgo-hero-slider,
  .adgo-hero-slide {
    min-height: 760px;
  }

  .adgo-hero-slide {
    align-items: center;
    padding: 82px 0 48px;
  }

  .template-hero__inner--single {
    min-height: auto;
  }

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

  .template-hero .hero-lead {
    font-size: 16px;
  }

  .template-hero .hero-actions {
    margin-top: 24px;
  }

  .hero-nav {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 22px auto 18px;
  }

  .hero-stat-grid div {
    min-width: 0;
    padding: 14px 8px;
    border-width: 1px;
    border-radius: 16px;
  }

  .hero-stat-grid strong {
    font-size: 26px;
  }

  .hero-stat-grid span {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.2;
  }

  .hero-stat-grid small {
    display: none;
  }

  .rank-list span {
    grid-template-columns: 36px 1fr;
  }

  .rank-list em {
    grid-column: 2;
  }

  .quantum-panel {
    display: none;
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 28px, var(--container));
  }

  .hero-metrics,
  .format-grid,
  .enterprise-grid,
  .service-grid,
  .case-grid,
  .article-grid,
  .scene-tabs,
  .income-steps {
    grid-template-columns: 1fr;
  }

  .original-scene-layout,
  .original-advantage,
  .contact-cta__box,
  .learnbe-style-panel {
    padding: 22px;
  }

  .stage-cards {
    grid-template-columns: 1fr;
  }

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

  .main-panel {
    grid-row: auto;
    min-height: 180px;
  }

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

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

  .case-grid-goad .case-card div {
    padding: 22px;
  }

  .long-article {
    grid-template-columns: 1fr;
  }

  .contact-cta__box {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 40px;
  }

  .template-hero,
  .adgo-hero-slider,
  .adgo-hero-slide {
    min-height: 720px;
  }

  .adgo-hero-slide {
    align-items: flex-start;
    padding: 112px 0 42px;
  }

  .adgo-hero-slide--success {
    padding-top: 100px;
  }

  .adgo-hero-slide--success .hero-center {
    width: calc(100% - 28px);
    max-width: 360px;
    padding: 0;
  }

  .adgo-hero-slide--success .hero-badge {
    margin-bottom: 14px;
  }

  .adgo-hero-slide--success .hero-lead {
    display: -webkit-box;
    max-width: 310px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .adgo-hero-slide--success .hero-actions {
    width: 100%;
    margin-top: 18px;
  }

  .adgo-hero-slide--success .hero-cta {
    min-height: 48px;
  }

  .adgo-hero-slide--success .hero-stat-grid {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .adgo-hero-slide--secondary .template-hero__inner {
    display: block;
  }

  .adgo-hero-slide--secondary .template-hero__copy {
    width: min(100%, 354px);
    margin: 0 auto;
  }

  .adgo-hero-slide--secondary .hero-feature-list {
    gap: 14px;
    margin-bottom: 22px;
  }

  .adgo-hero-slide--secondary .hero-feature-list div {
    display: flex;
  }

  .adgo-hero-slide--secondary .hero-feature-list em {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .template-hero h1 {
    font-size: 31px;
    line-height: 1.12;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-actions,
  .tab-controls {
    flex-direction: column;
  }

  .template-hero .hero-cta {
    min-height: 50px;
    width: 100%;
    padding: 0 22px;
    font-size: 16px;
  }

  .template-hero__copy--center {
    padding-top: 4px;
  }

  .template-hero .hero-lead {
    max-width: 320px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-template-icons {
    margin-top: 28px;
    transform: scale(0.9);
  }

  .hero-wave--a {
    width: 360px;
    height: 360px;
    top: -145px;
    left: -155px;
  }

  .hero-wave--b {
    width: 290px;
    height: 290px;
    right: -135px;
    bottom: -80px;
  }

  .btn,
  .tab-controls button {
    width: 100%;
  }

  .hero-feature-list div {
    display: block;
  }

  .hero-feature-list strong {
    display: block;
    margin-bottom: 4px;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .quantum-card {
    padding: 22px;
  }

  .ad-network-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .panel-stage,
  .contact-form,
  .auth-card {
    padding: 20px;
  }

  .scene-card {
    min-height: 132px;
  }

  .phone-screen {
    border-radius: 16px;
  }
}

@media (max-width: 1080px) {
  .adgo-integrations {
    padding: 86px 0 24px;
  }

  .adgo-platform-edge {
    padding: 84px 0 28px;
  }

  .adgo-platforms {
    padding: 78px 0 32px;
  }

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

  .adgo-cases {
    padding: 82px 0 34px;
  }

  .adgo-cases__shell {
    grid-template-columns: 1fr;
  }

  .adgo-cases__tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .adgo-cases__tabs button {
    justify-content: center;
    min-height: 76px;
    padding: 16px 12px;
    text-align: center;
  }

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

  .adgo-platform-edge__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .adgo-integrations__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .adgo-integrations__copy {
    order: 1;
    text-align: center;
  }

  .adgo-integrations__copy p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .adgo-integrations__logos {
    grid-template-columns: repeat(4, minmax(96px, 120px));
    justify-content: center;
    order: 2;
  }

  .adgo-integrations__logos li {
    width: 100%;
    aspect-ratio: 1;
    height: auto;
  }

  .adgo-scene {
    margin: 76px auto 92px;
  }

  .adgo-scene .container {
    height: auto;
    padding: 28px;
  }

  .adgo-scene .tabs-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-right: 0;
  }

  .adgo-scene .scene-item {
    width: 100%;
    height: 126px;
    font-size: 16px;
  }

  .adgo-scene .scene-item img {
    top: 24px;
    left: calc(50% - 23px);
    width: 46px;
    height: 46px;
  }

  .adgo-scene .scene-item div {
    top: 80px;
  }

  .adgo-scene .selected-scene-bg {
    display: none;
  }

  .adgo-scene .scene-item.selected-scene-item {
    background: #1f67f3;
  }

  .adgo-scene .adgo-scene-phone {
    position: relative;
    top: auto;
    right: auto;
    width: 300px;
    height: 473px;
    margin: 28px auto 0;
  }

  .adgo-scene .phone-screen {
    top: 9px;
    left: 58px;
    width: 185px;
    height: 395px;
    border-radius: 22px;
  }

  .adgo-h5-scenarios__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .adgo-h5-scenario-card {
    min-height: 352px;
  }

  .adgo-h5-scenario-card img {
    max-width: 148px;
  }

  .adgo-help .icons,
  .adgo-services-container .list {
    padding-inline: 20px;
  }

  .adgo-help .icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .adgo-help .icon {
    margin-right: 0;
  }

  .adgo-help .icon-bg::after {
    display: none;
  }

  .adgo-advantage-card {
    flex-direction: column;
    gap: 24px;
    min-height: auto;
  }

  .adgo-advantage-card img {
    width: min(600px, 100%);
    height: auto;
  }

  .adgo-advantage-card .data-list {
    width: 100%;
  }

  .adgo-services-container .list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(900px, 100%);
    gap: 22px;
  }

  .adgo-services-container .card {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .adgo-integrations {
    padding: 68px 0 0;
  }

  .adgo-platforms {
    padding: 62px 0 20px;
  }

  .adgo-platforms__inner,
  .adgo-cases__inner {
    width: min(100% - 28px, 1194px);
  }

  .adgo-platforms__heading,
  .adgo-cases__heading {
    margin-bottom: 26px;
  }

  .adgo-platforms__heading .eyebrow,
  .adgo-cases__heading .eyebrow {
    font-size: 16px;
  }

  .adgo-platforms__heading h2,
  .adgo-cases__heading h2 {
    font-size: 28px;
  }

  .adgo-platforms__heading p {
    font-size: 16px;
  }

  .adgo-platforms__item {
    min-height: 92px;
    padding: 18px;
  }

  .adgo-platforms__item img {
    width: 42px;
    height: 42px;
  }

  .adgo-platforms__item span {
    font-size: 15px;
  }

  .adgo-cases {
    padding: 68px 0 22px;
  }

  .adgo-cases__tabs {
    display: flex;
    gap: 12px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .adgo-cases__tabs::-webkit-scrollbar {
    display: none;
  }

  .adgo-cases__tabs button {
    min-width: 132px;
    min-height: 68px;
    flex: 0 0 auto;
    font-size: 15px;
  }

  .adgo-cases__tabs .case-icon {
    width: 28px;
    height: 28px;
  }

  .adgo-cases__panels {
    min-height: auto;
  }

  .adgo-case {
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .adgo-case__brand img {
    width: 58px;
    height: 58px;
  }

  .adgo-case__brand h3 {
    font-size: 24px;
  }

  .adgo-case__copy p {
    font-size: 15px;
    line-height: 1.75;
  }

  .adgo-case__visual {
    min-height: 260px;
  }

  .adgo-integrations__inner {
    width: min(100% - 28px, 1194px);
  }

  .adgo-integrations__copy .eyebrow {
    font-size: 16px;
  }

  .adgo-integrations__copy h2 {
    font-size: 28px;
  }

  .adgo-integrations__copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.75;
  }

  .adgo-integrations__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .adgo-integrations__logos img {
    width: 48px;
    max-height: 48px;
  }

  .adgo-platform-edge {
    padding: 68px 0 18px;
  }

  .adgo-platform-edge__inner {
    width: min(100% - 28px, 1194px);
  }

  .adgo-platform-edge__heading {
    margin-bottom: 26px;
  }

  .adgo-platform-edge__heading .eyebrow {
    font-size: 16px;
  }

  .adgo-platform-edge__heading h2 {
    font-size: 28px;
  }

  .adgo-platform-edge__heading p:not(.eyebrow) {
    font-size: 16px;
  }

  .adgo-platform-edge__grid {
    gap: 14px;
  }

  .adgo-platform-edge__card {
    min-height: auto;
    padding: 22px;
  }

  .adgo-scene {
    margin: 0 auto;
    padding: 56px 0 72px;
    overflow: hidden;
  }

  .adgo-scene__heading,
  .adgo-help .title,
  .adgo-advantage > .title,
  .adgo-services-container > .title {
    width: min(100% - 28px, 1194px);
    text-align: center;
  }

  .adgo-scene__heading {
    margin-bottom: 20px;
  }

  .adgo-scene__heading .eyebrow {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .adgo-scene__heading h2 {
    font-size: 26px;
  }

  .adgo-scene__intro {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.7;
  }

  .adgo-scene .phone-scene-subtitle {
    display: block;
    margin: 0 auto 34px;
    color: #333;
    font-family: "Microsoft YaHei", var(--font-main);
    font-size: 18px;
    font-weight: 400;
    text-align: center;
  }

  .adgo-advantage .tabs {
    width: min(100% - 28px, 1194px);
  }

  .adgo-scene .container {
    width: 100%;
    min-height: 620px;
    padding: 0;
    background: #fff;
    border-radius: 0;
  }

  .adgo-scene .tabs-box,
  .adgo-help .icons,
  .adgo-services-container .list {
    grid-template-columns: 1fr;
  }

  .adgo-scene .tabs-box {
    display: none;
  }

  .adgo-scene .scene-item {
    height: 150px;
  }

  .adgo-scene .scene-item img {
    top: 34px;
  }

  .adgo-scene .scene-item div {
    top: 100px;
  }

  .adgo-scene .adgo-scene-phone {
    position: relative;
    top: auto;
    right: auto;
    width: min(360px, 100vw);
    height: 568px;
    margin: 0 auto;
  }

  .adgo-scene .scene-phone-dots {
    position: absolute;
    z-index: 4;
    top: -22px;
    left: 50%;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
  }

  .adgo-scene .scene-phone-dots button {
    width: 24px;
    height: 3px;
    padding: 0;
    background: #d7e2f4;
    border: 0;
    border-radius: 99px;
  }

  .adgo-scene .scene-phone-dots button.is-active {
    background: #1f67f3;
  }

  .adgo-scene .scene-phone-nav {
    position: absolute;
    z-index: 4;
    top: 48%;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    padding: 0 0 3px;
    color: #fff;
    background: rgba(31, 103, 243, 0.78);
    border: 0;
    border-radius: 999px;
    font-size: 31px;
    line-height: 1;
    box-shadow: 0 12px 26px rgba(31, 103, 243, 0.18);
  }

  .adgo-scene .scene-phone-nav--prev {
    left: 13px;
  }

  .adgo-scene .scene-phone-nav--next {
    right: 13px;
  }

  .adgo-h5-scenarios {
    margin: 0 auto;
    padding: 56px 0 72px;
    overflow: hidden;
  }

  .adgo-h5-scenarios__inner {
    width: min(100% - 28px, 1194px);
  }

  .adgo-h5-scenarios__heading {
    margin: 0 auto 26px;
    text-align: center;
  }

  .adgo-h5-scenarios__heading .eyebrow {
    font-size: 16px;
  }

  .adgo-h5-scenarios__heading h2 {
    font-size: 26px;
  }

  .adgo-h5-scenarios__heading p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
  }

  .adgo-h5-scenarios__panel {
    width: 100%;
    padding: 22px;
    border-radius: 20px;
  }

  .adgo-h5-scenarios__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0;
  }

  .adgo-h5-scenario-card {
    width: auto;
    min-height: 330px;
    padding: 16px 10px 18px;
    border-radius: 16px;
  }

  .adgo-h5-scenario-card img {
    max-width: 128px;
  }

  .adgo-h5-scenario-card span {
    min-height: 34px;
    padding: 0 16px;
    font-size: 15px;
  }

  .adgo-advantage .tab-controls {
    grid-template-columns: 1fr;
  }

  .adgo-advantage .tab-controls button {
    min-height: 48px;
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .adgo-integrations__logos {
    gap: 12px;
  }

  .adgo-platforms__grid {
    gap: 12px;
  }

  .adgo-platforms__item {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-height: 118px;
    padding: 16px 10px;
    text-align: center;
  }

  .adgo-case {
    padding: 20px;
  }

  .adgo-case__metrics {
    gap: 10px;
  }

  .adgo-case__metrics div {
    padding: 14px;
  }

  .adgo-case__metrics strong {
    font-size: 25px;
  }

  .adgo-case__visual {
    min-height: 220px;
    border-radius: 18px;
  }

  .adgo-case__visual img {
    max-height: 230px;
  }

  .adgo-integrations__logos li {
    border-radius: 16px;
  }

  .adgo-platform-edge__grid {
    grid-template-columns: 1fr;
  }

  .adgo-platform-edge__card {
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 14px;
  }

  .adgo-platform-edge__card img {
    width: 54px;
    height: 54px;
  }

  .original-advantage {
    padding: 18px;
  }

  .adgo-scene .container {
    min-height: 520px;
    padding: 0;
  }

  .adgo-scene .adgo-scene-phone {
    width: 300px;
    height: 473px;
  }

  .adgo-scene .phone-screen {
    top: 9px;
    left: 58px;
    width: 185px;
    height: 395px;
    border-radius: 22px;
  }

  .adgo-scene .scene-phone-nav {
    top: 47%;
    width: 30px;
    height: 30px;
    font-size: 28px;
  }

  .adgo-scene .scene-phone-nav--prev {
    left: 4px;
  }

  .adgo-scene .scene-phone-nav--next {
    right: 4px;
  }

  .adgo-help .icon {
    height: 170px;
    padding-top: 108px;
  }

  .adgo-services-container .sub-title {
    padding-top: 54px;
    margin-bottom: 40px;
  }
}

/* Goad-inspired homepage sections */
.adgo-platforms {
  padding: 96px 0 64px;
  background: #fff;
}

.adgo-platforms__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(34px, 5.5vw, 76px);
  align-items: center;
  width: min(1194px, calc(100% - 40px));
  margin: 0 auto;
}

.adgo-platforms__copy {
  text-align: left;
}

.adgo-platforms__copy .eyebrow {
  display: block;
  margin: 0 0 14px;
  color: #1f67f3;
  font-size: 20px;
  font-weight: 700;
}

.adgo-platforms__copy h2 {
  margin: 0 0 22px;
  color: #1e293b;
  font-family: "Plus Jakarta Sans", var(--font-main);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.22;
}

.adgo-platforms__copy p {
  max-width: 560px;
  margin: 0;
  color: #454e5a;
  font-size: 18px;
  line-height: 1.85;
}

.adgo-platforms__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.adgo-platforms__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #1f67f3;
  background: #eef5ff;
  border: 1px solid rgba(31, 103, 243, 0.13);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
}

.adgo-platforms__visual {
  position: relative;
  padding: 26px;
  background:
    radial-gradient(circle at 88% 18%, rgba(31, 103, 243, 0.14), transparent 34%),
    linear-gradient(180deg, #f8fbff, #fff);
  border: 1px solid rgba(218, 228, 242, 0.88);
  border-radius: 24px;
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.08);
}

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

.adgo-platforms__item {
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  min-height: 118px;
  padding: 18px 10px;
  text-align: center;
  background: #fff;
  border-radius: 18px;
}

.adgo-platforms__item img {
  width: 46px;
  height: 46px;
}

.adgo-platforms__item span {
  font-size: 14px;
}

.adgo-cases {
  position: relative;
  padding: 84px 0 88px;
  overflow: hidden;
  background: #f8f8f8;
}

.adgo-cases__inner {
  position: relative;
  width: min(1194px, calc(100% - 40px));
  margin: 0 auto;
}

.adgo-cases__heading {
  max-width: 860px;
  margin: 0 auto 68px;
  text-align: center;
}

.adgo-cases__heading .eyebrow {
  margin: 0 0 12px;
  color: #1f67f3;
  font-size: 18px;
  font-weight: 700;
}

.adgo-cases__heading h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.24;
}

.adgo-cases__decor {
  position: absolute;
  z-index: 0;
  width: 174px;
  height: 197px;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
}

.adgo-cases__decor--left {
  top: 66px;
  left: -80px;
  background-image: url("../images/goad/right.png");
}

.adgo-cases__decor--right {
  right: -90px;
  bottom: -32px;
  background-image: url("../images/goad/left.png");
}

.adgo-cases__dot {
  position: absolute;
  bottom: 38px;
  left: 12px;
  width: 50px;
  height: 50px;
  background: #275aff;
  border-radius: 50%;
}

.adgo-cases__shell {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  align-items: stretch;
  width: min(100%, 1200px);
  margin: 0 auto;
}

.adgo-cases__tabs {
  display: grid;
  width: 300px;
  height: 480px;
  gap: 0;
  flex: 0 0 300px;
  background: #f0f0f5;
}

.adgo-cases__tabs button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 120px;
  padding: 0;
  color: #999;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transform: none;
}

.adgo-cases__tabs button:hover {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.adgo-cases__tabs button.is-active {
  color: #000;
  background: #fff;
  box-shadow: none;
}

.adgo-cases__tabs .case-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.adgo-cases__panels {
  position: relative;
  width: calc(100% - 300px);
  height: 480px;
  min-height: 480px;
}

.adgo-case {
  position: relative;
  display: none;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  width: 100%;
  height: 480px;
  min-height: 480px;
  padding: 47px 0 0 53px;
  overflow: visible;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.adgo-case.is-active {
  display: grid;
  animation: adgoCaseIn 0.28s ease both;
}

.adgo-case::before {
  position: absolute;
  top: 210px;
  left: -269px;
  width: 0;
  height: 0;
  border-left: 480px solid #f0f0f5;
  border-bottom: 60px solid #fff;
  content: "";
  transform: rotate(-90deg);
}

.adgo-case__copy {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 430px;
}

.adgo-case__category {
  margin-bottom: 50px;
  color: #111827;
  font-size: 28px;
  font-weight: 800;
  text-shadow: 0 4px 6px rgba(240, 240, 240, 0.5);
}

.adgo-case__brand {
  display: block;
  min-height: 80px;
}

.adgo-case__brand img {
  float: left;
  width: 80px;
  height: 80px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.adgo-case__brand span {
  display: none;
}

.adgo-case__brand h3 {
  margin: 0 0 0 109px;
  padding-top: 2px;
  color: #000;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  text-shadow: 0 4px 6px rgba(240, 240, 240, 0.5);
}

.adgo-case__copy p {
  display: block;
  width: 402px;
  margin: -38px 0 0 109px;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  text-shadow: 0 4px 6px rgba(240, 240, 240, 0.5);
}

.adgo-case__metrics {
  display: flex;
  width: 300px;
  margin-top: 66px;
  gap: 52px;
}

.adgo-case__metrics div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  position: relative;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.adgo-case__metrics img {
  position: absolute;
  top: 8px;
  right: -12px;
  width: 8px;
  height: 11px;
  margin-left: 4px;
  object-fit: contain;
}

.adgo-case__metrics strong {
  display: flex;
  align-items: center;
  color: #e60101;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
}

.adgo-case__metrics strong + span {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}

.adgo-case__metrics div img {
  order: initial;
}

.adgo-case__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 300px;
  height: 560px;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  border-radius: 0;
}

.adgo-case__visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.adgo-partners {
  padding: 72px 0 76px;
  overflow: hidden;
  background: #fff;
}

.adgo-partners__inner {
  width: min(1194px, calc(100% - 40px));
  margin: 0 auto;
}

.adgo-partners__heading {
  margin-bottom: 42px;
  text-align: center;
}

.adgo-partners__heading .eyebrow {
  margin: 0 0 10px;
  color: #3c3c3c;
  font-size: 36px;
  font-weight: 800;
}

.adgo-partners__heading h2 {
  margin: 0;
  color: #8a8f98;
  font-size: 18px;
  font-weight: 500;
}

.adgo-partners__slider {
  position: relative;
}

.adgo-partners__viewport {
  width: 100%;
  overflow: hidden;
}

.adgo-partners__track {
  display: flex;
  width: 500%;
  transition: transform 0.45s ease;
}

.adgo-partners__track ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 20%;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.adgo-partners__track li {
  display: grid;
  height: 106px;
  place-items: center;
}

.adgo-partners__track li:empty {
  visibility: hidden;
}

.adgo-partners__track img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border: 1px solid #efecec;
  border-radius: 8px;
}

.adgo-partners__arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.86);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
}

.adgo-partners__arrow img {
  width: 24px;
  height: 24px;
}

.adgo-partners__arrow--prev {
  left: -24px;
}

.adgo-partners__arrow--next {
  right: -24px;
}

.adgo-partners__dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 34px;
}

.adgo-partners__dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  background: #b3b3b3;
  border: 0;
  border-radius: 999px;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.adgo-partners__dots button.is-active {
  width: 15px;
  background: #275aff;
}

@media (max-width: 1080px) {
  .adgo-platforms__inner {
    grid-template-columns: 1fr;
  }

  .adgo-platforms__copy {
    text-align: center;
  }

  .adgo-platforms__copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .adgo-platforms__badges {
    justify-content: center;
  }

  .adgo-cases__shell {
    display: grid;
    grid-template-columns: 1fr;
  }

  .adgo-cases__tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    height: auto;
    flex-basis: auto;
  }

  .adgo-cases__tabs button {
    min-height: 104px;
  }

  .adgo-cases__panels {
    width: 100%;
  }

  .adgo-case::before {
    display: none;
  }

  .adgo-partners__arrow--prev {
    left: 8px;
  }

  .adgo-partners__arrow--next {
    right: 8px;
  }
}

@media (max-width: 820px) {
  .adgo-platforms {
    padding: 64px 0 24px;
  }

  .adgo-platforms__inner,
  .adgo-cases__inner,
  .adgo-partners__inner {
    width: min(100% - 28px, 1194px);
  }

  .adgo-platforms__copy .eyebrow,
  .adgo-cases__heading .eyebrow {
    font-size: 16px;
  }

  .adgo-platforms__copy h2,
  .adgo-cases__heading h2 {
    font-size: 28px;
  }

  .adgo-platforms__copy p {
    font-size: 16px;
  }

  .adgo-platforms__visual {
    padding: 18px;
    border-radius: 20px;
  }

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

  .adgo-cases {
    padding: 62px 0 62px;
  }

  .adgo-cases__heading {
    margin-bottom: 30px;
  }

  .adgo-cases__decor,
  .adgo-cases__dot {
    display: none;
  }

  .adgo-cases__tabs {
    display: flex;
    height: auto;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .adgo-cases__tabs::-webkit-scrollbar {
    display: none;
  }

  .adgo-cases__tabs button {
    min-width: 126px;
    min-height: 86px;
    flex: 0 0 auto;
    font-size: 15px;
  }

  .adgo-cases__tabs .case-icon {
    width: 38px;
    height: 38px;
  }

  .adgo-cases__panels,
  .adgo-case {
    height: auto;
    min-height: auto;
  }

  .adgo-case {
    display: none;
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 0;
  }

  .adgo-case.is-active {
    display: grid;
  }

  .adgo-case__copy {
    max-width: none;
  }

  .adgo-case__category {
    margin-bottom: 22px;
    font-size: 22px;
  }

  .adgo-case__brand {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .adgo-case__brand img {
    float: none;
    width: 58px;
    height: 58px;
  }

  .adgo-case__brand h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
  }

  .adgo-case__copy p {
    width: auto;
    margin: 18px 0 0;
    font-size: 15px;
  }

  .adgo-case__metrics {
    width: auto;
    margin-top: 24px;
    gap: 30px;
    justify-content: flex-start;
  }

  .adgo-case__visual {
    position: relative;
    width: 100%;
    height: 260px;
    margin-top: 24px;
    border-radius: 12px 12px 0 0;
  }

  .adgo-case__visual img {
    object-fit: contain;
  }

  .adgo-partners {
    padding: 52px 0 58px;
  }

  .adgo-partners__heading .eyebrow {
    font-size: 28px;
  }

  .adgo-partners__track ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 86px;
    gap: 12px;
  }

  .adgo-partners__track li {
    height: 86px;
  }

  .adgo-partners__arrow {
    display: none;
  }
}

@media (max-width: 520px) {
  .adgo-platforms__item {
    min-height: 108px;
  }

  .adgo-partners__track ul {
    grid-auto-rows: 74px;
  }

  .adgo-partners__track li {
    height: 74px;
  }
}

/* Keep the success case block close to Goad's original proportions. */
.adgo-cases {
  min-height: 620px;
  padding: 58px 0 70px;
}

.adgo-cases__heading {
  margin-bottom: 66px;
}

.adgo-cases__heading .eyebrow {
  margin-bottom: 12px;
  color: #000;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
}

.adgo-cases__heading h2 {
  color: #999;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}

.adgo-cases,
.adgo-cases * {
  letter-spacing: 0;
}

.adgo-cases__shell {
  width: 900px;
  max-width: 100%;
}

.adgo-cases__tabs {
  width: 225px;
  height: 360px;
  flex: 0 0 225px;
}

.adgo-cases__tabs button {
  min-height: 90px;
  font-size: 16px;
}

.adgo-cases__tabs .case-icon {
  width: 38px;
  height: 38px;
}

.adgo-cases__panels {
  width: 675px;
  height: 360px;
  min-height: 360px;
}

.adgo-case {
  grid-template-columns: minmax(0, 1fr) 225px;
  height: 360px;
  min-height: 360px;
  padding: 35px 0 0 40px;
}

.adgo-case::before {
  top: 157px;
  left: -202px;
  border-left-width: 360px;
  border-bottom-width: 45px;
}

.adgo-case__copy {
  max-width: 420px;
}

.adgo-case__category {
  margin-bottom: 42px;
  font-size: 22px;
}

.adgo-case__brand img {
  width: 60px;
  height: 60px;
}

.adgo-case__brand h3 {
  margin-left: 82px;
  font-size: 16px;
}

.adgo-case__copy p {
  width: 302px;
  margin: -28px 0 0 82px;
  font-size: 12px;
  line-height: 1.75;
}

.adgo-case__metrics {
  width: 225px;
  margin-top: 50px;
  gap: 40px;
}

.adgo-case__metrics strong {
  font-size: 22px;
}

.adgo-case__metrics strong + span {
  font-size: 12px;
}

.adgo-case__metrics img {
  top: 5px;
  right: -10px;
}

.adgo-case__visual {
  width: 225px;
  height: 420px;
}

.adgo-cases__decor {
  width: 131px;
  height: 148px;
}

.adgo-cases__decor--left {
  top: 74px;
  left: -12px;
}

.adgo-cases__decor--right {
  right: -14px;
  bottom: -18px;
}

.adgo-cases__dot {
  bottom: 40px;
  left: 12px;
  width: 38px;
  height: 38px;
}

@media (max-width: 1080px) {
  .adgo-cases__shell {
    width: min(900px, 100%);
  }

  .adgo-cases__tabs {
    width: 100%;
    height: auto;
    flex-basis: auto;
  }

  .adgo-cases__tabs button {
    min-height: 88px;
  }

  .adgo-cases__panels {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .adgo-cases {
    min-height: auto;
    padding: 56px 0 60px;
  }

  .adgo-cases__heading .eyebrow {
    font-size: 28px;
  }

  .adgo-cases__heading h2 {
    font-size: 14px;
  }

  .adgo-cases__tabs button {
    min-height: 86px;
    font-size: 15px;
  }

  .adgo-cases__panels,
  .adgo-case {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .adgo-case {
    padding: 24px;
  }

  .adgo-case__copy {
    max-width: none;
  }

  .adgo-case__category {
    margin-bottom: 22px;
    font-size: 22px;
  }

  .adgo-case__brand h3 {
    margin-left: 0;
    font-size: 20px;
  }

  .adgo-case__copy p {
    width: auto;
    margin: 18px 0 0;
    font-size: 15px;
  }

  .adgo-case__metrics {
    width: auto;
    margin-top: 24px;
    gap: 30px;
  }

  .adgo-case__metrics strong {
    font-size: 30px;
  }

  .adgo-case__metrics strong + span {
    font-size: 16px;
  }

  .adgo-case__visual {
    width: 100%;
    height: 260px;
  }
}

.sdk-nav-item {
  position: relative;
}

.sdk-nav-chevron {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.sdk-nav-item:hover .sdk-nav-chevron,
.sdk-nav-item:focus-within .sdk-nav-chevron {
  transform: rotate(180deg);
}

.sdk-mega-menu {
  position: fixed;
  z-index: 45;
  top: 79px;
  left: 0;
  width: 100vw;
  padding: 28px max(28px, calc((100vw - 1200px) / 2 + 24px)) 34px;
  pointer-events: none;
  visibility: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.98)),
    #fff;
  border-top: 1px solid rgba(226, 232, 240, 0.88);
  border-bottom: 1px solid rgba(203, 213, 225, 0.76);
  box-shadow: 0 26px 54px rgba(15, 23, 42, 0.13);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
}

.sdk-nav-item:hover .sdk-mega-menu,
.sdk-nav-item:focus-within .sdk-mega-menu,
.sdk-mega-menu.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.sdk-mega-menu__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.template-header .sdk-mega-menu a {
  height: auto;
  padding: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif !important;
}

.template-header .sdk-mega-menu a::after {
  display: none;
}

.sdk-mega-menu__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.84);
}

.sdk-mega-menu__head h2 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
}

.sdk-mega-menu__head h2 a {
  display: inline-flex;
  align-items: center;
  height: auto;
  padding: 0;
  color: inherit;
}

.sdk-mega-menu__head h2 a::after {
  display: none;
}

.sdk-mega-menu__head h2 a:hover {
  color: #3366ff !important;
}

.sdk-mega-menu__head p {
  margin: 0;
  color: #667085;
  font-size: 15px;
}

.sdk-mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sdk-mega-card {
  display: grid;
  min-height: 218px;
  padding: 20px;
  color: #111827;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.template-header .sdk-mega-menu .sdk-mega-card {
  padding: 20px;
}

.sdk-mega-card:hover {
  border-color: rgba(51, 102, 255, 0.24);
  box-shadow: 0 18px 44px rgba(51, 102, 255, 0.13);
  transform: translateY(-3px);
}

.sdk-mega-card__icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 12px;
  color: #3366ff;
  background: #eef3ff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.sdk-mega-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.sdk-mega-card__meta {
  display: block;
  margin-bottom: 7px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.sdk-mega-card strong {
  display: block;
  margin-bottom: 9px;
  color: #111827;
  font-size: 18px;
  font-weight: 800;
}

.sdk-mega-card p {
  min-height: 66px;
  margin: 0 0 16px;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
}

.sdk-mega-card em {
  color: #3366ff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.sdk-mega-card em::after {
  content: " ->";
}

.adgo-cases {
  padding: 86px 0 100px;
  background:
    radial-gradient(circle at 88% 18%, rgba(51, 102, 255, 0.08), transparent 28%),
    #f5f8ff;
}

.adgo-cases__inner {
  width: min(1194px, calc(100% - 40px));
}

.adgo-cases__heading {
  margin-bottom: 44px;
  text-align: center;
}

.adgo-cases__heading .eyebrow {
  margin: 0;
  color: #111827;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0;
}

.adgo-cases__heading h2 {
  margin: 12px 0 0;
  color: #6b7280;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
}

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

.ylh-case-card {
  position: relative;
  min-height: 430px;
  padding: 34px 32px 30px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.ylh-case-card::after {
  position: absolute;
  right: -58px;
  bottom: -66px;
  width: 168px;
  height: 168px;
  background: rgba(51, 102, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.ylh-case-card--primary {
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(120, 173, 255, 0.32), transparent 28%),
    linear-gradient(145deg, #3366ff, #2156de);
  border-color: transparent;
  box-shadow: 0 22px 56px rgba(51, 102, 255, 0.22);
}

.ylh-case-card__logo {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.ylh-case-card__logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.ylh-case-card__logo svg {
  width: 38px;
  height: 38px;
  color: #3366ff;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ylh-case-card__logo span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #3366ff, #16a34a);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.ylh-case-card h3 {
  margin: 0 0 12px;
  color: #111827;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.ylh-case-card h4 {
  margin: 0 0 22px;
  color: #1f2937;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.ylh-case-card p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.85;
}

.ylh-case-card--primary h3,
.ylh-case-card--primary h4,
.ylh-case-card--primary p {
  color: #fff;
}

.ylh-case-card--primary p {
  color: rgba(255, 255, 255, 0.82);
}

.ylh-case-card__metrics {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 30px;
  left: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ylh-case-card__metrics div {
  padding-top: 18px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.ylh-case-card__metrics span {
  display: block;
  margin-bottom: 8px;
  color: #667085;
  font-size: 14px;
}

.ylh-case-card__metrics strong {
  display: block;
  color: #3366ff;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.ylh-case-card--primary .ylh-case-card__metrics div {
  border-top-color: rgba(255, 255, 255, 0.24);
}

.ylh-case-card--primary .ylh-case-card__metrics span,
.ylh-case-card--primary .ylh-case-card__metrics strong {
  color: #fff;
}

.adgo-partners__slider,
.adgo-partners__viewport,
.adgo-partners__track,
.adgo-partners__dots,
.adgo-partners__arrow {
  display: none;
}

.adgo-partners__marquee {
  position: relative;
  overflow: hidden;
  padding: 2px 0;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.adgo-partners__grid {
  display: flex;
  width: max-content;
  animation: adgo-partners-marquee 28s linear infinite;
  will-change: transform;
}

.adgo-partners__group {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  margin: 0;
  padding: 0 18px 0 0;
  list-style: none;
}

.adgo-partners__group li {
  display: grid;
  width: 178px;
  height: 92px;
  place-items: center;
  background: #fbfcfd;
  border: 1px solid #e2e7ee;
  border-radius: 10px;
}

.adgo-partners__group img {
  width: auto;
  max-width: 88%;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(1) saturate(0) brightness(0.72) contrast(0.96);
}

@keyframes adgo-partners-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .adgo-partners__grid {
    animation: none;
  }
}

@media (max-width: 1080px) {
  .sdk-mega-menu {
    display: none;
  }

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

  .ylh-case-card {
    min-height: 360px;
  }

  .adgo-partners__group li {
    width: 164px;
  }

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

  .learning-hero__inner,
  .learning-article-layout {
    grid-template-columns: 1fr;
  }

  .learning-hero__panel,
  .learning-article-side {
    position: static;
  }
}

@media (max-width: 820px) {
  .adgo-cases {
    padding: 60px 0 64px;
  }

  .adgo-cases__heading .eyebrow {
    font-size: 28px;
  }

  .adgo-cases__heading h2 {
    font-size: 15px;
  }

  .ylh-case-card {
    min-height: 400px;
    padding: 26px 24px;
  }

  .adgo-partners__marquee {
    width: calc(100% + 28px);
    margin-left: -14px;
  }

  .adgo-partners__group {
    gap: 12px;
    padding-right: 12px;
  }

  .adgo-partners__group li {
    width: 144px;
    height: 82px;
  }

  .adgo-partners__group img {
    max-height: 44px;
  }

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

  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .learning-hero {
    padding: 112px 0 42px;
  }

  .learning-hero h1 {
    font-size: 42px;
  }

  .learning-index {
    top: 64px;
  }

  .learning-index__inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .learning-index a {
    min-width: max-content;
  }

  .learning-tabs {
    top: 66px;
    flex-wrap: nowrap;
    gap: 22px;
    margin-right: -14px;
    margin-left: -14px;
    padding: 0 14px;
    overflow-x: auto;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .learning-tabs::-webkit-scrollbar {
    display: none;
  }

  .learning-tab {
    flex: 0 0 auto;
    min-width: auto;
    height: 42px;
    padding: 0;
    white-space: nowrap;
    scroll-snap-align: start;
    font-size: 14px;
  }

  .learning-category__head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .learning-card {
    min-height: auto;
  }

  .learning-card__visual {
    min-height: 214px;
    padding: 28px 26px 24px;
  }

  .learning-card__visual strong {
    max-width: 86%;
    font-size: 24px;
  }

  .learning-card__visual i {
    right: 26px;
    bottom: 24px;
    font-size: 28px;
  }

  .learning-card__body {
    padding: 24px 26px 28px;
  }

  .learning-card__body h3 {
    min-height: auto;
    font-size: 22px;
  }

  .learning-article-hero {
    padding: 112px 0 54px;
  }

  .learning-article-layout {
    gap: 24px;
    padding: 42px 0 68px;
  }

  .learning-article-body {
    font-size: 16px;
  }

  .learning-article-body .lead {
    font-size: 19px;
  }

  .blog-detail-main {
    padding: 92px 0 64px;
  }

  .blog-detail-shell {
    width: min(100% - 28px, 1180px);
  }

  .blog-detail-cover {
    min-height: 238px;
    padding: 30px 26px;
  }

  .blog-detail-cover strong {
    max-width: 88%;
    font-size: 30px;
  }

  .blog-detail-cover i {
    right: 26px;
    bottom: 24px;
    font-size: 30px;
  }

  .blog-detail-content {
    padding: 24px;
  }

  .blog-detail-content h1 {
    font-size: 28px;
  }

  .blog-detail-lead {
    font-size: 18px;
  }

  .blog-detail-prose {
    font-size: 16px;
  }
}

.legal-page__header {
  margin-bottom: 42px;
  text-align: center;
}

.legal-page__header h1 {
  width: 100%;
  max-width: none;
  margin: 0 0 18px;
  color: #111827;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.legal-page__header p {
  margin: 0;
  color: #6b7280;
  font-size: 16px;
  text-align: right;
}

.legal-copy {
  color: #374151;
  font-size: 16px;
  line-height: 1.9;
}

.legal-copy h2,
.legal-copy h3 {
  margin: 34px 0 16px;
  color: #111827;
  font-weight: 800;
  line-height: 1.35;
}

.legal-copy h2 {
  font-size: 24px;
}

.legal-copy h3 {
  font-size: 21px;
}

.legal-copy p,
.legal-copy ul,
.legal-copy ol,
.legal-copy table {
  margin: 0 0 16px;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 1.35rem;
}

.legal-copy li {
  margin: 8px 0;
}

.legal-copy strong {
  color: #111827;
  font-weight: 700;
}

.legal-copy a {
  color: #4f46e5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-copy table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #fff;
}

.legal-copy th,
.legal-copy td {
  min-width: 160px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  vertical-align: top;
  text-align: left;
}

.legal-copy th {
  background: #f8fafc;
  color: #111827;
  font-weight: 700;
}

.legal-copy code {
  border-radius: 5px;
  background: #f3f4f6;
  padding: 2px 5px;
  color: #be123c;
  font-size: 0.92em;
}

.legal-terms-card {
  max-width: 1180px;
  margin: 0 auto;
}

.terms-intro {
  margin-bottom: 34px;
}

.terms-intro p:last-child {
  margin-bottom: 0;
}

.terms-copy .terms-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 42px 0 18px;
  padding-bottom: 12px;
  font-size: 24px;
}

.terms-copy .terms-section-title::before {
  content: "";
  width: 5px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(180deg, #4f46e5 0%, #06b6d4 100%);
}

.terms-copy .terms-subtitle {
  margin-top: 28px;
  padding: 0;
  font-size: 18px;
}

.terms-copy .terms-clause {
  padding: 0;
}

.terms-copy .terms-attachment-line {
  padding: 0;
}

.terms-copy ul,
.terms-copy ol {
  padding: 0 0 0 28px;
}

.terms-copy li p {
  margin-bottom: 8px;
}

@media (max-width: 640px) {
  .legal-page__header h1 {
    font-size: 30px;
  }

  .legal-page__header p {
    font-size: 14px;
  }

  .legal-copy {
    font-size: 15px;
  }

  .terms-copy .terms-section-title {
    align-items: flex-start;
    font-size: 21px;
  }
}

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

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