:root {
  --green: #1a3c11;
  --green-2: #335e1f;
  --green-3: #a8d08d;
  --gold: #e6af00;
  --gold-2: #f5c542;
  --blue: #1d3ecf;
  --light-green: #d7f7e1;
  --light-pink: #ffebe8;
  --ink: #10200d;
  --muted: #5f665d;
  --gray: #666666;
  --line: rgba(26, 60, 17, 0.16);
  --paper: #fbfcf8;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(26, 60, 17, 0.12);
  --radius: 8px;
  --max: 1180px;
  --font: "Source Han Sans CN", "Noto Sans CJK SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background:
    radial-gradient(circle at 86% 8%, rgba(215, 247, 225, 0.62), transparent 25rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 42%, #ffffff 100%);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 248, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px rgba(26, 60, 17, 0.08);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(16, 32, 13, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 28, 8, 0.98), rgba(26, 60, 17, 0.96) 58%, rgba(16, 49, 19, 0.92)),
    var(--green);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(135deg, transparent 0 32px, rgba(255, 255, 255, 0.22) 32px 34px, transparent 34px),
    linear-gradient(45deg, transparent 0 46px, rgba(230, 175, 0, 0.36) 46px 48px, transparent 48px);
  background-size: 92px 92px, 128px 128px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -9vw;
  bottom: -9vw;
  width: 52vw;
  height: 52vw;
  min-width: 520px;
  min-height: 520px;
  border: 1px solid rgba(230, 175, 0, 0.26);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  padding: 54px 0 46px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.62fr);
  align-items: center;
  gap: 56px;
}

.hero-bg-mark {
  position: absolute;
  right: 7vw;
  bottom: 0;
  z-index: 1;
  width: 300px;
  height: 520px;
  opacity: 0.28;
}

.hero-bg-mark span {
  position: absolute;
  bottom: 0;
  width: 52px;
  background: linear-gradient(180deg, var(--gold), rgba(230, 175, 0, 0.12));
  clip-path: polygon(50% 0, 100% 18%, 76% 18%, 76% 100%, 24% 100%, 24% 18%, 0 18%);
}

.hero-bg-mark span:nth-child(1) {
  left: 0;
  height: 270px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.08));
}

.hero-bg-mark span:nth-child(2) {
  left: 86px;
  height: 390px;
}

.hero-bg-mark span:nth-child(3) {
  left: 172px;
  height: 500px;
  background: linear-gradient(180deg, var(--gold), rgba(230, 175, 0, 0.2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-head > .eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.18;
  letter-spacing: 0.04em;
  text-transform: none;
}

.insight .section-head > .eyebrow,
.geo .section-head > .eyebrow,
.final-cta .eyebrow {
  color: var(--gold);
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(44px, 4.55vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.85;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  color: var(--green);
  background: var(--gold);
  box-shadow: 0 18px 34px rgba(230, 175, 0, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f5c542;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  color: var(--green);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(26, 60, 17, 0.14);
  pointer-events: none;
}

.hero-logo {
  width: min(210px, 62%);
  margin: 0 auto;
}

.hero-card p {
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 3px solid var(--gold);
  color: var(--gray);
  text-align: center;
  font-weight: 600;
  line-height: 1.7;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.position .section-head {
  max-width: 940px;
}

.position h2 {
  font-size: clamp(30px, 3.8vw, 48px);
}

.section-head.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section h2,
.final-cta h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(30px, 4.5vw, 56px);
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.position-grid,
.method-grid,
.team-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.position-card,
.method-card,
.team-card,
.faq-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 40px rgba(26, 60, 17, 0.05);
}

.position-card {
  position: relative;
  min-height: 270px;
  padding: 34px 30px 30px;
}

.method-card span,
.product-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: var(--gold);
  font-weight: 900;
}

.position-card::before {
  content: "";
  display: block;
  width: 52px;
  height: 4px;
  margin-bottom: 28px;
  background: var(--gold);
}

.position-card h3,
.method-card h3,
.product-card h3,
.team-card h3,
.faq-card h3,
.diagnosis-list h3,
.clients h3 {
  margin: 20px 0 10px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.3;
}

.position-card p,
.method-card p,
.product-card p,
.team-card p,
.faq-card p,
.diagnosis-list p {
  margin: 0;
  color: var(--muted);
}

.insight {
  width: 100%;
  max-width: none;
  padding: 108px max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(26, 60, 17, 0.96), rgba(26, 60, 17, 0.9)),
    var(--green);
}

.insight .section-head h2,
.insight .section-head p:not(.eyebrow) {
  color: var(--white);
}

.insight .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 52px;
}

.insight .section-head h2 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.diagnosis-list {
  display: grid;
  gap: 14px;
}

.diagnosis-list article {
  padding: 24px 28px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
}

.diagnosis-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.diagnosis-list h3 {
  margin-top: 8px;
}

.method {
  position: relative;
}

.method::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 0;
  width: 240px;
  height: 240px;
  opacity: 0.12;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 18%, 76% 18%, 76% 100%, 24% 100%, 24% 18%, 0 18%);
}

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

