:root {
  --ink: #18211f;
  --muted: #60706b;
  --emerald: #123c35;
  --emerald-2: #0b2d28;
  --teal: #0f9b8e;
  --gold: #c99a35;
  --clay: #d9654a;
  --paper: #f6f4ef;
  --white: #ffffff;
  --line: #dce4df;
  --shadow: 0 22px 70px rgba(18, 60, 53, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 244, 239, 0.92);
  border-bottom: 1px solid rgba(18, 60, 53, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.brand img {
  width: min(210px, 42vw);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
}

.nav a {
  color: var(--emerald);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover,
.nav a.is-active,
.text-link:hover {
  color: var(--teal);
}

.nav a:last-child {
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--emerald);
}

.nav a:last-child:hover,
.nav a:last-child.is-active {
  color: var(--emerald);
  background: var(--gold);
}

.language-switch {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.language-switch a {
  min-width: 36px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.language-switch a.is-active {
  color: var(--emerald);
  background: var(--white);
  border-color: var(--line);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--emerald);
}

.loading-view {
  display: grid;
  min-height: 70vh;
  place-items: center;
}

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: var(--emerald-2);
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 25, 0.94) 0%, rgba(7, 28, 25, 0.78) 38%, rgba(7, 28, 25, 0.28) 72%, rgba(7, 28, 25, 0.12) 100%),
    linear-gradient(180deg, rgba(7, 28, 25, 0.1), rgba(7, 28, 25, 0.55));
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 10vw, 132px) 0 clamp(50px, 8vw, 88px);
}

.hero-copy {
  width: min(760px, 100%);
}

.eyebrow {
  color: #c8f5ec;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--emerald);
  background: var(--gold);
}

.button.secondary {
  color: var(--emerald);
  background: var(--white);
  border-color: var(--line);
}

.button.ghost {
  color: var(--emerald);
  background: transparent;
  border-color: rgba(18, 60, 53, 0.24);
}

.hero .button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 52px;
}

.trust-strip {
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-cta {
  padding: 22px clamp(18px, 4vw, 56px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.experience-bar {
  padding: 15px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: var(--emerald);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.experience-bar-inner {
  display: flex;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.experience-bar strong {
  color: var(--gold);
  font-size: 14px;
}

.experience-bar span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.experience-bar em {
  color: rgba(255, 255, 255, 0.36);
  font-style: normal;
  padding: 0 4px;
}

.intro-cta-inner {
  display: flex;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.intro-cta h2 {
  margin: 0 0 4px;
  color: var(--emerald);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.2;
}

.intro-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.intro-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.trust-item {
  min-height: 86px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.trust-item strong {
  display: block;
  color: var(--emerald);
  font-size: 15px;
  line-height: 1.25;
}

.trust-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.stat {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 28, 25, 0.42);
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 9vw, 110px) clamp(18px, 4vw, 56px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section.band {
  background: var(--white);
}

.section.deep {
  color: var(--white);
  background: var(--emerald);
}

.page-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--emerald-2);
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

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

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 25, 0.94), rgba(7, 28, 25, 0.68), rgba(7, 28, 25, 0.24)),
    linear-gradient(180deg, rgba(7, 28, 25, 0.18), rgba(7, 28, 25, 0.74));
}

.page-hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 12vw, 136px) 0 clamp(52px, 8vw, 82px);
}

.page-hero h1 {
  max-width: 900px;
  margin: 16px 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.contact-page-hero {
  min-height: 380px;
}

.section-title {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.14;
}

.section-intro {
  max-width: 840px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 18px;
}

.deep .section-intro,
.deep .muted {
  color: rgba(255, 255, 255, 0.78);
}

.pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

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

.check-list li {
  position: relative;
  min-height: 48px;
  padding: 13px 14px 13px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(15, 155, 142, 0.12);
}

.deep .check-list li {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

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

.detail-card {
  min-height: 320px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 60, 53, 0.06);
}

.detail-card h3 {
  margin: 0 0 12px;
  color: var(--emerald);
  font-size: 23px;
  line-height: 1.22;
}

.detail-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.simple-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.simple-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink);
  font-weight: 700;
}

