/* ========================================================================
   MASTERBIZ — design system
   Light, warm, retail/B2B
   ======================================================================== */
:root {
  --bg: #fafaf7;
  --bg-2: #ffffff;
  --bg-3: #f3f2ec;
  --line: #e5e3da;
  --line-2: #d6d2c4;
  --ink: #1a1a1a;
  --ink-mute: #5a5852;
  --ink-dim: #8a877e;
  --accent: #b8651c;
  --accent-2: #8a4a13;
  --accent-soft: #fbf2e7;
  --ok: #4a8b5a;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent); }
img, svg { display: block; max-width: 100%; }
button { background: none; border: none; color: inherit; cursor: pointer; font-family: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ========================================================================
   NAV
   ======================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: clamp(20px, 4vw, 40px);
  padding: 16px var(--pad-x);
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
}
.logo:hover { color: var(--accent); }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex; gap: 30px; margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { color: var(--ink-mute); }
.nav-links a:hover { color: var(--ink); }

.lang-switch {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px;
  border: 1px solid var(--line-2);
  padding: 6px 12px; border-radius: 999px;
  color: var(--ink-mute);
}
.lang-switch button { font-family: inherit; font-size: inherit; color: inherit; }
.lang-switch button.active { color: var(--accent); font-weight: 700; }
.lang-switch button:hover { color: var(--ink); }

.burger { display: none; flex-direction: column; gap: 4px; padding: 6px; }
.burger span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px;
  font-size: 14px; font-weight: 500;
  border-radius: var(--radius);
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}
.btn-ghost {
  border-color: var(--line-2);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--bg-2);
}
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
}
.btn-lg { padding: 16px 30px; font-size: 15px; }

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  padding: clamp(50px, 8vw, 90px) var(--pad-x) clamp(50px, 8vw, 90px);
  max-width: var(--maxw); margin: 0 auto;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 5px 13px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.hero-meta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ok);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-mute);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex; gap: clamp(20px, 4vw, 48px);
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 34px);
  color: var(--ink);
  line-height: 1.1;
}
.hero-stats small {
  font-size: 12px;
  color: var(--ink-dim);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-3);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(184, 101, 28, 0.08), transparent 60%),
    repeating-linear-gradient(45deg, transparent 0 24px, rgba(184, 101, 28, 0.04) 24px 25px);
}
.hero-visual-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 30px;
  text-align: center;
}
.hero-visual-content svg {
  width: 100px; height: 100px;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-visual-content h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.hero-visual-content p {
  font-size: 13px;
  color: var(--ink-mute);
  max-width: 260px;
}

/* ========================================================================
   SECTION HEAD
   ======================================================================== */
.section-head {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x) 40px;
}
.kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  max-width: 800px;
}
.section-head p {
  font-size: 16px;
  color: var(--ink-mute);
  max-width: 640px;
}

/* ========================================================================
   FEATURES (4 bar under hero)
   ======================================================================== */
.features {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x) clamp(40px, 6vw, 70px);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature {
  background: var(--bg-2);
  padding: 28px 24px;
}
.feature-ico {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 14px;
}
.feature-ico svg { width: 28px; height: 28px; }
.feature h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}

/* ========================================================================
   CATALOG (categories on homepage)
   ======================================================================== */
.catalog {
  padding: clamp(50px, 8vw, 90px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cat-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  display: block;
}
.cat-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(184, 101, 28, 0.08);
}
.cat-ico {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
}
.cat-ico svg { width: 26px; height: 26px; }
.cat-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.cat-card p {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.45;
}
.cat-count {
  display: block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ========================================================================
   PRODUCTS GRID (catalog page)
   ======================================================================== */
.cat-page-head {
  padding: clamp(40px, 6vw, 70px) var(--pad-x) clamp(30px, 4vw, 50px);
  max-width: var(--maxw); margin: 0 auto;
}
.breadcrumb {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb a:hover { color: var(--accent); }

.filter-bar {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x) 30px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.filter-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  border-radius: 999px;
  color: var(--ink-mute);
  transition: all .15s ease;
}
.filter-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.filter-btn.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.products {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x) clamp(50px, 8vw, 90px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.product:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.product-img {
  aspect-ratio: 4/3;
  background: var(--bg-3);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.product-img::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0 20px, rgba(184, 101, 28, 0.03) 20px 21px);
}
.product-img svg {
  width: 80px; height: 80px;
  color: var(--accent);
  opacity: 0.7;
  position: relative;
  z-index: 1;
}
.product-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}
.badge-in {
  background: var(--ok);
  color: #fff;
}
.badge-order {
  background: var(--bg-3);
  color: var(--ink-mute);
  border: 1px solid var(--line-2);
}
.product-info {
  padding: 20px 20px 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.product-cat {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
  margin-bottom: 16px;
  flex: 1;
}
.product-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
}
.product-order {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-order:hover { color: var(--accent-2); }

/* ========================================================================
   B2B / How it works
   ======================================================================== */
.b2b {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
}
.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.b2b-list {
  list-style: none;
  margin-top: 24px;
}
.b2b-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink);
}
.b2b-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.b2b-visual {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
}
.b2b-visual h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.b2b-segments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.b2b-seg {
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.b2b-seg-n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.b2b-seg h5 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 4px;
}
.b2b-seg p {
  font-size: 12px;
  color: var(--ink-mute);
  line-height: 1.4;
}

/* ========================================================================
   WHY (4 reasons)
   ======================================================================== */
