/* Add your CSS from <style> */

  /* ============================================================
     기본: 모든 클래스에 sl- 접두사 적용 → 다른 테마와 충돌 방지
     ============================================================ */

  /* 카카오 상담 버튼 통일 스타일 */
  #seoul-landing .sl-btn-kakao {
  background: #FEE500 !important;
  color: #000000 !important;
  border: 1px solid #e0c700 !important;
  font-weight: 700;
  transition: all 0.2s ease;
  }
  #seoul-landing .sl-btn-kakao:hover {
  background: #f5d900 !important;
  color: #000000 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(254, 229, 0, 0.4);
  }

  /* 상단 긴급 배너 */
  #seoul-landing .sl-urgent-banner {
    background: #b91c1c;
    color: #fff;
    padding: 10px 16px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
  }
  #seoul-landing .sl-urgent-banner .sl-highlight {
    color: #fef3c7;
    font-weight: 700;
  }

  /* 혜택 박스 */
  #seoul-landing .sl-benefits-box {
    background: rgba(254, 243, 199, 0.3);
    border: 2px dashed #fbbf24;
    border-radius: 0.8rem;
    padding: 1rem 1.2rem;
    margin: 1rem 0;
  }
  #seoul-landing .sl-benefits-box .sl-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
  }
  #seoul-landing .sl-benefits-box .sl-benefit-icon {
    width: 24px;
    height: 24px;
    background: #fbbf24;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
  }

  /* 전체 래퍼 */
  #seoul-landing {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #f7fafc;
  }
  #seoul-landing * { box-sizing: border-box; }
  #seoul-landing a {
    text-decoration: none;
    color: inherit;
  }
  #seoul-landing img {
    max-width: 100%;
    display: block;
  }

  /* 공통 레이아웃 */
  #seoul-landing .sl-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* 헤더 */
  #seoul-landing header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  }
  #seoul-landing .sl-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  #seoul-landing .sl-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  #seoul-landing .sl-logo-img {
    height: 42px;
    width: auto;
  }
  #seoul-landing .sl-logo-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  #seoul-landing .sl-logo-main {
    font-size: 1.1rem;
    font-weight: 800;
    color: #f9fafb;
  }
  #seoul-landing .sl-logo-sub {
    font-size: 0.8rem;
    color: #9ca3af;
  }
  #seoul-landing .sl-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #seoul-landing .sl-header-phone {
    font-size: 0.9rem;
    color: #e5e7eb;
  }

  /* 버튼 공통 */
  #seoul-landing .sl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
    white-space: nowrap;
  }
  #seoul-landing .sl-btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #111827;
    box-shadow: 0 4px 14px rgba(251, 146, 60, 0.4);
  }
  #seoul-landing .sl-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(251, 146, 60, 0.6);
  }
  #seoul-landing .sl-btn-outline {
    background: transparent;
    border: 1px solid #4b5563;
    color: #e5e7eb;
  }
  #seoul-landing .sl-btn-outline:hover {
    background: #111827;
  }

  /* 히어로 */
  #seoul-landing .sl-hero {
    background: radial-gradient(circle at top, #1d4ed8, #020617);
    color: #f9fafb;
    padding: 60px 20px 40px;
  }
  #seoul-landing .sl-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
    gap: 2.5rem;
    align-items: center;
  }
  #seoul-landing .sl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(15,23,42,0.7);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.7rem;
    border: 1px solid rgba(148,163,184,0.4);
    margin-bottom: 0.75rem;
  }
  #seoul-landing .sl-hero-badge span {
    font-weight: 600;
    color: #fde68a;
  }
  #seoul-landing .sl-hero-title {
    font-size: 2.3rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    font-weight: 900;
    color: #ffffff;
  }
  #seoul-landing .sl-hero-title .sl-highlight {
    color: #fbbf24;
  }
  #seoul-landing .sl-hero-title .sl-small-text {
    font-size: 1.3rem;
    display: block;
    margin-top: 0.3rem;
  }
  #seoul-landing .sl-hero-subtitle {
    font-size: 0.95rem;
    color: #e5e7eb;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.5rem;
    border-left: 3px solid #fbbf24;
  }
  #seoul-landing .sl-hero-subtitle strong {
    color: #fbbf24;
    font-size: 1.02rem;
  }
  #seoul-landing .sl-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
  #seoul-landing .sl-hero-note {
    font-size: 0.8rem;
    color: #d1d5db;
  }

  #seoul-landing .sl-hero-right {
    background: rgba(15,23,42,0.9);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(148,163,184,0.3);
  }
  #seoul-landing .sl-hero-form-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #fbbf24;
  }
  #seoul-landing .sl-hero-form-sub {
    font-size: 0.85rem;
    color: #d1d5db;
    margin-bottom: 1rem;
  }

  /* 폼 */
  #seoul-landing .sl-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
  #seoul-landing .sl-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.65rem;
  }
  #seoul-landing .sl-form-group.sl-full-width {
    grid-column: 1 / -1;
  }
  #seoul-landing .sl-form-group label {
    font-size: 0.85rem;
    color: #e5e7eb;
    font-weight: 600;
  }
  #seoul-landing .sl-form-control {
    border-radius: 0.5rem;
    border: 1px solid #4b5563;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    background: #020617;
    color: #f9fafb;
    outline: none;
    transition: border 0.15s ease, box-shadow 0.15s ease, background 0.15s;
  }
  #seoul-landing .sl-form-control::placeholder {
    color: #6b7280;
  }
  #seoul-landing .sl-form-control:focus {
    border-color: #fbbf24;
    box-shadow: 0 0 0 1px rgba(251,191,36,0.5);
    background: #020617;
  }
  #seoul-landing textarea.sl-form-control {
    resize: vertical;
    min-height: 80px;
  }

  #seoul-landing .sl-radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
  }
  #seoul-landing .sl-radio-option {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
  }
  #seoul-landing .sl-radio-option input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
  }
  #seoul-landing .sl-radio-option label {
    cursor: pointer;
    font-size: 0.9rem;
  }
  #seoul-landing .sl-hero-form-footer {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #d1d5db;
  }

  /* 섹션 공통 */
  #seoul-landing section {
    padding: 60px 20px 40px;
    background: #f7fafc;
  }
  #seoul-landing section.sl-alt {
    background: #ffffff;
  }
  #seoul-landing .sl-section-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.5rem;
  }
  #seoul-landing .sl-section-sub {
    text-align: center;
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 2rem;
  }

  /* 특징 카드 */
  #seoul-landing .sl-features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  #seoul-landing .sl-feature-card {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 1.3rem 1rem;
    box-shadow: 0 4px 14px rgba(15,23,42,0.08);
    border: 1px solid #e5e7eb;
    text-align: left;
    font-size: 0.85rem;
  }
  #seoul-landing .sl-feature-icon {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }
  #seoul-landing .sl-feature-title {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #111827;
  }
  #seoul-landing .sl-feature-text {
    font-size: 0.85rem;
    color: #4b5563;
  }

  /* 프로세스 */
  #seoul-landing .sl-process-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
  }
  #seoul-landing .sl-process-step {
    text-align: center;
    font-size: 0.85rem;
  }
  #seoul-landing .sl-process-number {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    margin: 0 auto 0.5rem;
    background: linear-gradient(135deg,#1d4ed8,#06b6d4);
    color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(15,23,42,0.35);
  }
  #seoul-landing .sl-process-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #111827;
  }
  #seoul-landing .sl-process-text {
    font-size: 0.8rem;
    color: #4b5563;
  }

  /* FAQ */
  #seoul-landing .sl-faq-wrap {
    max-width: 900px;
    margin: 0 auto;
  }
  #seoul-landing .sl-faq-item {
    background: #ffffff;
    border-radius: 0.8rem;
    padding: 1rem 1.2rem;
    border: 1px solid #e5e7eb;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
  }
  #seoul-landing .sl-faq-q {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
    color: #111827;
  }
  #seoul-landing .sl-faq-a {
    font-size: 0.85rem;
    color: #4b5563;
  }

  /* 지도 & 연락 */
  #seoul-landing .sl-contact-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: flex-start;
  }
  #seoul-landing .sl-map-wrap iframe {
    width: 100%;
    min-height: 260px;
    border: 0;
    border-radius: 0.8rem;
    box-shadow: 0 4px 14px rgba(15,23,42,0.12);
  }
  #seoul-landing .sl-contact-card {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 1.5rem 1.3rem;
    border: 1px solid #e5e7eb;
    font-size: 0.9rem;
  }
  #seoul-landing .sl-contact-row { margin-bottom: 0.6rem; }
  #seoul-landing .sl-contact-label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.2rem;
  }
  #seoul-landing .sl-contact-value { color: #4b5563; }
  #seoul-landing .sl-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.8rem;
  }

  /* 푸터 */
  #seoul-landing footer {
    background: #020617;
    color: #9ca3af;
    padding: 30px 20px 20px;
    font-size: 0.8rem;
  }
  #seoul-landing .sl-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
  #seoul-landing .sl-footer-title {
    font-weight: 700;
    color: #e5e7eb;
    margin-bottom: 0.4rem;
  }
  #seoul-landing .sl-footer-bottom {
    max-width: 1100px;
    margin: 1.2rem auto 0;
    padding-top: 0.8rem;
    border-top: 1px solid #111827;
    text-align: center;
    color: #6b7280;
    font-size: 0.75rem;
  }

  /* 플로팅 CTA */
  #seoul-landing .sl-floating-cta {
    position: fixed;
    right: 16px;
    bottom: 18px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
  #seoul-landing .sl-floating-cta a {
    font-size: 0.8rem;
    padding: 0.5rem 0.9rem;
  }

  /* 반응형 */
  @media (max-width: 960px) {
    #seoul-landing .sl-hero-inner {
      grid-template-columns: minmax(0, 1fr);
    }
    #seoul-landing .sl-hero-right { order: -1; }
    #seoul-landing .sl-features-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    #seoul-landing .sl-process-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    #seoul-landing .sl-contact-layout {
      grid-template-columns: minmax(0, 1fr);
    }
    #seoul-landing .sl-footer-inner {
      grid-template-columns: repeat(2, minmax(0,1fr));
    }
    #seoul-landing .sl-header-inner {
      flex-wrap: wrap;
      gap: 0.4rem;
    }
    #seoul-landing .sl-hero-title {
      font-size: 1.8rem;
    }
  }

  @media (max-width: 640px) {
    #seoul-landing .sl-features-grid,
    #seoul-landing .sl-process-grid {
      grid-template-columns: minmax(0, 1fr);
    }
    #seoul-landing .sl-footer-inner {
      grid-template-columns: minmax(0,1fr);
    }
    #seoul-landing .sl-hero {
      padding-top: 50px;
    }
    #seoul-landing .sl-hero-right {
      padding: 1.1rem;
    }
    #seoul-landing .sl-logo-img {
      height: 34px;
    }
    #seoul-landing .sl-form-grid {
      grid-template-columns: minmax(0, 1fr);
    }
  }

  /* 인쇄 시 플로팅/배너 숨김 */
  @media print {
    #seoul-landing .sl-floating-cta,
    #seoul-landing .sl-urgent-banner {
      display: none !important;
    }
  }