:root {
  --primary: #003366;
  --secondary: #0073e6;
  --accent: #009688;
  --muted: #666666;
  --bg: #f5f5f5;
  --card: #ffffff;
}

* { box-sizing: border-box; }
html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #333333;
  background: var(--bg);
}

.wrap {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.card {
  width: 100%;
  max-width: 960px;
  background: var(--card);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
  border: 1px solid #e0e0e0;
}

.logo-header { grid-column: 1 / -1; text-align: center; margin-bottom: 20px; }
.logo { max-height: 60px; }

.left h1 { margin: 20px 0 10px; font-size: 26px; color: var(--primary); }
.left p { margin: 0 0 18px; color: var(--muted); }

.pulse { display: inline-flex; align-items: center; gap: 12px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: var(--secondary); animation: ping 1.6s infinite; }
@keyframes ping {
  0% { transform: scale(1); opacity: 1 }
  70% { transform: scale(1.9); opacity: .12 }
  100% { transform: scale(1); opacity: 1 }
}

.catalog-btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--secondary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border: none;
}
.catalog-btn:hover { background: #005bb5; }

.note { font-size: 13px; color: var(--muted); margin-top: 12px; }

form {
  background: #fafafa;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}
textarea { min-height: 110px; resize: vertical; }

.actions { display: flex; gap: 10px; align-items: center; margin-top: 12px; }
.btn { padding: 10px 14px; border-radius: 6px; cursor: pointer; font-weight: 600; border: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #00796b; }
.btn-ghost { background: transparent; border: 1px solid #ccc; color: var(--muted); }

.contact-info { font-size: 14px; color: #333; margin-top: 8px; }
a.contact-link { color: var(--secondary); text-decoration: none; }
a.contact-link:hover { text-decoration: underline; }

.foot { grid-column: 1 / -1; margin-top: 16px; color: var(--muted); font-size: 13px; text-align: center; }

@media(max-width:880px) {
  .card { grid-template-columns: 1fr; max-width: 680px; }
  .left { order: 2; }
  .right { order: 1; }
}