.try-page {
  background: var(--bg-dark);
}

/* ---------- MAIN LAYOUT ---------- */

.try-main {
  padding-top: 80px;
}

/* ---------- HERO ---------- */

.try-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 80px 10%;
  background:
    radial-gradient(circle at 15% 30%, rgba(242, 43, 187, 0.09), transparent 35%),
    radial-gradient(circle at 85% 60%, rgba(60, 8, 90, 0.25), transparent 45%),
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(5, 8, 20, 0.75)),
    url('../assets/hero3.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.try-hero-content {
  max-width: 520px;
  flex: 1;
}

.try-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

.try-hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.try-sub {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 480px;
}

.try-after {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 460px;
  margin-top: 16px;
}

/* ---------- FORM ---------- */

.try-form-wrap {
  flex: 1;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.try-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.try-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1a1830;
  margin-bottom: 6px;
}

.try-form input,
.try-form textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(26, 24, 48, 0.14);
  font-size: 0.95rem;
  font-family: var(--font);
  background: rgba(255, 255, 255, 0.8);
  color: #1a1830;
  transition: border-color 0.2s ease;
}

.try-form input:focus,
.try-form textarea:focus {
  outline: none;
  border-color: rgba(242, 43, 187, 0.4);
}

.try-form textarea {
  resize: vertical;
  min-height: 80px;
}

.try-submit {
  width: 100%;
  margin-top: 4px;
  font-size: 0.95rem;
}

/* ---------- WHAT'S INCLUDED ---------- */

.try-includes {
  background: #f5f3ef;
  padding: 80px 10%;
}

.try-includes-content {
  max-width: 800px;
  margin: auto;
}

.try-includes-content h2 {
  color: #1a1830;
  margin-bottom: 8px;
}

.try-includes-note {
  color: #5a5770;
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 100%;
}

.try-modules {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.try-modules li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.try-modules strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1830;
}

.try-modules span {
  font-size: 0.88rem;
  color: #5a5770;
  line-height: 1.55;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .try-hero {
    flex-direction: column;
    gap: 40px;
    padding: 60px 6%;
    min-height: unset;
  }

  .try-hero-content,
  .try-form-wrap {
    max-width: 100%;
    width: 100%;
  }

  .try-modules {
    grid-template-columns: 1fr;
  }
}