.simple-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.services-overview-section {
  background: #f0f5f2;
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.service-overview-card {
  display: grid;
  min-height: 154px;
  align-content: start;
  gap: 18px;
  padding: 20px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-overview-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: var(--emerald);
  background: rgba(201, 154, 53, 0.16);
}

.service-overview-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-overview-card h3 {
  margin: 0;
  color: var(--emerald);
  font-size: 17px;
  line-height: 1.25;
}

.trusted-section {
  color: var(--white);
  background: #071c19;
}

.trusted-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.trusted-section .section-intro {
  color: rgba(255, 255, 255, 0.74);
}

.trusted-cases {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.trusted-case {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.trusted-case strong {
  display: block;
  color: var(--gold);
  font-size: 15px;
}

.trusted-case span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.5;
}

.world-panel {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 42%, rgba(15, 155, 142, 0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 49% 34%, rgba(201, 154, 53, 0.26) 0 2px, transparent 3px),
    radial-gradient(circle at 71% 50%, rgba(15, 155, 142, 0.24) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.world-map {
  position: absolute;
  inset: 28px;
  opacity: 0.95;
}

.world-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 24% 38%, rgba(255, 255, 255, 0.16) 0 12%, transparent 13%),
    radial-gradient(ellipse at 48% 34%, rgba(255, 255, 255, 0.12) 0 10%, transparent 11%),
    radial-gradient(ellipse at 69% 46%, rgba(255, 255, 255, 0.14) 0 16%, transparent 17%),
    radial-gradient(ellipse at 58% 68%, rgba(255, 255, 255, 0.08) 0 7%, transparent 8%);
  filter: blur(0.2px);
}

.world-map span {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 154, 53, 0.15), 0 0 28px rgba(201, 154, 53, 0.42);
}

.choice-reasons {
  margin-top: 28px;
}

.choice-reasons h3 {
  margin: 0 0 14px;
  color: var(--emerald);
  font-size: 22px;
  line-height: 1.25;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
}

.document-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 60, 53, 0.06);
}

.document-panel h2 {
  margin: 0 0 18px;
  color: var(--emerald);
  font-size: 28px;
  line-height: 1.18;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 60, 53, 0.05);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--emerald);
  font-weight: 900;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

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

.service-card,
.industry-card,
.insight-card,
.partner-card,
.contact-card,
.settings-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 60, 53, 0.06);
}

.service-card {
  display: flex;
  min-height: 350px;
  flex-direction: column;
  padding: 24px;
}

.service-card .category {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 6px;
  color: var(--emerald);
  background: rgba(201, 154, 53, 0.16);
  font-size: 12px;
  font-weight: 800;
}

.text-button {
  display: inline-flex;
  width: fit-content;
  margin-top: 20px;
  color: var(--emerald);
  font-weight: 900;
}

.text-button:hover {
  color: var(--teal);
}

.service-card h3,
.industry-card h3,
.insight-card h3 {
  margin: 18px 0 12px;
  font-size: 21px;
  line-height: 1.24;
}

.service-card p,
.industry-card p {
  margin: 0;
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 24px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--emerald);
  background: rgba(15, 155, 142, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(26px, 6vw, 74px);
  align-items: center;
}

.feature-copy .check-list {
  margin-top: 24px;
}

.feature-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--emerald-2);
  box-shadow: var(--shadow);
}

.feature-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.72;
}

.feature-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 60, 53, 0.72), rgba(15, 155, 142, 0.12));
}

.industry-card,
.insight-card {
  min-height: 210px;
  padding: 24px;
}

.industry-card {
  border-top: 4px solid var(--teal);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.process-list li {
  min-height: 170px;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  counter-increment: steps;
  font-weight: 800;
}

.process-list li::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 24px;
}

.process-list.compact {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-list.compact li {
  color: var(--white);
  background: var(--emerald);
  border-color: rgba(18, 60, 53, 0.24);
}

.band .process-list.compact li {
  color: var(--white);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid rgba(201, 154, 53, 0.38);
  border-radius: 8px;
  background: var(--emerald);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.16;
}

.cta-panel p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.partner-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.clients-section {
  color: var(--white);
  background: #050908;
}

.clients-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 5vw, 60px);
  align-items: end;
  margin-bottom: 34px;
}

.clients-section .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.client-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.55;
}

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

.client-card {
  display: grid;
  min-height: 150px;
  align-content: center;
  gap: 16px;
  padding: 22px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  text-align: center;
}

.client-mark {
  display: grid;
  min-height: 48px;
  place-items: center;
}