.why {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) 0;
}
.why-grid {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.why-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.why-num {
  width: 56px; height: 56px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.why-item p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* ========================================================================
   ABOUT / VERIFY
   ======================================================================== */
.about {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: start;
}
.about-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.about-text p {
  color: var(--ink-mute);
  margin-bottom: 16px;
  font-size: 16px;
  max-width: 600px;
  line-height: 1.65;
}
.about-verify {
  margin-top: 26px;
  padding: 16px 20px;
  background: var(--accent-soft);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-size: 14px;
}
.about-verify a {
  color: var(--accent);
  font-weight: 600;
  margin-left: 6px;
  white-space: nowrap;
}
.about-verify a:hover { text-decoration: underline; }
.about-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.about-card dl { display: grid; gap: 16px; }
.about-card dt {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.about-card dd {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}
.about-card dd:last-child { border-bottom: 0; padding-bottom: 0; }

/* ========================================================================
   CTA BLOCK
   ======================================================================== */
.cta-block {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(60px, 8vw, 90px) var(--pad-x);
  text-align: center;
}
.cta-block h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 720px;
  margin: 0 auto 14px;
  color: #fff;
}
.cta-block p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-block .btn-accent {
  background: var(--accent);
  color: #fff;
}
.cta-block .btn-accent:hover {
  background: #fff;
  color: var(--ink);
}

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer {
  background: var(--bg-3);
  padding: 70px var(--pad-x) 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p {
  color: var(--ink-mute);
  font-size: 14px;
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.6;
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  margin-bottom: 18px;
}
.footer-col p,
.footer-col address {
  color: var(--ink-mute);
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-col p b {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}
.footer-col a:hover { color: var(--accent); }
.footer-links {
  list-style: none;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--ink-mute);
  font-size: 14px;
}
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px;
  color: var(--ink-dim);
}
.footer-mono {
  font-family: var(--font-mono);
  color: var(--accent);
  letter-spacing: 0.04em;
}

/* ========================================================================
   PAGE HERO (inner pages)
   ======================================================================== */
.page-hero {
  padding: clamp(50px, 7vw, 80px) var(--pad-x) clamp(30px, 5vw, 50px);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.page-hero-inner { max-width: var(--maxw); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 17px;
  color: var(--ink-mute);
  max-width: 700px;
  line-height: 1.6;
}

/* ========================================================================
   TEAM PAGE
   ======================================================================== */
.team-section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(50px, 8vw, 90px) var(--pad-x);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.team-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  transition: border-color .2s ease, transform .2s ease;
}
.team-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}
.team-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  margin-bottom: 4px;
  grid-column: 2 / 3;
}
.team-card .team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  grid-column: 2 / 3;
  text-transform: uppercase;
}
.team-card p {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
  grid-column: 2 / 3;
}

/* ========================================================================
   DELIVERY/PAYMENT/WARRANTY PAGE (info page)
   ======================================================================== */
.info-section {
  max-width: 900px; margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) var(--pad-x);
}
.info-block {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}
.info-block h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.info-block-num {
  width: 36px; height: 36px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
}
.info-block ul {
  list-style: none;
  padding-left: 0;
}
.info-block ul li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 15px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.info-block ul li:last-child { border-bottom: 0; }
.info-block ul li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--accent);
  font-weight: 700;
}
.info-block p {
  color: var(--ink-mute);
  font-size: 15px;
  line-height: 1.65;
}

/* ========================================================================
   CONTACT PAGE
   ======================================================================== */
.contact-page {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info-block {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact-info-block:last-child { border-bottom: 0; }
.contact-info-block h4 {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-info-block .big {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  display: block;
}
.contact-info-block .big:hover { color: var(--accent); }
.contact-info-block address {
  color: var(--ink-mute);
  font-style: normal;
  line-height: 1.65;
  font-size: 15px;
}
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  align-self: start;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-card p {
  color: var(--ink-mute);
  margin-bottom: 24px;
  font-size: 14px;
}
.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: border-color .2s ease;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-row textarea {
  resize: vertical;
  min-height: 100px;
}
.form-note {
  font-size: 11px;
  color: var(--ink-dim);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* ========================================================================
   LEGAL PAGES
   ======================================================================== */
.legal-page {
  max-width: 820px; margin: 0 auto;
  padding: clamp(40px, 6vw, 70px) var(--pad-x);
}
.legal-page h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.legal-page .updated {
  font-size: 13px;
  color: var(--ink-dim);
  margin-bottom: 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.6vw, 26px);
  margin-top: 40px;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.legal-page h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-page p {
  color: var(--ink-mute);
  margin-bottom: 14px;
  line-height: 1.65;
}
.legal-page ul, .legal-page ol {
  color: var(--ink-mute);
  margin: 10px 0 18px 24px;
  line-height: 1.7;
}
.legal-page li { margin-bottom: 6px; }
.legal-page strong { color: var(--ink); font-weight: 600; }
.legal-page a { color: var(--accent); }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { max-width: 480px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .b2b-grid { grid-template-columns: 1fr; gap: 30px; }
  .why-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-page { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg-2);
    padding: 22px var(--pad-x);
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .nav-links.open { display: flex; }
  .burger { display: flex; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .hero-stats > div { flex: 1 1 30%; }
  .features-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .b2b-segments { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .team-card { padding: 22px; grid-template-columns: 48px 1fr; gap: 16px; }
  .team-avatar { width: 48px; height: 48px; font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
