:root {
  --bg-main: #0b0102;
  --bg-deep: #140305;
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.72);
  --panel: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  --panel-soft: rgba(255, 255, 255, 0.035);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.14);
  --red: #d31528;
  --red-bright: #ff3b4d;
  --red-dark: #8b0e16;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 59, 77, 0.18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(211, 21, 40, 0.16), transparent 30%),
    linear-gradient(180deg, #2a060b 0%, #140305 44%, #0b0102 100%);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.qualify-page {
  min-height: 100vh;
  padding: 56px 0 90px;
}

.qualify-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.qualify-hero {
  margin-bottom: 42px;
}

.qualify-head {
  text-align: center;
  margin-bottom: 38px;
}

.qualify-title {
  margin: 0 0 14px;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 900;
}

.qualify-subtitle {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.5;
  color: var(--muted);
  font-weight: 600;
}

.qualify-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.qualify-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.qualify-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 59, 77, 0.12), transparent 72%);
  pointer-events: none;
}

.qualify-card-good {
  border-color: rgba(255, 59, 77, 0.24);
}

.qualify-card-muted {
  border-color: rgba(255, 255, 255, 0.1);
}

.qualify-card h2 {
  position: relative;
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.qualify-divider {
  position: relative;
  width: 100%;
  height: 1px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, rgba(255, 59, 77, 0.38), rgba(255, 255, 255, 0.08));
}

.qualify-list {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.qualify-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.qualify-icon {
  font-size: 1.1rem;
  line-height: 1.2;
  transform: translateY(2px);
}

.qualify-list li span:last-child {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text);
  font-weight: 650;
}

.qualify-btn {
  position: relative;
  margin-top: 22px;
  min-height: 60px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.qualify-btn:hover {
  transform: translateY(-2px);
}

.qualify-btn-primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: #fff;
  box-shadow: 0 16px 32px rgba(211, 21, 40, 0.28);
}

.qualify-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  color: #fff;
}

.industry-section {
  margin-top: 10px;
}

.industry-shell {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  padding: 28px;
}

.industry-header {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.industry-header-cell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-align: center;
}

.industry-header-yes {
  background: linear-gradient(135deg, rgba(255, 59, 77, 0.22), rgba(139, 14, 22, 0.3));
  color: #fff;
}

.industry-header-no {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.industry-table {
  display: grid;
  gap: 14px;
}

.industry-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.industry-col {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1rem;
  line-height: 1.45;
}

.industry-col-yes {
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(255, 59, 77, 0.13), rgba(139, 14, 22, 0.12));
  border-color: rgba(255, 59, 77, 0.16);
}

.industry-col-no {
  color: var(--muted);
  font-weight: 550;
}

.industry-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.industry-cta-button {
  min-width: 280px;
  min-height: 60px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 32px rgba(211, 21, 40, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(211, 21, 40, 0.34);
}

@media (max-width: 980px) {
  .qualify-grid,
  .industry-header,
  .industry-row {
    grid-template-columns: 1fr;
  }

  .qualify-card,
  .industry-shell {
    border-radius: 24px;
  }

  .qualify-card {
    padding: 24px;
  }

  .industry-shell {
    padding: 22px;
  }

  .qualify-btn {
    width: 100%;
    align-self: stretch;
  }
}

@media (max-width: 640px) {
  .qualify-page {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .qualify-container {
    width: min(var(--container), calc(100% - 20px));
  }

  .qualify-title {
    font-size: 2.5rem;
  }

  .qualify-subtitle {
    margin-bottom: 24px;
    font-size: 0.98rem;
  }

  .qualify-grid {
    gap: 18px;
  }

  .qualify-list li {
    grid-template-columns: 24px 1fr;
    gap: 10px;
    padding: 12px;
  }

  .qualify-list li span:last-child {
    font-size: 0.95rem;
  }

  .industry-header-cell {
    min-height: 66px;
    font-size: 1.1rem;
  }

  .industry-col {
    min-height: 62px;
    padding: 14px 16px;
    font-size: 0.94rem;
  }

  .industry-cta-button {
    width: 100%;
    min-width: 0;
  }
}
.qualify-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.qualify-home-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
}