.client-mark img {
  max-width: 160px;
  max-height: 52px;
  object-fit: contain;
}

.client-mark span {
  color: var(--white);
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.client-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.client-card.theme-a .client-mark span {
  color: #8a6f5b;
}

.client-card.theme-b .client-mark span {
  color: #00a6a6;
}

.client-card.theme-c .client-mark span {
  color: #1b68c9;
}

.client-card.theme-d .client-mark span {
  color: #168bd3;
}

.client-card.theme-e .client-mark span {
  color: #8b8584;
}

.partner-card {
  padding: 34px;
  border-color: rgba(201, 154, 53, 0.45);
}

.partner-logo {
  color: var(--emerald);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.partner-card p {
  margin: 18px 0 0;
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.about-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.insight-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.insight-card span {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--emerald);
  background: rgba(217, 101, 74, 0.12);
  font-size: 12px;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-card {
  padding: 24px;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-method {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-method strong {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.contact-method a,
.contact-method span {
  display: block;
  margin-top: 5px;
  color: var(--emerald);
  font-size: 19px;
  font-weight: 900;
}

.qr {
  width: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--emerald);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

input,
select {
  height: 46px;
  padding: 0 13px;
}

textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 155, 142, 0.14);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--emerald);
  font-weight: 800;
}

.form-helper {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.site-footer {
  padding: 36px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--emerald-2);
}

.footer-inner {
  display: flex;
  width: min(1180px, 100%);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner img {
  width: 170px;
  filter: brightness(0) invert(1);
}

.cms-body {
  background: #eef3f0;
}

.cms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.cms-header-actions,
.cms-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.text-link {
  color: var(--emerald);
  font-weight: 800;
}

.cms-shell {
  width: min(1220px, calc(100% - 36px));
  margin: 28px auto 60px;
}

.cms-login,
.cms-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(18, 60, 53, 0.09);
}

.cms-login {
  max-width: 520px;
  margin: 80px auto;
  padding: 32px;
}

.cms-login h1,
.cms-panel h1 {
  margin: 0 0 8px;
}

.cms-login p,
.cms-panel p {
  color: var(--muted);
}

.cms-workspace {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
}

.cms-sidebar {
  display: grid;
  align-content: start;
  gap: 8px;
}

.cms-tab {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--emerald);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.cms-tab.is-active {
  color: var(--white);
  background: var(--emerald);
  border-color: var(--emerald);
}

.cms-panel {
  padding: 24px;
}

.cms-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.json-editor {
  min-height: 62vh;
  font-family: Consolas, "Courier New", monospace;
  font-size: 13px;
  line-height: 1.5;
  white-space: pre;
}

.status-line,
.helper {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
}

.is-hidden {
  display: none !important;
}

.leads-table {
  overflow: auto;
}

.lead-item {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.lead-item strong {
  color: var(--emerald);
}

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

.settings-card {
  padding: 18px;
}

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(18, 60, 53, 0.08);
  color: var(--emerald);
}

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

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

  .nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 10px;
  }

  .language-switch {
    justify-self: end;
  }

  .service-grid,
  .industry-grid,
  .client-grid,
  .trust-strip-inner,
  .service-overview-grid,
  .detail-grid,
  .insight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  .site-header {
    gap: 10px;
    padding: 12px 16px;
  }

  .brand {
    min-width: 130px;
  }

  .brand img {
    width: 158px;
  }

  .language-switch a {
    min-width: 32px;
    padding: 6px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(7, 28, 25, 0.9) 0%, rgba(7, 28, 25, 0.74) 54%, rgba(7, 28, 25, 0.44) 100%),
      linear-gradient(90deg, rgba(7, 28, 25, 0.7), rgba(7, 28, 25, 0.2));
  }

  .hero-content {
    padding: 74px 0 42px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 50px);
  }

  .hero-stats,
  .pain-grid,
  .feature-split,
  .clients-head,
  .partner-wrap,
  .trusted-wrap,
  .about-grid,
  .contact-grid,
  .two-column,
  .cms-workspace,
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .industry-grid,
  .client-grid,
  .trust-strip-inner,
  .service-overview-grid,
  .detail-grid,
  .insight-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

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

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-cta-actions {
    justify-content: flex-start;
  }

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

  .footer-inner,
  .cms-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .cms-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
