:root {
  --eco-blue: #4f80f7;
  --eco-blue-700: #315fda;
  --eco-blue-100: #eaf1ff;
  --eco-green: #69ad45;
  --eco-green-700: #3f7f28;
  --eco-green-100: #edf9e8;
  --eco-navy: #0b1739;
  --eco-text: #34425d;
  --eco-muted: #6f7d98;
  --eco-line: #dce4f2;
  --eco-line-soft: #edf1f7;
  --eco-bg: #f5f8ff;
  --eco-white: #ffffff;
  --eco-yellow: #e8a51b;
  --eco-red: #e94964;
  --eco-purple: #7b61e8;
  --eco-radius-sm: 12px;
  --eco-radius: 20px;
  --eco-radius-lg: 30px;
  --eco-shadow-sm: 0 8px 24px rgba(32, 58, 104, 0.08);
  --eco-shadow: 0 22px 60px rgba(32, 58, 104, 0.13);
  --eco-container: 1240px;
  --eco-header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.ecoleave-site {
  margin: 0;
  color: var(--eco-text);
  background: var(--eco-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.ecoleave-site.admin-bar .eco-site-header {
  top: 32px;
}

body.ecoleave-site img {
  max-width: 100%;
  height: auto;
}

body.ecoleave-site a {
  color: inherit;
  text-decoration: none;
}

body.ecoleave-site button,
body.ecoleave-site input,
body.ecoleave-site select,
body.ecoleave-site textarea {
  font: inherit;
}

body.ecoleave-site h1,
body.ecoleave-site h2,
body.ecoleave-site h3,
body.ecoleave-site h4,
body.ecoleave-site h5,
body.ecoleave-site h6 {
  margin: 0 0 0.7em;
  color: var(--eco-navy);
  font-weight: 750;
  line-height: 1.13;
  letter-spacing: -0.025em;
}

body.ecoleave-site h1 {
  font-size: clamp(2.65rem, 5vw, 4.9rem);
}

body.ecoleave-site h2 {
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}

body.ecoleave-site h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

body.ecoleave-site p {
  margin: 0 0 1.2em;
}

body.ecoleave-site ul,
body.ecoleave-site ol {
  margin-top: 0;
}

body.ecoleave-site strong {
  color: var(--eco-navy);
}

body.ecoleave-site #page-container,
body.ecoleave-site .eco-page-container {
  padding-top: 0 !important;
  overflow: clip;
}

body.ecoleave-site #main-content,
body.ecoleave-site .eco-main {
  background: var(--eco-white);
}

body.ecoleave-site .container,
body.ecoleave-site .et_pb_row {
  width: auto;
  max-width: none;
}

body.ecoleave-site .entry-content,
body.ecoleave-site .et-l--post,
body.ecoleave-site .et_pb_post {
  margin: 0;
  padding: 0;
}

body.ecoleave-site .entry-content > p:empty {
  display: none;
}

.eco-container {
  width: min(calc(100% - 40px), var(--eco-container));
  margin-inline: auto;
}

.eco-content-narrow {
  max-width: 880px;
}

.eco-skip-link {
  position: fixed;
  z-index: 99999;
  left: 18px;
  top: -100px;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--eco-navy);
  color: #fff !important;
  transition: top 0.2s ease;
}

.eco-skip-link:focus {
  top: 18px;
}

/* Announcement and header */
.eco-announcement {
  position: relative;
  z-index: 101;
  color: #fff;
  background: linear-gradient(90deg, #244dbb, #4f80f7 56%, #619f45);
  font-size: 0.9rem;
}

.eco-announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.eco-announcement-inner a {
  font-weight: 700;
  color: #fff !important;
  border-bottom: 1px solid rgba(255,255,255,.65);
}

.eco-announcement-badge {
  display: inline-flex;
  min-width: 30px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255,255,255,.15);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.eco-site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 242, 0.78);
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(160%) blur(18px);
  transition: box-shadow .2s ease, background-color .2s ease;
}

.eco-site-header.is-scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 30px rgba(26,47,85,.08);
}

.eco-header-inner {
  min-height: var(--eco-header-height);
  display: flex;
  align-items: center;
  gap: 30px;
}

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

.eco-brand img {
  display: block;
  width: 164px;
  height: auto;
}

.eco-desktop-nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
}

.eco-nav-list,
.eco-mobile-nav-list,
.eco-nav-list ul,
.eco-mobile-nav-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.eco-nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
}

