:root {
  --bg-a: #8cb5d4;
  --bg-b: #d8e8f4;
  --panel: #edf1f6;
  --card-soft: rgba(210, 225, 239, 0.6);
  --text: #081627;
  --muted: #25374d;
  --accent: #1f80c3;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #9fc2dc 0%, #c7dbeb 45%, #d7e7f4 100%);
}

.backdrop {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.12) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='220' viewBox='0 0 260 220'%3E%3Cg stroke='rgba(255,255,255,0.33)' stroke-width='2.2' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='translate(34 34) rotate(-16)'%3E%3Cpath d='M0 22L18 8L36 22'/%3E%3Crect x='4' y='22' width='28' height='20' rx='2'/%3E%3Cpath d='M16 42V30h4v12'/%3E%3C/g%3E%3Cg transform='translate(150 44) rotate(12)'%3E%3Cpath d='M0 18L15 6L30 18'/%3E%3Crect x='3' y='18' width='24' height='18' rx='2'/%3E%3Cpath d='M13 36V27h4v9'/%3E%3C/g%3E%3Cg transform='translate(98 136) rotate(-9)'%3E%3Cpath d='M0 20L16 7L32 20'/%3E%3Crect x='4' y='20' width='25' height='18' rx='2'/%3E%3Cpath d='M14 38V28h4v10'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='320' height='260' viewBox='0 0 320 260'%3E%3Cg stroke='rgba(255,255,255,0.22)' stroke-width='1.9' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cg transform='translate(52 62) rotate(18)'%3E%3Cpath d='M0 16L13 5L26 16'/%3E%3Crect x='2' y='16' width='22' height='16' rx='2'/%3E%3Cpath d='M10 32V24h4v8'/%3E%3C/g%3E%3Cg transform='translate(206 112) rotate(-21)'%3E%3Cpath d='M0 17L14 6L28 17'/%3E%3Crect x='3' y='17' width='23' height='17' rx='2'/%3E%3Cpath d='M11 34V25h4v9'/%3E%3C/g%3E%3Cg transform='translate(130 184) rotate(9)'%3E%3Cpath d='M0 14L12 4L24 14'/%3E%3Crect x='2' y='14' width='20' height='14' rx='2'/%3E%3Cpath d='M9 28V21h4v7'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.12) 0 3px, transparent 4px),
    radial-gradient(circle at 87% 16%, rgba(255, 255, 255, 0.1) 0 2px, transparent 3px);
  background-repeat: no-repeat, repeat, repeat, repeat, repeat;
  background-size: auto, 280px 240px, 340px 300px, 96px 96px, 78px 78px;
  background-position: 0 0, 0 0, 90px 60px, 0 0, 18px 10px;
}

.page-shell {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 3.2rem 1.4rem;
}

.card {
  background: rgba(241, 245, 249, 0.95);
  border-radius: 2rem;
  padding: 2.1rem 5rem 2.7rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 20px 60px rgba(41, 80, 111, 0.12);
}

.brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.logo {
  width: min(330px, 82vw);
  height: auto;
}

.phone-pill {
  margin: 0;
  color: #16486f;
  background: #d0e2f0;
  border-radius: 999px;
  font-size: 1.05rem;
  padding: 0.16rem 0.95rem;
  font-weight: 500;
}

.eyebrow {
  text-align: center;
  margin: 2.6rem auto 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
  color: #1e618c;
}

h1 {
  text-align: center;
  font-size: clamp(2.35rem, 4.9vw, 4.05rem);
  line-height: 1.06;
  margin: 0 auto;
  max-width: 15ch;
  letter-spacing: -0.02em;
}

.lead {
  text-align: center;
  margin: 1.1rem auto 0;
  max-width: 72ch;
  font-size: 1.9rem;
  line-height: 1.38;
  color: var(--muted);
}

.info-grid {
  margin-top: 2.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.info-card {
  border-radius: 1.45rem;
  padding: 1rem 1.15rem 1.25rem;
  background: linear-gradient(180deg, rgba(218, 230, 241, 0.75) 0%, rgba(203, 219, 234, 0.65) 100%);
  border: 1px solid rgba(239, 245, 250, 0.5);
  min-height: 320px;
}

.info-card h2 {
  margin: 0;
  font-size: 1.72rem;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.info-card p,
.info-card address {
  margin: 0.6rem 0 0;
  font-size: 1.38rem;
  line-height: 1.3;
  color: #1b2d42;
}

.info-card address {
  font-style: normal;
}

.info-card a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 1080px) {
  html {
    font-size: 11px;
  }

  .card {
    padding: 1.8rem 1.4rem 2rem;
  }
}

@media (max-width: 800px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: auto;
  }
}
