/* ==========================================================================
   초면 (Cho-myeon) - Premium Matchmaking & Rotation Blind Date
   Main Stylesheet
   ========================================================================== */

/* Google Fonts Import */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&family=Outfit:wght@400;500;600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --color-primary: #111827;        /* Deep Slate / Midnight Black */
  --color-primary-light: #1F2937;  /* Slate 800 */
  --color-accent: #E07A5F;         /* Warm Rose Gold / Terracotta Peach */
  --color-accent-hover: #CC654B;
  --color-accent-light: #FDF2E9;   /* Soft Peach Cream */
  --color-accent-gold: #C5A059;    /* Champagne Warm Gold */
  
  --color-bg-main: #FAFAF8;        /* Warm Off-White / Natural Ivory */
  --color-bg-card: #FFFFFF;        /* Pure White */
  --color-bg-subtle: #F3F4F6;      /* Light Cool Gray */
  --color-bg-dark: #0B1120;        /* Deep Navy Night */
  --color-bg-dark-card: #151E32;   /* Dark Card */

  --color-text-main: #1F2937;      /* High Contrast Charcoal */
  --color-text-muted: #6B7280;     /* Slate Gray */
  --color-text-light: #9CA3AF;     /* Soft Gray */
  --color-text-inverse: #FFFFFF;   /* White */
  
  --color-border: #E5E7EB;
  --color-border-focus: #E07A5F;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-danger: #EF4444;

  /* Typography */
  --font-sans: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Nanum Myeongjo', 'Batang', serif;
  --font-accent: 'Outfit', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 10px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 35px -5px rgba(0, 0, 0, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.05);
  --shadow-glow: 0 0 25px rgba(224, 122, 95, 0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  line-height: 1.65;
  word-break: keep-all;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Top Pre-registration Banner --- */
.top-notice-banner {
  background: linear-gradient(90deg, #1E293B 0%, #0F172A 100%);
  color: #FDF2E9;
  font-size: 0.875rem;
  padding: 10px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(224, 122, 95, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-notice-banner .badge {
  background-color: var(--color-accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* --- Header & Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  transition: var(--transition-normal);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.brand-logo .logo-text {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.04em;
}

.brand-logo .logo-tagline {
  font-size: 0.8125rem;
  color: var(--color-accent);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 8px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-primary);
}

/* --- Buttons & UI Elements --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, #D46648 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(224, 122, 95, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 122, 95, 0.45);
}

.btn-secondary {
  background-color: #FFFFFF;
  color: var(--color-primary);
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--color-bg-subtle);
  border-color: #D1D5DB;
  transform: translateY(-2px);
}

.btn-kakao {
  background-color: #FEE500;
  color: #191919;
  font-weight: 600;
}

.btn-kakao:hover {
  background-color: #FADA0A;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(254, 229, 0, 0.4);
}

.btn-dark {
  background-color: var(--color-primary);
  color: #FFFFFF;
}

.btn-dark:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}

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

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  border: 1px solid rgba(224, 122, 95, 0.2);
}

.badge-pill.dark {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FCD34D;
  border-color: rgba(252, 211, 77, 0.3);
}

/* --- Section Shared Styles --- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-text-inverse);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-sans);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.35;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-dark .section-title {
  color: var(--color-text-inverse);
}

.section-subtitle {
  font-size: 1.075rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-dark .section-subtitle {
  color: #94A3B8;
}

/* --- Hero Section --- */
.hero-section {
  padding: 80px 0 100px;
  background: radial-gradient(circle at 80% 20%, rgba(224, 122, 95, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(197, 160, 89, 0.07) 0%, transparent 40%),
              var(--color-bg-main);
  position: relative;
  overflow: hidden;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-badge-wrap {
  margin-bottom: 24px;
}

.hero-title-main {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-title-sub {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.35;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-description strong {
  color: var(--color-primary);
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

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

.trust-item-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.trust-item-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.trust-item-text p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Hero Visual Card */
.hero-visual-card {
  position: relative;
  padding-bottom: 86px;
}

.hero-main-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(224, 122, 95, 0.15);
  position: relative;
  z-index: 2;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.hero-card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.hero-card-tag {
  background-color: #ECFDF5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.visual-steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visual-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.visual-step-item:hover {
  background-color: #FDF2E9;
  transform: translateX(4px);
}

.visual-step-item.highlight {
  background: linear-gradient(135deg, rgba(224, 122, 95, 0.1) 0%, rgba(224, 122, 95, 0.02) 100%);
  border: 1px solid rgba(224, 122, 95, 0.3);
}

.step-number {
  width: 28px;
  height: 28px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
}

.step-info h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.step-info p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.hero-floating-badge {
  position: absolute;
  bottom: -74px;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: #FFFFFF;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-floating-badge .icon-heart {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.hero-floating-badge-text p:first-child {
  font-size: 0.75rem;
  color: #94A3B8;
}

.hero-floating-badge-text p:last-child {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* --- Section 2: Differentiators (초면은 이렇게 다릅니다) --- */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.diff-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(224, 122, 95, 0.4);
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-accent);
  transition: height var(--transition-normal);
}

.diff-card:hover::before {
  height: 100%;
}

.diff-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.diff-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}

.diff-card-header h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.4;
}

.diff-card-body {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.diff-card-body strong {
  color: var(--color-primary);
  font-weight: 700;
}

.diff-card-highlight {
  margin-top: 16px;
  padding: 12px 16px;
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--color-text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Section 3: Rotation Blind Date --- */
.rotation-content-box {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-bottom: 40px;
}

.timeline-visual {
  position: relative;
  margin: 36px 0 48px;
}

.timeline-visual::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, #E07A5F 0, #E07A5F 6px, transparent 6px, transparent 12px);
}

.timeline-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
  position: relative;
}

.timeline-row:last-child {
  margin-bottom: 0;
}

.timeline-time-badge {
  width: 58px;
  padding: 6px 0;
  text-align: center;
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  z-index: 2;
  flex-shrink: 0;
  font-family: var(--font-accent);
}

.timeline-row.highlight .timeline-time-badge {
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(224, 122, 95, 0.4);
}

.timeline-row.result .timeline-time-badge {
  background: var(--color-accent-gold);
}

.timeline-desc {
  flex: 1;
  background-color: var(--color-bg-main);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.timeline-row.highlight .timeline-desc {
  background-color: #FFF7F5;
  border-color: rgba(224, 122, 95, 0.3);
}

.timeline-desc h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline-desc p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.timeline-takeaway {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(224, 122, 95, 0.08) 0%, rgba(197, 160, 89, 0.08) 100%);
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  border: 1px solid rgba(224, 122, 95, 0.2);
}

/* Rotation Info Grid */
.info-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.info-spec-card {
  background-color: var(--color-bg-main);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.info-spec-card .spec-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.info-spec-card .spec-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.4;
}

/* Inclusions / Exclusions Banner */
.inclusion-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.inclusion-card {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.inclusion-card.included {
  background-color: #ECFDF5;
  border: 1px solid #A7F3D0;
}

.inclusion-card.excluded {
  background-color: #F3F4F6;
  border: 1px solid var(--color-border);
}

.inclusion-card .icon {
  font-size: 1.25rem;
  font-weight: 700;
}

.inclusion-card.included .icon { color: #059669; }
.inclusion-card.excluded .icon { color: var(--color-text-muted); }

.inclusion-card h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.inclusion-card.included h5 { color: #065F46; }
.inclusion-card.excluded h5 { color: var(--color-text-main); }

.inclusion-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.guarantee-callout {
  margin-top: 24px;
  background: var(--color-primary);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.guarantee-callout-text {
  font-size: 1rem;
  font-weight: 700;
}

.guarantee-callout-text span {
  color: #FCD34D;
}

.afterparty-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 16px;
  text-align: center;
  padding: 12px;
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-sm);
}

/* --- Section 4: 1:1 Matchmaking --- */
.one-on-one-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.step-card-col {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-normal);
}

.step-card-col:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.step-badge-num {
  width: 32px;
  height: 32px;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card-col h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.step-card-col p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- Premium Option (대표 동행 소개팅) --- */
.premium-option-box {
  background: linear-gradient(135deg, #FFF9F0 0%, #FDF4F6 100%);
  border: 1.5px dashed rgba(197, 160, 89, 0.55);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  margin: 40px 0 32px;
}

.premium-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #B08842;
  background: rgba(197, 160, 89, 0.12);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.premium-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.premium-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.premium-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.premium-flow-item {
  flex: 1;
  min-width: 150px;
  background: #FFFFFF;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  text-align: center;
}

.premium-flow-item .pf-time {
  font-size: 0.75rem;
  font-weight: 800;
  color: #B08842;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.premium-flow-item .pf-text {
  font-size: 0.875rem;
  color: var(--color-text-main);
  line-height: 1.45;
}

.premium-flow-arrow {
  color: rgba(197, 160, 89, 0.6);
  font-size: 1.1rem;
  font-weight: 700;
}

.premium-notes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-notes li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.premium-notes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C5A059;
}

.premium-notes li strong {
  color: var(--color-text-main);
  font-weight: 700;
}

@media (max-width: 720px) {
  .premium-option-box { padding: 26px 22px; }
  .premium-flow-arrow { display: none; }
  .premium-flow-item { min-width: 100%; }
}

.one-on-one-footer-card {
  background: linear-gradient(135deg, #FAF5EE 0%, #FFFFFF 100%);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.one-on-one-footer-card .text h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.one-on-one-footer-card .text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* --- Section 5: Verification & Safety (검증 및 참가 기준) --- */
.verify-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
}

.verify-steps-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.verify-step-item {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}

.verify-step-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.verify-step-content h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.verify-step-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Criteria & Protection Box */
.criteria-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.criteria-block h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.criteria-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.criteria-list li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--color-accent);
  font-weight: 700;
}

.criteria-block.danger {
  background-color: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.criteria-block.danger h4 {
  color: #B91C1C;
  font-size: 0.95rem;
}

.criteria-block.danger li::before {
  color: #DC2626;
}

.protection-rules {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: #FFFFFF;
  margin-top: 32px;
}

.protection-rules-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.protection-rules-header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;
}

.protection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.protection-item {
  background-color: rgba(255, 255, 255, 0.06);
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.protection-item h5 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FCD34D;
  margin-bottom: 4px;
}

.protection-item p {
  font-size: 0.8125rem;
  color: #CBD5E1;
  line-height: 1.4;
}

/* --- Section 6 & 7: Pricing & Refund --- */
.price-refund-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.custom-table-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.custom-table-card h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.custom-table-card .sub-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.styled-table th {
  background-color: var(--color-bg-subtle);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.styled-table td {
  padding: 16px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-main);
}

.styled-table tr:last-child td {
  border-bottom: none;
}

.styled-table tr.highlight-row td {
  background-color: #FFF7ED;
  font-weight: 700;
  color: #C2410C;
}

.notes-list {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-left: 16px;
}

.notes-list li {
  list-style-type: disc;
  margin-bottom: 6px;
}

/* --- Section 8: FAQ Accordion --- */
.faq-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.faq-tab-btn {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.faq-tab-btn:hover,
.faq-tab-btn.active {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary);
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: #D1D5DB;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-q-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-q-text .q-badge {
  color: var(--color-accent);
  font-family: var(--font-accent);
  font-weight: 800;
  font-size: 1.15rem;
}

.faq-icon-chevron {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.open .faq-icon-chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  background-color: #FAFBFD;
  border-top: 0px solid transparent;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  border-top: 1px solid var(--color-border);
}

.faq-answer-inner {
  padding: 20px 24px 24px 52px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.faq-answer-inner strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* --- Section 9: Application Form (소개팅 신청) --- */
.application-section {
  background: linear-gradient(180deg, var(--color-bg-main) 0%, #F5F3EF 100%);
  padding: 100px 0;
}

.form-wrapper-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(224, 122, 95, 0.2);
}

/* Google Forms Quick Entry Grid */
.gform-quick-section {
  margin-bottom: 40px;
}

.gform-quick-header {
  text-align: center;
  margin-bottom: 20px;
}

.gform-quick-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.gform-quick-header p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.gform-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.gform-card {
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gform-card.female {
  background: radial-gradient(circle at 90% 10%, #FFF0F5 0%, #FFE6EC 100%);
  border: 1.5px solid #FFA8BC;
  color: #881337;
}

.gform-card.female:hover {
  border-color: #F43F6E;
  box-shadow: 0 10px 25px rgba(244, 63, 110, 0.25);
}

.gform-card.male {
  background: radial-gradient(circle at 90% 10%, #F0F9FF 0%, #E2E8F0 100%);
  border: 1.5px solid #94A3B8;
  color: #0F172A;
}

.gform-card.male:hover {
  border-color: #334155;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.gform-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.gform-avatar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.gform-card.female .gform-avatar-icon {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(244, 63, 110, 0.2);
}

.gform-card.male .gform-avatar-icon {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

.gform-title-wrap h4 {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.gform-card.female .gform-title-wrap h4 { color: #9F1239; }
.gform-card.male .gform-title-wrap h4 { color: #0F172A; }

.gform-badge-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  margin-top: 4px;
}

.gform-card.female .gform-badge-pill {
  background-color: #FFE4E6;
  color: #E11D48;
}

.gform-card.male .gform-badge-pill {
  background-color: #E2E8F0;
  color: #1E293B;
}

.gform-desc {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.gform-card.female .gform-desc { color: #9F1239; }
.gform-card.male .gform-desc { color: #334155; }

.gform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  transition: var(--transition-fast);
}

.gform-card.female .gform-btn {
  background: linear-gradient(135deg, #FF4D6D 0%, #E11D48 100%);
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.35);
}

.gform-card.female:hover .gform-btn {
  background: linear-gradient(135deg, #FF3358 0%, #BE123C 100%);
}

.gform-card.male .gform-btn {
  background: linear-gradient(135deg, #334155 0%, #0F172A 100%);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3);
}

.gform-card.male:hover .gform-btn {
  background: linear-gradient(135deg, #1E293B 0%, #020617 100%);
}

.form-divider-text {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 36px 0 28px;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.form-divider-text::before,
.form-divider-text::after {
  content: '';
  flex: 1;
  border-bottom: 1px dashed var(--color-border);
}

.form-divider-text span {
  padding: 0 16px;
}

/* Form Type Switcher */
.form-type-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.type-switch-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition-fast);
  background-color: #FFFFFF;
  text-align: center;
}

.type-switch-label input[type="radio"] {
  display: none;
}

.type-switch-label .type-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.type-switch-label .type-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.type-switch-label:hover {
  border-color: #CBD5E1;
  background-color: var(--color-bg-subtle);
}

.type-switch-label.selected,
.type-switch-label:has(input[type="radio"]:checked) {
  border-color: var(--color-accent);
  background-color: #FFF9F7;
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.15);
}

.type-switch-label.selected .type-title,
.type-switch-label:has(input[type="radio"]:checked) .type-title {
  color: var(--color-accent);
}

/* Form Grid */
.form-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin: 32px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-bg-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-label .required-dot {
  color: var(--color-accent);
  font-weight: 800;
}

.form-label .sub-hint {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text-main);
  background-color: #FFFFFF;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--color-border-focus);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

/* Radio / Button Group Grouping */
.btn-choice-group {
  display: flex;
  gap: 12px;
}

.btn-choice-label {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: var(--transition-fast);
  background-color: #FFFFFF;
}

.btn-choice-label input[type="radio"] {
  display: none;
}

.btn-choice-label:has(input[type="radio"]:checked),
.btn-choice-label.active {
  border-color: var(--color-accent);
  background-color: #FFF7F5;
  color: var(--color-accent);
  font-weight: 700;
}

/* Multi-select Tag Chips */
.tag-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-chip-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background-color: #FFFFFF;
  transition: var(--transition-fast);
  user-select: none;
}

.tag-chip-label input[type="checkbox"] {
  display: none;
}

.tag-chip-label:hover {
  border-color: #CBD5E1;
}

.tag-chip-label:has(input[type="checkbox"]:checked),
.tag-chip-label.active {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
  color: #FFFFFF;
  font-weight: 600;
}

/* Dynamic Conditional Boxes */
.conditional-box {
  padding: 20px;
  background-color: #FFFBF9;
  border: 1px dashed rgba(224, 122, 95, 0.4);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.conditional-box.hidden {
  display: none;
}

.conditional-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Privacy Terms Box */
.privacy-terms-card {
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--color-border);
  margin: 32px 0 24px;
}

.privacy-terms-summary {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.privacy-terms-summary p {
  margin-bottom: 4px;
}

.privacy-terms-summary strong {
  color: var(--color-primary);
}

.privacy-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  user-select: none;
}

.privacy-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

/* Submit Action */
.form-submit-wrapper {
  margin-top: 32px;
  text-align: center;
}

.form-submit-btn {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(224, 122, 95, 0.35);
}

/* --- Section 10: Contact & Channels --- */
.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.channel-card {
  background-color: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.channel-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.channel-card.kakao .channel-icon {
  background-color: #FEE500;
  color: #191919;
}

.channel-card.phone .channel-icon {
  background-color: #E0F2FE;
  color: #0284C7;
}

.channel-card.insta .channel-icon {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #FFFFFF;
}

.channel-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.channel-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.channel-card .btn {
  width: 100%;
}

/* --- Footer & Legal Info --- */
.site-footer {
  background-color: #0F172A;
  color: #94A3B8;
  padding: 60px 0 40px;
  font-size: 0.875rem;
  border-top: 1px solid #1E293B;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #1E293B;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand .logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-brand .tagline {
  color: #E2E8F0;
  font-size: 0.9375rem;
}

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

.footer-links a {
  color: #94A3B8;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-business-info {
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-business-info strong {
  color: #CBD5E1;
}

.footer-status-alert {
  background-color: rgba(224, 122, 95, 0.12);
  border: 1px solid rgba(224, 122, 95, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #F87171;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.footer-status-alert strong {
  color: #FCA5A5;
}

.footer-copyright {
  font-size: 0.8125rem;
  color: #64748B;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #1E293B;
}

/* --- Floating Quick Bar & Top Button --- */
.floating-action-bar {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-btn-scroll-top {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background-color: #FFFFFF;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.floating-btn-scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.floating-btn-scroll-top:hover {
  background-color: var(--color-bg-subtle);
  transform: translateY(-2px);
}

.floating-cta-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--color-primary);
  color: #FFFFFF;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-cta-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  background: #000000;
}

/* Mobile Fixed Bottom CTA Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--color-border);
  z-index: 95;
  gap: 10px;
}

.mobile-bottom-bar .btn {
  flex: 1;
  padding: 12px 10px;
  font-size: 0.9375rem;
}

/* --- Modal Styles --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

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

.modal-dialog {
  background-color: #FFFFFF;
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  padding: 36px;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-dialog {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 4px;
}

.modal-close-btn:hover {
  color: var(--color-primary);
}

.modal-icon-header {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: #ECFDF5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 20px;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.modal-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

.modal-summary-box {
  background-color: var(--color-bg-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.modal-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--color-border);
}

.modal-summary-row:last-child {
  border-bottom: none;
}

.modal-summary-label {
  color: var(--color-text-muted);
  font-weight: 500;
}

.modal-summary-val {
  font-weight: 700;
  color: var(--color-primary);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast-message {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: 0.9375rem;
  font-weight: 600;
  animation: toastFadeIn 0.3s ease, toastFadeOut 0.3s ease 2.7s forwards;
}

@keyframes toastFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes toastFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(-10px); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .hero-badge-wrap {
    display: flex;
    justify-content: center;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-trust-badges {
    max-width: 600px;
    margin: 0 auto;
  }

  .one-on-one-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .info-spec-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .verify-grid {
    grid-template-columns: 1fr;
  }

  .protection-grid {
    grid-template-columns: 1fr;
  }
}

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

  .section-title {
    font-size: 1.85rem;
  }

  .hero-title-main {
    font-size: 2.75rem;
  }

  .hero-title-sub {
    font-size: 1.35rem;
  }

  .nav-menu, .nav-actions .btn {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* Mobile Nav Dropdown */
  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    gap: 18px;
    text-align: center;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .one-on-one-steps {
    grid-template-columns: 1fr;
  }

  .one-on-one-footer-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .inclusion-box {
    grid-template-columns: 1fr;
  }

  .price-refund-grid {
    grid-template-columns: 1fr;
  }

  .form-wrapper-card {
    padding: 28px 20px;
  }

  .form-type-switcher {
    grid-template-columns: 1fr;
  }

  .form-grid-2col {
    grid-template-columns: 1fr;
  }

  .contact-channels-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-badges {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .floating-action-bar {
    bottom: 80px;
    right: 16px;
  }

  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 60px;
  }
}

/* --- Terms & Agreement Section (참가 약관 및 동의) --- */
.terms-box {
  background: #FFFFFF;
  border: 1px solid var(--color-border, #E2E8F0);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.terms-scroll {
  max-height: 380px;
  overflow-y: auto;
  padding: 32px 36px;
  background: #FCFCFD;
  border-bottom: 1px solid var(--color-border, #E2E8F0);
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-text-muted);
}

.terms-scroll::-webkit-scrollbar { width: 8px; }
.terms-scroll::-webkit-scrollbar-track { background: #F1F5F9; }
.terms-scroll::-webkit-scrollbar-thumb { background: #CBD5E1; border-radius: 8px; }

.terms-h {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text-main);
  margin: 22px 0 8px;
}
.terms-scroll .terms-h:first-child { margin-top: 0; }

.terms-scroll p { margin-bottom: 10px; }
.terms-scroll strong { color: var(--color-text-main); font-weight: 700; }

.terms-agree-area { padding: 28px 36px 32px; }

.terms-agree-lead {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 16px;
}

.terms-check-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 0;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.terms-check-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--color-primary, #E11D48);
  cursor: pointer;
}

.terms-check-row strong { color: var(--color-text-main); font-weight: 700; }

.terms-agree-all {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--color-border, #E2E8F0);
}

.terms-check-row.all {
  font-size: 0.95rem;
  color: var(--color-text-main);
}

.terms-status {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: #F8FAFC;
  border: 1px solid var(--color-border, #E2E8F0);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: all 0.25s ease;
}

.terms-status.unlocked {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.35);
  color: #047857;
  font-weight: 700;
}

/* 신청 버튼 잠금 상태 */
.apply-locked {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.4);
  transition: all 0.25s ease;
}

@media (max-width: 720px) {
  .terms-scroll { padding: 22px 20px; max-height: 320px; }
  .terms-agree-area { padding: 22px 20px 26px; }
}

/* ==========================================================================
   벚꽃 배경 (SVG 인라인 - 외부 이미지 불필요)
   ========================================================================== */

/* ---------- 히어로: 벚꽃 그라데이션 + 흩날리는 꽃잎 ---------- */
.hero-section{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 85% -8%, rgba(255, 214, 226, 0.72) 0%, rgba(255,255,255,0) 62%),
    radial-gradient(760px 460px at 8% 12%, rgba(255, 232, 240, 0.85) 0%, rgba(255,255,255,0) 66%),
    radial-gradient(900px 700px at 50% 110%, rgba(255, 224, 233, 0.55) 0%, rgba(255,255,255,0) 62%),
    linear-gradient(168deg, #FFFDFC 0%, #FFF7F8 38%, #FDEDF1 72%, #FBE3EA 100%);
}

/* 벚꽃 송이 패턴 (5장 꽃잎) */
.hero-section::before{
  content:'';
  position:absolute; inset:0;
  pointer-events:none;
  opacity:0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Cg opacity='0.9'%3E%3Cg transform='translate(56 48) rotate(12) scale(1.05)'%3E%3Cg fill='%23FBD3DE'%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(72)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(144)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(216)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(288)'/%3E%3C/g%3E%3Ccircle r='2.6' fill='%23F6B9CB'/%3E%3C/g%3E%3Cg transform='translate(218 128) rotate(-24) scale(0.82)'%3E%3Cg fill='%23FCDCE4'%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(72)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(144)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(216)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(288)'/%3E%3C/g%3E%3Ccircle r='2.4' fill='%23F7C2D1'/%3E%3C/g%3E%3Cg transform='translate(132 222) rotate(40) scale(0.95)'%3E%3Cg fill='%23FAD0DC'%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(72)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(144)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(216)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(288)'/%3E%3C/g%3E%3Ccircle r='2.5' fill='%23F6BCCD'/%3E%3C/g%3E%3Cg fill='%23FBDEE6' opacity='0.85'%3E%3Cellipse cx='262' cy='42' rx='6.5' ry='3.6' transform='rotate(-30 262 42)'/%3E%3Cellipse cx='24' cy='166' rx='6' ry='3.3' transform='rotate(22 24 166)'/%3E%3Cellipse cx='176' cy='58' rx='5.4' ry='3' transform='rotate(-58 176 58)'/%3E%3Cellipse cx='274' cy='208' rx='6.2' ry='3.4' transform='rotate(38 274 208)'/%3E%3Cellipse cx='88' cy='138' rx='5' ry='2.8' transform='rotate(-14 88 138)'/%3E%3Cellipse cx='200' cy='268' rx='5.8' ry='3.2' transform='rotate(60 200 268)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 460px 460px;
}

/* 우측 상단 큰 벚꽃 가지 */
.hero-section::after{
  content:'';
  position:absolute;
  top:-40px; right:-60px;
  width:520px; height:420px;
  pointer-events:none;
  opacity:0.5;
  background-repeat:no-repeat;
  background-size:contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 520 420'%3E%3Cg stroke='%23D9A98F' stroke-width='3.2' fill='none' stroke-linecap='round' opacity='0.55'%3E%3Cpath d='M520 40 C430 62 372 96 320 150'/%3E%3Cpath d='M430 62 C420 104 402 132 372 158'/%3E%3Cpath d='M372 96 C356 130 350 160 352 196'/%3E%3Cpath d='M470 52 C468 92 458 120 440 146'/%3E%3C/g%3E%3Cg%3E%3Cg transform='translate(318 152) scale(1.5)'%3E%3Cg fill='%23F9C6D5'%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(72)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(144)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(216)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(288)'/%3E%3C/g%3E%3Ccircle r='3.4' fill='%23F09FB8'/%3E%3C/g%3E%3Cg transform='translate(372 160) scale(1.15) rotate(20)'%3E%3Cg fill='%23FBD5E0'%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(72)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(144)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(216)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(288)'/%3E%3C/g%3E%3Ccircle r='2.8' fill='%23F2ACC2'/%3E%3C/g%3E%3Cg transform='translate(352 200) scale(1.3) rotate(-15)'%3E%3Cg fill='%23FACEDB'%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(72)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(144)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(216)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(288)'/%3E%3C/g%3E%3Ccircle r='3' fill='%23F2ACC2'/%3E%3C/g%3E%3Cg transform='translate(432 108) scale(1.05) rotate(35)'%3E%3Cg fill='%23FCDFE8'%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(72)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(144)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(216)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(288)'/%3E%3C/g%3E%3Ccircle r='2.6' fill='%23F4B6C9'/%3E%3C/g%3E%3Cg fill='%23FBDCE6'%3E%3Cellipse cx='300' cy='268' rx='8' ry='4.4' transform='rotate(35 300 268)'/%3E%3Cellipse cx='250' cy='310' rx='7' ry='3.9' transform='rotate(-20 250 310)'/%3E%3Cellipse cx='400' cy='248' rx='7.5' ry='4.1' transform='rotate(55 400 248)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-section > *{ position:relative; z-index:1; }

/* ---------- 밝은 섹션: 아주 옅은 벚꽃 ---------- */
.section:not(.section-dark){ position:relative; }
.section:not(.section-dark)::before{
  content:'';
  position:absolute; inset:0;
  pointer-events:none;
  opacity:0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='340' height='340' viewBox='0 0 340 340'%3E%3Cg transform='translate(58 62) rotate(15) scale(0.85)'%3E%3Cg fill='%23FBE0E7'%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(72)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(144)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(216)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(288)'/%3E%3C/g%3E%3C/g%3E%3Cg transform='translate(246 216) rotate(-28) scale(0.7)'%3E%3Cg fill='%23FCE6EC'%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(72)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(144)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(216)'/%3E%3Cpath d='M0 -15 C5.5 -13 8 -7.5 5.2 -3.4 C3.2 -0.6 -3.2 -0.6 -5.2 -3.4 C-8 -7.5 -5.5 -13 0 -15Z' transform='rotate(288)'/%3E%3C/g%3E%3C/g%3E%3Cg fill='%23FCE4EA'%3E%3Cellipse cx='300' cy='70' rx='6' ry='3.3' transform='rotate(-30 300 70)'/%3E%3Cellipse cx='120' cy='280' rx='5.5' ry='3' transform='rotate(25 120 280)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 520px 520px;
}
.section > .container,
.section > .container-narrow{ position:relative; z-index:1; }

/* 회색 배경 섹션은 벚꽃빛으로 */
.section[style*="F8FAFC"]{
  background-color: #FEF8F9 !important;
}

/* 장식 요소로 인한 가로 스크롤 방지 (sticky 유지를 위해 overflow 대신 clip 사용) */
html{ overflow-x: clip; }
body{ overflow-x: clip; }

/* 모바일에서 벚꽃 가지 축소 */
@media (max-width: 720px){
  .hero-section::after{
    width: 300px;
    height: 250px;
    top: -20px;
    right: -50px;
    opacity: 0.4;
  }
  .hero-section::before{ background-size: 320px 320px; }
  .section:not(.section-dark)::before{ background-size: 380px 380px; }
}

/* ===== 문의 채널 브랜드 로고 ===== */
.channel-icon.brand-kakao,
.channel-icon.brand-insta,
.channel-icon.brand-phone{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.channel-icon.brand-kakao{ background: #FEE500; }
.channel-icon.brand-insta{ background: #FFF; box-shadow: 0 2px 10px rgba(214,36,159,0.18); }
.channel-icon.brand-phone{
  background: #FDF0F3;
  color: #C0736E;
}

/* ===== 상단 메뉴 가운데 정렬 (넓은 화면에서만) ===== */
@media (min-width: 1100px){
  .nav-container{
    position: relative;
    justify-content: flex-start;
  }
  .nav-menu{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .nav-menu .nav-link{ white-space: nowrap; }
}

/* 중간 폭(721~1099px)에서는 겹치지 않게 우측 정렬 유지 */
@media (min-width: 721px) and (max-width: 1099px){
  .nav-container{ justify-content: space-between; }
  .nav-menu{ white-space: nowrap; gap: 20px; }
  .nav-menu .nav-link{ white-space: nowrap; font-size: 0.9rem; }
}

/* ===== 문의 채널 버튼 색상 (스무스하게) ===== */
/* 전화: 은은한 로즈 톤 */
.channel-card.phone .btn.btn-secondary{
  background: linear-gradient(135deg, #FFF1F3 0%, #FDE4E9 100%);
  border: 1px solid #F5C6D0;
  color: #B4596B;
  font-weight: 700;
}
.channel-card.phone .btn.btn-secondary:hover{
  background: linear-gradient(135deg, #FDE4E9 0%, #F9D3DB 100%);
}

/* 인스타그램: 인스타 그라데이션 톤 */
.channel-card.insta .btn.btn-secondary{
  background: linear-gradient(135deg, #FEF3EC 0%, #FBE7F1 55%, #F1E7FB 100%);
  border: 1px solid #EBC7DE;
  color: #A6417F;
  font-weight: 700;
}
.channel-card.insta .btn.btn-secondary:hover{
  background: linear-gradient(135deg, #FCE9DC 0%, #F8D9EA 55%, #E7D8F7 100%);
}

/* 인스타 로고는 자체 그라데이션이라 배경 제거 */
.channel-icon.brand-insta{
  background: transparent !important;
  box-shadow: none !important;
}

/* ===== 플로팅 카카오톡 문의 버튼 (카카오 노란색) ===== */
.floating-cta-pill{
  background: #FEE500 !important;
  color: #3C1E1E !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
}
.floating-cta-pill:hover{
  background: #F5DC00 !important;
}
.floating-cta-pill svg{
  flex-shrink: 0;
}