.eco-nav-list > li {
  position: relative;
}

.eco-nav-list > li > a {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  padding: 8px 13px;
  border-radius: 10px;
  color: #44526b;
  font-size: 0.96rem;
  font-weight: 650;
  transition: color .18s ease, background-color .18s ease;
}

.eco-nav-list > li > a:hover,
.eco-nav-list > li.current-menu-item > a,
.eco-nav-list > li.current-menu-ancestor > a {
  color: var(--eco-blue-700);
  background: var(--eco-blue-100);
}

.eco-nav-list .menu-item-has-children > a::after {
  width: 7px;
  height: 7px;
  margin-left: 3px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.eco-nav-list .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 230px;
  padding: 10px;
  border: 1px solid var(--eco-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--eco-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.eco-nav-list li:hover > .sub-menu,
.eco-nav-list li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.eco-nav-list .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--eco-text);
  font-size: .94rem;
  font-weight: 600;
}

.eco-nav-list .sub-menu a:hover {
  color: var(--eco-blue-700);
  background: var(--eco-blue-100);
}

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

.eco-header-login {
  padding: 8px 4px;
  color: var(--eco-navy) !important;
  font-weight: 700;
}

.eco-header-login:hover {
  color: var(--eco-blue-700) !important;
}

.eco-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--eco-line);
  border-radius: 12px;
  background: #fff;
  color: var(--eco-navy);
  cursor: pointer;
}

.eco-menu-icon {
  width: 20px;
  display: grid;
  gap: 4px;
}

.eco-menu-icon span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.eco-menu-toggle[aria-expanded="true"] .eco-menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.eco-menu-toggle[aria-expanded="true"] .eco-menu-icon span:nth-child(2) {
  opacity: 0;
}

.eco-menu-toggle[aria-expanded="true"] .eco-menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.eco-mobile-panel {
  border-top: 1px solid var(--eco-line-soft);
  background: #fff;
}

.eco-mobile-panel .eco-container {
  padding-block: 16px 24px;
}

.eco-mobile-nav-list a {
  display: block;
  padding: 11px 4px;
  border-bottom: 1px solid var(--eco-line-soft);
  color: var(--eco-navy);
  font-weight: 650;
}

.eco-mobile-nav-list .sub-menu {
  padding-left: 18px;
}

.eco-mobile-nav-list .sub-menu a {
  color: var(--eco-muted);
  font-size: .94rem;
}

.eco-mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 18px;
}

/* Buttons and common elements */
.eco-btn,
body.ecoleave-site .eco-btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: .98rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

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

.eco-btn-sm {
  min-height: 44px;
  padding: 10px 17px;
  border-radius: 11px;
  font-size: .92rem;
}

.eco-btn-lg {
  min-height: 58px;
  padding-inline: 28px;
}

.eco-btn-primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--eco-blue), #3d6fe8);
  box-shadow: 0 11px 24px rgba(79,128,247,.25);
}

.eco-btn-primary:hover {
  color: #fff !important;
  background: linear-gradient(135deg, #4676ea, #2f5fd0);
  box-shadow: 0 14px 30px rgba(79,128,247,.32);
}

.eco-btn-green {
  color: #fff !important;
  background: linear-gradient(135deg, #74b94e, #4f9331);
  box-shadow: 0 11px 24px rgba(90,156,54,.22);
}

.eco-btn-secondary {
  border-color: var(--eco-line);
  color: var(--eco-navy) !important;
  background: #fff;
  box-shadow: 0 8px 18px rgba(34,56,96,.06);
}

.eco-btn-secondary:hover {
  border-color: #b8c7e0;
  color: var(--eco-blue-700) !important;
  background: #fbfcff;
}

.eco-btn-link {
  min-height: auto;
  padding: 0;
  color: var(--eco-blue-700) !important;
  background: transparent;
}

.eco-btn-link:hover {
  transform: none;
  color: var(--eco-green-700) !important;
}

.eco-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--eco-blue-700);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eco-kicker::before {
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.eco-kicker-green {
  color: var(--eco-green-700);
}

.eco-lead {
  max-width: 720px;
  color: var(--eco-muted);
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.eco-text-center {
  text-align: center;
}

.eco-text-center .eco-lead,
.eco-section-head.eco-text-center p {
  margin-inline: auto;
}

.eco-accent {
  color: var(--eco-blue);
}

.eco-green-text {
  color: var(--eco-green-700);
}

.eco-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.eco-check-list li {
  position: relative;
  padding-left: 30px;
  color: #4f5d76;
}

.eco-check-list li::before {
  position: absolute;
  top: .25em;
  left: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--eco-green-700);
  background: var(--eco-green-100);
  content: "✓";
  font-size: .75rem;
  font-weight: 900;
}

.eco-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.eco-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border: 1px solid var(--eco-line);
  border-radius: 999px;
  color: #52627a;
  background: rgba(255,255,255,.72);
  font-size: .87rem;
  font-weight: 650;
}

.eco-pill::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--eco-green);
  content: "";
}

