:root {
  --red: #d52438;
  --black: #111111;
  --gray: #6f6f6f;
  --light: #f5f5f5;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 100%);
  color: var(--black);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 18px;
}

.card {
  width: 100%;
  max-width: 780px;
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: 26px;
  padding: 48px 34px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  width: 100%;
  background: var(--red);
}

.logo {
  max-width: 260px;
  width: 72%;
  height: auto;
  margin-bottom: 32px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(213, 36, 56, 0.09);
  color: var(--red);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
  color: var(--black);
}

.text {
  max-width: 620px;
  margin: 0 auto 14px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.6;
}

.contact {
  margin: 34px auto 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
}

.contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid #dedede;
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
  background: #fafafa;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact a:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 10px 26px rgba(213,36,56,0.12);
}

.thanks {
  margin: 0;
  color: var(--black);
  font-weight: 700;
}

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

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

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