:root {
  --bg: #031019;
  --bg2: #071b26;
  --panel: rgba(8, 26, 38, .72);
  --gold: #e7bf6c;
  --gold2: #f7d995;
  --teal: #5bd6d2;
  --muted: #a7b4bd;
  --text: #f4f7f7;
  --shadow: 0 30px 80px rgba(0,0,0,.42);
  --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 8%, rgba(231,191,108,.12), transparent 28%),
    radial-gradient(circle at 85% 24%, rgba(91,214,210,.13), transparent 30%),
    linear-gradient(180deg, #020a11 0%, var(--bg) 45%, #02080d 100%);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

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

.site-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .05;
  z-index: 100;
  background-image: linear-gradient(115deg, rgba(255,255,255,.18) 0 1px, transparent 1px 8px);
  mix-blend-mode: overlay;
}

.page-aura {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(110px);
  opacity: .16;
  pointer-events: none;
  z-index: -1;
}

.aura-gold { left: -180px; top: 120px; background: var(--gold); }
.aura-teal { right: -220px; top: 680px; background: var(--teal); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 11, 17, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-wrap {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(220px, 23vw, 360px);
  height: 56px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.28));
}

.main-nav {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: clamp(18px, 3vw, 40px);
  color: #d8dee1;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 29px 0;
  transition: color .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  transform: scaleX(0);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: transform .25s ease;
}

.main-nav a:hover { color: var(--gold2); }
.main-nav a:hover::after { transform: scaleX(1); }

.nav-cta,
.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-cta,
.btn-primary {
  color: #1b1407;
  background: linear-gradient(135deg, #ffe6a3, #d5a64d 52%, #f7d995);
  box-shadow: 0 14px 34px rgba(231,191,108,.26);
}

.btn-ghost {
  color: #f5e3bc;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(231,191,108,.35);
}

.play-dot {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid rgba(231,191,108,.5);
  position: relative;
}

.play-dot::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 9px;
  width: 0;
  height: 0;
  border-left: 7px solid var(--gold);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 11px;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
}

/* Hero 70% consulting + 30% tech */
.hero-consulting {
  position: relative;
  min-height: calc(100svh - 76px);
  padding: 34px 0 22px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,11,17,.97) 0%, rgba(2,11,17,.86) 38%, rgba(2,11,17,.52) 72%, rgba(2,11,17,.35) 100%),
    linear-gradient(180deg, rgba(2,11,17,.02) 0%, rgba(2,11,17,.22) 60%, #031019 100%),
    url("../images/hero-global-vision.webp") center/cover no-repeat;
  transform: scale(1.02);
}

.hero-consulting::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 33% 24%, rgba(231,191,108,.13), transparent 30%),
    radial-gradient(circle at 78% 34%, rgba(91,214,210,.1), transparent 32%),
    linear-gradient(90deg, rgba(231,191,108,.045) 1px, transparent 1px),
    linear-gradient(rgba(231,191,108,.04) 1px, transparent 1px);
  background-size: auto, auto, 88px 88px, 88px 88px;
  opacity: .65;
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 42px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold2);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 15px;
}

.hero-kicker span {
  width: 54px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.08;
  letter-spacing: -2px;
  font-weight: 900;
  text-shadow: 0 22px 70px rgba(0,0,0,.5);
}

.hero h1 span {
  background: linear-gradient(135deg, #fff7d7, #e7bf6c 58%, #b98634);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 18px 0 0;
  max-width: 680px;
  color: #dfe9ec;
  font-size: 15.5px;
  line-height: 1.75;
}

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

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

.hero-trust span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(8,26,38,.55);
  border: 1px solid rgba(255,255,255,.11);
  color: #d4e0e4;
  font-size: 13px;
}

/* Right consulting brief */
.consulting-brief {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brief-card {
  width: min(460px, 100%);
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(5, 22, 34, .76);
  border: 1px solid rgba(231,191,108,.24);
  box-shadow: 0 40px 110px rgba(0,0,0,.48);
  backdrop-filter: blur(18px);
}

.brief-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 6px 6px 16px;
}

.brief-top small {
  display: block;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 10px;
  margin-bottom: 8px;
}

.brief-top h3 {
  margin: 0;
  font-size: 24px;
}

.brief-status {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(91,214,210,.09);
  border: 1px solid rgba(91,214,210,.24);
  font-size: 12px;
}

.brief-image {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.1);
}

.brief-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brief-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.5)),
    radial-gradient(circle at 65% 25%, rgba(231,191,108,.22), transparent 36%);
}

