:root {
  --bg: #fffaf0;
  --paper: #ffffff;
  --ink: #211807;
  --muted: #6b5a33;
  --yellow: #f4bd1a;
  --yellow-2: #ffd84d;
  --gold: #9b6b08;
  --line: rgba(33, 24, 7, 0.12);
  --shadow: 0 24px 70px rgba(73, 47, 0, 0.14);
  --radius: 28px;
}

* { 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(--ink);
  background: #ffffff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; }
.brand img {
  width: 172px;
  height: 96px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--muted);
}

nav a:hover { color: var(--ink); }

.lang-toggle {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(73, 47, 0, 0.08);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  background: #ffffff;
}


.eyebrow {
  margin: 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 950;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6.8vw, 5.85rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  max-width: 780px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 14px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: var(--ink);
  box-shadow: 0 16px 36px rgba(244, 189, 26, 0.34);
}
.btn.secondary {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn.large { min-height: 58px; padding-inline: 28px; }
.micro { color: var(--muted); font-weight: 700; }

.hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 500px;
  padding: clamp(18px, 4vw, 34px);
  border-radius: 0;
  background: #ffffff;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

.hero-product {
  width: min(680px, 112%);
  max-width: none;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(73, 47, 0, 0.16));
  transform: rotate(-1deg);
}

.trust-strip {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(73,47,0,.08);
}
.trust-strip span {
  text-align: center;
  font-size: .92rem;
  font-weight: 900;
  color: var(--muted);
}

.section-heading { max-width: 760px; margin-bottom: 34px; }
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  min-height: 250px;
  padding: 16px 16px 26px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(73,47,0,.08);
  overflow: hidden;
}
.card-image {
  width: 100%;
  aspect-ratio: 1.15 / 1;
  object-fit: contain;
  display: block;
  margin-bottom: 22px;
  padding: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}
.card h3, .card p { padding-inline: 10px; }
.card p { color: var(--muted); line-height: 1.6; font-weight: 600; }

.niches {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 40px;
  align-items: center;
  padding-block: 44px 70px;
}
.niche-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.niche-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 900;
  color: var(--muted);
}

.steps ol {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.steps li {
  position: relative;
  padding: 28px 22px 24px;
  min-height: 190px;
  background: var(--ink);
  color: #fff8df;
  border-radius: var(--radius);
  overflow: hidden;
}
.steps li:before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 950;
}
.steps li strong { display: block; margin-bottom: 8px; font-size: 1.1rem; }
.steps li span { color: rgba(255,248,223,.76); line-height: 1.5; }

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
  padding: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #271a03, #5e3d00);
  color: #fff8df;
  box-shadow: var(--shadow);
}
.cta p:not(.eyebrow) { color: rgba(255,248,223,.76); font-size: 1.1rem; }
.phone-contact { margin: 14px 0 0; font-weight: 900; }
.phone-contact a { color: #fff8df; text-decoration: underline; text-underline-offset: 4px; }

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px 18px 44px;
  color: var(--muted);
  font-weight: 800;
}
footer img { width: 58px; height: 40px; object-fit: contain; mix-blend-mode: multiply; }

@media (max-width: 860px) {
  .site-header { align-items: center; }
  nav { display: none; }
  .hero, .niches { grid-template-columns: 1fr; }
  .hero { padding-top: 46px; min-height: auto; }
  .hero-card { min-height: 420px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); border-radius: 28px; }
  .cards, .steps ol { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; padding: 34px 24px; }
}

@media (max-width: 480px) {
  .brand img { width: 126px; height: 72px; }
  h1 { font-size: 2.75rem; }
  .hero-product { width: min(292px, 86vw); }
  .trust-strip { grid-template-columns: 1fr; }
}
