@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── Variables ─────────────────────────────────────── */
:root {
  --red:    #c0392b;
  --red-h:  #a93226;
  --dark:   #1c2331;
  --dark2:  #2c3345;
  --gray:   #f5f6f7;
  --gray2:  #eaebec;
  --white:  #ffffff;
  --text:   #1a1a1a;
  --muted:  #6b7280;
  --border: #e2e6ea;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 6px 28px rgba(0,0,0,0.12);
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Layout ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section--gray { background: var(--gray); }

/* ─── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--red); color: var(--white);
  border-radius: 4px; font-size: 15px; font-weight: 600;
  transition: background .18s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { background: var(--red-h); }
.btn--sm { padding: 10px 20px; font-size: 15px; }
.btn--lg { padding: 16px 40px; font-size: 16px; }
.btn--outline {
  background: transparent; border: 2px solid var(--red);
  color: var(--red);
}
.btn--outline:hover { background: var(--red); color: #fff; }
.btn--ghost {
  background: transparent; border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--white { background: #fff; color: var(--red); }
.btn--white:hover { background: #f0f0f0; }

/* ─── Section headings ───────────────────────────────── */
.eyebrow {
  display: inline-block; font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--red); margin-bottom: 10px;
}
.section-title { font-size: 2rem; font-weight: 800; line-height: 1.2; margin-bottom: 14px; }
.section-desc  { font-size: 1rem; color: var(--muted); line-height: 1.65; max-width: 560px; }