/* Sections */
.eco-section {
  position: relative;
  padding-block: clamp(72px, 9vw, 124px);
}

.eco-section-sm {
  padding-block: clamp(50px, 6vw, 78px);
}

.eco-section-bg {
  background: var(--eco-bg);
}

.eco-section-blue {
  color: rgba(255,255,255,.86);
  background:
    radial-gradient(circle at 12% 10%, rgba(255,255,255,.14), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(104,173,69,.22), transparent 30%),
    linear-gradient(135deg, #173475 0%, #315fda 55%, #4d7ff5 100%);
}

.eco-section-blue h2,
.eco-section-blue h3,
.eco-section-blue strong {
  color: #fff;
}

.eco-section-green {
  color: rgba(255,255,255,.88);
  background: linear-gradient(135deg, #315c28, #57963b 58%, #70b54a);
}

.eco-section-green h2,
.eco-section-green h3,
.eco-section-green strong {
  color: #fff;
}

.eco-section-head {
  max-width: 790px;
  margin-bottom: 48px;
}

.eco-section-head p {
  color: var(--eco-muted);
  font-size: 1.1rem;
}

.eco-section-blue .eco-section-head p,
.eco-section-green .eco-section-head p {
  color: rgba(255,255,255,.78);
}

.eco-page-heading {
  margin-bottom: 45px;
}

/* Hero */
.eco-hero {
  position: relative;
  padding-block: clamp(72px, 8vw, 118px) clamp(72px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(105,173,69,.15), transparent 26%),
    radial-gradient(circle at 8% 20%, rgba(79,128,247,.14), transparent 31%),
    linear-gradient(180deg, #fbfdff 0%, #f4f7ff 100%);
}

.eco-hero::before,
.eco-hero::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.eco-hero::before {
  top: 90px;
  right: -130px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(79,128,247,.16);
}

.eco-hero::after {
  left: -120px;
  bottom: -160px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(105,173,69,.18);
}

.eco-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(40px, 6vw, 82px);
}

.eco-hero-copy h1 {
  max-width: 780px;
}

.eco-hero-copy .eco-lead {
  max-width: 680px;
}

.eco-hero-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  color: var(--eco-muted);
  font-size: .91rem;
}

.eco-hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.eco-hero-note span::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--eco-green);
  content: "";
}

.eco-hero-media {
  position: relative;
}

.eco-browser {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(188,202,225,.85);
  border-radius: 24px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 34px 85px rgba(37,67,118,.20);
  transform: perspective(1400px) rotateY(-2deg) rotateX(1deg);
}

.eco-browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 34px;
  padding-inline: 5px;
}

.eco-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #dbe3ef;
}

.eco-browser-dot:nth-child(1) { background: #ff7d7d; }
.eco-browser-dot:nth-child(2) { background: #ffd56f; }
.eco-browser-dot:nth-child(3) { background: #79d58a; }

.eco-browser-url {
  width: 45%;
  height: 10px;
  margin-left: 8px;
  border-radius: 999px;
  background: #eef2f8;
}

.eco-browser img {
  display: block;
  width: 100%;
  border: 1px solid #edf1f7;
  border-radius: 13px;
}

.eco-float-card {
  position: absolute;
  z-index: 3;
  min-width: 185px;
  padding: 15px 16px;
  border: 1px solid rgba(220,228,242,.92);
  border-radius: 16px;
  background: rgba(255,255,255,.96);
  box-shadow: var(--eco-shadow-sm);
  backdrop-filter: blur(12px);
}

.eco-float-card strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.3rem;
}

.eco-float-card span {
  color: var(--eco-muted);
  font-size: .82rem;
}

.eco-float-card-one {
  left: -34px;
  bottom: 48px;
}

.eco-float-card-two {
  top: 72px;
  right: -30px;
}

.eco-float-icon {
  width: 34px;
  height: 34px;
  float: left;
  display: grid;
  place-items: center;
  margin-right: 11px;
  border-radius: 10px;
  color: var(--eco-blue-700);
  background: var(--eco-blue-100);
  font-weight: 900;
}

.eco-proof-bar {
  position: relative;
  z-index: 3;
  margin-top: -25px;
}

.eco-proof-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--eco-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--eco-shadow-sm);
}

