:root {
  --deep-olive: #2f3a21;
  --olive: #6fa243;
  --olive-dark: #587f35;
  --gold: #c9a13b;
  --cream: #f6f1e7;
  --cream-light: #fbf8f1;
  --stone: #d8d3c7;
  --graphite: #1e1e1e;
  --muted: #6f7169;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(47, 58, 33, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--graphite);
  background: var(--cream-light);
  line-height: 1.6;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(251, 248, 241, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 211, 199, 0.65);
}

.brand img {
  width: 172px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  color: var(--deep-olive);
  font-weight: 650;
}

.main-nav a {
  opacity: 0.86;
  transition: opacity 180ms ease, color 180ms ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--olive-dark);
}

.language-link {
  border: 1px solid rgba(111, 162, 67, 0.35);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--olive-dark);
  background: rgba(255, 255, 255, 0.7);
}

.section-pad {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 92px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 58px;
  align-items: center;
  min-height: 710px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--olive-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

h1 {
  max-width: 780px;
  color: var(--deep-olive);
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin-bottom: 28px;
}

h2 {
  color: var(--deep-olive);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

h3 {
  color: var(--deep-olive);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.hero-text {
  max-width: 640px;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  color: var(--muted);
  margin-bottom: 34px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--olive);
  box-shadow: 0 12px 28px rgba(111, 162, 67, 0.24);
}

.btn-primary:hover {
  background: var(--olive-dark);
}

.btn-secondary {
  color: var(--deep-olive);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(47, 58, 33, 0.14);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(201, 161, 59, 0.28), transparent 36%),
    linear-gradient(145deg, #ffffff 0%, #f2eadb 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(216, 211, 199, 0.8);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 26px auto 26px 45px;
  width: 2px;
  background: linear-gradient(var(--olive), rgba(111, 162, 67, 0.1));
}

.panel-card {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 14px;
  align-items: start;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(216, 211, 199, 0.86);
}

.panel-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--deep-olive);
  font-weight: 900;
  font-size: 0.8rem;
}

.panel-card strong {
  color: var(--deep-olive);
  font-size: 1.1rem;
  line-height: 1.2;
}

.panel-card p {
  grid-column: 2;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-card.active {
  background: var(--deep-olive);
  color: var(--white);
}

.panel-card.active span {
  color: var(--deep-olive);
  background: var(--gold);
}

.panel-card.active strong,
.panel-card.active p {
  color: var(--white);
}

.trust-strip {
  max-width: var(--max-width);
  margin: -30px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 24px 70px;
}

.trust-strip div {
  min-height: 132px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(216, 211, 199, 0.72);
}

.trust-strip div:first-child {
  border-radius: 22px 0 0 22px;
}

.trust-strip div:last-child {
  border-radius: 0 22px 22px 0;
}

.trust-strip strong {
  display: block;
  color: var(--deep-olive);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-light {
  max-width: none;
  background: var(--cream);
}

.section-light > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin-bottom: 50px;
}

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

.align-left {
  text-align: left;
  margin-left: 0;
}

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

.product-card {
  min-height: 260px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(216, 211, 199, 0.8);
  box-shadow: 0 16px 45px rgba(47, 58, 33, 0.06);
}

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

.icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(111, 162, 67, 0.12);
  font-size: 1.4rem;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.split-section p {
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 24px;
}

.text-link {
  color: var(--olive-dark);
  font-weight: 900;
}

.vertical-list {
  display: grid;
  gap: 16px;
}

.vertical-list div {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(216, 211, 199, 0.75);
  box-shadow: 0 12px 40px rgba(47, 58, 33, 0.06);
}

.vertical-list strong {
  display: block;
  color: var(--deep-olive);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.vertical-list span {
  color: var(--muted);
}

.section-dark {
  max-width: none;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 15% 10%, rgba(201, 161, 59, 0.22), transparent 26%),
    linear-gradient(135deg, #202914 0%, #2f3a21 54%, #19210f 100%);
}

.section-dark > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .eyebrow {
  color: #d5efbd;
}

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

.advantages-grid div {
  padding: 26px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.advantages-grid p {
  margin-bottom: 0;
}

.contact-section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 70px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(111, 162, 67, 0.22), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #f6f1e7 100%);
  border: 1px solid rgba(216, 211, 199, 0.82);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 820px;
}

.contact-card p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
  margin-bottom: 30px;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 34px 24px 48px;
  color: var(--muted);
  border-top: 1px solid rgba(216, 211, 199, 0.7);
}

.site-footer img {
  width: 142px;
  margin-bottom: 16px;
}

.site-footer p {
  margin-bottom: 8px;
}

.site-footer a {
  color: var(--deep-olive);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero-panel {
    max-width: 680px;
  }

  .trust-strip,
  .product-grid,
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip div:first-child,
  .trust-strip div:last-child {
    border-radius: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .main-nav {
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 0.88rem;
  }

  .brand img {
    width: 152px;
  }

  .section-pad {
    padding: 66px 20px;
  }

  .hero {
    gap: 38px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .trust-strip,
  .product-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
    padding-bottom: 44px;
  }

  .trust-strip div {
    min-height: auto;
  }

  .hero-panel {
    padding: 18px;
  }

  .hero-panel::before {
    display: none;
  }

  .panel-card {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .contact-actions,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
