:root{
  --base:#F5EFE8; --baseSoft:#FBF7F2; --text:#2B2B2B; --accent:#E4A853; --accent2:#2E7D32; --accentWarn:#E0564A;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Ubuntu,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,var(--baseSoft),var(--base));
}
.container{max-width:1120px;margin:0 auto;padding:0 16px}
.header{background:rgba(255,255,255,.85);border-bottom:1px solid rgba(0,0,0,.06);position:sticky;top:0;z-index:20;backdrop-filter:saturate(180%) blur(8px)}
.header .row{display:flex;gap:12px;flex-wrap:wrap;align-items:center;justify-content:center;padding:12px 0}
.logo-wrap{
  display:flex;align-items:center;gap:12px;min-height:52px;
  background:#fff;border:1px solid rgba(0,0,0,.06);padding:8px 12px;border-radius:16px;
  box-shadow:0 6px 22px rgba(0,0,0,.06);
}
.logo{height:48px;width:auto;object-fit:contain;border-radius:10px;filter:drop-shadow(0 2px 8px rgba(0,0,0,.08))}
.brand-sub{font-size:14px;opacity:.8}
.nav{display:flex;gap:18px;font-size:14px;flex-wrap:wrap;width:100%;justify-content:center}
.nav a{color:inherit;text-decoration:none}
.nav a:hover{text-decoration:underline}
.controls{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;width:100%}
@media(min-width:900px){
  .header .row{justify-content:space-between}
  .nav{width:auto;justify-content:flex-start}
  .controls{width:auto;justify-content:flex-end}
}

.section{padding:clamp(28px,6vw,60px) 0}
.alt{background:rgba(255,255,255,.65)}
.h1{font-size:clamp(28px,4.5vw,44px);line-height:1.15;margin:0}
.h2{font-size:clamp(22px,3.2vw,30px);margin:0 0 16px;font-weight:700}
.lead{font-size:18px;opacity:.9;margin-top:12px}

.btn{appearance:none;border:0;padding:10px 16px;border-radius:999px;font-weight:600;display:inline-flex;align-items:center;gap:8px;text-decoration:none;transition:transform .2s ease, box-shadow .2s ease}
.btn:active{transform:translateY(1px)}
.btn:hover{box-shadow:0 6px 16px rgba(0,0,0,.08)}
.btn-primary{background:var(--accent2);color:#fff}
.btn-ghost{background:#fff;border:1px solid rgba(0,0,0,.15);color:var(--text)}
.btn-warn{background:var(--accentWarn);color:#fff}

.lang-btn{appearance:none;border:1px solid rgba(0,0,0,.12);background:#fff;color:var(--text);padding:8px 12px;border-radius:999px;font-weight:600;cursor:pointer;display:inline-flex;align-items:center;gap:8px}
.lang-btn img{height:16px;width:auto}

.grid{display:grid;gap:20px}
.grid-2{grid-template-columns:1fr}
.grid-3{grid-template-columns:1fr}
@media(min-width:680px){ .grid-2{grid-template-columns:1fr 1fr} }
@media(min-width:768px){ .grid-3{grid-template-columns:repeat(3,1fr)} }

.card{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:16px;box-shadow:0 2px 12px rgba(0,0,0,.04);padding:22px;opacity:0;transform:translateY(14px);transition:opacity .6s ease, transform .6s ease}
.card.in{opacity:1;transform:none}
.title{font-weight:700;margin-bottom:6px}
.badge{display:inline-block;font-size:12px;background:#FBF7F2;padding:4px 8px;border-radius:999px;margin-top:8px}
.small{font-size:14px;opacity:.85}
.input,.textarea{width:100%;padding:12px;border:1px solid rgba(0,0,0,.2);border-radius:8px;font:inherit;transition:border-color .2s ease, box-shadow .2s ease}
.input:focus,.textarea:focus{outline:none;border-color:var(--accent2);box-shadow:0 0 0 3px rgba(46,125,50,.15)}
.textarea{min-height:110px;resize:vertical}

.footer{padding:20px 0;border-top:1px solid rgba(0,0,0,.06);background:rgba(255,255,255,.7)}
.footer .row{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;align-items:center}

.hero-cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}
@media(min-width:1200px){ .logo{height:60px} }

@media (prefers-reduced-motion: reduce){
  .card{transition:none}
  .btn{transition:none}
}