.eco-proof-item {
  padding: 23px 26px;
}

.eco-proof-item + .eco-proof-item {
  border-left: 1px solid var(--eco-line-soft);
}

.eco-proof-item strong {
  display: block;
  font-size: 1.15rem;
}

.eco-proof-item span {
  color: var(--eco-muted);
  font-size: .88rem;
}

/* Cards and grids */
.eco-module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.eco-module-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--eco-line);
  border-radius: var(--eco-radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(43,66,105,.06);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.eco-module-card::after {
  position: absolute;
  right: -48px;
  bottom: -55px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--module-tint, var(--eco-blue-100));
  content: "";
}

.eco-module-card:hover {
  border-color: #b9c9e3;
  box-shadow: var(--eco-shadow);
  transform: translateY(-6px);
}

.eco-module-card-blue { --module-tint: #eaf1ff; }
.eco-module-card-green { --module-tint: #edf9e8; }
.eco-module-card-yellow { --module-tint: #fff5d8; }
.eco-module-card-red { --module-tint: #ffedf0; }

.eco-icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  color: var(--icon-color, var(--eco-blue));
  background: var(--icon-bg, var(--eco-blue-100));
}

.eco-icon-box svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.eco-icon-green { --icon-color: #58a83a; --icon-bg: #ecfae8; }
.eco-icon-yellow { --icon-color: #d59918; --icon-bg: #fff6da; }
.eco-icon-red { --icon-color: #e64964; --icon-bg: #fff0f3; }
.eco-icon-purple { --icon-color: #7258dd; --icon-bg: #f0edff; }

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

.eco-module-card .eco-card-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--eco-blue-700);
  font-weight: 750;
}

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

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

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

.eco-feature-card {
  padding: 28px;
  border: 1px solid var(--eco-line);
  border-radius: var(--eco-radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(43,66,105,.05);
}

.eco-feature-card h3 {
  margin-bottom: 11px;
}

.eco-feature-card p {
  margin-bottom: 0;
  color: var(--eco-muted);
}

.eco-feature-card-number {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--eco-blue);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
}

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

.eco-stat-card {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--eco-radius);
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

.eco-stat-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.eco-stat-card span {
  color: rgba(255,255,255,.75);
}

/* Split content and images */
.eco-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(38px, 7vw, 92px);
}

.eco-split-reverse .eco-split-media {
  order: -1;
}

.eco-split-copy > :last-child {
  margin-bottom: 0;
}

.eco-media-card {
  position: relative;
  padding: clamp(12px, 2vw, 20px);
  border: 1px solid var(--eco-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--eco-shadow);
}

.eco-media-card img {
  display: block;
  width: 100%;
  border-radius: 15px;
}

button.eco-media-card,
.eco-media-button {
  width: 100%;
  border: 1px solid var(--eco-line);
  text-align: left;
  cursor: zoom-in;
}

.eco-media-card::after {
  position: absolute;
  right: 30px;
  bottom: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 10px;
  color: #fff;
  background: rgba(11,23,57,.68);
  content: "View larger";
  font-size: .72rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .18s ease, transform .18s ease;
}

.eco-media-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

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

.eco-screen-card {
  padding: 13px;
  border: 1px solid var(--eco-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--eco-shadow-sm);
}

.eco-screen-card img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.eco-screen-card figcaption {
  padding: 15px 10px 7px;
  color: var(--eco-muted);
  font-size: .91rem;
}

/* Workflow / tabs */
.eco-workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  counter-reset: step;
}

.eco-workflow-card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--eco-line);
  border-radius: var(--eco-radius);
  background: #fff;
  counter-increment: step;
}

.eco-workflow-card::before {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  color: #fff;
  background: var(--eco-blue);
  content: counter(step, decimal-leading-zero);
  font-size: .82rem;
  font-weight: 850;
}

.eco-workflow-card p {
  margin-bottom: 0;
  color: var(--eco-muted);
}

.eco-tabs-shell {
  padding: 10px;
  border: 1px solid var(--eco-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--eco-shadow-sm);
}

.eco-tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  padding: 6px;
  border-radius: 16px;
  background: var(--eco-bg);
}

