@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --white:    #ffffff;
  --paper:    #f9f8f5;
  --cream:    #f1ede5;
  --sand:     #e4ddd2;
  --ink:      #18181b;
  --ink-2:    #3f3f46;
  --ink-3:    #71717a;
  --ink-4:    #a1a1aa;
  --green:    #1a5c3a;
  --green-2:  #1e7045;
  --green-3:  #22874f;
  --green-lt: #edf6f0;
  --green-md: #c6e8d3;
  --amber:    #92400e;
  --border:   #e4e0d8;
  --border-2: #cec9bf;
  --r-sm:     8px;
  --r-md:     12px;
  --r-lg:     18px;
  --r-xl:     26px;
  --sh-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --sh-md:    0 4px 16px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
  --sh-lg:    0 12px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
  --maxw:     1160px;
  --f-display:'Fraunces', Georgia, serif;
  --f-sans:   'Instrument Sans', system-ui, sans-serif;
  --ease:     cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green-2); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── TYPE ────────────────────────────────────────── */
h1,h2,h3 { font-family: var(--f-display); line-height: 1.12; letter-spacing: -.03em; color: var(--ink); }
h4,h5    { font-family: var(--f-sans); font-weight: 600; color: var(--ink); }
h1  { font-size: clamp(38px, 5.5vw, 62px); font-weight: 600; }
h2  { font-size: clamp(30px, 4vw, 46px); font-weight: 500; }
h3  { font-size: clamp(22px, 2.8vw, 30px); font-weight: 500; }
h4  { font-size: 17px; }
p   { color: var(--ink-2); font-size: 16px; line-height: 1.75; margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--ink-2); line-height: 1.65; }
.kicker { font-family: var(--f-sans); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-2); display: block; margin-bottom: 12px; }
.muted  { color: var(--ink-3); }
small   { font-size: 13px; }

/* ── LAYOUT ──────────────────────────────────────── */
.wrap     { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.sec      { padding: 96px 0; }
.sec-sm   { padding: 64px 0; }
.sec-lg   { padding: 120px 0; }
.bg-paper { background: var(--paper); }
.bg-cream { background: var(--cream); }
.bg-ink   { background: var(--ink); }
.center   { text-align: center; }

.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── HEADER ──────────────────────────────────────── */
.hdr {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
}
.hdr-in {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 70px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-box {
  width: 36px; height: 36px; background: var(--green); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
}
.logo-box svg { width: 20px; height: 20px; fill: none; stroke: white; stroke-width: 2.2; }
.logo-name { font-family: var(--f-sans); font-weight: 700; font-size: 16.5px; color: var(--ink); letter-spacing: -.4px; }
.logo:hover { text-decoration: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a { font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 7px 13px; border-radius: var(--r-sm); transition: all .15s; }
.nav a:hover { background: var(--paper); color: var(--ink); text-decoration: none; }
.nav a.active { color: var(--green-2); }
.nav .cta-btn {
  background: var(--green); color: white !important; padding: 9px 20px !important;
  border-radius: var(--r-sm) !important; font-weight: 600 !important; font-size: 14px !important;
  transition: all .15s var(--ease) !important;
}
.nav .cta-btn:hover { background: var(--green-2) !important; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,92,58,.35) !important; text-decoration: none !important; }

.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .2s; }
.mnav { display: none; border-top: 1px solid var(--border); background: white; padding: 16px 28px 20px; }
.mnav a { display: block; font-size: 15px; font-weight: 500; color: var(--ink-2); padding: 11px 0; border-bottom: 1px solid var(--border); }
.mnav a:last-child { border-bottom: none; }
.mnav .cta-btn { display: block; text-align: center; background: var(--green); color: white; border-radius: var(--r-sm); padding: 13px; margin-top: 14px; font-weight: 600; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-size: 15px; font-weight: 600;
  border-radius: var(--r-md); cursor: pointer; border: 2px solid transparent;
  text-decoration: none; transition: all .18s var(--ease); white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary   { background: var(--green); color: white; padding: 14px 28px; }
.btn-primary:hover { background: var(--green-2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,92,58,.3); color: white; }
.btn-outline   { background: white; color: var(--ink); border-color: var(--border-2); padding: 13px 26px; }
.btn-outline:hover { border-color: var(--green-2); color: var(--green-2); transform: translateY(-1px); }
.btn-ghost-green { background: var(--green-lt); color: var(--green); border-color: var(--green-md); padding: 13px 26px; }
.btn-ghost-green:hover { background: var(--green-md); transform: translateY(-1px); }
.btn-lg  { font-size: 17px; padding: 17px 34px; border-radius: var(--r-lg); }
.btn-sm  { font-size: 13.5px; padding: 9px 18px; }
.btn-full { width: 100%; justify-content: center; }

/* ── HERO ────────────────────────────────────────── */
.hero {
  background: var(--paper);
  background-image: radial-gradient(ellipse 60% 50% at 80% 30%, rgba(26,92,58,.06) 0%, transparent 70%),
                    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(26,92,58,.04) 0%, transparent 70%);
  padding: 88px 0 72px; overflow: hidden;
}
.hero-wrap { display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: center; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1px solid var(--green-md); color: var(--green);
  font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px;
  margin-bottom: 24px; box-shadow: var(--sh-sm);
}
.badge-dot { width: 7px; height: 7px; background: var(--green-3); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.8)} }