.brief-floating {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(3,16,25,.74);
  border: 1px solid rgba(231,191,108,.24);
  backdrop-filter: blur(12px);
  min-width: 132px;
  text-align: left;
}

.brief-floating b {
  display: block;
  color: var(--gold2);
  font-size: 28px;
  line-height: 1;
}

.brief-floating span {
  display: block;
  margin-top: 6px;
  color: #d3e0e3;
  font-size: 12px;
}


.brief-mini-note {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 11px 13px;
  border-radius: 14px;
  background: rgba(3,16,25,.72);
  border: 1px solid rgba(91,214,210,.22);
  backdrop-filter: blur(12px);
  max-width: 170px;
}

.brief-mini-note small {
  display: block;
  color: var(--teal);
  font-size: 10px;
  letter-spacing: .9px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.brief-mini-note span {
  display: block;
  color: #d7e5e8;
  font-size: 12px;
  line-height: 1.45;
}

.brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.brief-grid div {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
}

.brief-grid span {
  color: var(--gold2);
  font-size: 12px;
  font-weight: 800;
}

.brief-grid p {
  margin: 7px 0 3px;
  color: #e5eef1;
  font-size: 13px;
}

.brief-grid b {
  color: #87cfd0;
  font-size: 11px;
  font-weight: 600;
}

.brief-footer {
  position: relative;
  margin-top: 14px;
  padding: 15px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(231,191,108,.14);
}

.brief-footer p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #f0dbad;
  font-size: 13px;
  font-weight: 700;
}

.brief-footer img {
  position: absolute;
  right: 0;
  top: 50%;
  width: 58%;
  transform: translateY(-50%);
  opacity: .28;
}

/* Metrics */
.hero-metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 24px 70px rgba(0,0,0,.3);
}

.metric-item {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 18px 24px;
  background: rgba(7,25,38,.76);
}

.metric-item strong {
  color: var(--gold2);
  font-size: 30px;
  line-height: 1;
}

.metric-item em {
  color: var(--gold2);
  font-style: normal;
  font-size: 18px;
  font-weight: 800;
  margin-right: 13px;
}

.metric-item span {
  color: var(--muted);
  font-size: 13px;
}

/* Sections */
.section {
  position: relative;
  padding: 96px 0;
  scroll-margin-top: 88px;
}

.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: 2.6px;
  font-size: 12px;
  text-transform: uppercase;
}

.intro-section {
  padding: 72px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 54px;
  align-items: center;
}

.intro-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.2;
  letter-spacing: -1.5px;
}

.intro-text p {
  margin: 0;
  color: #c5d3d8;
  font-size: 17px;
  line-height: 1.95;
}

.section-head {
  text-align: center;
  margin-bottom: 46px;
}

.section-head p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 3px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  letter-spacing: -1.2px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.service-card {
  position: relative;
  min-height: 390px;
  padding: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(22,62,94,.72), rgba(4,20,32,.72)),
    linear-gradient(180deg, rgba(255,255,255,.07), transparent);
  border: 1px solid rgba(91,171,220,.24);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.service-card.premium {
  background:
    linear-gradient(140deg, rgba(20,84,72,.72), rgba(5,24,29,.78)),
    linear-gradient(180deg, rgba(255,255,255,.07), transparent);
  border-color: rgba(91,214,210,.25);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 45%, rgba(231,191,108,.12));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  padding: 1px;
  mask-composite: exclude;
}

.service-number {
  position: absolute;
  top: 34px;
  right: 38px;
  color: rgba(247,217,149,.18);
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -3px;
}

.service-orb {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 26px;
  color: #e7f7ff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 0 60px rgba(91,214,210,.16);
}

.service-orb svg { width: 42px; height: 42px; }
.service-orb path { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-orb.blue { background: radial-gradient(circle at 35% 25%, rgba(133,210,255,.38), rgba(5,26,45,.86)); }
.service-orb.green { background: radial-gradient(circle at 35% 25%, rgba(107,255,215,.35), rgba(8,55,49,.86)); }

.service-card h3 {
  margin: 0 0 16px;
  font-size: 32px;
}

.service-card p {
  color: #c7d4d8;
  line-height: 1.85;
  margin: 0 0 24px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.tags span {
  padding: 10px 13px;
  color: #d5edf5;
  border-radius: 10px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 12px;
  color: var(--gold2);
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(231,191,108,.18);
  font-weight: 800;
}

.card-link b {
  font-size: 24px;
  margin-left: 10px;
}

/* Consulting band */
.consulting-band {
  background:
    linear-gradient(90deg, rgba(2,11,17,.94), rgba(3,16,25,.82)),
    radial-gradient(circle at 80% 50%, rgba(91,214,210,.12), transparent 30%);
  border-block: 1px solid rgba(255,255,255,.06);
}

.consulting-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.consulting-copy p {
  margin: 0 0 12px;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 12px;
}

.consulting-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
}

.consulting-copy span {
  display: block;
  margin-top: 18px;
  color: #cbd7dc;
  line-height: 1.8;
}

.consulting-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(231,191,108,.18);
}