.eco-tab-button {
  min-height: 56px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  color: var(--eco-muted);
  background: transparent;
  font-weight: 750;
  cursor: pointer;
}

.eco-tab-button[aria-selected="true"] {
  color: var(--eco-blue-700);
  background: #fff;
  box-shadow: 0 8px 18px rgba(49,95,218,.10);
}

.eco-tab-panel {
  padding: clamp(28px, 4vw, 48px);
}

.eco-tab-panel-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 45px;
}

.eco-tab-panel img {
  border: 1px solid var(--eco-line);
  border-radius: 15px;
  box-shadow: var(--eco-shadow-sm);
}

/* Pricing */
.eco-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.eco-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--eco-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(43,66,105,.06);
}

.eco-price-card-featured {
  border-color: #96b3ff;
  box-shadow: 0 24px 60px rgba(61,111,232,.16);
  transform: translateY(-8px);
}

.eco-price-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--eco-blue-700);
  background: var(--eco-blue-100);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.eco-price {
  margin: 18px 0 6px;
  color: var(--eco-navy);
  font-size: clamp(2.15rem, 4vw, 3.2rem);
  font-weight: 820;
  letter-spacing: -.04em;
}

.eco-price small {
  color: var(--eco-muted);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 0;
}

.eco-price-note {
  min-height: 50px;
  color: var(--eco-muted);
  font-size: .9rem;
}

.eco-price-card .eco-check-list {
  margin-bottom: 30px;
}

.eco-price-card .eco-btn {
  margin-top: auto;
}

.eco-bundle-card {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: 24px;
  color: rgba(255,255,255,.82);
  background: linear-gradient(135deg, #122b65, #315fda 58%, #4f80f7);
  box-shadow: var(--eco-shadow);
}

.eco-bundle-card h3,
.eco-bundle-card strong {
  color: #fff;
}

.eco-bundle-card .eco-actions {
  justify-content: flex-end;
  margin: 0;
}

/* Logos */
.eco-logo-wall {
  display: grid;
  gap: 18px;
}

.eco-logo-row {
  padding: 22px;
  border: 1px solid var(--eco-line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}

.eco-logo-row img {
  width: 100%;
  display: block;
  filter: saturate(.88);
}

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

.eco-integration-card {
  min-height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--eco-line);
  border-radius: 18px;
  background: #fff;
}

.eco-integration-card img {
  max-width: 180px;
  max-height: 72px;
  object-fit: contain;
}

/* FAQ */
.eco-faq-list {
  display: grid;
  gap: 13px;
}

.eco-faq-list details {
  border: 1px solid var(--eco-line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.eco-faq-list summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  color: var(--eco-navy);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.eco-faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--eco-blue-700);
  background: var(--eco-blue-100);
  content: "+";
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.eco-faq-list details[open] summary::after {
  content: "−";
}

.eco-faq-answer {
  padding: 0 22px 22px;
  color: var(--eco-muted);
}

.eco-faq-answer p:last-child {
  margin-bottom: 0;
}

/* Callouts */
.eco-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
  padding: clamp(38px, 6vw, 70px);
  border-radius: 30px;
  color: rgba(255,255,255,.82);
  background:
    radial-gradient(circle at 85% 15%, rgba(127,201,84,.35), transparent 30%),
    linear-gradient(135deg, #132d68, #315fda 65%, #4e7ff1);
  box-shadow: var(--eco-shadow);
  overflow: hidden;
}

.eco-cta-card h2,
.eco-cta-card strong {
  color: #fff;
}

.eco-cta-card .eco-actions {
  justify-content: flex-end;
  margin: 0;
}

.eco-mini-callout {
  padding: 26px;
  border: 1px solid #cde4c2;
  border-radius: 18px;
  background: var(--eco-green-100);
}

.eco-mini-callout h3 {
  color: #2e6e22;
}

/* Language-specific brochure download */
.eco-brochure-section {
  padding-block: clamp(42px, 6vw, 76px);
}

.eco-brochure-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 3.5vw, 46px);
  padding: clamp(30px, 4vw, 50px);
  border: 1px solid #cfdcf6;
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 8%, rgba(104,173,69,.14), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f5f8ff 58%, #eef4ff 100%);
  box-shadow: 0 18px 48px rgba(43,66,105,.11);
}

