:root {
  --brand-blue: #243f95;
  --brand-yellow: #f3dd3f;
  --text-dark: #132039;
  --bg-light: #f7f8fc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(19, 32, 57, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #e8eaf4;
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-top {
  font-size: 0.78rem;
  letter-spacing: 0.22rem;
  font-weight: 800;
  color: var(--brand-blue);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
  font-style: italic;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a {
  font-weight: 600;
  font-size: 0.94rem;
}

.nav a:hover {
  color: var(--brand-blue);
}

.menu-btn {
  display: none;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  background: var(--brand-yellow);
  color: #212121;
}

.hero {
  background: linear-gradient(130deg, #fffce9 0%, #f4f7ff 65%, #ffffff 100%);
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
}

.pill {
  display: inline-block;
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
  background: var(--brand-yellow);
  color: #222;
  border-radius: 999px;
  padding: 8px 12px;
}

h1 {
  font-size: clamp(1.8rem, 2.7vw, 3rem);
  line-height: 1.14;
  margin: 0 0 12px;
}

.hero-copy p {
  margin: 0;
  line-height: 1.65;
  font-size: 1.02rem;
  max-width: 58ch;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border-radius: 12px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand-blue);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(36, 63, 149, 0.26);
}

.btn-outline {
  border: 1px solid #ccd6f7;
  background: var(--white);
}

.hero-card {
  background: var(--white);
  border: 1px solid #e9edf9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.hero-card li {
  background: #f5f8ff;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--bg-light);
}

h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.section-subtitle {
  margin: 12px 0 0;
  color: #465066;
  line-height: 1.6;
}

.cards-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: var(--white);
  border: 1px solid #e5eaf7;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card h3 {
  margin: 0 0 8px;
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  line-height: 1.58;
}

.branches {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.branch {
  background: var(--white);
  border: 1px solid #d8e0fb;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  color: var(--brand-blue);
}

.promotions-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  background: #f1f1f3;
  border-top: 1px solid #e3e6ef;
  padding: 22px 0;
}

.footer-info {
  display: grid;
  grid-template-columns: 1.1fr 2.2fr 1.2fr 1fr 1.7fr 1.5fr;
  gap: 16px;
  align-items: start;
  color: #4d5570;
}

.footer-info p {
  margin: 0;
  line-height: 1.25;
  font-size: 0.92rem;
}

.footer-info a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}

.footer-info a:hover {
  opacity: 0.85;
}

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

  .promotions-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    position: fixed;
    inset: 74px 0 auto;
    padding: 16px 4%;
    background: var(--white);
    border-bottom: 1px solid #eceffc;
    display: none;
    flex-direction: column;
    gap: 14px;
  }

  .nav.is-open {
    display: flex;
  }

  .menu-btn {
    display: inline-flex;
  }

  .footer-info {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
