:root {
  --bg-page: #f5f7fb;
  --bg-white: #ffffff;
  --bg-soft: #eaf1fb;
  --bg-soft-2: #dfe8f5;
  --text-main: #1c2e45;
  --text-muted: #68778f;
  --text-white: #ffffff;
  --line: #d7e0ec;
  --blue: #2264c7;
  --blue-dark: #184d9c;
  --hero-overlay: rgba(11, 24, 45, 0.66);
  --shadow-sm: 0 8px 24px rgba(13, 28, 55, 0.06);
  --shadow-md: 0 12px 40px rgba(13, 28, 55, 0.08);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 30px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--bg-page);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 46, 69, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand img {
  width: 160px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  margin: 5px 0;
  border-radius: 999px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
}

.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 14px;
}

.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(18, 37, 68, 0.92) 0%,
    rgba(18, 37, 68, 0.76) 38%,
    rgba(18, 37, 68, 0.58) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-block: 140px 80px;
}

.hero-content {
  max-width: 640px;
  color: var(--text-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 0.96rem;
  margin-bottom: 28px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: #65a2ff;
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 620px;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: 180ms ease;
}

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

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-main);
  border-radius: 16px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-meta-item span {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 4px;
}

.hero-meta-item strong,
.hero-meta-item a {
  color: #fff;
  text-decoration: none;
}

.info-strip {
  background: #edf2f8;
  border-top: 1px solid #dde6f1;
  border-bottom: 1px solid #dde6f1;
}

.info-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 92px;
}

.info-strip p {
  margin: 0;
  color: var(--text-muted);
}

.info-strip strong {
  color: var(--blue-dark);
}

.info-strip a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.section {
  padding: 110px 0;
}

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

.section-white {
  background: #fff;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

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

.section-intro h2,
.about-content h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.section-intro p,
.about-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-sm);
}

.service-card-featured {
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.1;
}

.service-card p {
  color: var(--text-muted);
  margin: 14px 0 18px;
}

.service-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.service-card li + li {
  margin-top: 8px;
}

.section-note {
  margin-top: 28px;
  padding: 22px 28px;
  background: #e9f0f9;
  border: 1px solid #d7e4f4;
  border-radius: 20px;
  text-align: center;
  color: var(--text-muted);
}

.section-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-image-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #dfe7f2;
}

.about-image-card img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.about-location-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.location-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
  color: var(--blue);
  flex-shrink: 0;
}

.about-location-card span {
  display: block;
  color: var(--text-muted);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.stat-card {
  padding: 24px 22px;
  background: #e9f0f9;
  border: 1px solid #d8e3f0;
  border-radius: 20px;
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--text-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.contact-panel h3 {
  margin: 0 0 20px;
  font-size: 1.8rem;
}

.contact-box {
  padding: 18px 18px 16px;
  background: #edf3fb;
  border-radius: 18px;
}

.contact-box + .contact-box {
  margin-top: 14px;
}

.contact-box-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.contact-box strong a,
.contact-box strong {
  text-decoration: none;
  color: var(--text-main);
}

.contact-box small {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
}

.contact-panel .btn-outline {
  margin-top: 18px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  background: #edf3fb;
  border-radius: 18px;
  color: var(--text-muted);
}

.hours-list li + li {
  margin-top: 12px;
}

.hours-list strong {
  color: var(--blue);
}

.contact-note {
  margin: 18px 0 0;
  padding: 18px 20px;
  background: #edf3fb;
  border-radius: 18px;
  color: var(--text-muted);
}

.site-footer {
  padding: 34px 0 44px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 4px 0 0;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
  color: var(--text-muted);
}

@media (max-width: 1080px) {
  .hero {
    min-height: 760px;
  }

  .hero-meta,
  .services-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-image-card img {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 138px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
  }

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

  .site-nav a {
    padding: 10px 0;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-block: 110px 56px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .info-strip-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 72px 0;
  }

  .section-intro h2,
  .about-content h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .services-grid,
  .stats-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 28px;
  }

  .contact-panel,
  .service-card {
    padding: 22px;
  }

  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}