.method .section-head,
.campaign .section-head {
  max-width: 1080px;
}

.method h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  white-space: nowrap;
}

.method-card {
  position: relative;
  min-height: 300px;
  padding: 28px;
  overflow: hidden;
}

.method-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -42px;
  width: 120px;
  height: 170px;
  opacity: 0.08;
  background: var(--green);
  clip-path: polygon(50% 0, 100% 18%, 76% 18%, 76% 100%, 24% 100%, 24% 18%, 0 18%);
}

.method-card span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.products {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1fr);
  gap: 56px;
  align-items: start;
}

.products .section-head {
  max-width: 620px;
}

.products h2 {
  font-size: clamp(30px, 3.8vw, 48px);
}

.product-stack {
  display: grid;
  gap: 16px;
}

.product-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  padding: 26px;
}

.product-card.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), #244d18);
  box-shadow: var(--shadow);
}

.product-card.featured h3,
.product-card.featured p {
  color: var(--white);
}

.product-index {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.product-card h3 {
  margin-top: 0;
}

.campaign {
  width: 100%;
  max-width: none;
  padding: 102px max(20px, calc((100vw - var(--max)) / 2));
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 247, 225, 0.62), transparent 24rem),
    linear-gradient(180deg, #f5f8f0, #ffffff);
}

.campaign-board {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 46px;
}

.campaign-summary {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 36px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(26, 60, 17, 0.98), rgba(41, 82, 24, 0.94)),
    var(--green);
  box-shadow: var(--shadow);
}

.campaign-summary::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -20px;
  width: 160px;
  height: 230px;
  opacity: 0.18;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 18%, 76% 18%, 76% 100%, 24% 100%, 24% 18%, 0 18%);
}

.campaign-summary span {
  display: inline-flex;
  padding: 6px 12px;
  border: 1px solid rgba(230, 175, 0, 0.38);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.campaign-summary h3 {
  position: relative;
  z-index: 1;
  margin: 28px 0 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.22;
}

.campaign-summary p {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

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

.campaign-flow li {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 104px;
  padding: 22px 26px;
  border: 1px solid rgba(26, 60, 17, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 38px rgba(26, 60, 17, 0.06);
}

.campaign-flow li::after {
  content: "";
  position: absolute;
  left: 61px;
  bottom: -13px;
  width: 2px;
  height: 13px;
  background: rgba(230, 175, 0, 0.58);
}

.campaign-flow li:last-child::after {
  display: none;
}

.campaign-flow em {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: var(--green);
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  font-style: normal;
  font-size: 18px;
  font-weight: 900;
}

.campaign-flow strong,
.campaign-flow span {
  display: block;
}

.campaign-flow strong {
  color: var(--green);
  font-size: 24px;
  line-height: 1.2;
}

.campaign-flow span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 16px;
}

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

.team-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: start;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff, #fbfdf9);
}

.team-card-lead {
  grid-column: 1 / -1;
  grid-template-columns: 240px 1fr;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(215, 247, 225, 0.55), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.team-card-lead img {
  width: 240px;
}

.team-card-lead h3 {
  font-size: 34px;
}

.lead-profile {
  display: grid;
  grid-template-columns: minmax(390px, 1.18fr) minmax(320px, 0.82fr);
  gap: 30px;
  align-items: start;
}

.lead-profile-main {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.lead-label,
.lead-profile-detail h4 {
  margin: 22px 0 8px;
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.lead-credentials {
  margin: 0;
  padding-left: 18px;
  color: var(--green);
  font-weight: 800;
  line-height: 1.7;
}

.lead-credentials li + li {
  margin-top: 8px;
}

.lead-clients {
  display: grid;
  gap: 10px;
  margin: 0;
}

.lead-clients div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
}

.lead-clients dt {
  color: var(--green);
  font-weight: 900;
}

.lead-clients dd {
  margin: 0;
  color: var(--muted);
}

.lead-profile-detail {
  display: grid;
  gap: 12px;
}

.lead-profile-detail section {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 60, 17, 0.1);
}

.lead-profile-detail section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.lead-profile-detail h4 {
  margin-top: 0;
}

.lead-profile p {
  margin-top: 0;
}

.team-card img {
  width: 170px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 60, 17, 0.12);
  background: #eef3ea;
}

.team-card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 24px;
}

