:root {
  --navy:    #0D1B2A;
  --blue:    #1A5276;
  --mid:     #2471A3;
  --sky:     #3498DB;
  --light:   #D6EAF8;
  --teal:    #0E6655;
  --amber:   #D4A017;
  --cream:   #FDF6E3;
  --white:   #FFFFFF;
  --gray50:  #F8FAFB;
  --gray100: #EEF1F4;
  --gray300: #BDC3C7;
  --gray500: #7F8C8D;
  --gray700: #34495E;
  --red:     #C0392B;
  --font-display: 'Gmarket Sans', 'Noto Sans KR', sans-serif;
  --font-body:    'Noto Sans KR', sans-serif;
  --radius: 16px;
  --shadow-sm: 0 2px 8px rgba(13,27,42,.06);
  --shadow-md: 0 8px 32px rgba(13,27,42,.12);
  --shadow-lg: 0 20px 60px rgba(13,27,42,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── 유틸 ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-sub {
  text-align: center;
  color: var(--gray500);
  font-size: 17px;
  margin-bottom: 60px;
  line-height: 1.7;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--light); color: var(--blue);
  font-size: 13px; font-weight: 700; letter-spacing: .5px;
  padding: 6px 14px; border-radius: 100px;
  border: 1.5px solid rgba(26,82,118,.2);
  margin-bottom: 20px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  border: none; cursor: pointer; text-decoration: none;
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 15px 30px; border-radius: 12px; font-size: 16px;
}
.btn-primary:hover { background: var(--mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,82,118,.35); }
.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 12px; font-size: 16px;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--blue);
  padding: 16px 36px; border-radius: 12px; font-size: 17px;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* ─── 애니메이션 ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(.8); }
  to   { opacity: 1; transform: scale(1); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── GNB ─── */
.gnb {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; display: flex; align-items: center;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.gnb.scrolled {
  border-color: var(--gray100);
  box-shadow: 0 2px 20px rgba(13,27,42,.08);
}
.gnb-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; color: var(--navy); text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px; background: var(--blue);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.gnb-nav { display: flex; align-items: center; gap: 4px; }
.gnb-nav a {
  text-decoration: none; color: var(--gray700); font-size: 15px; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: background .2s, color .2s;
}
.gnb-nav a:hover { background: var(--gray100); color: var(--blue); }
.gnb-actions { display: flex; align-items: center; gap: 10px; }
.gnb-login {
  text-decoration: none; color: var(--gray700); font-size: 15px; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  border: 1.5px solid var(--gray300);
  transition: all .2s;
}
.gnb-login:hover { border-color: var(--blue); color: var(--blue); }
.gnb-cta {
  text-decoration: none; font-size: 14px; font-weight: 700;
  background: var(--blue); color: var(--white);
  padding: 9px 20px; border-radius: 9px;
  transition: all .2s;
}
.gnb-cta:hover { background: var(--mid); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(26,82,118,.3); }

/* 햄버거 */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--gray100);
  padding: 16px 24px; z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 13px 0; text-decoration: none;
  color: var(--navy); font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--gray100);
}
.mobile-menu .mobile-btns { display: flex; gap: 10px; margin-top: 16px; }
.mobile-menu .mobile-btns a { border: none; flex: 1; text-align: center; border-radius: 10px; padding: 13px; }
.mobile-menu .m-login { background: var(--gray100); color: var(--navy); }
.mobile-menu .m-start  { background: var(--blue); color: var(--white); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 40%, #1e4d7a 70%, #163d6b 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 68px;
}
.hero-bg-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,152,219,.15) 0%, transparent 70%);
}
.hero-bg-circle:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; }
.hero-bg-circle:nth-child(2) { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.hero-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(rgba(255,255,255,.5) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px;
}
.hero-content { animation: fadeUp .8s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #7EC8E3; font-size: 13px; font-weight: 700;
  padding: 7px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-badge-dot { width: 7px; height: 7px; background: #7EC8E3; border-radius: 50%; animation: pulse-ring 2s infinite; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700; color: var(--white);
  line-height: 1.25; margin-bottom: 20px;
}
.hero-title span {
  background: linear-gradient(90deg, #7EC8E3, #48C9B0);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: rgba(255,255,255,.75); font-size: 18px; line-height: 1.8;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-display); font-size: 28px; font-weight: 700;
  color: var(--white); line-height: 1;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 4px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }

/* 히어로 오른쪽 카드 */
.hero-visual { animation: fadeUp .8s .3s ease both; }
.hero-phone-wrap {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-glow {
  position: absolute; width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(52,152,219,.3) 0%, transparent 70%);
  animation: float 4s ease-in-out infinite;
}
.hero-cards { position: relative; z-index: 1; animation: float 4s ease-in-out infinite; }
.app-card {
  background: rgba(255,255,255,.1); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 20px;
  color: var(--white); margin-bottom: 12px; min-width: 300px;
}
.app-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.app-card-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.app-card-title { font-weight: 700; font-size: 15px; }
.app-card-sub { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; }
.app-card-progress { height: 6px; background: rgba(255,255,255,.15); border-radius: 3px; overflow: hidden; }
.app-card-bar { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #48C9B0, #7EC8E3); width: 75%; }
.app-card-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; margin-top: 10px;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #2ECC71; }
.floating-tag {
  position: absolute; background: var(--white); border-radius: 100px;
  padding: 8px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700;
  color: var(--navy);
}
.floating-tag:nth-child(2) { top: -20px; right: -20px; }
.floating-tag:nth-child(3) { bottom: 60px; left: -30px; }

/* ─── PAIN POINT ─── */
.pain { background: var(--gray50); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1.5px solid var(--gray100);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  cursor: default;
}
.pain-card:hover {
  border-color: var(--light);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.pain-emoji { font-size: 32px; margin-bottom: 14px; display: block; }
.pain-title { font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.pain-desc { font-size: 14px; color: var(--gray500); line-height: 1.7; }
.pain-bottom {
  text-align: center; margin-top: 56px; padding: 36px;
  background: linear-gradient(135deg, var(--blue), var(--mid));
  border-radius: 20px; color: var(--white);
}
.pain-bottom p { font-size: 20px; font-weight: 700; margin-bottom: 20px; }

/* ─── HOW IT WORKS ─── */
.how { background: var(--white); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.how-steps::before {
  content: ''; position: absolute; top: 52px; left: calc(16.67% + 20px);
  right: calc(16.67% + 20px); height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--sky) 100%);
  z-index: 0;
}
.how-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.how-step-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: var(--white); font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: 0 8px 24px rgba(26,82,118,.3);
  position: relative;
}
.how-step-num::before {
  content: ''; position: absolute; inset: -8px;
  border-radius: 50%; border: 2px solid var(--light);
}
.how-step-icon { font-size: 36px; margin-bottom: 16px; }
.how-step-title { font-weight: 700; font-size: 18px; color: var(--navy); margin-bottom: 12px; }
.how-step-desc { font-size: 15px; color: var(--gray500); line-height: 1.8; }

/* ─── 전문가 분야 ─── */
.fields {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  position: relative; overflow: hidden;
}
.fields::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(52,152,219,.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(72,201,176,.08) 0%, transparent 50%);
}
.fields .section-title, .fields .section-sub { color: var(--white); }
.fields .section-sub { color: rgba(255,255,255,.6); }
.fields-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.field-card {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 28px;
  transition: all .3s ease;
  cursor: default;
}
.field-card:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-4px);
}
.field-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px;
}
.field-name { font-weight: 700; font-size: 18px; color: var(--white); margin-bottom: 8px; }
.field-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.field-tag {
  font-size: 12px; color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.08);
  padding: 4px 10px; border-radius: 100px;
}

