:root {
  --primary: #951719;
  --primary-dark: #741113;
  --secondary: #263d72;
  --ink: #222831;
  --muted: #5f6875;
  --line: #e5e7eb;
  --soft: #f3f4f6;
  --white: #fff;
  --shadow: 0 18px 45px rgba(0, 0, 0, .18);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); line-height: 1.5; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand img { width: 170px; height: auto; }
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #2e3440;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a:hover { color: var(--primary); }
.mobile-toggle { display: none; margin-left: auto; border: 0; background: var(--primary); color: #fff; border-radius: 8px; padding: 10px 12px; }

.lang-select {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  background: #fff;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: scale(1.04); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px rgba(149, 23, 25, .24); }
.btn-secondary { background: var(--secondary); color: #fff; box-shadow: 0 10px 24px rgba(38, 61, 114, .22); }
.btn-light { background: #fff; color: var(--primary); }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: center / cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px 80px;
}
.hero.compact { min-height: 60vh; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .50);
}
.hero-inner { position: relative; z-index: 1; width: min(1040px, 100%); }
.hero h1, .hero h2 {
  margin: 0 0 30px;
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.17;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: none;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 2;
  width: 35px;
  height: 64px;
  border: 4px solid #fff;
  border-radius: 28px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-cue span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  animation: scrollDot 1.5s infinite;
}
@keyframes scrollDot { 0%,100% { transform: translateY(0); } 50% { transform: translateY(24px); } }

.section-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0;
}
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 72px;
}
.split img { border-radius: 24px; object-fit: cover; margin: 0 auto; }
.section-kicker { margin: 0 0 8px; color: var(--primary); font-weight: 800; text-align: center; text-transform: capitalize; }
.section-title {
  margin: 0 0 22px;
  color: var(--secondary);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  text-align: center;
}
.section-text { color: var(--muted); font-size: 16px; line-height: 1.8; margin: 0 0 14px; }
.big-text { max-width: 1000px; margin: 0 auto; text-align: center; color: var(--muted); font-size: 20px; line-height: 1.8; }

.contact-strip {
  background: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding: 42px 20px;
}
.contact-strip h2 { font-size: clamp(26px, 4vw, 38px); margin: 0; color: var(--ink); }
.contact-item { display: grid; gap: 10px; justify-items: center; font-weight: 800; font-size: 18px; }
.circle-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .10);
}

.cta-band {
  background: linear-gradient(90deg, var(--secondary), #6b7280);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
  margin-top: 36px;
}
.cta-band > * { padding: 34px 20px; display: grid; place-items: center; }
.cta-band strong { font-size: clamp(22px, 3vw, 32px); }
.cta-band span { font-size: 14px; display: block; font-weight: 500; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
}
.card h3 { margin: 12px 0; color: var(--secondary); font-size: 22px; }
.card p { color: var(--muted); margin: 0; line-height: 1.7; }
.card-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
  color: var(--secondary);
  font-size: 18px;
  line-height: 1.45;
  min-height: 158px;
  overflow-wrap: anywhere;
}
.step b { display: block; color: var(--primary); font-size: 30px; margin-bottom: 12px; line-height: 1; }

.faq-list {
  width: min(900px, 100%);
  margin: 34px auto 0;
  display: grid;
  gap: 10px;
}
details {
  border: 1px solid var(--primary);
  border-radius: 12px;
  background: #fff;
  padding: 0;
}
summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
  color: var(--secondary);
}
details p { padding: 0 20px 18px; margin: 0; color: var(--muted); line-height: 1.7; }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.feed-card {
  border-left: 5px solid var(--primary);
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}
.feed-card small { color: var(--primary); font-weight: 800; }
.feed-card h3 { margin: 8px 0; color: var(--secondary); font-size: 18px; }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.form-panel {
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: var(--shadow);
}
.form-panel label { display: grid; gap: 6px; font-weight: 800; color: var(--secondary); margin-bottom: 14px; }
.form-panel input, .form-panel textarea {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
}
.form-panel textarea { min-height: 120px; resize: vertical; }

.footer {
  background: #111827;
  color: #d1d5db;
  padding: 54px 0 24px;
}
.footer-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 30px;
}
.footer h3 { color: #fff; margin: 0 0 12px; }
.footer a { display: block; margin: 8px 0; color: #d1d5db; }
.footer a:hover { color: #fff; }
.copyright { width: min(1180px, calc(100% - 32px)); margin: 32px auto 0; border-top: 1px solid rgba(255,255,255,.16); padding-top: 18px; font-size: 13px; }

@media (max-width: 900px) {
  .mobile-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    margin: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .split, .contact-panel, .footer-grid { grid-template-columns: 1fr; }
  .cards, .feed-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(220px, 1fr)); }
}

@media (max-width: 620px) {
  .brand img { width: 138px; }
  .hero { min-height: 88vh; }
  .scroll-cue { display: none; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: auto; }
  .cta-band { grid-template-columns: 1fr; }
}