.team-role {
  margin: 0 0 12px;
  color: var(--gold);
  font-weight: 900;
}

.team-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--green);
  font-weight: 700;
}

.team-card li + li {
  margin-top: 4px;
}

.clients {
  margin-top: 38px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.clients h3 {
  margin-top: 0;
}

.clients p {
  margin: 0 0 22px;
  color: var(--muted);
}

.client-wall {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 60, 17, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
}

.client-wall img {
  width: 100%;
  height: auto;
}

.geo {
  width: 100%;
  max-width: none;
  padding: 104px max(20px, calc((100vw - var(--max)) / 2));
  background: var(--green);
}

.geo h2 {
  color: var(--white);
}

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

.faq-card {
  padding: 26px;
}

.faq-card a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.final-cta {
  padding: 112px 20px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 28, 8, 0.98), rgba(26, 60, 17, 0.92)),
    var(--green);
}

.final-cta-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.contact-panel {
  margin: 38px auto 0;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
}

.contact-panel div {
  padding: 10px 18px;
}

.contact-panel span {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 800;
}

.contact-panel strong {
  display: block;
  margin-top: 2px;
  color: var(--white);
  font-size: 22px;
}

.site-footer {
  width: min(var(--max), calc(100% - 40px));
  min-height: 118px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.delay-1.is-visible { transition-delay: 0.08s; }
.delay-2.is-visible { transition-delay: 0.16s; }
.delay-3.is-visible { transition-delay: 0.24s; }
.delay-4.is-visible { transition-delay: 0.32s; }

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  .hero-inner,
  .split-layout,
  .products,
  .campaign-board {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

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

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

@media (max-width: 760px) {
  .nav {
    width: min(100% - 28px, var(--max));
  }

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

  .nav-links {
    position: fixed;
    top: 78px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 12px 8px;
  }

  .hero-inner {
    width: min(100% - 28px, var(--max));
    min-height: auto;
    padding: 44px 0 38px;
    gap: 40px;
  }

  .hero h1,
  .method h2 {
    white-space: normal;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg-mark {
    right: -80px;
    opacity: 0.17;
  }

  .section,
  .site-footer {
    width: min(100% - 28px, var(--max));
  }

  .section,
  .insight,
  .campaign,
  .geo,
  .final-cta {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .position-grid,
  .method-grid,
  .faq-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .position-card,
  .method-card {
    min-height: auto;
  }

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

  .campaign-summary {
    padding: 28px;
  }

  .campaign-flow li {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 18px;
  }

  .campaign-flow em {
    width: 52px;
    height: 52px;
  }

  .campaign-flow li::after {
    left: 43px;
  }

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

  .team-card-lead {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .lead-profile {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lead-profile-main {
    padding-right: 0;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .team-card img {
    width: 100%;
    max-width: 260px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-panel .btn {
    width: 100%;
  }

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