.eco-brochure-icon {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--eco-blue);
  background: var(--eco-blue-100);
}

.eco-brochure-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eco-brochure-copy h2 {
  margin: 7px 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

.eco-brochure-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--eco-muted);
}

.eco-brochure-meta {
  display: inline-flex;
  margin-top: 15px;
  color: var(--eco-blue-700);
  font-size: .9rem;
  font-weight: 750;
}

.eco-brochure-actions {
  min-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.eco-brochure-actions .eco-btn {
  justify-content: center;
  text-align: center;
}

/* Contact and forms */
.eco-contact-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 28px;
}

.eco-contact-cards {
  display: grid;
  gap: 15px;
}

.eco-contact-card {
  padding: 25px;
  border: 1px solid var(--eco-line);
  border-radius: 18px;
  background: #fff;
}

.eco-contact-card h3 {
  margin-bottom: 8px;
}

.eco-contact-card p,
.eco-contact-card a {
  margin: 0;
  color: var(--eco-muted);
}

.eco-contact-card a:hover {
  color: var(--eco-blue-700);
}

.eco-form-shell {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--eco-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--eco-shadow-sm);
}

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

.eco-field-full {
  grid-column: 1 / -1;
}

.eco-field label,
.eco-fieldset legend {
  display: block;
  margin-bottom: 7px;
  color: var(--eco-navy);
  font-size: .9rem;
  font-weight: 720;
}

.eco-field input,
.eco-field select,
.eco-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cfd9e9;
  border-radius: 11px;
  color: var(--eco-navy);
  background: #fff;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.eco-field textarea {
  min-height: 130px;
  resize: vertical;
}

.eco-field input:focus,
.eco-field select:focus,
.eco-field textarea:focus {
  border-color: var(--eco-blue);
  box-shadow: 0 0 0 4px rgba(79,128,247,.13);
}

.eco-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.eco-checkbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eco-check-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--eco-line);
  border-radius: 10px;
  color: #52627a;
  background: #fbfcff;
  font-size: .9rem;
}

.eco-check-option input {
  width: 17px;
  height: 17px;
  min-height: auto;
  accent-color: var(--eco-blue);
}

.eco-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--eco-muted);
  font-size: .82rem;
}

.eco-form-consent input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--eco-blue);
}

.eco-form-status {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: .9rem;
}

.eco-form-status-success {
  color: #276d20;
  background: var(--eco-green-100);
}

.eco-form-status-error {
  color: #a92e45;
  background: #fff0f3;
}

.eco-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

/* About timeline */
.eco-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 38px;
}

.eco-timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 10px;
  width: 2px;
  background: linear-gradient(var(--eco-blue), var(--eco-green));
  content: "";
}

.eco-timeline-item {
  position: relative;
  padding: 0 0 30px 24px;
}

.eco-timeline-item::before {
  position: absolute;
  top: 5px;
  left: -34px;
  width: 15px;
  height: 15px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--eco-blue);
  box-shadow: 0 0 0 2px var(--eco-blue);
  content: "";
}

.eco-timeline-year {
  display: inline-block;
  margin-bottom: 5px;
  color: var(--eco-blue-700);
  font-size: .8rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eco-timeline-item p {
  margin-bottom: 0;
  color: var(--eco-muted);
}

/* Legal / prose / posts */
.eco-prose {
  color: var(--eco-text);
}

.eco-prose h2,
.eco-prose h3 {
  margin-top: 1.6em;
}

.eco-prose a {
  color: var(--eco-blue-700) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.eco-post-card {
  padding: 27px;
  border: 1px solid var(--eco-line);
  border-radius: 18px;
  background: #fff;
}

.eco-post-card h2 {
  font-size: 1.5rem;
}

.eco-post-card h2 a:hover {
  color: var(--eco-blue-700);
}

.eco-post-date {
  color: var(--eco-muted);
  font-size: .84rem;
}

.eco-404 {
  min-height: 56vh;
  display: grid;
  align-items: center;
  text-align: center;
}

/* Footer */
.eco-site-footer {
  padding-top: 70px;
  color: #b9c4d8;
  background: #09142f;
}

.eco-footer-top {
  display: grid;
  grid-template-columns: 1.55fr .7fr .7fr 1fr;
  gap: 50px;
  padding-bottom: 52px;
}

.eco-footer-brand img {
  width: 175px;
  margin-bottom: 18px;
  filter: brightness(1.35);
}

.eco-footer-brand p {
  max-width: 440px;
}

.eco-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.eco-footer-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #dbe3f3;
  font-size: .76rem;
}

.eco-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.eco-footer-column h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: .92rem;
  letter-spacing: .04em;
}

