:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #17212b;
  --muted: #5d6b78;
  --blue: #1479c9;
  --orange: #ff7a00;
  --green: #36a832;
  --line: #dbe4ee;
  --shadow: 0 22px 60px rgb(23 33 43 / 10%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 12%, rgb(255 122 0 / 15%), transparent 24rem),
    radial-gradient(circle at 12% 18%, rgb(20 121 201 / 14%), transparent 22rem),
    linear-gradient(135deg, #ffffff 0%, var(--bg) 58%, #eef3f8 100%);
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

header {
  padding: 32px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 18px;
  text-decoration: none;
}

.logo svg {
  width: min(360px, 78vw);
  height: auto;
  display: block;
}

main {
  flex: 1;
  display: grid;
  align-items: center;
  padding: 34px 0 54px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  padding: clamp(28px, 5vw, 58px);
  background: rgb(255 255 255 / 78%);
  border: 1px solid rgb(219 228 238 / 90%);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    rgb(20 121 201 / 0%),
    rgb(20 121 201 / 16%),
    rgb(255 122 0 / 18%),
    rgb(54 168 50 / 14%),
    rgb(20 121 201 / 0%)
  );
  filter: blur(2px);
  pointer-events: none;
}

.hero-content,
.info-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--green));
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.25rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.lead {
  margin: 24px 0 0;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.topics {
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}

.topics li {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgb(255 255 255 / 72%);
  font-weight: 700;
}

.topic-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eef5fb;
  color: var(--blue);
}

.topics li:nth-child(2) .topic-icon {
  background: #fff2e7;
  color: var(--orange);
}

.topics li:nth-child(4) .topic-icon {
  background: #edf8ed;
  color: var(--green);
}

.info-card {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(160deg, #17212b 0%, #1f2d3a 100%);
  color: #ffffff;
  box-shadow: 0 18px 50px rgb(23 33 43 / 16%);
}

.info-card h2 {
  margin: 0 0 18px;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

address {
  font-style: normal;
  color: rgb(255 255 255 / 78%);
  line-height: 1.75;
}

.contact-links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 16px;
  background: rgb(255 255 255 / 7%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.signal {
  display: grid;
  gap: 8px;
  max-width: 260px;
}

.signal span {
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--orange), var(--green));
}

.signal span:nth-child(2) {
  width: 72%;
  opacity: 0.72;
}

.signal span:nth-child(3) {
  width: 44%;
  opacity: 0.5;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0 34px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.legal a {
  text-decoration: none;
  font-weight: 700;
}

.legal a:hover,
.contact-links a:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .page {
    width: min(100% - 28px, 1120px);
  }

  header {
    justify-content: center;
    padding-top: 22px;
  }

  .hero {
    padding: 24px;
    border-radius: 22px;
  }

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

  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