/* ─── 후기 ─── */
.reviews { background: var(--gray50); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; border: 1px solid var(--gray100);
  transition: all .3s ease;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.review-stars { color: #F39C12; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: var(--gray700); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--light); display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.review-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.review-biz { font-size: 13px; color: var(--gray500); margin-top: 2px; }

/* ─── 구독 플랜 ─── */
.pricing { background: var(--white); }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 52px;
}
.toggle-label { font-size: 15px; font-weight: 500; color: var(--gray500); }
.toggle-label.active { color: var(--navy); font-weight: 700; }
.toggle-switch {
  width: 56px; height: 30px; background: var(--blue);
  border-radius: 15px; position: relative; cursor: pointer;
  transition: background .3s;
}
.toggle-switch::after {
  content: ''; position: absolute; top: 3px;
  width: 24px; height: 24px; background: var(--white); border-radius: 50%;
  transition: left .3s; left: 3px;
}
.toggle-switch.yearly::after { left: 29px; }
.save-badge {
  background: #E8F8F5; color: var(--teal); font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
}
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.plan-card {
  border-radius: 20px; padding: 32px;
  border: 2px solid var(--gray100);
  transition: all .3s ease; position: relative;
}
.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.plan-card.featured {
  border-color: var(--blue);
  background: linear-gradient(160deg, #EBF5FB 0%, var(--white) 100%);
  transform: scale(1.03);
}
.plan-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.plan-desc { font-size: 14px; color: var(--gray500); margin-bottom: 24px; }
.plan-price {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 28px;
}
.plan-amount { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--navy); }
.plan-won { font-size: 18px; font-weight: 700; color: var(--gray700); }
.plan-period { font-size: 14px; color: var(--gray500); }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--gray700); padding: 8px 0;
  border-bottom: 1px solid var(--gray100);
}
.plan-features li:last-child { border: none; }
.check { color: var(--sky); font-size: 16px; flex-shrink: 0; }
.plan-btn {
  display: block; width: 100%; text-align: center; text-decoration: none;
  padding: 15px; border-radius: 12px; font-weight: 700; font-size: 16px;
  transition: all .25s cubic-bezier(.34,1.56,.64,1);
}
.plan-btn-primary { background: var(--blue); color: var(--white); }
.plan-btn-primary:hover { background: var(--mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,82,118,.3); }
.plan-btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.plan-btn-outline:hover { background: var(--light); transform: translateY(-2px); }
.pricing-note { text-align: center; color: var(--gray500); font-size: 14px; margin-top: 28px; }