.eco-footer-column a {
  color: #b9c4d8 !important;
}

.eco-footer-column a:hover {
  color: #fff !important;
}

.eco-footer-contact p {
  margin-top: 7px;
  color: #8392ad;
  font-size: .84rem;
}

.eco-footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #8190aa;
  font-size: .82rem;
}

.eco-footer-bottom p {
  margin: 0;
}

.eco-footer-bottom div {
  display: flex;
  gap: 20px;
}

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

.eco-whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff !important;
  background: #25d366;
  box-shadow: 0 14px 30px rgba(20,91,46,.28);
  transition: transform .18s ease;
}

.eco-whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.eco-whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* Lightbox */
.eco-lightbox {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(5,12,29,.90);
}

.eco-lightbox img {
  max-width: min(1500px, 95vw);
  max-height: 88vh;
  border-radius: 15px;
  box-shadow: 0 30px 100px rgba(0,0,0,.45);
}

.eco-lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.1);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

body.eco-lightbox-open {
  overflow: hidden;
}

/* Utility visuals */
.eco-visual-stack {
  position: relative;
  min-height: 490px;
}

.eco-visual-stack img {
  position: absolute;
  border: 1px solid var(--eco-line);
  border-radius: 16px;
  box-shadow: var(--eco-shadow);
}

.eco-visual-stack img:nth-child(1) {
  top: 0;
  left: 0;
  width: 79%;
}

.eco-visual-stack img:nth-child(2) {
  right: 0;
  bottom: 0;
  width: 72%;
}

.eco-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 20px;
  color: var(--eco-muted);
  font-size: .86rem;
}

.eco-breadcrumb a:hover {
  color: var(--eco-blue-700);
}

.eco-breadcrumb span:not(:last-child)::after {
  margin-left: 7px;
  content: "/";
  color: #aeb8ca;
}

.eco-note-box {
  padding: 17px 19px;
  border-left: 4px solid var(--eco-blue);
  border-radius: 8px 14px 14px 8px;
  color: #4f5d76;
  background: var(--eco-blue-100);
}

