:root {
  --green: #2d5f4c;
  --green-2: #3e765f;
  --orange: #e67e22;
  --cream: #f5f1e8;
  --cream-2: #fbf8f3;
  --ink: #16372d;
  --text: #333333;
  --muted: #666666;
  --line: #ece7df;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(22, 55, 45, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.7;
}

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

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

.site {
  min-height: 100vh;
  overflow-x: hidden;
}

.header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(45, 95, 76, 0.96);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.header.transparent {
  background: rgba(45, 95, 76, 0.36);
  box-shadow: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, 100%);
  height: 80px;
  margin: 0 auto;
  padding: 0 48px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 210px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 14px;
  white-space: nowrap;
}

.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.2s ease;
}

.nav a.active,
.nav a:hover {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(245, 130, 31, 0.28);
}

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

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.language {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
}

.language::after {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 150px 24px 88px;
  color: var(--white);
  text-align: center;
  background-image: linear-gradient(135deg, rgba(45, 95, 76, 0.8), rgba(45, 95, 76, 0.58), rgba(45, 95, 76, 0.72)),
    url("/images/hero.png");
  background-position: center;
  background-size: cover;
}

.hero.sub {
  min-height: 430px;
  padding-top: 130px;
}

.hero-content {
  width: min(900px, 100%);
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 4.7vw, 60px);
  line-height: 1;
  font-weight: 700;
}

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

.hero p {
  width: min(780px, 100%);
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.section {
  padding: 80px 0;
}

.section.alt {
  background: var(--cream);
}

.section.soft {
  background: var(--cream-2);
}

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

.section-title {
  margin: 0 0 14px;
  color: var(--green);
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 1.25;
  text-align: center;
}

.section-lead {
  margin: 0 auto 58px;
  color: var(--muted);
  font-size: 16px;
  text-align: center;
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cap-card {
  min-height: 210px;
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(45, 95, 76, 0.12);
}

.icon-box {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 12px;
  background: rgba(45, 95, 76, 0.1);
  color: var(--green);
  transition: background 0.3s ease, color 0.3s ease;
}

.icon-box svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cap-card:hover .icon-box {
  background: var(--green);
  color: var(--white);
}

.cap-card h3,
.simple-card h3,
.info-card h3 {
  margin: 24px 0 8px;
  color: var(--green);
  font-size: 22px;
  line-height: 1.35;
}

.cap-card p,
.simple-card p,
.info-card p {
  margin: 0;
  color: #4e4e4e;
}

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

.brand-card {
  display: flex;
  min-height: 296px;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: var(--cream);
  box-shadow: none;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(45, 95, 76, 0.12);
}

.brand-image {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  margin: 0 auto 24px;
  padding: 14px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.brand-image img {
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.brand-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0;
}

.brand-body h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 22px;
}

.brand-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  margin-top: auto;
  color: var(--orange);
  font-weight: 700;
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  align-items: center;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-size: 17px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  content: "✓";
  font-size: 13px;
  font-weight: 700;
}

.image-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.market-map {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(45, 95, 76, 0.88), rgba(62, 118, 95, 0.72)),
    radial-gradient(circle at 64% 38%, rgba(245, 130, 31, 0.35), transparent 22%),
    radial-gradient(circle at 35% 66%, rgba(255, 255, 255, 0.2), transparent 24%),
    #2d5f4c;
  box-shadow: var(--shadow);
}

.market-map::before {
  position: absolute;
  inset: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.market-map::after {
  position: absolute;
  inset: 80px 62px 56px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 45% 50% 40% 45%;
  content: "";
  transform: rotate(-12deg);
}

.map-hub,
.map-card {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.map-hub {
  top: 42%;
  left: 50%;
  width: 132px;
  height: 92px;
  background: rgba(245, 130, 31, 0.95);
  transform: translate(-50%, -50%);
}

.map-card {
  width: 96px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
}

.map-card.germany {
  top: 28%;
  left: 23%;
}

.map-card.poland {
  right: 20%;
  bottom: 28%;
}

.map-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.55);
  transform-origin: left center;
}

.line-one {
  top: 43%;
  left: 36%;
  width: 145px;
  transform: rotate(-8deg);
}

.line-two {
  top: 53%;
  left: 54%;
  width: 154px;
  transform: rotate(23deg);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.cta-box {
  padding: 42px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--text);
}

.cta-box.light {
  background: var(--green);
  color: var(--white);
}

.cta-box h3 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.35;
}

.cta-box:not(.light) h3 {
  color: var(--green);
}

.cta-box p {
  margin: 0 0 28px;
  color: var(--muted);
}

.cta-box.light p {
  color: rgba(255, 255, 255, 0.9);
}

.page-copy {
  width: min(890px, 100%);
  margin: 0 auto;
  color: #444444;
  font-size: 18px;
}

.page-copy p {
  margin: 0 0 22px;
}

.simple-card {
  padding: 30px;
  min-height: 190px;
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
}

.pill {
  min-width: 118px;
  padding: 14px 22px;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  text-align: center;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  color: var(--green);
  text-align: center;
  font-weight: 700;
  counter-increment: step;
}

.step::before {
  display: grid;
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  content: counter(step);
  font-size: 14px;
}

.form-card {
  width: min(850px, 100%);
  margin: 0 auto;
  padding: 38px;
}

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

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

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #ddd7cf;
  border-radius: 8px;
  background: #fff;
  padding: 10px 14px;
  color: var(--text);
  outline: none;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 95, 76, 0.12);
}

.form-submit {
  margin-top: 22px;
}

.detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.detail-media img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.tag {
  padding: 8px 14px;
  border-radius: 8px;
  background: #edf3f0;
  color: var(--green);
  font-weight: 700;
}

.not-found {
  padding: 160px 0 90px;
  text-align: center;
}

.not-found h1 {
  color: var(--green);
  font-size: 42px;
}

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

.info-card {
  min-height: 210px;
  padding: 28px;
}

.footer {
  background: var(--green);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 54px;
  padding: 56px 0 42px;
}

.footer .brand {
  margin-bottom: 18px;
}

.footer p,
.footer li,
.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer h4 {
  margin: 0 0 18px;
  font-size: 18px;
}

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

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1050px) {
  .nav {
    gap: 18px;
  }

  .nav-actions .btn {
    display: none;
  }

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

@media (max-width: 820px) {
  .nav-wrap {
    width: min(100% - 32px, 1170px);
    height: 70px;
    padding: 0;
  }

  .brand {
    min-width: 0;
    font-size: 20px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .menu-btn {
    display: block;
  }

  .nav {
    position: fixed;
    top: 70px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(45, 95, 76, 0.98);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 15px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .language {
    display: none;
  }

  .hero {
    min-height: 650px;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 17px;
  }

  .section {
    padding: 70px 0;
  }

  .grid.three,
  .split,
  .cta-band,
  .steps,
  .detail,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, 1170px);
  }

  .hero {
    min-height: 610px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1 {
    font-size: 33px;
  }

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

  .brand-grid,
  .grid.four,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cap-card,
  .simple-card,
  .form-card,
  .cta-box {
    padding: 26px;
  }
}
