:root {
  --color-pink: #ff5ca8;
  --color-pink-dark: #f04d9d;
  --color-purple: #91005a;
  --color-purple-dark: #7a004d;
  --color-purple-deep: #5c0038;
  --color-yellow: #ffe600;
  --color-white: #fff;
  --color-gray: #666;
  --color-gray-light: #999;
  --color-lavender: #ebe4f5;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

/* ── Form ── */
.consult_form .form_row {
  display: flex;
  gap: 10px;
}

.consult_form .form_field {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 48px;
}

.consult_form .form_field label {
  flex-shrink: 0;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  border-right: 1px solid #eee;
}

.consult_form .form_field input {
  flex: 1;
  border: 0;
  outline: none;
  padding: 0 14px;
  font-size: 15px;
  min-width: 0;
}

.consult_form .form_field input::placeholder {
  color: #bbb;
}

.consult_form .privacy_row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.consult_form .privacy_row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-purple);
  flex-shrink: 0;
}

.consult_form .privacy_row label {
  font-size: 13px;
  color: var(--color-white);
  cursor: pointer;
}

.consult_form .privacy_row .btn_privacy {
  background: none;
  border: 0;
  font-size: 13px;
  color: var(--color-white);
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.consult_form .btn_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-purple);
  color: var(--color-white);
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 0 24px;
  white-space: nowrap;
  transition: background 0.2s;
}

.consult_form .btn_submit:hover {
  background: var(--color-purple-dark);
}

/* ── FAQ Accordion ── */
.faq_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq_item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq_item .q_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--color-purple);
  color: var(--color-white);
  padding: 18px 24px;
  text-align: left;
  gap: 12px;
}

.faq_item .q_box .q_label {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 800;
}

.faq_item .q_box .q_text {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
}

.faq_item .q_box .q_icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  transition: transform 0.3s;
}

.faq_item.is_open .q_box .q_icon {
  transform: rotate(45deg);
}

.faq_item .a_box {
  display: none;
  background: var(--color-white);
  padding: 24px 28px;
}

.faq_item.is_open .a_box {
  display: block;
}

.faq_item .a_box .a_label {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  color: var(--color-purple);
  margin-bottom: 10px;
}

.faq_item .a_box p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* ── Notice ── */
.sc_notice {
  background: #3d3d3d;
  color: var(--color-white);
  padding: 50px 0;
}

.sc_notice .inner {
  width: calc(100% - 80px);
  max-width: 1080px;
  margin: 0 auto;
}

.sc_notice h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid var(--color-yellow);
}

.sc_notice ul {
  padding-left: 16px;
}

.sc_notice ul li {
  font-size: 15px;
  line-height: 2;
}

/* ── Footer ── */
.site_footer {
  background: #282a29;
  color: #999;
  padding: 30px 0;
  font-size: 14px;
}

.site_footer .inner {
  width: calc(100% - 80px);
  max-width: 1080px;
  margin: 0 auto;
}

.site_footer .btn_privacy_footer {
  background: none;
  border: 0;
  color: #999;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 8px;
  font-size: 14px;
}

/* ── Privacy Modal ── */
.pri_modal_wrap {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

.pri_modal_wrap.is_open {
  display: block;
}

.pri_modal_inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(750px, calc(100% - 40px));
  max-height: 80vh;
  background: #eee;
  border: 8px solid #ccc;
  overflow-y: auto;
}

.pri_modal_inner h3 {
  background: #000;
  color: var(--color-yellow);
  padding: 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}

.pri_modal_txt p,
.pri_modal_txt1 p {
  padding: 20px;
  line-height: 1.6;
  font-size: 14px;
}

.agree_close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1;
}

.agree_close div {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-yellow);
}

.agree_close div:first-child {
  transform: rotate(45deg);
}

.agree_close div:last-child {
  transform: rotate(-45deg);
}

/* ── Sticky DB Banner ── */
.sc_db {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--color-pink);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.sc_db .db_inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 16px 40px;
}

.sc_db .db_title {
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-purple);
}

.sc_db .db_title em {
  color: var(--color-white);
  font-style: normal;
}

.sc_db .db_form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.sc_db .db_form .form_fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc_db .db_form .form_field label {
  color: #333;
}

.sc_db .db_form .privacy_row label {
  color: var(--color-purple);
  font-size: 12px;
}

.sc_db .db_form .privacy_row .btn_privacy {
  color: var(--color-purple);
  font-size: 12px;
}

.sc_db .db_form .btn_submit {
  min-height: 80px;
  min-width: 160px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

body.has_db {
  padding-bottom: 110px;
}
