@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css");

.v2-scope {
  /* 색상 토큰 - 스스로닷컴 블루 유지 + 현대적 감각 */
  --v2-primary: #48a1ef;
  --v2-primary-light: #e6f0fa;
  --v2-primary-gradient: #48a1ef;
  /* Changed to flat color as requested */
  --v2-secondary: #ff6b00;
  /* 제보하기 등 강조색 */

  --v2-white: #ffffff;
  --v2-gray-50: #f8fafc;
  --v2-gray-100: #f1f5f9;
  --v2-gray-200: #e2e8f0;
  --v2-gray-500: #64748b;
  --v2-gray-800: #1e293b;
  --v2-gray-900: #0f172a;

  /* 타이포그래피 */
  --v2-font-main: "Pretendard", -apple-system, sans-serif;

  /* 간격 및 시스템 */
  --v2-container-max: 1200px;
  --v2-radius-md: 12px;
  --v2-radius-lg: 20px;
  --v2-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --v2-shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --v2-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 고정 헤더로 인한 가림 현상 방지 오프셋 */
#jeboGuide,
#report-guide-a {
  scroll-margin-top: 100px;
}

.v2-scope {
  font-family: var(--v2-font-main);
  color: var(--v2-gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* 기초 리셋 (네임스페이스 내) */
.v2-scope *,
.v2-scope *::before,
.v2-scope *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.v2-scope a {
  text-decoration: none;
  color: inherit;
}

.v2-scope ul {
  list-style: none;
}

.v2-scope button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* 공통 레이아웃 */
.v2-container {
  width: 100%;
  max-width: var(--v2-container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.v2-section {
  padding: 80px 0;
  overflow: hidden;
}

.v2-intro-desc {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* 버튼 시스템 */
.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--v2-radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--v2-transition);
}

.v2-scope .v2-btn-primary {
  background: var(--v2-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(72, 161, 239, 0.2);
}

.v2-scope .v2-btn-primary:hover {
  background: #3b82f6;
  /* Slightly darker flat blue */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 80, 170, 0.4);
}

.v2-btn-outline {
  border: 1.5px solid var(--v2-primary);
  color: var(--v2-primary);
}

.v2-btn-outline:hover {
  background: var(--v2-primary-light);
}

.v2-btn-white {
  background: var(--v2-white);
  color: var(--v2-primary);
}

.v2-btn-white:hover {
  background: var(--v2-gray-50);
  transform: translateY(-2px);
}

/* 헤더 스타일 */
.v2-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--v2-transition);
}

.v2-header--scrolled {
  height: 70px;
  background: var(--v2-white);
  box-shadow: var(--v2-shadow-sm);
}

.v2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.v2-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--v2-primary);
}

.v2-logo span {
  font-weight: 400;
  color: var(--v2-gray-500);
}

.v2-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.v2-nav-list {
  display: flex;
  gap: 40px;
}

.v2-nav-link {
  font-weight: 500;
  color: var(--v2-gray-800);
  transition: var(--v2-transition);
}

.v2-nav-link:hover {
  color: var(--v2-primary);
}

.v2-auth {
  display: flex;
  align-items: center;
  gap: 20px;
}

.v2-auth-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--v2-gray-500);
}

.v2-btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* User Menu Dropdown */
.v2-auth-wrapper {
  display: flex;
  align-items: center;
}

.v2-user-menu-container {
  position: relative;
}

.v2-user-name-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--v2-gray-800);
  padding: 8px 12px;
  border-radius: var(--v2-radius-md);
  transition: var(--v2-transition);
}

.v2-user-name-btn span {
  font-size: 0.7rem;
  color: var(--v2-gray-500);
  transition: transform 0.3s ease;
}

.v2-user-name-btn[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.v2-user-name-btn:hover {
  background: var(--v2-gray-50);
}

.v2-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 200px;
  background: var(--v2-white);
  border-radius: var(--v2-radius-md);
  box-shadow: var(--v2-shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.v2-user-menu-container.v2-dropdown-active .v2-user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.v2-dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--v2-gray-800);
  transition: var(--v2-transition);
}

.v2-dropdown-item:hover {
  background: var(--v2-gray-50);
  color: var(--v2-primary);
}

.v2-dropdown-divider {
  height: 1px;
  background: var(--v2-gray-100);
  margin: 8px 0;
}

.v2-text-red {
  color: var(--v2-secondary) !important;
}

/* 푸터 스타일 */
.v2-footer {
  background: var(--v2-gray-900);
  color: var(--v2-white);
  padding: 80px 0 40px;
}

.v2-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.v2-footer-logo {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.v2-footer-logo span {
  font-weight: 400;
  opacity: 0.6;
}

.v2-footer-desc {
  color: var(--v2-gray-500);
  font-size: 0.95rem;
  margin-bottom: 30px;
}

.v2-footer-links {
  display: flex;
  gap: 80px;
}

.v2-link-group h3 {
  font-size: 1rem;
  margin-bottom: 20px;
}

.v2-link-group ul li {
  margin-bottom: 12px;
}

.v2-link-group a {
  color: var(--v2-gray-500);
  transition: var(--v2-transition);
}

.v2-link-group a:hover {
  color: var(--v2-white);
}

.v2-footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.v2-company-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--v2-gray-500);
}

.v2-copyright {
  font-size: 0.8rem;
  color: var(--v2-gray-500);
}

/* 모바일 대응 */

/* 모바일 메뉴 토글 버튼 */
.v2-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.v2-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--v2-primary);
  transition: var(--v2-transition);
}

/* 소셜 미디어 아이콘 */
.v2-social {
  display: flex;
  gap: 12px;
}

.v2-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--v2-transition);
}

.v2-social-icon:hover {
  background: var(--v2-primary);
  transform: translateY(-3px);
}

.v2-social-icon.youtube {
  background: #ff0000;
}