.hero h1 { margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--green-2); }
.hero .lead { margin-bottom: 34px; max-width: 510px; }
.hero-ctas  { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px 28px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--ink-3); font-weight: 500; }
.trust-chk  { width: 18px; height: 18px; background: var(--green-lt); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--green-2); font-size: 10px; font-weight: 800; flex-shrink: 0; }

/* hero visual */
.hero-card {
  background: white; border: 1px solid var(--border); border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); overflow: hidden; position: relative;
}
.hcard-bar { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.hcard-dots { display: flex; gap: 6px; }
.hcard-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hcard-dots .r{background:#ff5f57;} .hcard-dots .y{background:#febc2e;} .hcard-dots .g{background:#28c840;}
.hcard-url { font-family: monospace; font-size: 12px; color: var(--ink-4); background: var(--paper); padding: 4px 12px; border-radius: 6px; border: 1px solid var(--border); }
.hcard-body { padding: 20px 18px; }
.hcard-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.metric { background: var(--paper); border-radius: var(--r-md); padding: 14px; }
.metric .big { font-family: var(--f-display); font-size: 26px; color: var(--green); font-weight: 600; }
.metric .lbl { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.bar-row { margin-bottom: 10px; }
.bar-label { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); margin-bottom: 5px; }
.bar-label strong { color: var(--green); }
.bar-track { height: 6px; background: var(--cream); border-radius: 3px; overflow: hidden; }
.bar-fill  { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-3)); border-radius: 3px; }
.hcard-footer { padding: 14px 18px; border-top: 1px solid var(--border); background: var(--paper); display: flex; align-items: center; justify-content: space-between; }
.hcard-badge { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.badge-green { background: var(--green-lt); color: var(--green); border: 1px solid var(--green-md); }

/* ── PROOF STRIP ─────────────────────────────────── */
.proof-strip { background: white; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 0; }
.proof-inner { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.proof-item  { display: flex; align-items: center; gap: 10px; padding: 8px 36px; }
.proof-item + .proof-item { border-left: 1px solid var(--border); }
.proof-num   { font-family: var(--f-display); font-size: 26px; font-weight: 600; color: var(--ink); }
.proof-lbl   { font-size: 13px; color: var(--ink-3); }

/* ── SERVICE CARDS ───────────────────────────────── */
.pkg-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--r-xl);
  padding: 34px 30px; position: relative; overflow: hidden;
  transition: all .22s var(--ease);
}
.pkg-card:hover { border-color: var(--green-md); box-shadow: var(--sh-md); transform: translateY(-4px); }
.pkg-card.featured { border-color: var(--green); box-shadow: 0 0 0 3px var(--green-lt); }
.pkg-top { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green); background: var(--green-lt); border: 1px solid var(--green-md); padding: 4px 12px; border-radius: 999px; position: absolute; top: 20px; right: 20px; }
.pkg-icon { width: 46px; height: 46px; background: var(--green-lt); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.pkg-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 2; }
.pkg-card h3 { font-family: var(--f-sans); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pkg-card > p { font-size: 14.5px; margin-bottom: 18px; }
.pkg-price { font-family: var(--f-display); font-size: 38px; color: var(--green); font-weight: 600; margin-bottom: 4px; }
.pkg-price small { font-family: var(--f-sans); font-size: 15px; color: var(--ink-3); font-weight: 400; }
.pkg-del  { font-size: 13px; color: var(--ink-3); margin-bottom: 20px; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.pkg-list li { font-size: 14px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 9px; }
.pkg-list li::before { content: '✓'; color: var(--green-2); font-weight: 800; font-size: 12px; flex-shrink: 0; margin-top: 3px; }

/* add-on cards */
.addon { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; text-align: center; transition: all .18s; }
.addon:hover { border-color: var(--green-md); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.addon-icon { font-size: 28px; margin-bottom: 10px; }
.addon h4   { font-size: 15px; margin-bottom: 6px; }
.addon p    { font-size: 13px; margin-bottom: 10px; }
.addon-price { font-family: var(--f-display); font-size: 22px; color: var(--green); font-weight: 600; }

/* ── PROCESS ─────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 0; }
.step  { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding-bottom: 40px; position: relative; }
.step:last-child { padding-bottom: 0; }
.step::before { content: ''; position: absolute; left: 29px; top: 60px; bottom: 0; width: 2px; background: var(--border); }
.step:last-child::before { display: none; }
.step-n { width: 60px; height: 60px; border-radius: 50%; background: var(--green); color: white; display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 24px; font-weight: 500; flex-shrink: 0; z-index: 1; }
.step-b { padding-top: 12px; }
.step-b h4 { margin-bottom: 6px; }

/* ── TESTIMONIALS ────────────────────────────────── */
.tcard { background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px; transition: var(--sh-sm); }
.tcard:hover { box-shadow: var(--sh-md); }
.stars { color: #f59e0b; font-size: 16px; margin-bottom: 16px; letter-spacing: 1px; }
.tcard blockquote { font-size: 15.5px; color: var(--ink-2); font-style: italic; line-height: 1.75; margin-bottom: 22px; font-family: var(--f-display); font-weight: 300; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.av { width: 42px; height: 42px; border-radius: 50%; background: var(--green-lt); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px; color: var(--green); flex-shrink: 0; border: 2px solid var(--green-md); }
.av-name { font-size: 14px; font-weight: 700; }
.av-role { font-size: 12.5px; color: var(--ink-3); }

/* ── CONSULTATION ────────────────────────────────── */
.cs-card { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px; transition: .18s; }
.cs-card:hover { border-color: var(--green-md); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.cs-icon { font-size: 30px; margin-bottom: 12px; }
.cs-card h4 { margin-bottom: 6px; }
.cs-card p  { font-size: 13.5px; }

/* ── FAQ ─────────────────────────────────────────── */
.faq-wrap { max-width: 680px; }
.faq-q { width: 100%; background: none; border: none; border-bottom: 1px solid var(--border); text-align: left; padding: 20px 0; font-family: var(--f-sans); font-size: 16px; font-weight: 600; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .ico { width: 28px; height: 28px; background: var(--paper); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--ink-3); flex-shrink: 0; transition: .2s; }
.faq-q.open .ico { background: var(--green-lt); border-color: var(--green-md); color: var(--green); transform: rotate(45deg); }
.faq-a { display: none; padding: 4px 0 20px; color: var(--ink-2); font-size: 15px; line-height: 1.75; border-bottom: 1px solid var(--border); }
.faq-a.open { display: block; }

/* ── CONTACT FORM ────────────────────────────────── */
.form-card { background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 38px; box-shadow: var(--sh-md); }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
label .req { color: var(--green-2); }
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  font-family: var(--f-sans); font-size: 15px; color: var(--ink); background: white; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { border-color: var(--green-2); box-shadow: 0 0 0 3px rgba(30,112,69,.1); }
textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
::placeholder { color: var(--ink-4); }
.cb-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 6px; }
.cb-row input[type=checkbox] { width: auto; margin-top: 3px; flex-shrink: 0; accent-color: var(--green); }
.cb-row label { font-size: 13px; font-weight: 400; color: var(--ink-3); margin: 0; }
.form-note { font-size: 12px; color: var(--ink-4); margin-top: 6px; }
.success-box { background: var(--green-lt); border: 1px solid var(--green-md); border-radius: var(--r-md); padding: 20px; text-align: center; display: none; }
.success-box .ico { font-size: 32px; margin-bottom: 8px; }
.success-box h4 { color: var(--green); margin-bottom: 6px; }
.success-box p  { font-size: 14px; }

/* ── CONTACT INFO PANEL ──────────────────────────── */
.info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.info-icon { width: 44px; height: 44px; background: var(--green-lt); border: 1px solid var(--green-md); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }

/* ── CTA BANNER ──────────────────────────────────── */
.cta-band { background: var(--green); border-radius: var(--r-xl); padding: 64px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:''; position: absolute; top:-80px; right:-80px; width:260px; height:260px; background: rgba(255,255,255,.05); border-radius: 50%; }
.cta-band h2  { color: white; margin-bottom: 14px; }
.cta-band p   { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 32px; }
.btn-white    { background: white; color: var(--green) !important; }
.btn-white:hover { background: var(--paper) !important; }

/* ── FOOTER ──────────────────────────────────────── */
.ftr { background: var(--ink); color: rgba(255,255,255,.6); }
.ftr-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 60px 0 48px; }
.ftr-brand .ftr-desc { font-size: 14px; margin: 14px 0 22px; color: rgba(255,255,255,.5); max-width: 270px; }
.ftr-logo-name { color: white; }
.ftr-col h5 { font-family: var(--f-sans); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.ftr-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ftr-col ul li a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .15s; }
.ftr-col ul li a:hover { color: white; text-decoration: none; }
.ftr-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.ftr-legal a { color: rgba(255,255,255,.45); margin-left: 20px; }
.ftr-legal a:hover { color: white; }
.ftr-social { display: flex; gap: 10px; margin-top: 10px; }
.ftr-social a { width: 34px; height: 34px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,.5); transition: all .15s; }
.ftr-social a:hover { background: rgba(255,255,255,.12); color: white; text-decoration: none; }

/* ── COOKIE BANNER ───────────────────────────────── */
#cookie {
  position: fixed; z-index: 9999; bottom: 24px; left: 24px;
  max-width: 370px; background: white; border: 1px solid var(--border);
  border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  padding: 24px; display: none;
  animation: slideup .3s var(--ease);
}
#cookie.show { display: block; }
#cookie h4 { font-size: 15px; margin-bottom: 8px; }
#cookie p  { font-size: 13px; color: var(--ink-3); margin-bottom: 16px; }
.ck-btns { display: flex; gap: 10px; }
.ck-ok  { flex: 1; background: var(--green); color: white; border: none; padding: 10px; border-radius: var(--r-sm); font-family: var(--f-sans); font-size: 13.5px; font-weight: 700; cursor: pointer; }
.ck-ok:hover { background: var(--green-2); }
.ck-no  { background: none; border: 1px solid var(--border); color: var(--ink-3); padding: 10px 14px; border-radius: var(--r-sm); font-family: var(--f-sans); font-size: 13px; cursor: pointer; }
.ck-link { display: block; font-size: 12px; color: var(--ink-4); margin-top: 10px; }
.ck-link:hover { color: var(--green); }
@keyframes slideup { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* ── BACK TO TOP ─────────────────────────────────── */
#btt { position: fixed; bottom: 28px; right: 28px; z-index: 500; width: 44px; height: 44px; background: var(--green); color: white; border: none; border-radius: 50%; cursor: pointer; display: none; align-items: center; justify-content: center; font-size: 18px; box-shadow: var(--sh-md); transition: .15s; }
#btt.show { display: flex; }
#btt:hover { background: var(--green-2); transform: translateY(-2px); }

/* ── REVEAL ANIMATION ────────────────────────────── */
.fade { opacity: 0; transform: translateY(20px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.fade.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1040px) {
  .hero-wrap { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; }
  .ftr-main { grid-template-columns: 1fr 1fr; }
  .g4 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 820px) {
  .g2,.g3 { grid-template-columns: 1fr; }
  .nav { display: none; }
  .burger { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .ftr-main { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 44px 28px; }
  #cookie { left: 16px; right: 16px; max-width: none; bottom: 16px; }
}
@media (max-width: 580px) {
  .wrap { padding: 0 18px; }
  .sec { padding: 64px 0; }
  .g4 { grid-template-columns: 1fr; }
  .ftr-main { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
  .proof-item { padding: 8px 18px; }
  .proof-item + .proof-item { border-left: none; border-top: 1px solid var(--border); }
  .proof-inner { flex-direction: column; }
}
@media print { #cookie,#btt,.hdr { display: none; } }
