﻿.v17-home-panel,
.v17-home-panel * {
  box-sizing: border-box;
}

.v17-home-panel {
  display: block;
  clear: both;
  width: min(980px, calc(100vw - 32px));
  max-width: none;
  margin: 56px auto 132px;
  padding: 30px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.94));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.v17-home-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  color: #93c5fd;
  background: rgba(37, 99, 235, 0.18);
  border: 1px solid rgba(147, 197, 253, 0.24);
}

.v17-home-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.24;
  letter-spacing: -0.04em;
  color: #f8fafc;
  word-break: keep-all;
}

.v17-home-lead {
  max-width: 860px;
  margin: 0 0 24px;
  color: #cbd5e1;
  line-height: 1.78;
  font-size: 1rem;
  word-break: keep-all;
}

.v17-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.v17-quick-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.72);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.v17-quick-card:hover {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, 0.58);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
}

.v17-quick-card strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.35;
  color: #f8fafc;
}

.v17-quick-card span {
  display: block;
  color: #cbd5e1;
  line-height: 1.68;
  font-size: 0.93rem;
  word-break: keep-all;
}

.v17-trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.66);
}

.v17-trust-strip p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.68;
  font-size: 0.94rem;
  word-break: keep-all;
}

.v17-trust-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 300px;
}

.v17-trust-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.96);
  color: #2563eb;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.v17-trust-links a:hover {
  text-decoration: underline;
}

@media (max-width: 960px) {
  .v17-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v17-trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .v17-trust-links {
    justify-content: flex-start;
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .v17-home-panel {
    width: calc(100vw - 24px);
    margin-top: 32px;
    margin-bottom: 110px;
    padding: 20px;
    border-radius: 20px;
  }

  .v17-quick-grid {
    grid-template-columns: 1fr;
  }

  .v17-quick-card {
    min-height: 0;
  }

  .v17-trust-links a {
    font-size: 0.86rem;
  }
}