.consulting-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.consulting-points b {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--gold2);
  background: rgba(231,191,108,.08);
  border: 1px solid rgba(231,191,108,.2);
  font-size: 13px;
}

/* Why */
.why-section {
  padding-top: 80px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.why-card {
  min-height: 200px;
  padding: 28px 18px;
  text-align: center;
  border-radius: 20px;
  background: rgba(8,22,32,.68);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(231,191,108,.36);
  box-shadow: 0 25px 70px rgba(0,0,0,.32);
}

.why-card span {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(231,191,108,.09);
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 18px;
}

.why-card h4 {
  margin: 0 0 10px;
  font-size: 17px;
}

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

/* Deliverables */
.deliver-grid {
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  gap: 30px;
}

.data-panel {
  padding: 28px;
  border-radius: 22px;
  background: rgba(7,25,38,.78);
  border: 1px solid rgba(91,214,210,.18);
  box-shadow: var(--shadow);
}

.panel-title {
  color: var(--gold2);
  font-weight: 900;
  margin-bottom: 18px;
}

.panel-img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
}

.fake-table {
  min-width: 0;
  overflow: hidden;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: .7fr 1fr 1fr 1.1fr .55fr .55fr .9fr .9fr;
  gap: 10px;
  align-items: center;
  min-height: 48px;
}

.table-head {
  color: #eaf5f7;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.table-row {
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: #bcd1d8;
}

.table-row i {
  height: 9px;
  border-radius: 99px;
  background: rgba(255,255,255,.16);
}

.table-row b {
  color: #e7d39b;
  font-weight: 400;
}

.table-row strong {
  color: #67dcd4;
  font-size: 12px;
}

.badge {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
  color: #111;
}

.gold { background: linear-gradient(135deg, #ffe69b, #d5a346); }
.silver { background: linear-gradient(135deg, #e6eef4, #8d9aa6); }
.bronze { background: linear-gradient(135deg, #ecc399, #a76c3a); }

.fake-table em {
  font-style: normal;
  display: inline-flex;
  width: max-content;
  align-items: center;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 12px;
}

.ok { background: rgba(37, 196, 128, .14); color: #7bf0bf; }
.warn { background: rgba(231,191,108,.13); color: var(--gold2); }
.low { background: rgba(255,99,99,.13); color: #ff9c9c; }

/* Process */
.process-section {
  padding-top: 80px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(231,191,108,.7), transparent);
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 12px;
}

.process-step > span {
  position: absolute;
  top: 29px;
  left: -2px;
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #141006;
  font-weight: 900;
  background: linear-gradient(135deg, #ffeab1, #d4a145);
  box-shadow: 0 0 25px rgba(231,191,108,.28);
}

.step-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold2);
  font-size: 36px;
  background: rgba(6,23,34,.8);
  border: 1px solid rgba(231,191,108,.28);
}

.process-step h4 {
  margin: 0 0 12px;
  font-size: 20px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Clients */
.client-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.client-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(8,22,32,.72);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.client-card img {
  width: 100%;
  height: 178px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.03);
}

.client-card div {
  padding: 20px 18px 22px;
}

.client-card span {
  color: var(--gold2);
  font-size: 26px;
}

.client-card h4 {
  margin: 10px 0 8px;
  font-size: 18px;
}

.client-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 13px;
}


/* Service Poster Section */
.poster-section {
  padding-top: 86px;
  background:
    radial-gradient(circle at 22% 18%, rgba(231,191,108,.09), transparent 28%),
    radial-gradient(circle at 78% 35%, rgba(91,214,210,.08), transparent 30%);
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  align-items: start;
}

.poster-card {
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.018)),
    rgba(5, 22, 34, .78);
  border: 1px solid rgba(231,191,108,.2);
  box-shadow: 0 30px 90px rgba(0,0,0,.34);
}

.poster-card.premium {
  border-color: rgba(91,214,210,.22);
}

.poster-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: rgba(0,0,0,.18);
}

.poster-image-link::after {
  content: "点击查看大图";
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #f6e3b0;
  background: rgba(3,16,25,.72);
  border: 1px solid rgba(231,191,108,.26);
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}

.poster-card:hover .poster-image-link::after {
  opacity: 1;
  transform: translateY(0);
}

.poster-image-link img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.poster-card:hover .poster-image-link img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.04);
}