/* ─── Header ─────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--red); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; }
.logo-name { font-size: 15px; font-weight: 800; color: var(--dark); letter-spacing: -.01em; }
.logo-sub  { font-size: 11px; color: var(--muted); margin-top: 1px; }

.nav { display: flex; align-items: center; gap: 24px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--text); transition: color .15s; }
.nav a:hover { color: var(--red); }

.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone { font-size: 16px; font-weight: 700; color: var(--dark); transition: color .15s; }
.header-phone:hover { color: var(--red); }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  position: relative; min-height: 540px;
  display: flex; align-items: center;
  background:
    linear-gradient(to right, rgba(14,20,34,.88) 58%, rgba(14,20,34,.45) 82%, rgba(14,20,34,.2) 100%),
    url('img/hero.jpg') center / cover no-repeat;
  background-color: var(--dark);
}
.hero-content { max-width: 740px; color: var(--white); padding: 72px 0; }
.hero-badge {
  display: inline-block; background: var(--red); color: #fff;
  font-size: 15px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 2px;
  margin-bottom: 20px;
}
.hero h1 { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: #f09090; }
.hero-sub { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.82); margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Features band ──────────────────────────────────── */
.features { background: var(--gray); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-item { padding: 28px 24px; border-right: 1px solid var(--border); }
.feature-item:last-child { border-right: none; }
.feature-icon  { font-size: 26px; margin-bottom: 10px; }
.feature-title { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.feature-desc  { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ─── About ──────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photo { position: relative; }
.about-photo-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--gray2); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
}
.about-photo img { width: 100%; border-radius: 4px; aspect-ratio: 4/3; object-fit: cover; background: var(--gray2); }

/* About visual card */
.about-visual {
  position: relative; width: 100%; aspect-ratio: 4/3;
  background: var(--dark); border-radius: 4px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-visual-bg {
  position: absolute; inset: 0;
  width: 110%; height: 110%; top: -5%; left: -5%;
  color: rgba(255,255,255,.04);
}
.about-visual-inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; padding: 32px;
  color: #fff;
}
.about-visual-icon {
  width: 56px; height: 56px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.about-visual-icon svg { width: 26px; height: 26px; }
.about-visual-name { font-size: 1.5rem; font-weight: 800; letter-spacing: -.01em; }
.about-visual-sub  { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 4px; text-transform: uppercase; letter-spacing: .08em; }
.about-visual-divider {
  width: 40px; height: 2px;
  background: var(--red); margin: 20px auto;
}
.about-visual-rows { display: flex; flex-direction: column; gap: 12px; width: 100%; }
.about-visual-row  { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.about-visual-val  { font-size: 1.05rem; font-weight: 800; color: #fff; white-space: nowrap; }
.about-visual-lbl  { font-size: 13px; color: rgba(255,255,255,.45); text-align: right; }
.about-stat {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--red); color: #fff;
  padding: 20px 24px; border-radius: 4px; text-align: center;
}
.about-stat-num   { font-size: 1.8rem; font-weight: 800; }
.about-stat-label { font-size: 15px; opacity: .85; margin-top: 2px; }
.about-text .section-title { margin-top: 10px; margin-bottom: 18px; }
.about-text p { color: var(--muted); line-height: 1.75; font-size: .95rem; margin-bottom: 16px; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 32px; }
.about-fact {
  padding: 16px 20px; border: 1px solid var(--border);
  border-radius: 4px; border-left: 4px solid var(--red);
}
.about-fact-num   { font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.about-fact-label { font-size: 15px; color: var(--muted); margin-top: 3px; }

/* ─── Services/Problems ──────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 6px;
  padding: 28px 24px; transition: box-shadow .2s, border-color .2s;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: #ccc; }
.service-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; background: var(--red); color: #fff;
  border-radius: 50%; font-size: 15px; font-weight: 700; margin-bottom: 14px;
}
.service-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.service-card p  { font-size: 15px; color: var(--muted); line-height: 1.6; }
.service-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px; font-size: 15px; font-weight: 600; color: var(--red);
}
.service-link:hover { text-decoration: underline; }

/* ─── Process ────────────────────────────────────────── */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 22px; left: 10%; right: 10%; height: 2px;
  background: var(--border);
}
.process-step { position: relative; padding: 0 20px; text-align: center; }
.step-num {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--red); color: #fff;
  border-radius: 50%; font-size: 16px; font-weight: 700;
  margin: 0 auto 18px; position: relative; z-index: 1;
}
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.step-text  { font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ─── Cases ──────────────────────────────────────────── */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 24px; border-top: 3px solid var(--red);
}
.case-type {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--red); margin-bottom: 10px;
}
.case-amount { font-size: 1.6rem; font-weight: 800; color: var(--dark); margin-bottom: 4px; }
.case-region { font-size: 15px; color: var(--muted); margin-bottom: 14px; }
.case-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 14px; }
.case-text    { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.case-result {
  display: inline-block; font-size: 15px; font-weight: 700;
  color: #1a6b38; background: #e8f5ed; padding: 4px 12px; border-radius: 20px;
}

/* ─── Team ───────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--white); border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.team-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--gray2); display: block; }
.team-photo-placeholder {
  width: 100%; aspect-ratio: 3/4; background: var(--gray2);
  display: flex; align-items: center; justify-content: center;
}
.team-photo-placeholder svg { width: 80px; height: 80px; opacity: .2; }
.team-body   { padding: 20px; }
.team-name   { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.team-role   { font-size: 15px; color: var(--red); font-weight: 600; margin-bottom: 10px; }
.team-list   { display: flex; flex-direction: column; gap: 6px; }
.team-list li {
  font-size: 15px; color: var(--muted); line-height: 1.5;
  padding-left: 14px; position: relative;
}
.team-list li::before { content: '—'; position: absolute; left: 0; color: var(--red); font-size: 11px; }
.team-quote {
  margin-top: 14px; padding: 12px 16px;
  background: var(--gray); border-left: 3px solid var(--red);
  font-size: 15px; font-style: italic; color: var(--muted); line-height: 1.5;
}

/* ─── Letters ────────────────────────────────────────── */
.letters-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.letter-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  cursor: pointer; transition: box-shadow .2s, border-color .2s;
}
.letter-card:hover { box-shadow: var(--shadow-lg); border-color: #bbb; }
.letter-card:hover .letter-preview-overlay { opacity: 1; }
.letter-preview {
  position: relative; background: var(--gray);
  border-bottom: 1px solid var(--border);
  height: 110px; display: flex; align-items: center; justify-content: center;
}
.letter-preview-doc {
  width: 60px; height: 76px; background: #fff;
  border: 1px solid #d0d5db; border-radius: 2px;
  box-shadow: 2px 3px 8px rgba(0,0,0,.1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; padding: 8px;
}
.letter-preview-doc .doc-line {
  display: block; height: 2px; width: 36px;
  background: var(--border); border-radius: 1px;
}
.letter-preview-doc .doc-line:first-child { width: 28px; }
.letter-preview-doc .doc-seal {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); opacity: .3;
}
.letter-preview-overlay {
  position: absolute; inset: 0;
  background: rgba(192,57,43,.88);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; font-size: 15px; font-weight: 600;
  gap: 6px; opacity: 0; transition: opacity .2s;
}
.letter-preview-overlay svg { width: 22px; height: 22px; }
.letter-body    { padding: 18px 20px 20px; }
.letter-company { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.letter-text    { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.letter-footer  {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid var(--border); padding-top: 12px;
  font-size: 15px; color: var(--muted);
}
.letter-stat {
  background: var(--red); border-radius: 6px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 24px; cursor: default;
  border: 1px solid transparent;
}
.letter-stat-num   { font-size: 2.2rem; font-weight: 800; color: #fff; }
.letter-stat-label { font-size: 15px; color: rgba(255,255,255,.8); margin-top: 4px; line-height: 1.5; }

/* ─── CTA banner ─────────────────────────────────────── */
.cta-banner { background: var(--dark); color: var(--white); padding: 56px 0; text-align: center; }
.cta-banner h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 12px; }
.cta-banner p  { font-size: 1rem; color: rgba(255,255,255,.7); margin-bottom: 32px; }
.cta-actions   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 20px 0; font-size: 15px; font-weight: 600;
  color: var(--text); text-align: left; gap: 16px; cursor: pointer;
}
.faq-btn:hover { color: var(--red); }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--gray2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--red); font-weight: 700;
  transition: transform .2s, background .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); color: #fff; }
