/* chaemuhelp.co.kr landing styles */

:root {
  --gold-1: #c9a84c;
  --gold-2: #a07830;
  --teal-1: #4ecdc4;
  --teal-2: #2a9d8f;
  --dark-1: #0d2020;
  --dark-2: #1a3a3a;
  --cream-bg: #f5f0e8;
  --text-dark: #1a1a1a;
  --text-light: #f5f5f5;
  --font-heading: "Noto Serif KR", serif;
  --font-body: "Noto Sans KR", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
}
h1,
h2,
h3 {
  font-family: var(--font-heading);
  margin: 0;
}
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}
select,
input,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
  transition: transform 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: var(--text-dark);
}
.btn-teal {
  background: linear-gradient(135deg, var(--teal-1), var(--teal-2));
  color: var(--text-dark);
}

.section-eyebrow {
  color: var(--teal-1);
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 12, 12, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 16px;
}
.logo {
  display: flex;
  flex-direction: column;
  color: var(--text-light);
}
.logo-en {
  font-weight: 700;
  letter-spacing: 0.15em;
}
.logo-kr {
  font-size: 0.8rem;
  opacity: 0.7;
}
.header-nav {
  display: flex;
  gap: 8px;
}
.btn-nav {
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-nav-primary {
  background: linear-gradient(135deg, var(--teal-1), var(--teal-2));
  color: var(--text-dark);
  border: none;
}

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.8)
    ),
    url("../assets/hero-bg.webp") center/cover no-repeat;
  color: var(--text-light);
  padding-block: 80px 60px;
}
.hero-inner {
  max-width: 720px;
}
.hero-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.4;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--gold-1);
}
.hero-title-emphasis {
  font-size: 1.3em;
}
.hero-sub {
  opacity: 0.85;
  margin-bottom: 32px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-bottom: 28px;
}
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-label {
  font-size: 0.9rem;
  opacity: 0.7;
}
.stat-value {
  font-size: 1.8rem;
  font-weight: 900;
}
.hero-badges {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.hero-badges li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
}
.badge-stars {
  color: var(--gold-1);
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.2;
}
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
@keyframes checkPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.hero-checks li span[aria-hidden="true"] {
  display: inline-block;
  color: var(--teal-1);
  animation: checkPop 0.4s ease-out backwards;
}
.hero-checks li:nth-child(1) span[aria-hidden="true"] {
  animation-delay: 0.3s;
}
.hero-checks li:nth-child(2) span[aria-hidden="true"] {
  animation-delay: 0.45s;
}
.hero-checks li:nth-child(3) span[aria-hidden="true"] {
  animation-delay: 0.6s;
}
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.consult-type-select {
  padding: 14px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: var(--text-light);
  min-width: 220px;
}

@media (max-width: 640px) {
  .hero-stats,
  .hero-badges {
    gap: 20px;
  }
  .hero-cta-row {
    flex-direction: column;
  }
  .consult-type-select {
    width: 100%;
  }
}