.poster-content {
  padding: 24px 26px 28px;
}

.poster-badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--gold2);
  background: rgba(231,191,108,.08);
  border: 1px solid rgba(231,191,108,.2);
  font-size: 13px;
  font-weight: 800;
}

.poster-content h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.32;
}

.poster-content p {
  margin: 13px 0 22px;
  color: #c4d1d6;
  line-height: 1.78;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .poster-grid {
    grid-template-columns: 1fr;
  }

  .poster-card {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .poster-section {
    padding-top: 64px;
  }

  .poster-content {
    padding: 20px;
  }

  .poster-content h3 {
    font-size: 20px;
  }

  .poster-image-link::after {
    opacity: 1;
    transform: none;
    right: 12px;
    bottom: 12px;
  }
}

/* Lead Form */
.lead-form-section {
  position: relative;
  padding: 110px 0;
  background:
    linear-gradient(90deg, rgba(2,11,17,.94), rgba(3,16,25,.83)),
    radial-gradient(circle at 75% 40%, rgba(231,191,108,.13), transparent 30%),
    url("../images/global-network.webp") center/cover no-repeat;
  border-top: 1px solid rgba(231,191,108,.12);
}

.form-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 46px;
  align-items: start;
}

.form-copy h2 {
  margin: 0;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: 1.18;
  letter-spacing: -1.3px;
}

.form-copy > span {
  display: block;
  margin-top: 20px;
  color: #d3dee2;
  line-height: 1.9;
  font-size: 16px;
}

.form-benefits {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.form-benefits div {
  padding: 20px;
  border-radius: 18px;
  background: rgba(8,26,38,.7);
  border: 1px solid rgba(255,255,255,.1);
}

.form-benefits b {
  color: var(--gold2);
}

.form-benefits p {
  margin: 8px 0 0;
  color: var(--muted);
}

.lead-form {
  padding: 30px;
  border-radius: 26px;
  background: rgba(5, 22, 34, .82);
  border: 1px solid rgba(231,191,108,.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #e5edf0;
  font-size: 14px;
  margin-bottom: 16px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  color: #fff;
  border-radius: 13px;
  padding: 13px 14px;
  outline: none;
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #7f929a;
}

.lead-form select option {
  color: #111;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(231,191,108,.55);
  box-shadow: 0 0 0 4px rgba(231,191,108,.1);
}

.form-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
}

.form-note {
  margin: 14px 0 0;
  color: #87969d;
  font-size: 12px;
  line-height: 1.6;
}

/* CTA */
.final-cta {
  position: relative;
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(2,11,17,.55), rgba(2,11,17,.92)),
    url("../images/global-network.webp") center/cover no-repeat;
  border-top: 1px solid rgba(231,191,108,.13);
  border-bottom: 1px solid rgba(231,191,108,.13);
  overflow: hidden;
}

.cta-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-wrap p {
  margin: 0 0 10px;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 12px;
}

.cta-wrap h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.cta-wrap span {
  display: block;
  margin-top: 12px;
  color: #d1dde1;
  font-size: 18px;
}

