:root {
  --ink: #14231d;
  --muted: #65736c;
  --soft: #f6f8f6;
  --line: #e5ebe7;
  --white: #ffffff;
  --green: #1f7b3f;
  --green-dark: #0d4b2c;
  --green-deep: #052f23;
  --danger: #b24a3f;
  --shadow: 0 18px 46px rgba(21, 37, 30, 0.12);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #eef5f2;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.4fr) minmax(120px, 0.9fr);
  align-items: center;
  width: 100%;
  min-height: 72px;
  padding: 0 clamp(28px, 5vw, 92px);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(229, 235, 231, 0.92);
  box-shadow: 0 10px 34px rgba(20, 35, 29, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 18px;
  font-weight: 900;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #dceadf;
  color: var(--green);
}

.brand-mark::before {
  content: "芽";
  font-size: 21px;
  font-weight: 900;
}

.brand-mark.has-image::before {
  content: "";
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: #26342e;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--green);
}

.main-nav a.active {
  color: var(--green);
}

.login-button,
.primary-button,
.soft-button,
.small-button,
.remove-button,
.outline-button {
  min-height: 38px;
  border-radius: 999px;
  cursor: pointer;
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--green-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 0 22px;
  border: 0;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(31, 123, 63, 0.28);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #dce9dd;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.hero-bg.active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.56) 36%, rgba(255, 255, 255, 0.12) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(7, 45, 28, 0.18));
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 72px auto 0;
  padding-left: 12px;
}

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

.hero h1 {
  max-width: 600px;
  margin: 0;
  color: #0f261d;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero p:not(.eyebrow) {
  max-width: 610px;
  margin: 26px 0 32px;
  color: #34423c;
  font-size: 17px;
  line-height: 1.9;
}

.hero-arrow {
  position: absolute;
  top: 52%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: #436150;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(21, 37, 30, 0.1);
}

.hero-arrow.left {
  left: 42px;
}

.hero-arrow.right {
  right: 42px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 82px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  transition: width 200ms ease, background 200ms ease;
}

.hero-dots button.active {
  width: 22px;
  background: var(--green);
}

.stats-panel {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(960px, calc(100% - 48px));
  margin: -54px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stats-panel div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 4px 12px;
  padding: 23px 28px;
  border-right: 1px solid var(--line);
}

.stats-panel div:last-child {
  border-right: 0;
}

.stats-panel i {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  border: 2px solid #d7eadc;
  border-radius: 50%;
  position: relative;
}

.stats-panel i::after {
  content: "";
  position: absolute;
  inset: 8px 11px;
  border: 2px solid var(--green);
  border-top: 0;
  border-radius: 0 0 12px 12px;
}

.stats-panel strong {
  font-size: 22px;
  color: #12261c;
}

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

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0;
}

.page-hero {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 112px 24px 54px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(3, 47, 32, 0.58), rgba(3, 47, 32, 0.76)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  letter-spacing: 0;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.8;
}

