:root {
  --navy: #07324f;
  --blue: #2b6d8d;
  --blue-soft: #e9f3f8;
  --text: #102033;
  --muted: #5e6b78;
  --white: #ffffff;
  --line: rgba(7, 50, 79, 0.16);
  --shadow: 0 24px 80px rgba(7, 50, 79, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(43, 109, 141, 0.22), transparent 34rem),
    linear-gradient(135deg, #f7fbfd 0%, #eef6fa 48%, #ffffff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 50, 79, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 50, 79, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 40px 0;
}

.hero-card {
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -210px;
  top: -210px;
  border-radius: 50%;
  background: rgba(43, 109, 141, 0.12);
  z-index: 0;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.status-pill {
  width: fit-content;
  margin-left: auto;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--navy);
  background: var(--blue-soft);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-header {
  display: flex;
  justify-content: center;
  margin: 18px 0 34px;
}

.logo {
  width: min(720px, 100%);
  height: auto;
  display: block;
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

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

.service-card {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-soft);
  font-size: 1.45rem;
}

.service-card h2 {
  margin: 20px 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.6fr 0.9fr;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue));
}

.contact-panel h2,
.contact-panel p {
  margin: 0;
}

.company-name {
  margin-top: 8px !important;
  font-weight: 800;
  letter-spacing: 0.04em;
}

address {
  font-style: normal;
  line-height: 1.7;
}

.phone-block a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.phone-block a:hover {
  text-decoration: underline;
}

@media (max-width: 850px) {
  .page-shell {
    width: min(100% - 20px, 760px);
    padding: 20px 0;
  }

  .hero-card {
    border-radius: 24px;
  }

  .status-pill {
    margin: 0 auto;
    text-align: center;
  }

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

  .contact-panel {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 22px 16px;
  }

  .brand-header {
    margin-bottom: 24px;
  }

  .lead {
    line-height: 1.62;
  }

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