
  /* HERO */
  .hero { padding: 1rem 0 3rem; border-bottom: 1px solid var(--border); margin-bottom: 3rem; }
  .hero-badge { display: inline-block; background: var(--orange-dim); border: 1px solid var(--orange-border); color: var(--orange); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 14px; border-radius: 20px; margin-bottom: 1.5rem; font-weight: 600; }
  .hero h1 { font-size: 48px; font-weight: 700; line-height: 1.08; margin-bottom: 1.25rem; color: var(--navy); letter-spacing: -1px; }
  .hero h1 span { color: var(--orange); }
  .hero-sub { font-size: 17px; color: var(--text-mid); line-height: 1.85; max-width: 580px; font-weight: 400; }

  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }

  .contact-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 1.5rem; color: var(--navy); letter-spacing: -0.5px; }

  .contact-item { margin-bottom: 1.5rem; }
  .contact-item .ci-label { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
  .contact-item .ci-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
  .contact-item a { color: var(--orange); text-decoration: none; font-weight: 500; font-size: 14px; }
  .contact-item a:hover { text-decoration: underline; }

  .form-section { background: var(--bg); border-radius: 16px; padding: 2.5rem; border: 1.5px solid var(--border); }
  .form-section h2 { font-size: 22px; font-weight: 700; margin-bottom: 1.5rem; color: var(--navy); letter-spacing: -0.3px; }
  .form-placeholder { font-size: 14px; color: var(--text-light); line-height: 1.7; text-align: center;  }


  /* Form Messages */
.form-message {
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
}

.success-message {
  color: #16a34a;
}

.error-message {
  color: #dc2626;
}

/* Form Groups */
.form-group {
  margin-bottom: 1rem;
}

/* Form Inputs */
.form-input {
  width: 100%;
  height: 43px;
  font-size: 0.875rem;
  border: 0;
  border-bottom: 1px solid #000000;
  outline: none;
  background: var(--bg);
}

.form-input:focus {
  outline: none;
}

/* Form Select */
.form-select {
  width: 100%;
  height: 43px;
  font-size: 0.875rem;
  border: 0;
  border-bottom: 1px solid #000000;
  outline: none;
  background: transparent;
}

.form-select:focus {
  outline: none;
}

/* Form Textarea */
.form-textarea {
  width: 100%;
  min-height: 100px;
  font-size: 0.875rem;
  border: 0;
  border-bottom: 1px solid #000000;
  outline: none;
  resize: vertical;
  background: var(--bg);
}

.form-textarea:focus {
  outline: none;
}

/* Form Note */
.form-note {
  margin-top: 1rem;
}

.form-note p {
  font-size: 0.875rem;
  line-height: 1.5;
}

.privacy-link {
  color: var(--orange);
  font-weight: 500;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Form Submit */
.form-submit {
  text-align: center;
  margin-top: 1.25rem;
}

.btn-submit {
  padding: 0.75rem 2rem;
  cursor: pointer;
  text-transform: uppercase;
  background-color: var(--orange);
  border-radius: 9999px;
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  border: none;
  font-size: 0.875rem;
  font-family: inherit;
  transition: opacity 0.2s;
}

.btn-submit:hover {
  opacity: 0.9;
}
  @media (max-width: 720px) {
    .contact-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 34px; }
  }