/* --- Header & Footer Mobile --- */
@media (max-width: 1024px) {
  .v2-nav {
    display: none;
  }

  /* Make buttons and menu items scale appropriately in mobile menu */
  .v2-auth-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--v2-gray-100);
  }

  .v2-user-name-btn {
    padding: 8px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .v2-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .v2-footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {

  /* 1. Global Typography & Layout */
  .v2-scope h1,
  .v2-scope h2,
  .v2-scope h3,
  .v2-scope p,
  .v2-scope span,
  .v2-scope li,
  .v2-scope a {
    word-break: keep-all;
    word-wrap: break-word;
  }

  .v2-section {
    padding: 50px 0;
    /* Increased slightly for separation */
  }

  .v2-container {
    padding: 0 20px;
  }

  .v2-section-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .v2-section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* 2. Intro Sections (Susulaw, Hanmuncheol TV) */
  /* Reordering: Title -> Image -> Body */
  .v2-intro-layout,
  .v2-intro-layout.v2-intro-reverse {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding-top: 20px;
    /* Extra top spacing for separation */
  }

  /* Use display: contents to unwrap the content div so we can reorder children independently */
  .v2-intro-content {
    display: contents;
  }

  /* Order 1: Title */
  .v2-intro-title {
    order: 1;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  /* Order 2: Visual (Image) */
  .v2-intro-visual {
    order: 2;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .v2-intro-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }

  /* Order 3: Description Body */
  .v2-intro-desc {
    order: 3;
    text-align: left;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .v2-report-a-layout {
    flex-direction: column;
    gap: 10px;
  }

  .v2-report-a-content {
    padding: 0;
    text-align: center;
  }

  .v2-report-a-content .v2-section-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .v2-report-a-desc {
    text-align: center;
    margin-bottom: 20px;
  }

  .v2-usage-list-a {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .v2-report-a-visual-btn {
    width: 100% !important;
    /* Full container width */
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    /* Force square shape based on width */
    padding: 0;
    box-sizing: border-box;
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* Tighter gap */
    border-radius: 20px;
  }

  .v2-visual-icon {
    font-size: 3rem;
    margin-bottom: 0;
  }

  .v2-visual-text {
    text-align: center;
  }

  /* Reduce bottom margin for Section C (Report Process) */

  /* 4. Report Guide C (Step Process) */

  /* 5. Report Guide D (Card Grid) */

  /* 6. Criminal Cases & Youtube Section Mobile Padding Increase */
  .v2-section-services,
  .v2-criminal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Memo Header Left Alignment */
  .v2-memo-header {
    text-align: left;
  }

  .v2-criminal-info {
    text-align: center;
  }

  .v2-criminal-info .v2-section-title {
    text-align: center;
  }

  .v2-phone-box {
    justify-content: center;
  }

  .v2-memo-form-container {
    padding: 24px 20px;
  }

  /* FAQ Mobile */
  .v2-faq-question {
    padding: 16px;
    font-size: 1rem;
  }

  .v2-faq-answer-content {
    padding: 16px;
  }

  /* Mobile Menu - Active State */
  .v2-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    /* Below header */
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f1f1;
    z-index: 999;
  }

  .v2-nav.active .v2-nav-list {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 100%;
  }

  .v2-privacy-tooltip-content {
    text-align: left;
  }

  .v2-criminal-desc {
    text-align: left;
    padding-left: 5px;
  }
}

/* 애니메이션 효과 */
.v2-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.v2-reveal.v2-visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-delay-1 {
  transition-delay: 0.1s;
}

.v2-delay-2 {
  transition-delay: 0.2s;
}

.v2-delay-3 {
  transition-delay: 0.3s;
}

/* Hero Section */
.v2-hero {
  position: relative;
  padding: 180px 0 120px;
  background: var(--v2-primary-light);
  background-image:
    linear-gradient(rgba(230, 240, 250, 0.9), rgba(230, 240, 250, 0.9)),
    url("../../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.v2-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.v2-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--v2-gray-900);
}

.v2-hero-title span {
  color: var(--v2-primary);
}

.v2-hero-desc {
  font-size: 1.25rem;
  color: var(--v2-gray-500);
  margin-bottom: 40px;
}

.v2-hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Badge for Variations */
.v2-badge-hero {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  z-index: 10;
}

.v2-badge-white {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Ensure reusable typography classes work well here */

/* Responsive for Hero V2 */

/* Section Common */
.v2-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.v2-section-subtitle {
  font-size: 1.125rem;
  color: var(--v2-gray-500);
  text-align: center;
  margin-bottom: 60px;
}

/* Section 1: 제보하기 */
.v2-section-report {
  background: var(--v2-white);
}

.v2-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.v2-report-card {
  background: var(--v2-gray-50);
  padding: 40px;
  border-radius: var(--v2-radius-lg);
  border: 1px solid var(--v2-gray-200);
  transition: var(--v2-transition);
  position: relative;
  overflow: hidden;
}

.v2-report-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--v2-shadow-lg);
  border-color: var(--v2-primary);
}

.v2-report-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: var(--v2-primary-light);
  border-radius: 0 0 0 100%;
  opacity: 0.3;
}

.v2-card-icon {
  font-size: 2rem;
  margin-bottom: 24px;
  display: inline-block;
}

.v2-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.v2-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.v2-tag {
  font-size: 0.825rem;
  padding: 4px 12px;
  background: var(--v2-white);
  border: 1px solid var(--v2-gray-200);
  border-radius: 100px;
  color: var(--v2-gray-500);
}

/* Responsive */

/* Section 2: 법률 서비스 */


.v2-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.v2-service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: var(--v2-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--v2-transition);
}

.v2-service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--v2-primary);
  transform: translateY(-5px);
}

.v2-service-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: inline-block;
}

.v2-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.v2-service-desc {
  color: var(--v2-gray-500);
  margin-bottom: 24px;
  line-height: 1.7;
}

.v2-service-link {
  color: var(--v2-primary);
  font-weight: 600;
  transition: var(--v2-transition);
}

.v2-service-link:hover {
  color: var(--v2-primary-light);
}

/* Section 3: 한문철TV */

.v2-text-left {
  text-align: left;
  color: var(--v2-gray-900);
}

.v2-section-subtitle.v2-text-left {
  color: var(--v2-gray-500);
  margin-bottom: 40px;
}

/* Stats Counters */

