:root {
    --bg: #f7f6f2;
    --panel: #ffffff;
    --text: #151515;
    --muted: #6d6d6d;
    --accent: #f5c400;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: 'Manrope', sans-serif; color: var(--text); background: var(--bg); }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.nav, .footer-row, .cta, .hero-grid { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.header { padding: 22px 0; background: white; position: sticky; top: 0; z-index: 2; border-bottom: 1px solid rgba(0,0,0,0.06); }
.brand { font-weight: 800; font-size: 1.2rem; }
nav a, .footer a { color: var(--text); text-decoration: none; margin-left: 18px; }
.hero { padding: 76px 0; background: linear-gradient(180deg, #fff 0%, #f6f3ea 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; }
.tag { display: inline-flex; padding: 10px 14px; border-radius: 999px; background: rgba(245,196,0,0.16); color: #3a2d00; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.tag.dark { background: rgba(0,0,0,0.06); color: var(--text); }
h1 { font-size: clamp(2.8rem, 6vw, 4.8rem); line-height: 1.02; margin: 18px 0 16px; max-width: 11ch; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.08; margin: 14px 0 18px; max-width: 14ch; }
p { color: var(--muted); line-height: 1.8; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn { border: 0; text-decoration: none; border-radius: 999px; padding: 14px 22px; font-weight: 800; }
.btn-dark { background: #151515; color: white; }
.btn-soft { background: white; color: var(--text); box-shadow: 0 12px 26px rgba(0,0,0,.08); }
.hero-visual img, .product img { width: 100%; display: block; }
.hero-visual { background: white; border-radius: 32px; padding: 22px; box-shadow: 0 24px 50px rgba(0,0,0,0.08); }
.section { padding: 78px 0; }
.section-head { margin-bottom: 24px; }
.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.product { background: white; padding: 20px; border-radius: 28px; box-shadow: 0 18px 36px rgba(0,0,0,.07); }
.product h3 { margin: 16px 0 8px; }
.section-dark { background: #151515; color: white; }
.benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.benefits article { padding: 26px; border-radius: 24px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.benefits strong { font-size: 1.6rem; color: var(--accent); }
.benefits p { color: rgba(255,255,255,.72); }
.cta { background: white; padding: 34px; border-radius: 30px; box-shadow: 0 20px 42px rgba(0,0,0,.08); }
.newsletter { display: flex; gap: 14px; width: min(100%, 440px); }
.newsletter input { flex: 1; border: 1px solid rgba(0,0,0,.12); border-radius: 16px; min-height: 54px; padding: 12px 14px; font: inherit; }
.footer { padding: 26px 0; background: #fff; border-top: 1px solid rgba(0,0,0,.06); }
@media (max-width: 860px) {
  .hero-grid, .products, .benefits, .cta, .newsletter { grid-template-columns: 1fr; display: grid; }
  .nav, .footer-row { flex-direction: column; align-items: flex-start; }
  nav a { margin: 0 18px 0 0; }
}