/* ===== FIELD OF WORK ===== */
.field-of-work {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../assets/consult-bg.webp") center/cover no-repeat;
  color: var(--text-light);
  padding-block: 80px;
  text-align: center;
}
.section-tag {
  opacity: 0.7;
  margin-block: 12px;
}
.field-of-work h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}
.section-desc {
  opacity: 0.8;
  margin-bottom: 40px;
}
.fow-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 500px;
  margin: 0 auto 32px;
}
.fow-card {
  background: var(--text-light);
  color: var(--text-dark);
  padding: 24px 12px;
  border-bottom: 4px solid var(--gold-1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fow-label {
  font-size: 0.9rem;
  opacity: 0.6;
}
.fow-value {
  font-size: 1.8rem;
  font-weight: 700;
}
.fow-note {
  font-size: 0.8rem;
  opacity: 0.6;
}
.fow-cta {
  display: inline-block;
}

@media (max-width: 640px) {
  .fow-cards {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}

/* ===== CHECKLIST ===== */
.checklist {
  background:
    linear-gradient(rgba(5, 15, 15, 0.85), rgba(5, 15, 15, 0.9)),
    url("../assets/debt-relief-bg.webp") center/cover no-repeat;
  color: var(--text-light);
  padding-block: 80px;
  text-align: center;
}
.checklist h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 32px;
}
.checklist-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0 auto 40px;
  max-width: 480px;
}
.checklist-solution {
  background: rgba(78, 205, 196, 0.12);
  border: 1px solid var(--teal-1);
  border-radius: 8px;
  padding: 28px;
  margin: 0 auto;
  max-width: 480px;
}
.checklist-solution h3 {
  color: var(--teal-1);
  margin-bottom: 16px;
}
.checklist-solution ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.checklist-solution small {
  opacity: 0.6;
}

/* ===== QUALIFICATION ===== */
.qualification {
  background: var(--cream-bg);
  padding-block: 80px;
  text-align: center;
}
.eyebrow-dark {
  color: var(--gold-2);
}
.qualification h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-block: 12px 16px;
}
.section-desc-dark {
  opacity: 0.7;
  margin-bottom: 40px;
}
.qual-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 780px;
  margin: 0 auto 40px;
  background: var(--dark-1);
  border-radius: 8px;
  overflow: hidden;
}
.qual-card {
  padding: 36px 20px;
  color: var(--text-light);
  border-bottom: 3px solid var(--gold-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.qual-icon {
  width: 40px;
  height: 40px;
  color: var(--gold-1);
}
.qual-card strong {
  color: var(--gold-1);
  font-size: 1.1rem;
  font-weight: 700;
}
.qual-card p {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

@media (max-width: 640px) {
  .qual-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
  }
}

/* ===== START NOW ===== */
.start-now {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.8)),
    url("../assets/consult-bg.webp") center/cover no-repeat;
  color: var(--text-light);
  padding-block: 80px;
  text-align: center;
}
.start-now h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-block: 12px 8px;
}
.start-now-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 800px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.15);
}
.start-now-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 28px 20px;
}
.start-now-card h3 {
  color: var(--gold-1);
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.start-now-card p {
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (max-width: 640px) {
  .start-now-cards {
    grid-template-columns: 1fr;
  }
}

/* ===== CONSULTATION ===== */
.consultation {
  background: #f8f7f4;
  padding-block: 80px;
  text-align: center;
}
.consultation h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-block: 12px 8px;
}
.consult-form {
  max-width: 520px;
  margin: 40px auto 0;
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-full {
  display: block;
  margin-bottom: 16px;
}
.consult-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  min-width: 0;
}
.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-weight: 400;
}
.req {
  color: #d64545;
}
.consult-form .agree-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 20px;
}
.agree-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.agree-row small {
  color: var(--text-dark);
}
.form-error {
  color: #d64545;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.form-submit {
  width: 100%;
}
.form-privacy-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-top: 12px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== FAQ ===== */
.faq {
  background: #0a1414;
  color: var(--text-light);
  padding-block: 80px;
  text-align: center;
}
.faq h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-block: 12px 8px;
}
.faq-list {
  max-width: 640px;
  margin: 32px auto;
  text-align: left;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-block: 18px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  color: var(--teal-1);
  font-size: 1.2rem;
  margin-left: 12px;
}
.faq-item[open] summary::after {
  content: "×";
}
.faq-item p {
  margin-top: 14px;
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.7;
}

/* ===== CLOSING + FOOTER ===== */
.closing {
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.8)),
    url("../assets/debt-relief-bg.webp") center/cover no-repeat;
  color: var(--text-light);
  padding-block: 80px;
  text-align: center;
}
.closing h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 20px;
  line-height: 1.4;
}
.closing .highlight {
  color: var(--gold-1);
}
.closing p {
  opacity: 0.85;
  margin-bottom: 32px;
}

.site-footer {
  background: #050d0d;
  color: rgba(255, 255, 255, 0.7);
  padding-block: 48px;
  text-align: center;
  font-size: 0.85rem;
  position: relative;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.footer-logo .logo-en {
  color: var(--text-light);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.footer-detail {
  color: rgba(255, 255, 255, 0.2);
}
.site-footer hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 20px auto;
  max-width: 400px;
}
.footer-disclaimer,
.footer-copyright {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
}
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: var(--text-dark);
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 50;
}

/* ===== HONEYPOT ===== */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
