* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f8fb;
  --white: #ffffff;
  --text: #061126;
  --muted: #5f6f86;
  --border: #dfe5ec;
  --shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  --shadow-hover: 0 18px 36px rgba(16, 24, 40, 0.12);
  --blue: #0ea5e9;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.brief-page {
  min-height: 100vh;
  padding: 42px 22px 70px;
}

.brief-hero {
  text-align: center;
  margin-bottom: 62px;
}

.brief-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #14386b;
  font-size: 42px;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  margin-bottom: 26px;
}

.brief-logo span span {
  color: #35aee2;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #0d6efd, #20c4f4);
  color: #fff !important;
  font-size: 24px;
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: skew(-10deg);
}

.brief-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
}

.brief-hero p {
  margin: 18px 0 0;
  font-size: 21px;
  color: var(--muted);
  font-weight: 400;
}

.forms-grid {
  width: min(100%, 1250px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.form-card {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 28px 26px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.form-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #c8d4e2;
}

.card-bg-shape {
  position: absolute;
  top: -80px;
  right: -70px;
  width: 170px;
  height: 170px;
  background: #f7fbfd;
  border-radius: 50%;
  pointer-events: none;
}

.icon-box {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 10px;
}

.icon-box svg {
  width: 28px;
  height: 28px;
}

.icon-box.blue {
  background: linear-gradient(135deg, #2d7df0, #05a8e8);
}

.icon-box.purple {
  background: linear-gradient(135deg, #9a4ee8, #ec4fc8);
}

.icon-box.green {
  background: linear-gradient(135deg, #19c668, #0ead75);
}

.icon-box.orange {
  background: linear-gradient(135deg, #ff7427, #f33d2d);
}

.icon-box.indigo {
  background: linear-gradient(135deg, #6677f0, #4077ef);
}

.icon-box.pink {
  background: linear-gradient(135deg, #f43f7f, #e73372);
}

.form-card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 9px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.form-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 330px;
}

.start-link {
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: #0098db;
  font-size: 14px;
  font-weight: 700;
}

.start-link span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.form-card:hover .start-link span {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .forms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brief-logo {
    font-size: 36px;
  }
}

@media (max-width: 680px) {
  .brief-page {
    padding: 32px 16px 50px;
  }

  .brief-hero {
    margin-bottom: 38px;
  }

  .brief-logo {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .logo-mark {
    width: 28px;
    height: 28px;
    font-size: 19px;
  }

  .brief-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .brief-hero p {
    font-size: 17px;
    line-height: 1.5;
  }

  .forms-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-card {
    min-height: 215px;
    padding: 26px 24px;
  }

  .start-link {
    left: 24px;
    bottom: 24px;
  }
}