.v2-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--v2-primary);
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  background: none;
  -webkit-text-fill-color: initial;
  background-clip: border-box;
  -webkit-background-clip: border-box;
}

.v2-stat-unit-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--v2-gray-800);
}

.v2-stat-label {
  font-size: 0.9rem;
  color: var(--v2-gray-500);
  font-weight: 500;
}

/* Vertical Marquee Grid */
.v2-youtube-visual {
  height: 600px;
  position: relative;
  overflow: hidden;
  mask-image: none;
  -webkit-mask-image: none;
}

/* Stagger styling */

@keyframes marquee-up {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-100%);
  }
}

/* Responsive */

/* --- Report Guide Mobile --- */
@media (max-width: 1024px) {
  .v2-report-single-layout {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .v2-report-content {
    max-width: 100%;
  }

  .v2-usage-list {
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .v2-btn-mega {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
  }

  .v2-visual-circle {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 768px) {
  .v2-usage-list {
    grid-template-columns: 1fr;
  }

  .v2-btn-mega {
    padding: 20px;
  }

  .v2-btn-icon {
    font-size: 2rem;
  }

  .v2-btn-text strong {
    font-size: 1.2rem;
  }
}

@media (max-width: 1024px) {

  /* A */
  .v2-report-a-layout {
    flex-direction: column;
    text-align: center;
  }

  .v2-report-a-visual-btn {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  /* C */

  /* D */

  /* E */
  .v2-banner-e {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 30px;
  }

  .v2-btn-e {
    margin-left: 0;
  }
}

@media (max-width: 768px) {

  /* 1. Global Typography & Layout */
  .v2-scope h1,
  .v2-scope h2,
  .v2-scope h3,
  .v2-scope p,
  .v2-scope span,
  .v2-scope li,
  .v2-scope a {
    word-break: keep-all;
    word-wrap: break-word;
  }

  .v2-section {
    padding: 50px 0;
    /* Increased slightly for separation */
  }

  .v2-container {
    padding: 0 20px;
  }

  .v2-section-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .v2-section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* 2. Intro Sections (Susulaw, Hanmuncheol TV) */
  /* Reordering: Title -> Image -> Body */
  .v2-intro-layout,
  .v2-intro-layout.v2-intro-reverse {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding-top: 20px;
    /* Extra top spacing for separation */
  }

  /* Use display: contents to unwrap the content div so we can reorder children independently */
  .v2-intro-content {
    display: contents;
  }

  /* Order 1: Title */
  .v2-intro-title {
    order: 1;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  /* Order 2: Visual (Image) */
  .v2-intro-visual {
    order: 2;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .v2-intro-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }

  /* Order 3: Description Body */
  .v2-intro-desc {
    order: 3;
    text-align: left;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* 3. Report Guide A */
  .v2-report-a-layout {
    flex-direction: column;
    gap: 20px;
  }

  .v2-report-a-content {
    padding: 0;
    text-align: center;
  }

  .v2-report-a-content .v2-section-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .v2-report-a-desc {
    text-align: center;
    margin-bottom: 20px;
  }

  .v2-usage-list-a {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .v2-report-a-visual-btn {
    width: 100% !important;
    /* Full container width */
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    /* Force square shape based on width */
    padding: 0;
    box-sizing: border-box;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* Tighter gap */
    border-radius: 20px;
  }

  .v2-visual-icon {
    font-size: 3rem;
    margin-bottom: 0;
  }

  .v2-visual-text {
    text-align: center;
  }

  /* Reduce bottom margin for Section C (Report Process) */

  /* 4. Report Guide C (Step Process) */

  /* 5. Report Guide D (Card Grid) */

  /* 6. Criminal Cases & Youtube Section Mobile Padding Increase */


  /* Memo Header Left Alignment */
  .v2-memo-header {
    text-align: left;
  }



  /* FAQ Mobile */
  .v2-faq-question {
    padding: 16px;
    font-size: 1rem;
  }

  .v2-faq-answer-content {
    padding: 16px;
  }

  /* Mobile Menu - Active State */
  .v2-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    /* Below header */
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f1f1;
    z-index: 999;
  }

  .v2-nav.active .v2-nav-list {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 100%;
  }

  .v2-privacy-tooltip-content {
    text-align: left;
  }


}

/* Section 2: 형사사건 & 메모 */


/* Memo Form */


.v2-input-group {
  margin-bottom: 16px;
}

.v2-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.v2-input,
.v2-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--v2-gray-200);
  border-radius: var(--v2-radius-md);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--v2-transition);
  background: var(--v2-gray-50);
}

.v2-input:focus,
.v2-textarea:focus {
  outline: none;
  border-color: var(--v2-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(72, 161, 239, 0.1);
}

.v2-textarea {
  resize: none;
}

.v2-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 30px;
  font-size: 0.9rem;
  color: var(--v2-gray-500);
}

.v2-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--v2-primary);
}

/* Character Counter */
.v2-memo-textarea-group {
  position: relative;
}

.v2-char-counter {
  text-align: right;
  font-size: 0.8rem;
  color: var(--v2-gray-500);
  margin-top: 6px;
  padding-right: 4px;
}

/* Privacy Popup / Tooltip */
.v2-privacy-group {
  position: relative;
  flex-wrap: wrap;
  /* Allow wrapping if needed */
}

.v2-privacy-detail-btn {
  font-size: 0.85rem;
  color: var(--v2-primary);
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  margin-left: 4px;
}

.v2-privacy-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: var(--v2-white);
  border: 1px solid var(--v2-gray-200);
  border-radius: var(--v2-radius-md);
  box-shadow: var(--v2-shadow-lg);
  padding: 20px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease-in-out;
}

.v2-privacy-tooltip.v2-tooltip-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.v2-privacy-tooltip-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--v2-gray-900);
}

.v2-privacy-tooltip-content {
  font-size: 0.85rem;
  color: var(--v2-gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.v2-privacy-tooltip-content p {
  margin-bottom: 4px;
}

.v2-privacy-close-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--v2-gray-100);
  color: var(--v2-gray-800);
  text-align: center;
  border-radius: var(--v2-radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--v2-transition);
}

.v2-privacy-close-btn:hover {
  background: var(--v2-gray-200);
}