/* ─── FAQ ─── */
.faq { background: var(--gray50); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: 14px;
  margin-bottom: 12px; overflow: hidden;
  border: 1.5px solid var(--gray100);
  transition: border-color .3s;
}
.faq-item.open { border-color: var(--light); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  font-weight: 700; font-size: 16px; color: var(--navy);
  user-select: none;
}
.faq-arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gray100); display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0; transition: all .3s;
  color: var(--gray500);
}
.faq-item.open .faq-arrow { background: var(--blue); color: var(--white); transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s;
  font-size: 15px; color: var(--gray500); line-height: 1.8;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ─── 최종 CTA ─── */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  text-align: center; overflow: hidden; position: relative;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(52,152,219,.2) 0%, transparent 60%);
}
.final-cta .section-title, .final-cta .section-sub { color: var(--white); position: relative; z-index: 1; }
.final-cta .section-sub { color: rgba(255,255,255,.65); }
.final-cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }
.final-trust { display: flex; justify-content: center; gap: 32px; margin-top: 40px; flex-wrap: wrap; position: relative; z-index: 1; }
.final-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.65); font-size: 14px; }
.final-trust-item span { color: var(--white); font-weight: 700; }

/* ─── 푸터 ─── */
footer {
  background: #0A1520; color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo { color: var(--white); margin-bottom: 14px; display: inline-flex; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  text-decoration: none; transition: background .2s;
}
.social-link:hover { background: rgba(255,255,255,.15); }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.5); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
  font-size: 13px; color: rgba(255,255,255,.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.7); }

/* ─── 플로팅 상담 버튼 ─── */
.floating-chat {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  box-shadow: 0 8px 28px rgba(26,82,118,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; cursor: pointer;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
  text-decoration: none;
}
.floating-chat:hover { transform: scale(1.12); box-shadow: 0 12px 36px rgba(26,82,118,.5); }

/* ─── 반응형 ─── */
@media (max-width: 900px) {
  .gnb-nav { display: none; }
  .gnb-actions { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding: 60px 24px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .how-steps::before { display: none; }
  .fields-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; gap: 16px; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-4px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  .section { padding: 70px 0; }
  .pain-grid { grid-template-columns: 1fr; }
  .fields-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .final-trust { gap: 16px; }
}