/* Footer */
.site-footer {
  background: #02080d;
  padding: 58px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.25fr;
  gap: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer h5 {
  margin: 0 0 18px;
  color: var(--gold2);
  font-size: 16px;
}

.site-footer a,
.site-footer p {
  display: block;
  color: #aebac0;
  margin: 0 0 11px;
  font-size: 14px;
}


.footer-logo {
  width: min(420px, 100%);
  height: 86px;
  object-fit: contain;
}

.copyright {
  padding-top: 22px;
  color: #707f87;
  text-align: center;
  font-size: 13px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

/* Short laptop screens */
@media (max-height: 820px) and (min-width: 1081px) {
  .hero-consulting {
    padding-top: 22px;
    padding-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(38px, 4.3vw, 58px);
  }

  .hero-subtitle {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-trust {
    margin-top: 14px;
  }

  .brief-card {
  width: min(460px, 100%);
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(5, 22, 34, .76);
  border: 1px solid rgba(231,191,108,.24);
  box-shadow: 0 40px 110px rgba(0,0,0,.48);
  backdrop-filter: blur(18px);
}

  .brief-image {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.1);
}

  .brief-grid div {
    padding: 11px;
  }

  .hero-metrics {
    margin-top: 12px;
  }

  .metric-item {
    min-height: 66px;
    padding: 14px 20px;
  }
}

/* Responsive */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .menu-btn { display: block; margin-left: auto; }
  .nav-cta { display: none; }

  .main-nav.open {
    display: grid;
    position: absolute;
    top: 76px;
    left: 22px;
    right: 22px;
    padding: 18px;
    background: rgba(3,16,25,.96);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.open a { padding: 14px; }

  .hero-layout,
  .intro-grid,
  .consulting-grid,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .hero-consulting {
    min-height: auto;
    padding: 28px 0 26px;
  }

  .brief-card {
  width: min(460px, 100%);
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(5, 22, 34, .76);
  border: 1px solid rgba(231,191,108,.24);
  box-shadow: 0 40px 110px rgba(0,0,0,.48);
  backdrop-filter: blur(18px);
}

  .hero-metrics { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .deliver-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-wrap { height: 68px; }
  .main-nav.open { top: 68px; left: 14px; right: 14px; }


  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: min(232px, calc(100vw - 92px));
    height: 48px;
  }

  .footer-logo {
    width: min(320px, 100%);
    height: 74px;
  }

  .hero-consulting {
    padding: 20px 0 24px;
  }

  .hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .btn { width: 100%; }
  .hero-actions { gap: 12px; }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 14px;
  }

  .brief-card {
  width: min(460px, 100%);
  padding: 18px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    rgba(5, 22, 34, .76);
  border: 1px solid rgba(231,191,108,.24);
  box-shadow: 0 40px 110px rgba(0,0,0,.48);
  backdrop-filter: blur(18px);
}

  .brief-image {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.1);
}

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

  .hero-metrics {
    border-radius: 18px;
  }

  .metric-item {
    min-height: 66px;
    padding: 14px 18px;
  }

  .section { padding: 66px 0; }

  .service-grid,
  .process-line,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px;
    min-height: auto;
  }

  .why-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .process-line::before { display: none; }
  .process-step > span { left: calc(50% - 64px); }

  .data-panel {
    padding: 18px;
    overflow-x: auto;
  }

  .fake-table { min-width: 720px; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 22px; }
  .lead-form-section { padding: 72px 0; }
  .cta-wrap { flex-direction: column; align-items: flex-start; }
}


.lead-form label em {
  color: var(--gold2);
  font-style: normal;
  font-weight: 800;
}

.form-submit:disabled {
  cursor: not-allowed;
  opacity: .72;
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

.form-status.success {
  color: #7bf0bf;
}

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


/* Image polish */
.brief-image img,
.consulting-visual img,
.client-card img,
.panel-img {
  filter: saturate(1.04) contrast(1.04);
}

.consulting-visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.client-card img {
  object-position: center;
}

/* Floating WeChat widget */
.wechat-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
}

.wechat-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 16px 0 10px;
  border: 1px solid rgba(231,191,108,.34);
  border-radius: 999px;
  color: #1b1407;
  background: linear-gradient(135deg, #ffe6a3, #d5a64d 52%, #f7d995);
  box-shadow: 0 18px 45px rgba(0,0,0,.36), 0 10px 30px rgba(231,191,108,.22);
  cursor: pointer;
  font-weight: 900;
}

.wechat-toggle span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #f8e3ac;
  background: #071b26;
  font-size: 15px;
}

.wechat-toggle b {
  font-size: 14px;
}

.wechat-card {
  position: absolute;
  right: 0;
  bottom: 62px;
  width: 300px;
  padding: 12px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(5, 22, 34, .94);
  border: 1px solid rgba(231,191,108,.26);
  box-shadow: 0 30px 90px rgba(0,0,0,.46);
  backdrop-filter: blur(18px);
  transform: translateY(12px) scale(.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.wechat-float.open .wechat-card,
.wechat-float:hover .wechat-card {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.wechat-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  color: #d8e5e8;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.wechat-card p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.wechat-card h4 {
  margin: 0 0 14px;
  color: #fff7d7;
  font-size: 17px;
  line-height: 1.35;
}

.wechat-card img {
  width: 100%;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(231,191,108,.24);
}

.wechat-card small {
  display: block;
  margin-top: 11px;
  color: #aab8be;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .wechat-float {
    right: 14px;
    bottom: 14px;
  }

  .wechat-toggle {
    min-height: 44px;
    padding-right: 14px;
  }

  .wechat-toggle b {
    font-size: 13px;
  }

  .wechat-card {
    position: fixed;
    right: 14px;
    left: 14px;
    bottom: 70px;
    width: auto;
    max-width: 360px;
    margin-left: auto;
  }
}