.v2-btn-full {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

.v2-btn:disabled {
  background: var(--v2-gray-200);
  color: var(--v2-gray-500);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* Responsive for Section 2 */

/* Section 1: 통합 제보 가이드 */
.v2-section-report {
  background: #ffffff;
  padding: 120px 0;
}

.v2-report-single-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.v2-report-content {
  flex: 1;
  max-width: 600px;
}

.v2-badge-report {
  display: inline-block;
  padding: 6px 14px;
  background: #fff1f2;
  color: #e11d48;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 100px;
  margin-bottom: 24px;
}

.v2-report-desc {
  font-size: 1.15rem;
  color: var(--v2-gray-500);
  line-height: 1.7;
  margin-bottom: 40px;
}

.v2-usage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.v2-usage-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.v2-usage-icon {
  font-size: 1.5rem;
  margin-top: -2px;
}

.v2-usage-list div {
  display: flex;
  flex-direction: column;
}

.v2-usage-list strong {
  font-size: 1.05rem;
  color: var(--v2-gray-900);
  margin-bottom: 4px;
}

.v2-usage-list span {
  font-size: 0.85rem;
  color: var(--v2-gray-500);
}

/* Mega Button */
.v2-btn-mega {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 32px;
  background: var(--v2-primary-gradient);
  border-radius: 20px;
  color: white;
  text-align: left;
  transition: var(--v2-transition);
  box-shadow: 0 10px 30px rgba(0, 80, 170, 0.2);
  position: relative;
  overflow: hidden;
}

.v2-btn-mega::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: translateX(-100%);
  transition: 0.5s;
}

.v2-btn-mega:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 80, 170, 0.3);
}

.v2-btn-mega:hover::before {
  transform: translateX(100%);
}

.v2-btn-icon {
  font-size: 2.5rem;
  margin-right: 20px;
}

.v2-btn-text {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.v2-btn-text strong {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.v2-btn-text small {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 400;
}

.v2-btn-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.7;
  margin-left: 20px;
  transition: var(--v2-transition);
}

.v2-btn-mega:hover .v2-btn-arrow {
  transform: translateX(5px);
  opacity: 1;
}

/* Visual Area */
.v2-report-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.v2-visual-circle {
  width: 400px;
  height: 400px;
  background: var(--v2-primary-light);
  border-radius: 50%;
  position: relative;
  /* You can add a background image here later */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2348a1ef" opacity="0.1"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>');
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive */

/* ========================================= */
/* Section 1 Variations Styles               */
/* ========================================= */

/* --- Version A: Trust & Clean (Refined Current) --- */
.v2-report-a-scope {
  background: #ffffff;
  padding: 120px 0;
  border-bottom: 1px solid #f1f5f9;
}

.v2-report-a-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.v2-report-a-content {
  flex: 1;
  max-width: 600px;
}

.v2-badge-report-a {
  display: inline-block;
  padding: 6px 14px;
  background: #eff6ff;
  color: #3b82f6;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 6px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.v2-report-a-desc {
  font-size: 1.15rem;
  color: var(--v2-gray-500);
  line-height: 1.7;
  margin-bottom: 40px;
}

.v2-usage-list-a {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.v2-usage-list-a li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--v2-gray-800);
}

.v2-icon-a {
  font-size: 1.25rem;
}

.v2-btn-mega-a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 16px;
  color: #1e3a8a;
  transition: all 0.3s ease;
}

.v2-btn-mega-a:hover {
  background: #dbeafe;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.15);
}

.v2-btn-icon-a {
  font-size: 2rem;
}

.v2-btn-text-a {
  display: flex;
  flex-direction: column;
}

.v2-btn-text-a strong {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.v2-btn-text-a small {
  font-size: 0.85rem;
  opacity: 0.8;
}

.v2-scope .v2-report-a-visual-btn {
  width: 400px;
  height: 400px;
  background: #f8fafc;
  border-radius: 40px;
  border: 3px dashed #cbd5e1;
  /* Dashed border */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  color: #64748b !important;
}

.v2-report-a-visual-btn:hover {
  background: #eff6ff;
  /* Light Blue Hover */
  border-color: #3b82f6;
  /* Blue Border Hover */
  transform: scale(1.02);
  /* Slight grow */
  color: #3b82f6;
  /* Blue Text Hover */
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.v2-report-a-visual-btn:active {
  transform: scale(0.98);
  /* Click effect */
}

.v2-report-a-visual-btn .v2-visual-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.v2-report-a-visual-btn:hover .v2-visual-icon {
  transform: scale(1.1) rotate(-10deg);
  /* Icon animation on hover */
}

.v2-report-a-visual-btn .v2-visual-text strong {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 8px;
}

.v2-report-a-visual-btn .v2-visual-text small {
  font-size: 1rem;
  opacity: 0.8;
}

/* --- Version E: Minimalist Banner --- */
.v2-report-e-scope {
  padding: 60px 0;
  background: #ffffff;
}

.v2-banner-e {
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  border-radius: 24px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.2);
}

.v2-badge-report-e {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.v2-content-e h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.v2-content-e p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.v2-scope .v2-btn-e {
  background: white;
  color: #a78bfa !important;
  /* Brighter, catchy purple */
  padding: 16px 40px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.v2-scope .v2-btn-e:hover {
  transform: scale(1.05);
  background: #f5f3ff;
  color: #8b5cf6 !important;
  /* Keep purple on hover */
}

/* --- Responsive Adjustments for Variations --- */

/* ========================================= */
/* Intro Sections (Susulaw & Hanmuncheol TV) */
/* ========================================= */

.v2-intro-section {
  padding: 10px 0 40px 0;
  overflow: hidden;
}

.v2-bg-white {
  background-color: #ffffff;
}

.v2-bg-gray {
  background-color: #f8fafc;
}

.v2-intro-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.v2-intro-reverse {
  flex-direction: row-reverse;
}

.v2-intro-content {
  flex: 1;
  max-width: 600px;
}

.v2-intro-visual {
  flex: 1;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* overflow: hidden; */
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05); */
}

.v2-badge-intro {
  display: inline-block;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.v2-badge-blue {
  background: #eff6ff;
  color: #2563eb;
}

.v2-badge-red {
  background: #fef2f2;
  color: #dc2626;
}

.v2-intro-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.25;
  color: #1e293b;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.v2-intro-highlight {
  font-size: 3.5rem;
  color: var(--v2-gray-900);
  display: block;
  margin-bottom: 5px;
}

.v2-intro-highlight-red {
  font-size: 3.5rem;
  color: var(--v2-gray-900);
  display: flex;
  /* Flex to align icon and text */
  align-items: center;
  /* Center vertically */
  gap: 15px;
  /* Space between icon and text */
  margin-bottom: 5px;
}

.v2-youtube-icon {
  width: 65px;
  height: 65px;
  color: #ff0000;
  /* YouTube Red */
}

.v2-intro-subtitle {
  font-size: 2rem;
  color: #64748b;
  font-weight: 500;
}

.v2-intro-desc {
  font-size: 1.15rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 24px;
}

.v2-intro-desc strong {
  color: #334155;
  font-weight: 700;
}

.v2-visual-susulaw,
.v2-visual-youtube {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: none;
}

.v2-intro-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 12px;
  /* Consistent branding */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.v2-img-rounded {
  border-radius: 24px;
  /* Slightly less rounded for TV screen if preferred */
}

.v2-intro-visual-placeholder {
  display: none;
}

/* Stats for Hanmuncheol TV */
.v2-intro-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.v2-intro-stat-item {
  display: flex;
  flex-direction: column;
}

.v2-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
  margin-bottom: 4px;
}

.v2-stat-num small {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  margin-left: 2px;
}

.v2-stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
  font-weight: 500;
}