.eco-note-box p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1180px) {
  .eco-desktop-nav {
    display: none;
  }

  .eco-menu-toggle {
    display: inline-flex;
  }

  .eco-header-inner {
    gap: 18px;
  }

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

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

  .eco-feature-grid-4,
  .eco-integration-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .eco-footer-top {
    grid-template-columns: 1.35fr .65fr .65fr;
  }

  .eco-footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, auto);
    align-items: start;
  }

  .eco-footer-contact h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --eco-header-height: 70px;
  }

  body.ecoleave-site.admin-bar .eco-site-header {
    top: 46px;
  }

  .eco-header-login,
  .eco-header-actions > .eco-btn {
    display: none;
  }

  .eco-brand img {
    width: 145px;
  }

  .eco-hero-grid,
  .eco-split,
  .eco-contact-grid,
  .eco-tab-panel-grid,
  .eco-bundle-card,
  .eco-cta-card {
    grid-template-columns: 1fr;
  }

  .eco-brochure-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .eco-brochure-actions {
    grid-column: 1 / -1;
    min-width: 0;
    flex-direction: row;
  }

  .eco-brochure-actions .eco-btn {
    flex: 1 1 0;
  }

  .eco-hero-copy {
    text-align: center;
  }

  .eco-hero-copy .eco-lead {
    margin-inline: auto;
  }

  .eco-hero-copy .eco-actions,
  .eco-hero-note,
  .eco-pill-row {
    justify-content: center;
  }

  .eco-browser {
    transform: none;
  }

  .eco-float-card-one {
    left: 8px;
    bottom: -26px;
  }

  .eco-float-card-two {
    top: 45px;
    right: -5px;
  }

  .eco-proof-bar {
    margin-top: 35px;
  }

  .eco-proof-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .eco-proof-item:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--eco-line-soft);
  }

  .eco-proof-item:nth-child(4) {
    border-top: 1px solid var(--eco-line-soft);
  }

  .eco-feature-grid,
  .eco-workflow,
  .eco-stat-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .eco-split-reverse .eco-split-media {
    order: 0;
  }

  .eco-bundle-card .eco-actions,
  .eco-cta-card .eco-actions {
    justify-content: flex-start;
  }

  .eco-footer-top {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 35px;
  }

  .eco-footer-brand {
    grid-column: 1 / -1;
  }

  .eco-footer-contact {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .eco-container {
    width: min(calc(100% - 28px), var(--eco-container));
  }

  .eco-announcement-inner {
    min-height: 44px;
    font-size: .77rem;
  }

  .eco-announcement-inner a {
    display: none;
  }

  .eco-mobile-actions {
    grid-template-columns: 1fr;
  }

  .eco-hero {
    padding-top: 62px;
  }

  body.ecoleave-site h1 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }

  body.ecoleave-site h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .eco-actions {
    display: grid;
  }

  .eco-actions .eco-btn {
    width: 100%;
  }

  .eco-float-card {
    display: none;
  }

  .eco-browser {
    padding: 8px;
    border-radius: 17px;
  }

  .eco-browser-bar {
    height: 26px;
  }

  .eco-proof-inner,
  .eco-module-grid,
  .eco-feature-grid,
  .eco-feature-grid-2,
  .eco-feature-grid-4,
  .eco-workflow,
  .eco-stat-grid,
  .eco-pricing-grid,
  .eco-integration-grid,
  .eco-screen-grid,
  .eco-post-grid {
    grid-template-columns: 1fr;
  }

  .eco-proof-item + .eco-proof-item {
    border-left: 0;
    border-top: 1px solid var(--eco-line-soft);
  }

  .eco-price-card-featured {
    transform: none;
  }

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

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

  .eco-field-full {
    grid-column: auto;
  }

  .eco-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .eco-footer-brand,
  .eco-footer-contact {
    grid-column: 1 / -1;
  }

  .eco-footer-contact {
    display: flex;
  }

  .eco-footer-bottom {
    min-height: 92px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .eco-whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .eco-visual-stack {
    min-height: 330px;
  }

  .eco-media-card::after {
    display: none;
  }
}

@media (max-width: 430px) {
  .eco-footer-top {
    grid-template-columns: 1fr;
  }

  .eco-footer-brand,
  .eco-footer-contact {
    grid-column: auto;
  }
}

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

/* Native EN / BM / 中文 language switcher */
.eco-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid #d8e0ee;
  border-radius: 12px;
  background: #f8faff;
  box-shadow: 0 3px 10px rgba(30, 55, 95, .06);
  white-space: nowrap;
}

.eco-language-link {
  display: inline-flex;
  min-width: 34px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border-radius: 8px;
  color: #4d5c74 !important;
  font-size: .79rem;
  font-weight: 800;
  line-height: 1;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.eco-language-link:hover {
  color: var(--eco-blue-700) !important;
  background: var(--eco-blue-100);
}

.eco-language-link.is-active,
.eco-language-link[aria-current="page"] {
  color: #fff !important;
  background: var(--eco-blue);
  box-shadow: 0 3px 9px rgba(59, 105, 225, .28);
}

.eco-language-mobile {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--eco-line-soft);
  margin-bottom: 3px;
}

body.eco-lang-zh {
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

body.eco-lang-zh .eco-lead,
body.eco-lang-zh p,
body.eco-lang-zh li {
  line-height: 1.72;
}

@media (max-width: 1280px) and (min-width: 1181px) {
  .eco-header-inner {
    gap: 18px;
  }

  .eco-nav-list > li > a {
    padding-inline: 10px;
  }

  .eco-header-actions {
    gap: 9px;
  }

  .eco-header-login {
    display: none;
  }
}

@media (max-width: 680px) {
  .eco-brochure-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .eco-brochure-icon {
    margin-inline: auto;
  }

  .eco-brochure-actions {
    grid-column: auto;
    flex-direction: column;
  }

  .eco-language-desktop {
    display: none;
  }

  .eco-language-mobile .eco-language-switcher {
    width: 100%;
  }

  .eco-language-mobile .eco-language-link {
    flex: 1 1 0;
  }
}
