:root {
  --bg: #f4f6f7;
  --bg-soft: #e8eef0;
  --paper: #ffffff;
  --ink: #152026;
  --ink-2: #3a4a52;
  --muted: #66747c;
  --line: #d3dce0;
  --accent: #1e3d45;
  --accent-2: #2f5d68;
  --btn: #1b333a;
  --btn-hover: #122428;
  --shadow: 0 18px 50px rgba(20, 36, 42, 0.08);
  --radius: 22px;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(245,246,241,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; letter-spacing: -0.03em; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #8fbf7a, #2c4a36);
  display: grid; place-items: center; color: #fff;
}
.nav { display: flex; align-items: center; gap: 22px; color: var(--ink-2); font-weight: 600; font-size: 15px; }
.nav a:hover { color: var(--accent); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--btn); color: #fff; border: 0; border-radius: 999px;
  padding: 12px 20px; font-weight: 700; cursor: pointer;
  transition: .2s transform, .2s background;
}
.btn:hover { background: var(--btn-hover); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.cats { display: flex; gap: 8px; flex-wrap: wrap; padding: 10px 0 16px; }
.chip {
  border: 1px solid var(--line); background: #fff;
  border-radius: 999px; padding: 8px 14px; font-size: 13.5px; font-weight: 650; color: var(--ink-2);
}
.chip.active, .chip:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: center; padding: 36px 0 12px; }
.kicker { letter-spacing: .14em; text-transform: uppercase; font-size: 12px; font-weight: 700; color: var(--muted); }
h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.04em; font-weight: 800; }
h2 { font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.03em; }
.lead { color: var(--muted); font-size: 18px; margin: 18px 0 26px; max-width: 560px; }
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card-img { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); padding: 10px 10px 16px; }
.card-img img { height: 210px; width: 100%; object-fit: cover; border-radius: 16px; }
.card-img h3 { font-size: 16px; margin: 12px 8px 2px; }
.card-img p { color: var(--muted); font-size: 13px; margin: 0 8px; }
.badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 22px; color: var(--ink-2); font-size: 14px; font-weight: 600; }
.badges span::before { content: "●"; color: var(--accent-2); margin-right: 8px; font-size: 9px; }

.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 28px 0; }
.trust article { background: #fff; border-radius: 16px; padding: 16px 18px; box-shadow: var(--shadow); }
.trust h3 { font-size: 15px; margin-bottom: 4px; }
.trust p { color: var(--muted); font-size: 13.5px; }
.marquee { overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 12px 0; color: var(--muted); font-weight: 600; font-size: 13px; }

section { padding: 64px 0; }
.section-head { margin-bottom: 28px; }
.section-head p { color: var(--muted); margin-top: 8px; max-width: 640px; }
.stats { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 22px 0; }
.stat { background: var(--paper); border-radius: 18px; padding: 18px; box-shadow: 0 8px 24px rgba(28,40,28,.04); }
.stat b { display: block; font-size: 28px; letter-spacing: -0.03em; }
.stat span { color: var(--muted); font-size: 13px; }
.photo-frame { border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.photo-frame img { width: 100%; height: 420px; object-fit: cover; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.soft-card { background: var(--bg-soft); border-radius: 20px; padding: 22px; }
.soft-card h3 { font-size: 18px; margin-bottom: 8px; }
.soft-card p { color: var(--ink-2); font-size: 14.5px; }
.soft-card .ok { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line); color: var(--accent); font-size: 13px; font-weight: 700; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { background: #fff; border-radius: 20px; padding: 24px; box-shadow: var(--shadow); }
.num { font-size: 13px; font-weight: 800; color: var(--accent-2); letter-spacing: .08em; }

.depts { display: grid; gap: 16px; }
.dept { display: grid; grid-template-columns: 220px 1fr auto; gap: 20px; align-items: center; background: #fff; border-radius: 20px; padding: 16px; box-shadow: var(--shadow); }
.dept img { width: 220px; height: 140px; object-fit: cover; border-radius: 14px; }
.dept p { color: var(--muted); margin-top: 6px; }

.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.product { background: #fff; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.product img { height: 220px; width: 100%; object-fit: cover; }
.product .body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tag { font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-2); }
.price { display: flex; gap: 8px; align-items: baseline; font-weight: 800; }
.old { color: var(--muted); text-decoration: line-through; font-weight: 600; font-size: 14px; }
.product .btn { width: 100%; margin-top: auto; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-card { background: #fff; border-radius: 20px; padding: 22px; box-shadow: var(--shadow); }
.blog-card .meta { color: var(--muted); font-size: 13px; margin-bottom: 8px; }
.blog-card h3 { font-size: 18px; margin-bottom: 8px; }
.cta-band {
  background: var(--accent); color: #eef6ef; border-radius: 28px; padding: 36px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.cta-band h2 { color: #fff; font-size: 30px; }

footer { border-top: 1px solid var(--line); padding: 40px 0 28px; margin-top: 20px; color: var(--ink-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; }
footer h4 { margin-bottom: 12px; color: var(--ink); }
footer a { display: block; margin: 6px 0; color: var(--muted); }
footer a:hover { color: var(--accent); }
.copy { margin-top: 28px; color: var(--muted); font-size: 13px; }

.page-hero { padding: 48px 0 10px; }
.page-hero h1 { font-size: clamp(32px, 4vw, 48px); }
.prose { max-width: 760px; color: var(--ink-2); }
.prose p { margin: 14px 0; }
.prose h2 { margin: 28px 0 10px; color: var(--ink); }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.value { background: #fff; border-radius: 16px; padding: 18px; box-shadow: var(--shadow); }
.person {
  display: grid; grid-template-columns: 88px 1fr; gap: 16px; align-items: center;
  background: #fff; border-radius: 20px; padding: 18px; margin: 24px 0; box-shadow: var(--shadow);
}
.avatar { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg, #8fbf7a, #2c4a36); }
.contact-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; }
.info-list { display: grid; gap: 12px; }
.info { background: #fff; border-radius: 16px; padding: 16px 18px; }
.info b { display: block; margin-bottom: 4px; }
form { background: #fff; border-radius: 22px; padding: 24px; box-shadow: var(--shadow); display: grid; gap: 12px; }
label { font-size: 13px; font-weight: 700; color: var(--ink-2); }
input, textarea, select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fbfcf9;
}
textarea { min-height: 140px; resize: vertical; }
.notice { background: #fff7ea; border: 1px solid #ead9b8; color: #5c4520; padding: 12px 14px; border-radius: 12px; font-size: 14px; }

@media (max-width: 900px) {
  .hero, .stats, .contact-wrap, .footer-grid, .products, .grid-3, .steps, .blog-grid, .values, .trust, .dept {
    grid-template-columns: 1fr;
  }
  .hero-cards { grid-template-columns: 1fr; }
  .nav { display: none; }
  .photo-frame img { height: 260px; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .dept img { width: 100%; height: 180px; }
}
