:root {
  --blue-900: #0a2746;
  --blue-700: #126fb2;
  --blue-500: #26c6da;
  --gray-100: #f6f8fb;
  --gray-300: #e6edf5;
  --gray-500: #97a4b8;
  --gray-700: #4f5d75;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--gray-100);
  color: var(--blue-900);
  line-height: 1.6;
}

.top-banner {
  width: 100%;
  background: var(--blue-900);
  box-shadow: 0 18px 30px rgba(6, 57, 112, 0.2);
}

.top-banner__image {
  width: 100%;
  height: auto;
  max-height: 320px;
  display: block;
  object-fit: contain;
  object-position: center;
}

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

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 20px 72px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 30px rgba(6, 57, 112, 0.08);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.site-header__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-header__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--blue-500);
  background: rgba(18, 111, 178, 0.08);
  color: var(--blue-900);
  font-weight: 600;
  transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header__links a:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(6, 57, 112, 0.12);
  background: rgba(18, 111, 178, 0.16);
}

.title-hero {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(6, 57, 112, 0.08);
}

.title-hero__brand {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  justify-content: center;
}

.logo__image {
  height: 120px;
  width: 120px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(6, 57, 112, 0.12);
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  box-shadow: 0 12px 25px rgba(18, 111, 178, 0.25);
}

.btn.secondary {
  background: var(--white);
  color: var(--blue-700);
  border-color: var(--blue-500);
}

.btn.ghost {
  background: rgba(18, 111, 178, 0.1);
  color: var(--blue-900);
}

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

main {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: center;
}

.hero__content h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  margin: 8px 0 12px;
}

.subtitle {
  color: var(--gray-700);
  margin: 0 0 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-700);
  font-weight: 700;
  font-size: 12px;
  margin: 0 0 8px;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.highlight-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(6, 57, 112, 0.05);
}

.highlight-card h3 {
  margin: 0 0 4px;
}

.icon {
  font-size: 22px;
}

.hero__panel .panel {
  background: linear-gradient(150deg, rgba(18, 111, 178, 0.1), rgba(38, 198, 218, 0.2));
  border: 1px solid rgba(18, 111, 178, 0.2);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 15px 35px rgba(6, 57, 112, 0.12);
}

.hero__panel h2 {
  margin: 0 0 10px;
}

.hero__panel ul {
  padding-left: 20px;
  margin: 0 0 16px;
  color: var(--gray-700);
}

.stat {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--blue-900);
  font-weight: 700;
}

.section {
  background: var(--white);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(6, 57, 112, 0.07);
}

.section__heading h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 32px);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.card {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.card h3 {
  margin: 0;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--gray-700);
}

.card__icon {
  font-size: 24px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 6px;
}

.gallery::-webkit-scrollbar {
  width: 10px;
}

.gallery::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 999px;
}

.gallery::-webkit-scrollbar-thumb {
  background: rgba(18, 111, 178, 0.45);
  border-radius: 999px;
}

.gallery__item {
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  overflow: hidden;
  background: var(--gray-100);
  cursor: pointer;
}

.gallery__item:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
}

.gallery__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
}

.gallery__content {
  padding: 14px;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 18, 34, 0.84);
  display: grid;
  place-items: center;
  padding: 24px;
}

.gallery-modal__image {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  object-fit: contain;
  background: var(--white);
}

.gallery-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 32px;
  line-height: 1;
  display: grid;
  place-items: center;
  color: var(--blue-900);
  background: var(--white);
  cursor: pointer;
}

.cta-banner {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(18, 111, 178, 0.08), rgba(38, 198, 218, 0.16));
  border: 1px solid rgba(18, 111, 178, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reviews-embed {
  display: flex;
  justify-content: center;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: start;
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  font-weight: 600;
  color: var(--blue-900);
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--gray-300);
  margin-top: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form__note {
  margin: 0;
  color: var(--blue-700);
  font-weight: 600;
}

.form__note.error {
  color: #b42318;
}

.contact-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.contact-link {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--blue-500);
  color: var(--blue-700);
  font-weight: 700;
  background: rgba(18, 111, 178, 0.08);
}

.footer {
  margin-top: 60px;
  padding: 20px;
  border-top: 1px solid var(--gray-300);
  display: grid;
  gap: 8px;
  justify-items: start;
  color: var(--gray-700);
}

.footer__links {
  display: flex;
  gap: 12px;
}

.footer__note {
  font-size: 14px;
  margin: 0;
}

@media (max-width: 640px) {
  .nav {
    padding: 16px;
  }

  .nav-links {
    width: 100%;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery {
    max-height: 60vh;
  }
}