/* Responsive */

/* --- Intro Sections Mobile --- */
@media (max-width: 1024px) {
  .v2-intro-layout {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .v2-intro-reverse {
    flex-direction: column;
  }

  .v2-intro-content {
    max-width: 100%;
  }

  .v2-intro-visual {
    width: 100%;
    height: 400px;
  }
}

@media (max-width: 768px) {

  /* 1. Global Typography & Layout */
  .v2-scope h1,
  .v2-scope h2,
  .v2-scope h3,
  .v2-scope p,
  .v2-scope span,
  .v2-scope li,
  .v2-scope a {
    word-break: keep-all;
    word-wrap: break-word;
  }

  .v2-section {
    padding: 50px 0;
    /* Increased slightly for separation */
  }

  .v2-container {
    padding: 0 20px;
  }

  .v2-section-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .v2-section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* 2. Intro Sections (Susulaw, Hanmuncheol TV) */
  /* Reordering: Title -> Image -> Body */
  .v2-intro-layout,
  .v2-intro-layout.v2-intro-reverse {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding-top: 20px;
    /* Extra top spacing for separation */
  }

  /* Use display: contents to unwrap the content div so we can reorder children independently */
  .v2-intro-content {
    display: contents;
  }

  /* Order 1: Title */
  .v2-intro-title {
    order: 1;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  /* Order 2: Visual (Image) */
  .v2-intro-visual {
    order: 2;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .v2-intro-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }

  /* Order 3: Description Body */
  .v2-intro-desc {
    order: 3;
    text-align: left;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* 3. Report Guide A */
  .v2-report-a-layout {
    flex-direction: column;
    gap: 20px;
  }

  .v2-report-a-content {
    padding: 0;
    text-align: center;
  }

  .v2-report-a-content .v2-section-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .v2-report-a-desc {
    text-align: center;
    margin-bottom: 20px;
  }

  .v2-usage-list-a {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .v2-report-a-visual-btn {
    width: 100% !important;
    /* Full container width */
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    /* Force square shape based on width */
    padding: 0;
    box-sizing: border-box;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* Tighter gap */
    border-radius: 20px;
  }

  .v2-visual-icon {
    font-size: 3rem;
    margin-bottom: 0;
  }

  .v2-visual-text {
    text-align: center;
  }

  /* Reduce bottom margin for Section C (Report Process) */

  /* 4. Report Guide C (Step Process) */

  /* 5. Report Guide D (Card Grid) */

  /* 6. Criminal Cases & Youtube Section Mobile Padding Increase */
  .v2-section-services,
  .v2-criminal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Memo Header Left Alignment */
  .v2-memo-header {
    text-align: left;
  }

  .v2-criminal-info {
    text-align: center;
  }

  .v2-criminal-info .v2-section-title {
    text-align: center;
  }

  .v2-phone-box {
    justify-content: center;
  }

  .v2-memo-form-container {
    padding: 24px 20px;
  }

  /* FAQ Mobile */
  .v2-faq-question {
    padding: 16px;
    font-size: 1rem;
  }

  .v2-faq-answer-content {
    padding: 16px;
  }

  /* Mobile Menu - Active State */
  .v2-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    /* Below header */
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f1f1;
    z-index: 999;
  }

  .v2-nav.active .v2-nav-list {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 100%;
  }

  .v2-privacy-tooltip-content {
    text-align: left;
  }

  .v2-criminal-desc {
    text-align: left;
    padding-left: 5px;
  }
}

/* --- Hero Ver. A : Modified (Split Layout) --- */
.v2-hero-a-split {
  text-align: left !important;
  display: flex;
  align-items: flex-end;
  /* Align content to bottom to sit image on edge */
  justify-content: center;
  min-height: 520px;
  /* Reduced somewhat to fit new image size */
  padding-top: 140px !important;
  /* Increased for more headroom */
  padding-bottom: 0 !important;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.v2-hero-a-layout {
  display: flex;
  align-items: flex-end;
  /* Visual bottom alignment */
  justify-content: center;
  /* Center the group */
  width: 100%;
  max-width: 1200px;
  gap: 80px;
  /* Significantly increased gap */
  margin: 0 auto;
  padding-left: 0;
}

.v2-hero-a-text {
  flex: 0 0 auto;
  z-index: 10;
  /* Position text vertically centered visually relative to the section,
       since image is stuck to bottom */
  margin-bottom: 125px;
  text-align: left;
}

/* Image on the right */
.v2-hero-a-visual {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  position: relative;
  /* Ensure no extra spacing below */
  margin-bottom: -5px;
}

.v2-hero-a-img {
  height: auto;
  max-height: 510px;
  /* User Requested 510px */
  width: auto;
  max-width: none;
  /* Allow it to be wide if needed */
  object-fit: contain;
}

/* Text Adjustments to prevent wrapping */
.v2-hero-a-split .v2-hero-title {
  font-size: 3rem;
  /* Slightly adjusted */
  white-space: nowrap;
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.2;
}

.v2-hero-a-split .v2-hero-desc {
  font-size: 1.125rem;
  white-space: nowrap;
  text-align: left;
  max-width: 100%;
  margin-bottom: 40px;
  color: var(--v2-gray-500);
}

.v2-hero-a-split .v2-hero-btns {
  justify-content: flex-start;
}

/* Responsive adjustments */

/* --- Hero Mobile --- */

@media (max-width: 1024px) {
  .v2-hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .v2-hero {
    padding: 140px 0 80px;
  }

  .v2-hero-title {
    font-size: 2.25rem;
  }

  .v2-card-grid {
    grid-template-columns: 1fr;
  }

  .v2-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 1400px) {
  .v2-hero-a-split .v2-hero-title {
    font-size: 2.5rem;
  }

  .v2-hero-a-split .v2-hero-desc {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .v2-hero-a-split {
    display: block;
    text-align: center !important;
    padding-bottom: 0 !important;
    height: auto;
    min-height: auto;
  }

  .v2-hero-a-layout {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-left: 0;
  }

  .v2-hero-a-text {
    flex: none;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
    padding: 0 20px;
  }

  .v2-hero-a-split .v2-hero-title,
  .v2-hero-a-split .v2-hero-desc {
    white-space: normal;
    text-align: center;
  }

  .v2-hero-a-split .v2-hero-btns {
    justify-content: center;
  }

  .v2-hero-a-visual {
    flex: none;
    max-width: 100%;
    justify-content: center;
    margin-bottom: 0;
  }

  .v2-hero-a-img {
    max-height: 400px;
    margin-right: 0;
  }
}

/* ========================================= */
/* FAQ Section                               */
/* ========================================= */
.v2-section-faq {
  background-color: var(--v2-gray-50);
}

.v2-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.v2-faq-item {
  background: var(--v2-white);
  border: 1px solid var(--v2-gray-200);
  border-radius: var(--v2-radius-md);
  overflow: hidden;
  transition: var(--v2-transition);
}

.v2-faq-item:hover {
  border-color: var(--v2-primary);
  box-shadow: var(--v2-shadow-sm);
}

.v2-faq-item.active {
  border-color: var(--v2-primary);
  box-shadow: var(--v2-shadow-sm);
}

.v2-faq-question {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--v2-gray-900);
  cursor: pointer;
  background: none;
  border: none;
}

.v2-faq-question:hover {
  color: var(--v2-primary);
}

.v2-faq-toggle-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}

.v2-faq-toggle-icon::before,
.v2-faq-toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: var(--v2-gray-500);
  transform: translate(-50%, -50%);
  transition: var(--v2-transition);
}

.v2-faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.v2-faq-item.active .v2-faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.v2-faq-item.active .v2-faq-toggle-icon::before {
  background-color: var(--v2-primary);
}

.v2-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease;
  background-color: var(--v2-gray-50);
}

.v2-faq-item.active .v2-faq-answer {
  max-height: 500px;
  /* Sufficient height for content */
  border-top: 1px solid var(--v2-gray-100);
}

.v2-faq-answer-content {
  padding: 24px;
  color: var(--v2-gray-500);
  line-height: 1.7;
}

.v2-faq-link-wrapper {
  margin-top: 16px;
  text-align: right;
}

.v2-faq-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--v2-primary);
  transition: var(--v2-transition);
}

