:root {
  --brand: #6944e6;
  --brand-dark: #4730a6;
  --ink: #1b1730;
  --muted: #69647c;
  --line: #e8e4f2;
  --surface: #fff;
  --soft: #f7f5fc;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
a { color: var(--brand-dark); }
.info-hero {
  padding: 76px 20px 64px;
  background: linear-gradient(135deg, #4d32ba, #7c52eb 55%, #cf4ca6);
  color: #fff;
  text-align: center;
}
.info-hero h1 { margin: 0 0 12px; font-size: clamp(34px, 7vw, 58px); line-height: 1.08; }
.info-hero p { width: min(720px, 100%); margin: 0 auto; font-size: 18px; opacity: .94; }
.info-shell { width: min(900px, calc(100% - 32px)); margin: -28px auto 64px; }
.info-card {
  padding: clamp(25px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(43, 29, 86, .1);
}
.info-card h2 { margin: 30px 0 8px; font-size: 25px; line-height: 1.25; }
.info-card h2:first-child { margin-top: 0; }
.info-card p, .info-card li { color: #49445a; }
.info-card li + li { margin-top: 7px; }
.notice {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 4px solid var(--brand);
  border-radius: 10px;
  background: #f2edff;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 30px; }
.contact-copy h2 { margin-top: 0; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 6px; color: #332e46; font-weight: 750; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #dcd6ea;
  border-radius: 11px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: 3px solid rgba(105, 68, 230, .16); border-color: var(--brand); }
.contact-form button {
  padding: 13px 18px;
  border: 0;
  border-radius: 11px;
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.contact-form button:disabled { opacity: .65; cursor: wait; }
.ft-msg { margin-top: 8px; padding: 10px 12px; border-radius: 9px; font-weight: 700; }
.ft-msg.success { background: #e7f8ee; color: #166534; }
.ft-msg.error { background: #fff0f2; color: #9f1239; }
.simple-footer { padding: 42px 20px; background: #171329; color: #eae7f3; }
.simple-footer-inner { width: min(1050px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; }
.simple-footer h2 { margin: 0 0 8px; font-size: 22px; }
.simple-footer p { max-width: 560px; margin: 0; color: #bdb7ce; }
.simple-footer nav { display: grid; grid-template-columns: repeat(2, auto); gap: 8px 24px; }
.simple-footer a { color: #f3f0fa; text-decoration: none; }
.simple-footer a:hover { text-decoration: underline; }
.simple-footer-small { width: min(1050px, 100%); margin: 28px auto 0; padding-top: 20px; border-top: 1px solid #312b46; color: #a9a2ba; font-size: 13px; }
@media (max-width: 760px) {
  .contact-grid, .simple-footer-inner { grid-template-columns: 1fr; }
  .info-hero { padding-top: 54px; }
}
