.contact-section {
  background: #444444;
  padding: 78px 0 24px;
  color: #ffffff;
}
.contact-inner {
  width: min(100% - 120px, 1640px);
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 500px);
  gap: 130px;
  align-items: start;
}
.contact-form-column h2 {
  margin: 0 0 24px;
  max-width: 780px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(30px, 2.45vw, 46px);
  line-height: 1.16;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: #ffffff;
}
.contact-form-column h2.slide-in-left {
  opacity: 0;
  transform: translateX(-72px);
  transition: transform 0.8s cubic-bezier(.17,.67,.16,1), opacity 0.8s ease;
}
.contact-form-column h2.slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.contact-form { max-width: 840px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  margin-bottom: 10px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  color: #ffffff;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-radius: 4px;
  outline: none;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.62); }
.form-group textarea {
  min-height: 102px;
  resize: vertical;
}
.privacy-check {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 20px;
  cursor: pointer;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
}
.privacy-check input {
  width: 16px;
  height: 16px;
  accent-color: #1f6feb;
  flex: 0 0 auto;
}
.contact-submit {
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 4px;
  background: #f3f3f3;
  color: #111111;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.contact-submit:hover {
  background: #e7e7e7;
  transform: translateY(-1px);
}
.contact-info-column { padding-top: 18px; }
.contact-info-block { margin-bottom: 42px; }
.contact-info-block h3 {
  margin: 0 0 10px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(22px, 1.6vw, 32px);
  line-height: 1.2;
  font-weight: 600;
  color: #ffffff;
}
.contact-info-block p,
.contact-info-block a {
  margin: 0 0 6px;
  display: block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(16px, 1.05vw, 24px);
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
}
.contact-info-block a:hover { text-decoration: underline; }
.contact-footer-note {
  margin-top: 26px;
  display: flex;
  justify-content: flex-end;
}
.contact-footer-note p {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}