.v2-faq-link:hover {
  color: var(--v2-gray-900);
  text-decoration: underline;
}

/* --- FAQ Mobile --- */
@media (max-width: 768px) {

  /* 1. Global Typography & Layout */
  .v2-scope h1,
  .v2-scope h2,
  .v2-scope h3,
  .v2-scope p,
  .v2-scope span,
  .v2-scope li,
  .v2-scope a {
    word-break: keep-all;
    word-wrap: break-word;
  }

  .v2-section {
    padding: 50px 0;
    /* Increased slightly for separation */
  }

  .v2-container {
    padding: 0 20px;
  }

  .v2-section-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .v2-section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* 2. Intro Sections (Susulaw, Hanmuncheol TV) */
  /* Reordering: Title -> Image -> Body */
  .v2-intro-layout,
  .v2-intro-layout.v2-intro-reverse {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding-top: 20px;
    /* Extra top spacing for separation */
  }

  /* Use display: contents to unwrap the content div so we can reorder children independently */
  .v2-intro-content {
    display: contents;
  }

  /* Order 1: Title */
  .v2-intro-title {
    order: 1;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  /* Order 2: Visual (Image) */
  .v2-intro-visual {
    order: 2;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .v2-intro-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }

  /* Order 3: Description Body */
  .v2-intro-desc {
    order: 3;
    text-align: left;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  /* 3. Report Guide A */
  .v2-report-a-layout {
    flex-direction: column;
    gap: 20px;
  }

  .v2-report-a-content {
    padding: 0;
    text-align: center;
  }

  .v2-report-a-content .v2-section-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .v2-report-a-desc {
    text-align: center;
    margin-bottom: 20px;
  }

  .v2-usage-list-a {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .v2-report-a-visual-btn {
    width: 100% !important;
    /* Full container width */
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    /* Force square shape based on width */
    padding: 0;
    box-sizing: border-box;
    margin-top: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* Tighter gap */
    border-radius: 20px;
  }

  .v2-visual-icon {
    font-size: 3rem;
    margin-bottom: 0;
  }

  .v2-visual-text {
    text-align: center;
  }

  /* Reduce bottom margin for Section C (Report Process) */

  /* 4. Report Guide C (Step Process) */

  /* 5. Report Guide D (Card Grid) */

  /* 6. Criminal Cases & Youtube Section Mobile Padding Increase */
  .v2-section-services,
  .v2-criminal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Memo Header Left Alignment */
  .v2-memo-header {
    text-align: left;
  }

  .v2-criminal-info {
    text-align: center;
  }

  .v2-criminal-info .v2-section-title {
    text-align: center;
  }

  .v2-phone-box {
    justify-content: center;
  }

  .v2-memo-form-container {
    padding: 24px 20px;
  }

  /* FAQ Mobile */
  .v2-faq-question {
    padding: 16px;
    font-size: 1rem;
  }

  .v2-faq-answer-content {
    padding: 16px;
  }

  /* Mobile Menu - Active State */
  .v2-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    /* Below header */
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f1f1;
    z-index: 999;
  }

  .v2-nav.active .v2-nav-list {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 100%;
  }

  .v2-privacy-tooltip-content {
    text-align: left;
  }

  .v2-criminal-desc {
    text-align: left;
    padding-left: 5px;
  }
}

/* ========================================= */
/* Logo Rotation Animation                   */
/* ========================================= */
.v2-logo-container {
  perspective: 1000px;
  display: inline-flex;
  align-items: center;
  width: 160px;
  /* Fixed width to prevent layout shift */
}

/* ========================================= */
/* Mobile Optimization                       */
/* ========================================= */

.v2-logo-text {
  display: inline-block;
  /* Transition is managed by JS */
}

/* --- Criminal Cases Mobile --- */
@media (max-width: 1024px) {
  .v2-criminal-layout {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .v2-criminal-info {
    max-width: 100%;
  }

  .v2-section-title.v2-text-left {
    text-align: center;
  }

  .v2-memo-form-container {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .v2-phone-number {
    font-size: 2.5rem;
  }

  .v2-memo-form-container {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {

  /* 1. Global Typography & Layout */
  .v2-scope h1,
  .v2-scope h2,
  .v2-scope h3,
  .v2-scope p,
  .v2-scope span,
  .v2-scope li,
  .v2-scope a {
    word-break: keep-all;
    word-wrap: break-word;
  }

  .v2-section {
    padding: 50px 0;
    /* Increased slightly for separation */
  }

  .v2-container {
    padding: 0 20px;
  }

  .v2-section-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .v2-section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* 2. Intro Sections (Susulaw, Hanmuncheol TV) */
  /* Reordering: Title -> Image -> Body */
  .v2-intro-layout,
  .v2-intro-layout.v2-intro-reverse {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding-top: 20px;
    /* Extra top spacing for separation */
  }

  /* Use display: contents to unwrap the content div so we can reorder children independently */
  .v2-intro-content {
    display: contents;
  }

  /* Order 1: Title */
  .v2-intro-title {
    order: 1;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
  }

  /* Order 2: Visual (Image) */
  .v2-intro-visual {
    order: 2;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .v2-intro-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }

  /* Order 3: Description Body */
  .v2-intro-desc {
    order: 3;
    text-align: left;
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .v2-report-a-layout {
    flex-direction: column;
    gap: 10px;
  }

  .v2-report-a-content {
    padding: 0;
    text-align: center;
  }

  .v2-report-a-content .v2-section-title {
    text-align: center;
    margin-bottom: 10px;
  }

  .v2-report-a-desc {
    text-align: center;
    margin-bottom: 20px;
  }

  .v2-usage-list-a {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .v2-report-a-visual-btn {
    width: 100% !important;
    /* Full container width */
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1;
    /* Force square shape based on width */
    padding: 0;
    box-sizing: border-box;
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    /* Tighter gap */
    border-radius: 20px;
  }

  .v2-visual-icon {
    font-size: 3rem;
    margin-bottom: 0;
  }

  .v2-visual-text {
    text-align: center;
  }

  /* Reduce bottom margin for Section C (Report Process) */

  /* 4. Report Guide C (Step Process) */

  /* 5. Report Guide D (Card Grid) */

  /* 6. Criminal Cases & Youtube Section Mobile Padding Increase */
  .v2-section-services,
  .v2-criminal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Memo Header Left Alignment */
  .v2-memo-header {
    text-align: left;
  }

  .v2-criminal-info {
    text-align: center;
  }

  .v2-criminal-info .v2-section-title {
    text-align: center;
  }

  .v2-phone-box {
    justify-content: center;
  }

  .v2-memo-form-container {
    padding: 24px 20px;
  }

  /* FAQ Mobile */
  .v2-faq-question {
    padding: 16px;
    font-size: 1rem;
  }

  .v2-faq-answer-content {
    padding: 16px;
  }

  /* Mobile Menu - Active State */
  .v2-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 80px;
    /* Below header */
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f1f1f1;
    z-index: 999;
  }

  .v2-nav.active .v2-nav-list {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    width: 100%;
  }

  .v2-privacy-tooltip-content {
    text-align: left;
  }

  .v2-criminal-desc {
    text-align: left;
    padding-left: 5px;
  }
}

.v2-report-diary-scope {
  padding: 60px 0 60px 0;
  background: #ffffff;
}

/* 데스크탑 레이아웃 및 디자인 */
.v2-diary-v3-final {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  background: linear-gradient(135deg, #e6f0fa, #f1f5f9);
  border-radius: 20px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.v2-diary-content-v3-final {
  display: flex;
  align-items: center;
  gap: 20px;
}

.v2-diary-title-v3-final {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
  color: #1e293b;
}

.v2-diary-desc-v3-final {
  font-size: 1.1rem;
  color: #64748b;
  position: relative;
  padding-left: 20px;
}

/* 제목과 부제목 사이의 세로선(구분선) */
.v2-diary-desc-v3-final::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 20px;
  background: #cbd5e1;
}

/* 우측 버튼 형태 및 호버 액션 */
.v2-diary-v3-final .v2-btn-white {
  background: #66a0ff;
  color: #ffffff !important;
  border: none;
  box-shadow: 0 4px 10px rgba(102, 160, 255, 0.3);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.v2-diary-v3-final .v2-btn-white:hover {
  background: #4b8deb;
  transform: translateY(-2px);
}

/* ========================================= */
/* 모바일 반응형 처리 (1024px 이하 태블릿/모바일) */
/* ========================================= */

/* 더 작은 폰 화면 (768px 이하) 대응 */

/* --- Client Diary Mobile --- */
@media (max-width: 1024px) {
  .v2-diary-v3-final {
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    text-align: center;
  }

  .v2-diary-content-v3-final {
    flex-direction: column;
    gap: 10px;
  }

  /* 세로 배열 시 세로선(구분선)을 가로선이나 점 형태로 변경 */
  .v2-diary-desc-v3-final {
    padding-left: 0;
    padding-top: 10px;
  }

  .v2-diary-desc-v3-final::before {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
  }
}

@media (max-width: 768px) {
  .v2-diary-title-v3-final {
    font-size: 1.6rem;
  }
}

/* --- law2.css 통합 (형사민사섹션2) --- */
.law2-section {
  padding: 100px 0 70px 0;
  background: var(--v2-gray-900, #0f172a);
}

/* 좌우 분할 2단 레이아웃 */
.law2-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* 왼쪽 텍스트 정보 파트 */
.law2-info-side {
  display: flex;
  flex-direction: column;
}

.law2-case-block {
  margin-bottom: 20px;
}

.law2-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--v2-radius-sm, 6px);
  margin-bottom: 16px;
}

.law2-badge-criminal {
  background: rgba(244, 63, 94, 0.15);
  color: #fb7185;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.law2-badge-civil {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.law2-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--v2-white, #ffffff);
  line-height: 1.4;
  margin-bottom: 20px;
  word-break: keep-all;
}

.law2-desc {
  font-size: 1.1rem;
  color: var(--v2-gray-400, #94a3b8);
  line-height: 1.7;
}

/* 중간 가로 구분선 */
.law2-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 35px 0;
  width: 100%;
}

/* 하단 버튼 액션 파트 */
.law2-action-block {
  margin-top: 12px;
  /* 상단 문장과 더 가깝게 밀착 */
}

.law2-btn-group {
  display: flex;
  gap: 20px;
  width: 80%;
}

.law2-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: #334155;
  /* 눈에 띄면서도 은은한 슬레이트 톤 */
  color: #ffffff !important;
  /* 텍스트 시인성 절대 확보 */
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.law2-action-btn:hover {
  background: #475569;
  /* 호버 시 약간 밝아짐 */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.law2-action-help {
  margin-top: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* 오른쪽 입력폼 랩퍼 - 기존 섹션 디자인 완벽 계승 */
.law2-form-wrapper {
  background: var(--v2-white, #ffffff);
  padding: 40px;
  border-radius: var(--v2-radius-lg, 16px);
  box-shadow: var(--v2-shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

/* 커스텀 카드형 라디오 버튼 스타일 */
.law2-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.law2-radio-card {
  display: block;
  cursor: pointer;
  margin: 0;
}

.law2-radio-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--v2-radius-md, 8px);
  transition: all 0.2s ease;
  color: #475569;
}

.law2-radio-circle {
  width: 20px;
  height: 20px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  position: relative;
  transition: all 0.2s ease;
  background-color: #ffffff;
}

.law2-radio-input:checked+.law2-radio-content {
  background: #eff6ff;
  /* 약간의 선택된 푸른/주목되는 배경색 */
  border-color: #3b82f6;
  /* 명확한 파란 보더 */
  color: #1e3a8a;
  /* 텍스트 진해짐 */
  font-weight: 700;
  box-shadow: 0 0 0 1px #3b82f6;
}

.law2-radio-input:checked+.law2-radio-content .law2-radio-circle {
  border-color: #3b82f6;
}

.law2-radio-input:checked+.law2-radio-content .law2-radio-circle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: #3b82f6;
  border-radius: 50%;
}

.law2-memo-header {
  text-align: center;
  margin-bottom: 25px;
}

.law2-memo-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--v2-gray-900, #0f172a);
}

.law2-memo-header p {
  font-size: 0.95rem;
  color: var(--v2-gray-500, #64748b);
  line-height: 1.6;
}

/* 폼 컨테이너 자체 내부 패딩 (v2-memo-form-container가 가진 속성 일부 재현 대비) */
.law2-form-wrapper form {
  width: 100%;
}

/* 모바일 반응형 처리 */
@media (max-width: 1024px) {
  .law2-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .law2-section {
    padding: 60px 0;
  }

  .law2-title {
    font-size: 1.8rem;
  }

  .law2-btn-group {
    width: 100%;
    gap: 12px;
  }

  .law2-action-btn {
    font-size: 1.1rem;
    padding: 14px 15px;
  }

  .law2-form-wrapper {
    padding: 30px 20px;
    margin-left: 0;
    max-width: 100%;
  }
}

/* 상담 전화 (중앙 정렬, 내부 좌측 정렬) */
.law2-phone-banner {
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
}

.law2-phone-title {
  font-size: 1rem;
  color: #64748b;
  margin-bottom: 5px;
}

.law2-phone-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff !important;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  line-height: 1;
}

.law2-phone-number:hover {
  color: #e2e8f0;
  transform: scale(1.02);
  transform-origin: left center;
}

@media (max-width: 768px) {
  .law2-phone-banner {
    margin-top: 30px;
    align-items: center;
    /* 모바일에서는 직관적으로 중앙 정렬 */
  }

  .law2-phone-number {
    font-size: 2.5rem;
  }
}

/* -----------------------------------------------------------
   형사/민사 하단 액션 버튼용 모달 스타일
----------------------------------------------------------- */
.v2-custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.v2-custom-modal.active {
  opacity: 1;
  visibility: visible;
}

.v2-custom-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.v2-custom-modal-content {
  position: relative;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.v2-custom-modal.active .v2-custom-modal-content {
  transform: translateY(0);
}

.v2-custom-modal-msg {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 30px;
  line-height: 1.6;
  word-break: keep-all;
}

.v2-custom-modal-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 768px) {
  .v2-custom-modal-content {
    padding: 30px 20px;
  }
  .v2-custom-modal-btns {
    flex-direction: column;
    width: 100%;
  }
  .v2-custom-modal-btns .v2-btn {
    width: 100%;
  }
}