.faq-answer {
  display: none; padding: 0 0 20px;
  font-size: 15px; color: var(--muted); line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ─── Contact section ────────────────────────────────── */
.contact-section { background: var(--dark); color: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; padding: 72px 0;
}
.contact-info .eyebrow   { color: rgba(255,255,255,.5); }
.contact-info .section-title { color: var(--white); }
.contact-sub  { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; margin: 16px 0 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item { display: flex; flex-direction: column; gap: 3px; }
.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); }
.contact-value { font-size: 15px; color: rgba(255,255,255,.85); }
.contact-value a { color: rgba(255,255,255,.85); }
.contact-value a:hover { color: #fff; }

/* ─── Form ───────────────────────────────────────────── */
.form-wrap { background: var(--white); border-radius: 8px; padding: 36px; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 4px;
  font-family: inherit; font-size: 15px; color: var(--text);
  transition: border-color .15s; background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 80px; }
.field-error { display: block; font-size: 15px; color: var(--red); margin-top: 5px; }
.form-consent { font-size: 15px; color: var(--muted); margin-bottom: 18px; line-height: 1.5; }
.form-consent a { color: var(--red); }

/* ─── Footer ─────────────────────────────────────────── */
.footer { background: #111620; color: rgba(255,255,255,.55); }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding: 52px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo-name  { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.footer-logo-sub   { font-size: 12px; color: rgba(255,255,255,.35); margin-bottom: 16px; }
.footer-desc       { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.4); }
.footer-col-title  { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.footer-links      { display: flex; flex-direction: column; gap: 10px; }
.footer-links a    { font-size: 15px; color: rgba(255,255,255,.45); transition: color .15s; }
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-phone  { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer-hours  { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.7; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 12px; color: rgba(255,255,255,.3);
  flex-wrap: wrap; gap: 8px;
}

/* ─── Org form section (after footer) ───────────────── */
.org-form-section { background: #f0f1f2; padding: 32px 0; }
.org-form-wrap {
  max-width: 860px; margin: 0 auto;
  background: #f0f1f2; border-radius: 4px;
  box-shadow: none; padding: 0 24px;
}
.org-form-wrap h2 { font-size: 1rem; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.org-form-sub { color: #9ca3af; font-size: 13px; margin-bottom: 20px; }
.req { color: var(--muted); }

.org-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.org-form-group { display: flex; flex-direction: column; gap: 4px; }
.org-form-group--full { grid-column: 1 / -1; }
.org-form-group label { font-size: 13px; font-weight: 500; color: #9ca3af; }
.org-form-group input,
.org-form-group textarea {
  padding: 8px 10px; border: 1px solid #d1d5db;
  border-radius: 4px; font-family: inherit; font-size: 13px;
  color: var(--text); transition: border-color .2s; background: #fafafa;
}
.org-form-group input:focus { outline: none; border-color: #9ca3af; }
.org-form-group input.valid { border-color: #9ca; }
.org-form-group input.error { border-color: #e88; }

.org-phone-wrap {
  display: flex; align-items: center;
  border: 1px solid #d1d5db; border-radius: 4px; overflow: hidden;
  transition: border-color .2s;
}
.org-phone-wrap:focus-within { border-color: #9ca3af; }
.org-phone-wrap.valid { border-color: #9ca; }
.org-phone-wrap.error { border-color: #e88; }
.org-phone-flag {
  display: flex; align-items: center; gap: 4px;
  padding: 0 8px; font-size: 13px; color: #9ca3af;
  border-right: 1px solid #d1d5db; height: 34px; flex-shrink: 0;
}
.org-phone-wrap input { border: none !important; border-radius: 0 !important; flex: 1; }
.org-phone-wrap input:focus { border: none !important; outline: none; }

.upload-label { display: block; cursor: pointer; }
.upload-label > span { font-size: 13px; font-weight: 500; color: #9ca3af; display: block; margin-bottom: 6px; }
.upload-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #e5e7eb; color: #6b7280;
  padding: 7px 16px; border-radius: 4px;
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: background .2s;
}
.upload-btn:hover { background: #d1d5db; }
.upload-btn input[type="file"] { display: none; }
.upload-name { font-size: 12px; color: #9ca3af; margin-top: 4px; }

.org-form-submit { text-align: left; margin-top: 20px; }
.btn--org-submit {
  background: #6b7280; color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 10px 28px; border-radius: 4px; border: none;
  cursor: pointer; transition: background .2s;
  font-family: inherit;
}
.btn--org-submit:hover { background: #4b5563; }

.org-form-success {
  display: none; text-align: center; padding: 40px 20px;
}
.org-form-success__icon { font-size: 3.5rem; margin-bottom: 16px; }
.org-form-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.org-form-success p  { color: var(--muted); }

@media (max-width: 768px) {
  .org-form-wrap { padding: 32px 20px; }
  .org-form-grid { grid-template-columns: 1fr; }
}

/* ─── Myths ──────────────────────────────────────────── */
.myths-list { display: flex; flex-direction: column; gap: 10px; }
.myth-item { display: grid; grid-template-columns: 1fr 1fr; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.myth-col { padding: 22px 28px; }
.myth-col--bad  { background: #fef2f2; border-right: 1px solid #fecaca; }
.myth-col--good { background: #f0fdf4; }
.myth-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.myth-col--bad  .myth-tag { color: #dc2626; }
.myth-col--good .myth-tag { color: #16a34a; }
.myth-col--bad  p { font-size: 15px; color: #7f1d1d; line-height: 1.6; }
.myth-col--good p { font-size: 15px; color: #14532d; line-height: 1.6; }
@media (max-width: 640px) { .myth-item { grid-template-columns: 1fr; } .myth-col--bad { border-right: none; border-bottom: 1px solid #fecaca; } }

/* ─── Guarantees ─────────────────────────────────────── */
.guarantees-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.guarantee-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 32px; border-top: 4px solid var(--red); }
.guarantee-icon { width: 48px; height: 48px; background: #fef2f2; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.guarantee-icon svg { width: 24px; height: 24px; color: var(--red); }
.guarantee-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.guarantee-card p  { font-size: 15px; color: var(--muted); line-height: 1.65; }
@media (max-width: 640px) { .guarantees-grid { grid-template-columns: 1fr; } }

/* ─── Feed ───────────────────────────────────────────── */
.feed-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.feed-item {
  display: grid; grid-template-columns: 64px 1fr auto auto;
  align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: 4px;
}
.feed-date   { font-size: 12px; color: var(--muted); white-space: nowrap; }
.feed-region { font-size: 15px; font-weight: 500; }
.feed-amount { font-size: 15px; font-weight: 700; color: var(--dark); white-space: nowrap; }
.feed-result { font-size: 13px; font-weight: 600; color: #16a34a; white-space: nowrap; }
@media (max-width: 768px) {
  .feed-grid { grid-template-columns: 1fr; }
  .feed-item {
    grid-template-columns: 62px 1fr auto;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 2px 16px;
    padding: 10px 14px;
  }
  .feed-date   { grid-column: 1; grid-row: 1; padding-top: 2px; }
  .feed-region { grid-column: 2 / span 2; grid-row: 1; }
  .feed-amount { grid-column: 2; grid-row: 2; font-size: 13px; }
  .feed-result { grid-column: 3; grid-row: 2; font-size: 12px; }
}

/* ─── Coverage ───────────────────────────────────────── */
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.coverage-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 20px; text-align: center; }
.coverage-num     { font-size: 1.9rem; font-weight: 800; color: var(--red); line-height: 1; }
.coverage-fo      { font-size: 14px; font-weight: 700; color: var(--dark); margin: 8px 0 6px; line-height: 1.3; }
.coverage-regions { font-size: 12px; color: var(--muted); line-height: 1.55; }
@media (max-width: 1024px) { .coverage-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .coverage-grid { grid-template-columns: 1fr; } }

/* ─── Legal basis ────────────────────────────────────── */
.legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.legal-card { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 22px; border-left: 4px solid var(--red); }
.legal-num   { font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.legal-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.legal-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; }
@media (max-width: 1024px) { .legal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .legal-grid { grid-template-columns: 1fr; } }

/* ─── Modal ──────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.55); backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white); border-radius: 8px; padding: 40px;
  width: 100%; max-width: 440px; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.3); margin: 16px;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gray); font-size: 18px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.modal-close:hover { background: var(--gray2); }
.modal-title { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.modal-sub   { font-size: 15px; color: var(--muted); margin-bottom: 24px; }

/* ─── Lightbox ───────────────────────────────────────── */
.lb-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.85); backdrop-filter: blur(6px);
  align-items: center; justify-content: center;
}
.lb-overlay.active { display: flex; }
.lb-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lb-close {
  position: absolute; top: -40px; right: 0;
  font-size: 24px; color: #fff; cursor: pointer;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
}
#lbContent img { max-height: 88vh; border-radius: 4px; }

/* ─── Mobile ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stat { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section-title { font-size: 1.6rem; }
  .hero { min-height: 480px; }
  .hero h1 { font-size: 2rem; }
  .hero-content { padding: 56px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr; }
  .cases-grid    { grid-template-columns: 1fr; }
  .letters-grid  { grid-template-columns: 1fr; }
  .team-grid     { grid-template-columns: 1fr; }
  .contact-grid  { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
  .footer-inner  { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cta-banner h2 { font-size: 1.4rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.75rem; }
  .header-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    padding: 9px 14px;
    border-radius: 8px;
    white-space: nowrap;
  }
  .header-phone:hover { color: #fff; opacity: .9; }
  .header-right .btn--sm { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .about-facts  { grid-template-columns: 1fr; }
}

/* ─── Quiz desktop-only sections ───────────────────── */
.mq-desktop { display: block; }
@media (max-width: 768px) { .mq-desktop { display: none; } }