.solution-hero {
  background:
    linear-gradient(180deg, rgba(3, 47, 32, 0.58), rgba(3, 47, 32, 0.76)),
    url("https://images.unsplash.com/photo-1495107334309-fcf20504a5ab?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.product-hero {
  background:
    linear-gradient(180deg, rgba(3, 47, 32, 0.52), rgba(3, 47, 32, 0.76)),
    url("https://images.unsplash.com/photo-1605000797499-95a51c5269ae?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.news-hero {
  background:
    linear-gradient(180deg, rgba(3, 47, 32, 0.54), rgba(3, 47, 32, 0.76)),
    url("https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.contact-hero {
  background:
    linear-gradient(180deg, rgba(3, 47, 32, 0.54), rgba(3, 47, 32, 0.78)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.section-title {
  margin-bottom: 34px;
}

.section-title.centered {
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  letter-spacing: 0;
}

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

.solutions {
  padding-top: 68px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card,
.case-card,
.news-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(21, 37, 30, 0.06);
}

.solution-card img {
  width: 100%;
  height: 170px;
  display: block;
  object-fit: cover;
}

.solution-card div,
.case-card div {
  padding: 22px;
}

.solution-card h3,
.case-card h3,
.news-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.solution-card p,
.case-card p,
.news-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.solution-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.about-band {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background:
    linear-gradient(90deg, rgba(2, 44, 31, 0.95), rgba(2, 44, 31, 0.84)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80") center / cover;
  color: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: clamp(40px, 9vw, 150px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.about-inner h2 {
  margin: 0 0 22px;
  font-size: 32px;
}

.about-inner p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 2;
}

.soft-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  margin-top: 44px;
  padding: 0 20px;
  background: rgba(101, 163, 69, 0.9);
  color: var(--white);
  font-weight: 900;
}

.about-stats {
  display: grid;
  gap: 18px;
}

.about-stats div {
  display: grid;
  gap: 4px;
}

.about-stats i {
  display: none;
}

.about-stats strong {
  font-size: 30px;
}

.about-stats span {
  color: rgba(255, 255, 255, 0.72);
}

.about-stats.light {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-stats.light div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(21, 37, 30, 0.06);
}

.about-stats.light strong {
  color: var(--green-dark);
}

.about-stats.light span {
  color: var(--muted);
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: start;
}

.about-page-grid h2 {
  margin: 0 0 20px;
  font-size: clamp(30px, 4vw, 44px);
}

.about-page-grid p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.95;
}

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

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-card img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
}

.case-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.product-category-list {
  display: grid;
  gap: 46px;
}

.product-category {
  display: grid;
  gap: 18px;
}

.product-category-head span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.product-category-head h3 {
  margin: 0;
  padding-left: 14px;
  border-left: 4px solid var(--green);
  font-size: 26px;
}

.product-category-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.product-tech-card {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(21, 37, 30, 0.06);
}

.product-tech-card img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.product-tech-card div {
  padding: 24px;
}

.product-tech-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.product-tech-card h4 {
  margin: 0 0 12px;
  font-size: 22px;
}

.product-tech-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.news-section {
  padding-top: 30px;
}

.news-layout {
  display: grid;
  gap: 22px;
}

.news-item {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.news-item.featured {
  grid-row: span 3;
  align-content: end;
  min-height: 330px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(4, 40, 27, 0.16), rgba(4, 40, 27, 0.86)),
    url("https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=900&q=80") center / cover;
}

.news-item.featured p,
.news-item.featured time {
  color: rgba(255, 255, 255, 0.82);
}

.news-item time {
  color: var(--green);
  font-weight: 900;
}

.case-story-card {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(21, 37, 30, 0.06);
}

.case-story-card img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
}

.case-story-card div {
  display: grid;
  align-content: center;
  padding: 34px;
}

.case-story-card time {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.case-story-card h3 {
  margin: 12px 0 14px;
  font-size: 26px;
}

.case-story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.links-section {
  padding-top: 38px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 28px;
}

.contact-card,
.contact-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(21, 37, 30, 0.06);
}

.contact-card h2 {
  margin: 0 0 18px;
  font-size: 28px;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form .wide,
.contact-form button {
  grid-column: 1 / -1;
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.link-list a {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
}

.site-footer {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 52, 35, 0.98), rgba(7, 64, 42, 0.9)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80") center bottom / cover;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(56px, 12vw, 220px);
  width: min(1180px, calc(100% - 48px));
  min-height: 430px;
  margin: 0 auto;
  padding: 94px 0 72px;
  align-items: start;
}

.footer-about h2 {
  margin: 0 0 24px;
  font-size: 34px;
}

.footer-about p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 2;
}

.footer-stats {
  display: grid;
  gap: 18px;
}

.footer-stats div {
  display: grid;
  gap: 4px;
}

.footer-stats strong {
  font-size: 34px;
  line-height: 1;
}

.footer-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 26px;
  padding: 26px clamp(20px, 5vw, 76px);
  background: rgba(0, 54, 38, 0.88);
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 900;
}

.admin-page {
  background: var(--soft);
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(0, 52, 35, 0.82), rgba(7, 64, 42, 0.66)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.login-card {
  width: min(430px, 100%);
  padding: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.login-card h1 {
  margin: 0 0 10px;
  font-size: 30px;
}

.login-card p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
}

.login-card form {
  display: grid;
  gap: 16px;
}

.login-card .primary-button {
  width: 100%;
}

#loginStatus {
  min-height: 22px;
  color: var(--danger);
  font-size: 14px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(20px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 247, 244, 0.94);
  backdrop-filter: blur(18px);
}

.admin-topbar h1 {
  margin: 0;
  font-size: 26px;
}

.admin-topbar-actions {
  display: flex;
  gap: 12px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 16px;
  background: var(--white);
  color: var(--ink);
}

.admin-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  width: min(1280px, calc(100% - 40px));
  margin: 28px auto 60px;
}

.admin-nav {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 6px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-nav a {
  padding: 12px;
  border-radius: 6px;
  color: var(--muted);
}

.admin-nav a:hover {
  background: var(--soft);
  color: var(--green-dark);
}

.admin-form {
  display: grid;
  gap: 22px;
}

.admin-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-card h2 {
  margin: 0;
  font-size: 22px;
}

#saveStatus {
  color: var(--muted);
  font-size: 14px;
}

#accountStatus {
  color: var(--muted);
  font-size: 14px;
}

