:root {
  --bg: #eef2f7;
  --surface: rgba(255,255,255,0.82);
  --surface-border: rgba(15, 44, 84, 0.08);
  --primary: #0d2f63;
  --primary-soft: #e8effa;
  --text: #11223d;
  --muted: #5e6b80;
  --shadow: 0 20px 50px rgba(10, 29, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 47, 99, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(13, 47, 99, 0.06), transparent 25%),
    linear-gradient(180deg, #f7f9fc 0%, var(--bg) 100%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
}

.card {
  width: min(100%, 760px);
  padding: 40px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  text-align: center;
}

.logo {
  width: min(100%, 320px);
  height: auto;
  display: block;
  margin: 0 auto 28px;
}

.tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.lead {
  width: min(100%, 580px);
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(17, 34, 61, 0.1);
  margin: 28px 0;
}

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

.contact-item {
  display: block;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(13, 47, 99, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(13, 47, 99, 0.08);
  border-color: rgba(13, 47, 99, 0.16);
}

.contact-item--full {
  grid-column: 1 / -1;
}

.label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.value {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
}

@media (max-width: 640px) {
  .card {
    padding: 28px 20px;
    border-radius: 22px;
  }

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

  .contact-item--full {
    grid-column: auto;
  }

  .lead {
    font-size: 16px;
  }
}
