:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #334155;
  --brand: #0b5ed7;
  --brand-dark: #0847a5;
  --line: #dbe4ef;
  --ok: #14532d;
  --danger: #991b1b;
}

* { box-sizing: border-box; }
html, body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #f8fafc 0%, #f4f7fb 55%, #f8fafc 100%);
  color: var(--text);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: var(--brand); transition: color .2s ease; }
a:hover { color: var(--brand-dark); }

.container { width: min(1120px, 100% - 32px); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: #fff;
  color: #000;
  padding: 10px;
  border: 2px solid #000;
}
.skip-link:focus { left: 8px; z-index: 1000; }

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, #fff 94%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 12px;
  position: relative;
}
.logo {
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(148,163,184,.28);
  backdrop-filter: blur(6px);
}
.logo img {
  height: 44px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 8px 18px rgba(15,23,42,.16));
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: #fff;
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: .2s ease;
}
.lang-btn.active,
.lang-btn:hover {
  background: #e7efff;
  color: var(--brand-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px 12px;
}

.btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: var(--brand);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11, 94, 215, .2);
  background: var(--brand-dark);
  color: #fff;
}
.btn-sm { padding: 9px 12px; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero { padding: 52px 0 30px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
  align-items: start;
}
.eyebrow { color: var(--muted); margin-bottom: 8px; }
h1 {
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.12;
  margin: 0 0 14px;
}
.lead { font-size: clamp(1rem, 2.4vw, 1.2rem); color: var(--muted); }
.micro-copy { margin-top: 8px; color: #475569; font-size: .94rem; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}
.hero-card ul {
  margin: 0;
  padding: 14px 20px 20px;
}
.hero-card li + li { margin-top: 10px; }

.section { padding: 56px 0; }
.section.alt { background: #eef4ff; }
h2 { font-size: clamp(1.4rem, 3.4vw, 2rem); margin: 0 0 16px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}
.card h3 { margin-top: 0; }

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .2s ease;
}
.benefit:hover { transform: translateY(-1px); }

.cta-box {
  background: linear-gradient(140deg, #0f172a, #1e3a8a);
  color: #f8fafc;
  border-radius: 18px;
  padding: 26px;
}
.cta-box p { color: #dbeafe; }
.cta-box .btn-ghost { color: #fff; border-color: #9db8ff; }

.map-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 18px;
  align-items: center;
}
.map-frame {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  min-height: 300px;
  background: linear-gradient(160deg, #f8fafc, #edf2ff);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.contact-list li + li { margin-top: 10px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid #b9c8db;
  border-radius: 10px;
  padding: 10px;
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:hover,
.contact-form textarea:hover { border-color: #7ba4e8; }
.contact-form input:focus,
.contact-form textarea:focus,
.nav-toggle:focus,
.btn:focus,
.lang-btn:focus,
a:focus {
  outline: 3px solid #8ab4ff;
  outline-offset: 2px;
}
.status { min-height: 1.4em; margin: 10px 0 0; color: var(--ok); }

.footer {
  border-top: 1px solid var(--line);
  padding: 18px 0 90px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,.12);
  display: none;
  grid-template-columns: repeat(4, 1fr);
  z-index: 50;
}
.sticky-cta a {
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 10px 6px;
  font-size: .84rem;
  font-weight: 700;
  border-right: 1px solid rgba(255,255,255,.12);
}
.sticky-cta a:last-child { border-right: 0; }
.sticky-cta a:hover,
.sticky-cta a:focus { background: #1e293b; color: #fff; }

.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .contact-grid,
  .cards,
  .map-grid { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .logo img { height: 38px; max-width: 200px; }
  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute;
    right: 16px;
    top: 70px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px;
    min-width: 230px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }
  .nav.open { display: flex; }
  .benefits { grid-template-columns: 1fr; }
  .actions .btn { width: 100%; text-align: center; }
  .sticky-cta { display: grid; }
}

@media (max-width: 420px) {
  .container { width: min(1120px, 100% - 20px); }
  .logo { font-size: 1.05rem; }
  .btn { padding: 11px 12px; font-size: 0.95rem; }
  .lang-btn { padding: 6px 8px; }
}


.chat-widget { position: fixed; right: 14px; bottom: 86px; z-index: 80; }
.chat-toggle {
  border: 0; border-radius: 999px; padding: 12px 16px; font-weight: 700; cursor: pointer;
  background: #0b5ed7; color: #fff; box-shadow: 0 10px 24px rgba(11,94,215,.28);
}
.chat-menu {
  margin-top: 10px; background: #fff; border: 1px solid #dbe4ef; border-radius: 12px;
  box-shadow: 0 12px 28px rgba(2,6,23,.12); overflow: hidden; min-width: 180px;
}
.chat-menu a { display: block; padding: 10px 12px; text-decoration: none; color: #0f172a; }
.chat-menu a:hover { background: #f1f5f9; }
@media (max-width: 760px) {
  .chat-widget { right: 10px; bottom: 120px; }
  .chat-toggle { padding: 11px 14px; font-size: .95rem; }
}


.brand-link { display: inline-flex; align-items: center; gap: 8px; }
.brand-link img { width: 18px; height: 18px; object-fit: contain; }
