.smtcf-page-shell,
.smtcf-page-shell * {
  box-sizing: border-box;
}

.smtcf-page-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  color: #0f172a;
  font-family: Inter, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", "Segoe UI", Roboto, sans-serif;
}

.smtcf-content-wrap {
  width: 100%;
  max-width: 80rem;
}

.smtcf-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.smtcf-left-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.smtcf-intro-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.smtcf-eyebrow {
  display: inline-block;
  width: fit-content;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #4a448b;
  font-weight: 500;
}

.smtcf-page-shell h1 {
  margin: 0;
  font-weight: 700;
  font-size: 2.6rem !important;
  line-height: 1.1;
  color: #0f172a;
}

.smtcf-intro-group p {
  margin: 0;
  max-width: 36rem;
  color: #475569;
  font-size: 1.1rem !important;
  line-height: 1.625;
}

.smtcf-trust-points {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.smtcf-trust-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.smtcf-trust-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #4a448b;
  transition: transform 200ms ease;
}

.smtcf-trust-row:hover .smtcf-trust-icon {
  transform: scale(1.1);
}

.smtcf-trust-row p {
  margin: 0;
  color: #334155;
  font-size: 1rem;
  line-height: 1.5;
}

.smtcf-form-zone {
  position: relative;
}

.smtcf-gradient-blur {
  position: absolute;
  inset: -16px;
  border-radius: 32px;
  background: linear-gradient(90deg, rgba(74, 68, 139, 0.18), rgba(106, 100, 198, 0.18));
  filter: blur(48px);
}

.smtcf-form-card {
  position: relative;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 10px 25px -10px rgba(6, 182, 212, 0.1);
  padding: 24px;
}

.smtcf-contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.smtcf-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.95rem;
  line-height: 1.5;
}

.smtcf-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #4a448b;
}

.smtcf-checkbox span {
  flex: 1;
}

.smtcf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.smtcf-field label {
  color: #334155;
  font-size: 0.875rem;
  font-weight: 500;
}

.smtcf-field input,
.smtcf-field select,
.smtcf-field textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  color: #0f172a;
  font-size: 15px !important;
  line-height: 1.5;
  padding: 10px 14px;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.smtcf-field input::placeholder,
.smtcf-field textarea::placeholder {
  color: #94a3b8;
}

.smtcf-field input:focus,
.smtcf-field select:focus,
.smtcf-field textarea:focus {
  outline: none;
  border-color: #4a448b;
  box-shadow: 0 0 0 2px rgba(74, 68, 139, 0.35);
}

.smtcf-field select {
  appearance: none;
  cursor: pointer;
  padding: 0 16px !important;
  padding-right: 52px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}

.smtcf-field textarea {
  resize: none;
  min-height: 100px;
}

.smtcf-submit-btn {
  width: 100%;
  position: relative;
  border: 0;
  border-radius: 12px;
  padding: 12px 20px;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  overflow: hidden;
  transform: scale(1);
  transition: transform 300ms ease, box-shadow 300ms ease;
  background: linear-gradient(135deg, #4a448b 0%, #6a64c6 100%);
  box-shadow: 0 10px 25px -10px rgba(74, 68, 139, 0.55);
}

.smtcf-submit-btn:hover {
  box-shadow: 0 20px 40px -14px rgba(74, 68, 139, 0.6);
}

.smtcf-submit-btn.smtcf-is-hovered {
  transform: scale(1.02);
}

.smtcf-submit-btn > span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.smtcf-send-icon {
  width: 20px;
  height: 20px;
  transition: transform 300ms ease;
}

.smtcf-submit-btn:hover .smtcf-send-icon {
  transform: translateX(4px);
}

.smtcf-btn-hover-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #6a64c6, #4a448b);
  opacity: 0;
  transition: opacity 300ms ease;
}

.smtcf-submit-btn:hover .smtcf-btn-hover-layer {
  opacity: 1;
}

.smtcf-sub-text {
  margin: 0;
  text-align: center;
  padding-top: 2px;
  font-size: 0.875rem;
  color: #64748b;
}

.smtcf-legal {
  border-top: 1px solid #f1f5f9;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.smtcf-legal p {
  margin: 0;
  text-align: center;
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.625;
}

.smtcf-submit-success {
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}

.smtcf-hidden {
  display: none;
}

.smtcf-success-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4a448b 0%, #6a64c6 100%);
  color: #ffffff;
}

.smtcf-success-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.smtcf-submit-success h3 {
  margin: 0 0 16px;
  color: #0f172a;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.smtcf-submit-success p {
  margin: 0;
  color: #475569;
}

@media (min-width: 768px) {
  .smtcf-page-shell {
    padding: 0;
  }

  .smtcf-trust-row p {
    font-size: 1.125rem;
  }

  .smtcf-form-card {
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .smtcf-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
  }

  .smtcf-page-shell h1 {
    font-size: 2.6rem !important;
  }
}