.admin-actions-inline {
  margin-top: 16px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

label.wide,
.editor-item .wide,
.editor-item .remove-button {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.repeaters {
  display: grid;
  gap: 14px;
}

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

.category-editor {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.category-editor-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.category-items {
  display: grid;
  gap: 12px;
}

.compact-editor {
  grid-template-columns: 1fr;
  background: var(--white);
}

.small-button {
  border: 1px solid #cfe0d5;
  padding: 0 14px;
  background: #eef6f0;
  color: var(--green-dark);
  font-weight: 800;
}

.remove-button {
  justify-self: start;
  min-height: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--danger);
  font-weight: 800;
}

.error-state {
  padding: 48px;
  color: var(--danger);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 12px;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .solution-grid,
  .case-grid,
  .product-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-layout,
  .case-story-card,
  .about-inner,
  .about-page-grid,
  .contact-grid,
  .product-category,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .hero-arrow {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    background: var(--soft);
  }

  .site-header {
    top: 0;
    width: 100%;
    min-height: 92px;
    gap: 8px;
    padding: 10px 14px 8px;
  }

  .brand {
    max-width: 100%;
    font-size: 15px;
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .main-nav {
    gap: 8px;
    margin-inline: -2px;
  }

  .main-nav a {
    flex: 0 0 auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(31, 123, 63, 0.07);
    font-size: 13px;
  }

  .main-nav a.active {
    background: var(--green-dark);
    color: var(--white);
  }

  .login-button {
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.68) 50%, rgba(255, 255, 255, 0.3)),
      linear-gradient(180deg, rgba(7, 45, 28, 0.05), rgba(7, 45, 28, 0.18));
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin-top: 96px;
    padding-left: 0;
  }

  .hero h1 {
    max-width: 320px;
    font-size: 36px;
    line-height: 1.15;
  }

  .hero p:not(.eyebrow) {
    max-width: 330px;
    margin: 18px 0 24px;
    font-size: 15px;
    line-height: 1.75;
  }

  .primary-button,
  .soft-button,
  .outline-button,
  .small-button {
    min-height: 44px;
  }

  .hero-dots {
    bottom: 34px;
  }

  .stats-panel,
  .solution-grid,
  .case-grid,
  .news-layout,
  .product-tech-grid,
  .category-editor-head,
  .about-stats.light,
  .contact-form,
  .form-grid,
  .editor-item {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    width: calc(100% - 28px);
    margin-top: -28px;
    border-radius: 8px;
  }

  .stats-panel div {
    grid-template-columns: 34px 1fr;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-panel strong {
    font-size: 20px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 52px 0;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .section-title.centered {
    text-align: left;
  }

  .section-title h2,
  .about-page-grid h2 {
    font-size: 28px;
  }

  .page-hero {
    min-height: 280px;
    padding: 126px 18px 44px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .page-hero p {
    font-size: 15px;
  }

  .solution-card img,
  .case-card img,
  .product-tech-card img {
    height: 190px;
  }

  .solution-card div,
  .case-card div,
  .product-tech-card div {
    padding: 20px;
  }

  .product-category-list {
    gap: 34px;
  }

  .product-category-head h3 {
    font-size: 22px;
  }

  .case-story-card img {
    height: 210px;
  }

  .case-story-card div {
    padding: 22px;
  }

  .case-story-card h3 {
    font-size: 22px;
  }

  .contact-card,
  .contact-form,
  .admin-card,
  .category-editor {
    padding: 18px;
  }

  .about-band {
    padding: 58px 0;
  }

  .about-inner {
    width: calc(100% - 28px);
  }

  .about-inner h2,
  .footer-about h2 {
    font-size: 28px;
  }

  .footer-main {
    width: calc(100% - 28px);
    min-height: 0;
    gap: 34px;
    padding: 58px 0 42px;
  }

  .footer-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 22px;
  }

  .footer-stats strong {
    font-size: 28px;
  }

  .footer-stats span {
    font-size: 14px;
  }

  .footer-main,
  .site-footer,
  .admin-topbar,
  .admin-topbar-actions {
    display: grid;
  }

  .footer-bottom {
    display: grid;
    text-align: center;
    gap: 8px;
    padding: 20px 16px;
    font-size: 14px;
  }

  .login-page {
    padding: 16px;
    align-items: start;
    padding-top: 9vh;
  }

  .login-card {
    padding: 24px;
  }

  .login-card h1 {
    font-size: 26px;
  }

  .admin-topbar {
    position: sticky;
    padding: 14px;
  }

  .admin-topbar h1 {
    font-size: 22px;
  }

  .admin-topbar-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .admin-topbar-actions .primary-button {
    grid-column: 1 / -1;
  }

  .admin-layout {
    width: calc(100% - 24px);
    margin: 16px auto 42px;
    gap: 16px;
  }

  .admin-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .admin-nav::-webkit-scrollbar {
    display: none;
  }

  .admin-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    background: var(--soft);
  }

  .admin-card-head {
    display: grid;
    align-items: start;
  }

  input,
  textarea {
    min-height: 44px;
    font-size: 16px;
  }

  .remove-button {
    min-height: 34px;
  }
}
