﻿:root {
    --orange: #FF6B00;
    --orange-light: #FF8C35;
    --yellow: #FFD000;
    --yellow-light: #FFE566;
    --dark: #1A1A1A;
    --dark2: #2D2D2D;
    --gray: #6B6B6B;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --border: #E8E8E8;
    --gradient: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
    --font: 'Noto Sans KR', sans-serif;
    --nav-h: 100px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font); color: var(--dark); background: var(--white); overflow-x: hidden; }
  a { text-decoration: none; color: inherit; }
  ul { list-style: none; }
  img { max-width: 100%; display: block; }

  /* ── HEADER ── */
  .header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-h);
    background: rgba(26,26,26,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center;
    overflow: hidden;
  }
  .header-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    width: 100%; display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
  }
  .logo-mark {
    width: 40px; height: 40px; border-radius: 10px;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 18px; color: white; letter-spacing: -1px;
  }
  .logo-text { font-size: 18px; font-weight: 700; color: var(--dark); letter-spacing: -0.5px; }
  .logo-text span { color: var(--orange); }

  .gnb { display: flex; align-items: center; gap: 0; }
  .gnb > li { position: relative; }
  .gnb > li > a {
    display: block; padding: 0 18px; height: var(--nav-h);
    line-height: var(--nav-h); font-size: 15px; font-weight: 500;
    color: rgba(255,255,255,0.85); transition: color 0.2s;
    white-space: nowrap;
  }
  .gnb > li > a:hover { color: var(--orange); }
  .gnb > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

  .dropdown {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(-6px);
    background: #2D2D2D; border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px; padding: 10px 0;
    min-width: 160px; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    opacity: 0; visibility: hidden; transition: all 0.2s ease;
  }
  .dropdown li a {
    display: block; padding: 10px 20px; font-size: 14px; color: rgba(255,255,255,0.65);
    transition: all 0.15s; white-space: nowrap;
  }
  .dropdown li a:hover { color: var(--yellow); background: rgba(255,255,255,0.05); padding-left: 24px; }

  .header-cta {
    display: flex; align-items: center; gap: 12px;
  }
  .tel-badge {
    display: flex; align-items: center; gap: 6px;
    font-size: 15px; font-weight: 700; color: var(--yellow);
  }
  .tel-badge svg { width: 16px; height: 16px; fill: var(--orange); }
  .btn-consult {
    padding: 10px 20px; background: var(--gradient);
    color: white; font-weight: 700; font-size: 14px;
    border-radius: 50px; white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255,107,0,0.3);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .btn-consult:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.4); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
  .hamburger span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    background: #FFF9F4;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,208,0,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute; bottom: -80px; left: -80px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto; padding: 80px 24px;
    width: 100%; display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; position: relative; z-index: 1;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,0,0.1); border: 1px solid rgba(255,107,0,0.2);
    padding: 6px 14px; border-radius: 50px; margin-bottom: 24px;
  }
  .hero-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
  .hero-eyebrow span { font-size: 13px; font-weight: 600; color: var(--orange); }
  .hero-title {
    font-size: clamp(32px, 4vw, 52px); font-weight: 900;
    line-height: 1.2; letter-spacing: -1.5px; color: var(--dark);
    margin-bottom: 20px;
  }
  .hero-title em {
    font-style: normal;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-sub {
    font-size: 17px; line-height: 1.8; color: var(--gray);
    margin-bottom: 36px;
  }
  .hero-sub strong { color: var(--dark); font-weight: 700; }
  .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
  .btn-primary {
    padding: 16px 32px; background: var(--gradient);
    color: white; font-weight: 700; font-size: 16px;
    border-radius: 50px; box-shadow: 0 6px 24px rgba(255,107,0,0.35);
    transition: all 0.2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(255,107,0,0.45); }
  .btn-secondary {
    padding: 16px 32px; background: white; border: 2px solid var(--orange);
    color: var(--orange); font-weight: 700; font-size: 16px;
    border-radius: 50px; transition: all 0.2s;
  }
  .btn-secondary:hover { background: rgba(255,107,0,0.05); }
  .hero-stats {
    display: flex; gap: 32px;
  }
  .hero-stat-item { }
  .hero-stat-num {
    font-size: 28px; font-weight: 900; color: var(--orange); letter-spacing: -1px;
    line-height: 1;
  }
  .hero-stat-label { font-size: 13px; color: var(--gray); margin-top: 4px; font-weight: 500; }

  .hero-visual {
    position: relative;
  }
  .hero-card-main {
    background: white; border-radius: 24px;
    padding: 32px; box-shadow: 0 16px 56px rgba(0,0,0,0.1);
    position: relative; z-index: 2;
  }
  .hero-card-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--gradient); color: white;
    font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 50px;
    margin-bottom: 20px;
  }
  .hero-card-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
  .hero-card-sub { font-size: 14px; color: var(--gray); margin-bottom: 24px; line-height: 1.6; }
  .hero-photo-placeholder {
    width: 100%; aspect-ratio: 16/9; border-radius: 14px;
    background: linear-gradient(135deg, #FFE8D6 0%, #FFF3CC 100%);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px; margin-bottom: 20px;
  }
  .hero-photo-placeholder svg { width: 48px; height: 48px; opacity: 0.4; }
  .hero-photo-placeholder p { font-size: 13px; color: var(--gray); }
  .hero-card-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .tag {
    padding: 5px 12px; background: var(--gray-light);
    border-radius: 50px; font-size: 12px; font-weight: 500; color: var(--gray);
  }
  .tag.accent { background: rgba(255,107,0,0.1); color: var(--orange); }
  .hero-card-float {
    position: absolute; bottom: -20px; right: -20px; z-index: 3;
    background: white; border-radius: 16px; padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    display: flex; align-items: center; gap: 12px;
  }
  .float-icon {
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--gradient); display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .float-text-main { font-size: 14px; font-weight: 700; color: var(--dark); }
  .float-text-sub { font-size: 12px; color: var(--gray); margin-top: 2px; }

  /* ── SECTION COMMON ── */
  .section { padding: 96px 24px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 13px; font-weight: 700; color: var(--orange);
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
  }
  .section-eyebrow::before {
    content: ''; display: block; width: 24px; height: 2px; background: var(--orange);
  }
  .section-title {
    font-size: clamp(26px, 3.5vw, 40px); font-weight: 900;
    letter-spacing: -1px; line-height: 1.25; margin-bottom: 16px;
  }
  .section-sub { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 56px; }

  /* ── WHY (신뢰/차별점) ── */
  .why-section { background: var(--dark); }
  .why-section .section-eyebrow { color: var(--yellow); }
  .why-section .section-eyebrow::before { background: var(--yellow); }
  .why-section .section-title { color: white; }
  .why-section .section-sub { color: rgba(255,255,255,0.6); }
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .why-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 32px;
    transition: background 0.2s, border-color 0.2s;
  }
  .why-card:hover { background: rgba(255,107,0,0.1); border-color: rgba(255,107,0,0.4); }
  .why-card-num {
    font-size: 36px; font-weight: 900; letter-spacing: -2px;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 16px; line-height: 1;
  }
  .why-card-title { font-size: 18px; font-weight: 700; color: white; margin-bottom: 10px; }
  .why-card-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; }

  /* ── PROGRAM (질환별) ── */
  .program-section { background: var(--gray-light); }
  .program-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  }
  .program-card {
    background: white; border-radius: 16px; padding: 24px;
    border: 1.5px solid var(--border); transition: all 0.2s; cursor: pointer;
  }
  .program-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(255,107,0,0.12); }
  .program-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: linear-gradient(135deg, #FFF3E0 0%, #FFF9C4 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 14px;
  }
  .program-card-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
  .program-card-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }
  .program-more {
    margin-top: 40px; text-align: center;
  }

  /* ── PROCESS (YES 5-Step) ── */
  .process-section { background: white; }
  .process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative;
  }
  .process-steps::before {
    content: ''; position: absolute; top: 40px; left: calc(10% + 20px); right: calc(10% + 20px);
    height: 2px; background: linear-gradient(90deg, var(--orange), var(--yellow));
    z-index: 0;
  }
  .process-step { text-align: center; position: relative; z-index: 1; padding: 0 8px; }
  .process-circle {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
    background: var(--gradient); display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 8px 24px rgba(255,107,0,0.3);
  }
  .process-step-num {
    font-size: 11px; font-weight: 700; color: var(--orange);
    letter-spacing: 1px; margin-bottom: 6px;
  }
  .process-step-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
  .process-step-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

  /* ── AUTHORITY (대표 소개) ── */
  .authority-section { background: #FFF9F4; }
  .authority-inner {
    display: grid; grid-template-columns: 380px 1fr; gap: 72px; align-items: start;
  }
  .authority-photo {
    background: linear-gradient(135deg, #FFE8D6 0%, #FFF3CC 100%);
    border-radius: 24px; aspect-ratio: 3/4;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 10px;
  }
  .authority-photo svg { width: 64px; height: 64px; opacity: 0.35; }
  .authority-photo p { font-size: 14px; color: var(--gray); font-weight: 500; }
  .authority-content { }
  .authority-name { font-size: 32px; font-weight: 900; letter-spacing: -1px; margin-bottom: 6px; }
  .authority-role { font-size: 15px; color: var(--orange); font-weight: 600; margin-bottom: 24px; }
  .authority-quote {
    font-size: 17px; line-height: 1.9; color: var(--dark2);
    border-left: 3px solid var(--orange); padding-left: 20px;
    margin-bottom: 32px; font-weight: 400;
  }
  .authority-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
  .badge {
    padding: 7px 14px; background: white; border: 1.5px solid var(--border);
    border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--dark2);
  }
  .badge.highlight { border-color: var(--orange); color: var(--orange); background: rgba(255,107,0,0.05); }
  .authority-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .metric-card {
    background: white; border-radius: 16px; padding: 20px;
    border: 1.5px solid var(--border); text-align: center;
  }
  .metric-num { font-size: 26px; font-weight: 900; color: var(--orange); letter-spacing: -1px; }
  .metric-label { font-size: 13px; color: var(--gray); margin-top: 4px; line-height: 1.4; }

  /* ── CASES ── */
  .cases-section { background: white; }
  .cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .case-card {
    border-radius: 20px; overflow: hidden;
    border: 1.5px solid var(--border); transition: all 0.2s;
  }
  .case-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); border-color: transparent; }
  .case-card-header {
    padding: 24px; background: linear-gradient(135deg, #FFF3E0, #FFF9C4);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .case-tag {
    display: inline-block; background: var(--orange); color: white;
    font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 50px; margin-bottom: 12px;
  }
  .case-card-title { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.4; }
  .case-card-body { padding: 20px 24px; }
  .case-info { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
  .case-info-item { }
  .case-info-label { font-size: 11px; color: var(--gray); font-weight: 600; letter-spacing: 0.5px; margin-bottom: 3px; }
  .case-info-value { font-size: 14px; font-weight: 600; color: var(--dark2); }
  .case-result {
    background: rgba(255,107,0,0.06); border-radius: 10px;
    padding: 12px 16px; font-size: 14px; color: var(--dark2); line-height: 1.6;
  }
  .case-result strong { color: var(--orange); }

  /* ── CTA BANNER ── */
  .cta-section {
    background: var(--gradient); padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; top: -60px; left: -60px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,0.1); pointer-events: none;
  }
  .cta-section::after {
    content: ''; position: absolute; bottom: -80px; right: -40px;
    width: 400px; height: 400px; border-radius: 50%;
    background: rgba(255,255,255,0.08); pointer-events: none;
  }
  .cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
  .cta-title { font-size: clamp(26px, 3.5vw, 40px); font-weight: 900; color: white; letter-spacing: -1px; margin-bottom: 16px; line-height: 1.25; }
  .cta-sub { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 36px; line-height: 1.7; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    padding: 16px 36px; background: white; color: var(--orange);
    font-weight: 700; font-size: 16px; border-radius: 50px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.15); transition: all 0.2s;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.2); }
  .btn-outline-white {
    padding: 16px 36px; background: transparent;
    border: 2px solid rgba(255,255,255,0.7); color: white;
    font-weight: 700; font-size: 16px; border-radius: 50px; transition: all 0.2s;
  }
  .btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

  /* ── FOOTER ── */
  .footer { background: var(--dark); padding: 64px 24px 32px; }
  .footer-inner { max-width: 1200px; margin: 0 auto; }
  .footer-top {
    display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 32px;
  }
  .footer-brand .logo-text { color: white; font-size: 20px; }
  .footer-brand .logo-text span { color: var(--yellow); }
  .footer-brand-desc { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; }
  .footer-col-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 16px; }
  .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--yellow); }
  .footer-bottom {
    display: flex; justify-content: space-between; align-items: flex-start;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-biz { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.9; }
  .footer-biz strong { color: rgba(255,255,255,0.6); }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }

  /* ── MOBILE NAV ── */
  .mobile-nav {
    display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: white; z-index: 999; overflow-y: auto; padding: 24px;
    flex-direction: column; gap: 4px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav-item { }
  .mobile-nav-link {
    display: block; padding: 14px 16px; font-size: 16px; font-weight: 600; color: var(--dark);
    border-radius: 10px; transition: all 0.15s;
  }
  .mobile-nav-link:hover { background: var(--gray-light); color: var(--orange); }
  .mobile-nav-sub { padding: 4px 0 8px 16px; display: flex; flex-direction: column; gap: 2px; }
  .mobile-nav-sub a {
    display: block; padding: 9px 16px; font-size: 14px; color: var(--gray);
    border-radius: 8px; transition: all 0.15s;
  }
  .mobile-nav-sub a:hover { background: rgba(255,107,0,0.06); color: var(--orange); }
  .mobile-cta {
    margin-top: 16px; padding: 16px; background: var(--gradient);
    border-radius: 16px; text-align: center;
    font-weight: 700; font-size: 16px; color: white;
  }
  .mobile-cta.kakao {
    margin-top: 10px;
    background: #FEE500;
    color: #191600;
  }
  .mobile-tel {
    margin-top: 12px; padding: 14px; border: 2px solid var(--orange);
    border-radius: 16px; text-align: center;
    font-weight: 700; font-size: 16px; color: var(--orange);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 960px) {
    .gnb, .header-cta { display: none; }
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .why-grid { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: 1fr; gap: 24px; }
    .process-steps::before { display: none; }
    .process-step { display: flex; align-items: flex-start; gap: 20px; text-align: left; }
    .process-circle { flex-shrink: 0; width: 56px; height: 56px; font-size: 20px; }
    .authority-inner { grid-template-columns: 1fr; }
    .authority-photo { aspect-ratio: 16/7; }
    .authority-metrics { grid-template-columns: repeat(3, 1fr); }
    .cases-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 540px) {
    .hero-stats { gap: 20px; }
    .program-grid { grid-template-columns: 1fr; }
    .authority-metrics { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .cta-btns { flex-direction: column; }
    .hero-btns { flex-direction: column; }
    .hero-btns a { text-align: center; }
  }


  /* ── 비교 테이블 ── */
  .compare-table {
    border-radius: 16px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .compare-header {
    display: grid; grid-template-columns: 200px 1fr 1fr;
    background: rgba(255,255,255,0.05);
    padding: 0;
  }
  .compare-header .compare-col-label { padding: 16px 20px; }
  .compare-header .compare-col {
    padding: 16px 20px; font-size: 14px; font-weight: 700;
    text-align: center;
  }
  .compare-header .compare-col.yes {
    background: var(--orange); color: white;
    font-size: 15px;
  }
  .compare-header .compare-col.other {
    color: rgba(255,255,255,0.4); font-size: 13px;
  }
  .compare-row {
    display: grid; grid-template-columns: 200px 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .compare-row:hover { background: rgba(255,255,255,0.03); }
  .compare-col-label {
    padding: 16px 20px; font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.5); display: flex; align-items: center;
  }
  .compare-row .compare-col {
    padding: 16px 20px; font-size: 14px; line-height: 1.6;
    display: flex; align-items: center;
  }
  .compare-row .compare-col.yes {
    color: white; background: rgba(255,107,0,0.08);
    border-left: 2px solid rgba(255,107,0,0.3);
  }
  .compare-row .compare-col.yes strong { color: var(--yellow); }
  .compare-row .compare-col.other {
    color: rgba(255,255,255,0.3); font-size: 13px;
  }

  /* ── 차별 숫자 카드 ── */
  .diff-numbers {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
  }
  .diff-num-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px; padding: 24px 20px; text-align: center;
    transition: all 0.2s;
  }
  .diff-num-card:hover { background: rgba(255,107,0,0.12); border-color: rgba(255,107,0,0.4); }
  .diff-num {
    font-size: 30px; font-weight: 900; letter-spacing: -1px;
    background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; margin-bottom: 8px; line-height: 1;
  }
  .diff-num-label {
    font-size: 13px; font-weight: 700; color: white; margin-bottom: 8px; line-height: 1.4;
  }
  .diff-num-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

  @media (max-width: 960px) {
    .compare-header, .compare-row { grid-template-columns: 120px 1fr 1fr; }
    .diff-numbers { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width: 540px) {
    .compare-header, .compare-row { grid-template-columns: 80px 1fr 1fr; }
    .compare-col-label { font-size: 11px; padding: 12px 10px; }
    .compare-row .compare-col { font-size: 12px; padding: 12px 10px; }
    .diff-numbers { grid-template-columns: 1fr 1fr; }
  }

  /* ── SLIDESHOW HERO ── */
  .slideshow {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--nav-h));
    overflow: hidden;
    margin-top: var(--nav-h);
  }
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .slide.active { opacity: 1; }
  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.3) 50%,
      rgba(0,0,0,0.05) 100%
    );
  }
  .slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 80px;
    max-width: 1200px;
    margin: 0 auto;
    left: 0; right: 0;
  }
  .slide-text { max-width: 580px; }
  .slide-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,107,0,0.2); border: 1px solid rgba(255,107,0,0.4);
    padding: 6px 14px; border-radius: 50px; margin-bottom: 24px;
  }
  .slide-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
  .slide-eyebrow span { font-size: 13px; font-weight: 600; color: #FFD000; }
  .slide-title {
    font-size: clamp(34px, 4.5vw, 60px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -2px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  }
  .slide-title em {
    font-style: normal;
    color: var(--yellow);
  }
  .slide-sub {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  }
  .slide-sub strong { color: white; }
  .slide-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
  .slide-stats {
    display: flex; gap: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  .slide-stat-num {
    font-size: 26px; font-weight: 900; color: var(--yellow); letter-spacing: -1px; line-height: 1;
  }
  .slide-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 4px; font-weight: 500; }

  /* 슬라이드 인디케이터 */
  .slide-indicators {
    position: absolute;
    bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
  }
  .slide-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer; transition: all 0.3s;
    border: none; outline: none;
  }
  .slide-dot.active {
    background: var(--yellow);
    transform: scale(1.3);
  }

  /* 슬라이드 화살표 */
  .slide-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2);
    color: white; width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 18px;
    transition: all 0.2s;
  }
  .slide-arrow:hover { background: rgba(255,107,0,0.6); border-color: var(--orange); }
  .slide-arrow.prev { left: 24px; }
  .slide-arrow.next { right: 24px; }

  /* 스크롤 다운 */
  .scroll-down {
    position: absolute; bottom: 40px; right: 80px;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    cursor: pointer; z-index: 10;
    animation: bounce 2s infinite;
  }
  .scroll-down span { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 2px; font-weight: 600; }
  .scroll-down-arrow {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  }
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
  }

  @media (max-width: 960px) {
    .slideshow { height: 100svh; }
    .slide-content { padding: 0 24px; align-items: flex-end; padding-bottom: 100px; }
    .slide-overlay {
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    }
    .slide-stats { gap: 24px; }
    .slide-stat-num { font-size: 22px; }
    .scroll-down { display: none; }
    .slide-arrow { display: none; }
  }
  @media (max-width: 540px) {
    .slide-btns { flex-direction: column; }
    .slide-btns a { text-align: center; }
  }

  /* ── SCROLL ANIMATION ── */
  .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  .intro-copy {
    max-width: 860px;
    margin: 0 auto 56px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.9;
    text-align: center;
    word-break: keep-all;
  }

  .intro-copy p {
    margin: 0 0 18px;
  }

  .intro-copy strong {
    color: #fff;
    font-size: 20px;
    font-weight: 900;
  }

  /* ── FINAL HEADER SYSTEM ── */
  :root { --nav-h: 88px; }

  .header {
    position: absolute;
    inset: 0 0 auto 0;
    height: var(--nav-h);
    overflow: visible;
    background: transparent;
    border-bottom: 1px solid transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition:
      background-color .28s ease,
      border-color .28s ease,
      backdrop-filter .28s ease;
  }

  .header:hover,
  .header:focus-within,
  .header.is-scrolled {
    background: rgba(18, 18, 18, .88);
    border-bottom-color: rgba(255, 255, 255, .10);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .header-inner {
    width: min(1420px, calc(100% - 40px));
    max-width: none;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    justify-content: flex-start;
    gap: clamp(18px, 1.8vw, 32px);
  }

  .logo {
    flex: 0 0 226px;
    min-width: 226px;
    height: 100%;
    gap: 11px;
    color: inherit;
  }

  .brand-mark {
    position: relative;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    overflow: hidden;
  }

  .brand-mark > img {
    position: absolute;
    top: -3px;
    left: -8px;
    width: 81px !important;
    height: 80px !important;
    max-width: none !important;
    object-fit: fill !important;
  }

  .brand-divider {
    width: 1px;
    height: 46px;
    flex: 0 0 1px;
    background: linear-gradient(
      to bottom,
      transparent,
      rgba(255, 208, 0, .95) 18%,
      rgba(255, 208, 0, .95) 82%,
      transparent
    );
  }

  .brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
  }

  .brand-copy strong {
    display: block;
    font-family: var(--font);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1.1px;
    line-height: 1.1;
  }

  .brand-yes { color: #ff8a00; margin-right: 2px; }
  .brand-rehab { color: #ffd000; }

  .brand-copy small {
    display: block;
    margin-top: 7px;
    color: rgba(255, 208, 0, .86);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.25px;
    line-height: 1;
  }

  .header nav {
    flex: 1 1 auto;
    min-width: 0;
  }

  .gnb {
    width: 100%;
    justify-content: center;
    gap: clamp(12px, 1.05vw, 22px);
  }

  .gnb > li > a {
    height: var(--nav-h);
    padding: 0;
    line-height: var(--nav-h);
    color: rgba(255, 255, 255, .94);
    font-family: var(--font);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -.35px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, .48);
  }

  .gnb > li > a:hover,
  .gnb > li > a:focus-visible {
    color: var(--yellow);
  }

  .dropdown {
    top: calc(100% - 6px);
    background: rgba(29, 29, 29, .96);
    backdrop-filter: blur(12px);
  }

  .header-cta {
    flex: 0 0 auto;
    gap: 8px;
    justify-content: flex-end;
  }

  .tel-badge {
    min-width: 178px;
    height: 48px;
    padding: 0 16px;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 1px solid rgba(255, 208, 0, .45);
    border-radius: 8px;
    background: rgba(0, 0, 0, .30);
    color: #fff;
    line-height: 1.1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  }

  .tel-badge-label {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 800;
  }

  .tel-badge strong {
    color: var(--yellow);
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .btn-kakao,
  .btn-consult {
    height: 46px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    white-space: nowrap;
    font-weight: 900;
  }

  .btn-kakao {
    background: #FEE500;
    color: #191600;
    font-size: 13px;
    box-shadow: 0 6px 18px rgba(254, 229, 0, .18);
  }

  .btn-consult {
    height: 46px;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(255, 107, 0, .28);
  }

  .btn-blog {
    min-width: 128px;
    background: #03C75A;
    box-shadow: 0 6px 18px rgba(3, 199, 90, .24);
  }

  .slideshow {
    height: 66vh;
    min-height: 460px;
    max-height: 610px;
    margin-top: 0;
  }

  .slide {
    background-size: cover;
    background-position: center 36%;
  }

  @media (max-width: 1100px) {
    .header-inner {
      width: min(calc(100% - 36px), 1040px);
      gap: 24px;
    }

    .logo {
      flex-basis: 204px;
      min-width: 204px;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      flex-basis: 48px;
    }

    .brand-mark > img {
      top: -3px;
      left: -7px;
      width: 72px !important;
      height: 71px !important;
    }

    .brand-copy strong { font-size: 20px; }
    .brand-copy small { font-size: 6px; letter-spacing: 1.05px; }
    .gnb { gap: 12px; }
    .gnb > li > a { font-size: 13px; }
    .tel-badge { min-width: 158px; padding: 0 12px; }
    .tel-badge strong { font-size: 17px; }
    .btn-kakao { display: none; }
    .btn-consult { padding: 0 12px; font-size: 13px; }
    .btn-blog { min-width: 108px; }
  }

  @media (max-width: 960px) {
    :root { --nav-h: 78px; }

    .header {
      position: absolute;
      background: rgba(18, 18, 18, .48);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
    }

    .header-inner {
      width: calc(100% - 36px);
      gap: 0;
      justify-content: space-between;
    }

    .logo {
      flex: 0 1 auto;
      min-width: 0;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      flex-basis: 48px;
    }

    .brand-mark > img {
      top: -3px;
      left: -7px;
      width: 72px !important;
      height: 71px !important;
    }

    .brand-copy strong { font-size: 21px; }
    .brand-copy small { font-size: 6.5px; }
    .header-cta { display: none; }
    .hamburger { margin-left: auto; }
    .slideshow { height: 66svh; min-height: 470px; max-height: 580px; }
    .mobile-nav { top: var(--nav-h); }
  }

  @media (max-width: 480px) {
    :root { --nav-h: 72px; }
    .header-inner { width: calc(100% - 28px); }
    .logo { gap: 8px; }
    .brand-mark {
      width: 42px;
      height: 42px;
      flex-basis: 42px;
    }

    .brand-mark > img {
      top: -2px;
      left: -6px;
      width: 63px !important;
      height: 62px !important;
    }
    .brand-divider { height: 38px; }
    .brand-copy strong { font-size: 19px; letter-spacing: -.9px; }
    .brand-copy small { margin-top: 5px; font-size: 5.5px; letter-spacing: .8px; }
  }

  /* ── HERO TEXT SAFE ZONE ── */
  @media (min-width: 961px) {
    .slide-content {
      max-width: none;
      width: 100%;
      padding-left: clamp(28px, 4.2vw, 72px);
      padding-right: 52vw;
      align-items: center;
    }

    .slide-text {
      max-width: 430px;
      transform: translateY(18px);
    }

    .slide-eyebrow {
      margin-bottom: 18px;
    }

    .slide-title {
      font-size: clamp(34px, 3.75vw, 52px);
      line-height: 1.12;
      letter-spacing: -2.4px;
      margin-bottom: 20px;
    }

    .slide-sub {
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 32px;
    }

  .slide-btns {
    margin-bottom: 0;
    flex-wrap: nowrap;
  }

  .slide-btns a {
    white-space: nowrap;
  }

    .slide-stats {
      display: none;
    }

    .slide-overlay {
      background:
        linear-gradient(to right, rgba(0,0,0,.66) 0%, rgba(0,0,0,.52) 28%, rgba(0,0,0,.16) 58%, rgba(0,0,0,.03) 100%),
        linear-gradient(to bottom, rgba(0,0,0,.22) 0%, rgba(0,0,0,0) 34%);
    }

    #slide-1 { background-position: 61% 38% !important; }
    #slide-2 { background-position: 66% 44% !important; }
    #slide-3 { background-position: 62% 40% !important; }
  }

  @media (min-width: 961px) and (max-width: 1280px) {
    .slide-content {
      padding-left: 30px;
      padding-right: 54vw;
    }

    .slide-text {
      max-width: 390px;
    }

    .slide-title {
      font-size: clamp(32px, 4.2vw, 46px);
      letter-spacing: -2.2px;
    }

    .slide-sub {
      font-size: 15px;
    }

    .btn-primary,
    .btn-outline-white {
      min-width: 154px;
      height: 54px;
      padding: 0 22px;
      font-size: 15px;
    }
  }

  @media (max-width: 960px) {
    .slide-content {
      align-items: flex-end;
      padding: 0 22px 82px;
    }

    .slide-text {
      max-width: 420px;
    }

    .slide-title {
      font-size: clamp(31px, 9.5vw, 44px);
      line-height: 1.14;
      margin-bottom: 16px;
    }

    .slide-sub {
      margin-bottom: 26px;
    }

    .slide-stats {
      display: none;
    }
  }

  body.admin-bar .header {
    top: 32px;
  }

  @media (max-width: 782px) {
    body.admin-bar .header {
      top: 46px;
    }
  }

  /* WordPress multi-page structure */
  html {
    margin-top: 0 !important;
  }

  body {
    padding-top: 0;
  }

  .header {
    position: fixed !important;
    top: 0;
    background: rgba(18, 18, 18, .94) !important;
    border-top: 0 !important;
    border-bottom-color: rgba(255,255,255,.08) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.16);
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }

  .header::before,
  .header::after {
    content: none !important;
  }

  body.admin-bar .header {
    top: 32px !important;
  }

  @media (max-width: 782px) {
    body.admin-bar .header {
      top: 46px !important;
    }
  }

  .sub-page {
    padding-top: var(--nav-h);
    background: #fff;
  }

  .sub-hero {
    min-height: 360px;
    padding: 86px 0 70px;
    display: flex;
    align-items: center;
    background:
      linear-gradient(135deg, rgba(26,26,26,.94), rgba(45,45,45,.88)),
      url('../images/hero-slide-1.png') center 42% / cover;
    color: #fff;
  }

  .sub-hero .section-title,
  .sub-hero .section-sub {
    color: #fff;
    text-align: left;
  }

  .sub-hero .section-sub {
    margin-left: 0;
    margin-right: 0;
    max-width: 720px;
    color: rgba(255,255,255,.78);
  }

  .home-overview {
    padding: 96px 0;
    background: #fff;
  }

  .home-action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 44px;
  }

  .home-action-card,
  .post-card,
  .consult-card,
  .customer-panel {
    display: block;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: var(--dark);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }

  .home-action-card {
    min-height: 210px;
    padding: 26px;
  }

  .home-action-card:hover,
  .post-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,107,0,.35);
    box-shadow: 0 16px 34px rgba(0,0,0,.08);
  }

  .home-action-kicker {
    display: block;
    margin-bottom: 22px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
  }

  .home-action-card strong,
  .post-card strong,
  .consult-card strong,
  .customer-panel h2 {
    display: block;
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.28;
  }

  .home-action-card p,
  .post-card p,
  .consult-card p,
  .customer-panel p {
    color: var(--gray);
    line-height: 1.7;
    word-break: keep-all;
  }

  .home-service-band {
    background: var(--gray-light);
  }

  .home-quick-strip {
    padding: 26px 0 18px;
    background: #111;
    color: #fff;
  }

  .home-quick-strip .section-inner {
    width: min(1420px, calc(100% - 40px));
    max-width: none;
  }

  .quick-strip-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr) minmax(360px, .9fr);
    gap: 14px;
  }

  .quick-strip-card {
    min-height: 136px;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: #fff;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
  }

  .quick-strip-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255,208,0,.45);
    background: rgba(255,255,255,.12);
  }

  .quick-strip-card span {
    margin-bottom: 8px;
    color: rgba(255,255,255,.66);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .6px;
  }

  .quick-strip-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(22px, 1.9vw, 30px);
    line-height: 1.16;
    font-weight: 900;
    word-break: keep-all;
  }

  .quick-strip-card p {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.55;
    word-break: keep-all;
  }

  .quick-strip-card.blog {
    background: #242424;
  }

  .quick-post-card {
    position: relative;
    min-height: 154px;
    padding-left: 178px;
    overflow: hidden;
  }

  .quick-post-card .quick-thumb {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 136px;
    height: calc(100% - 32px);
    min-height: 104px;
    margin: 0;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  }

  .quick-post-card .quick-meta {
    margin-bottom: 8px;
  }

  .quick-post-card strong {
    display: -webkit-box;
    max-width: 100%;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: clamp(20px, 1.55vw, 27px);
    line-height: 1.25;
  }

  .quick-strip-card.cases {
    background: linear-gradient(135deg, rgba(255,107,0,.92), rgba(255,208,0,.92));
  }

  .quick-strip-card.cta {
    background: #fff;
    color: var(--dark);
  }

  .quick-strip-card.cta span {
    color: var(--orange);
  }

  .quick-cta-actions {
    display: flex;
    gap: 8px;
  }

  .quick-cta-actions a {
    min-width: 0;
    height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
  }

  .quick-cta-actions a:first-child {
    background: var(--gradient);
    color: #fff;
  }

  .quick-cta-actions a:last-child {
    background: #FEE500;
    color: #191600;
  }

  .home-first-view {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 18px) 0 28px;
    background: #101010;
    color: #fff;
  }

  .first-view-inner {
    height: calc(100svh - var(--nav-h) - 46px);
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
    gap: 18px;
  }

  .first-hero {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: 8px;
  }

  .first-hero-bg,
  .first-hero-overlay {
    position: absolute;
    inset: 0;
  }

  .first-hero-bg {
    background-size: cover;
    background-position: 58% 38%;
  }

  .first-hero-overlay {
    background:
      linear-gradient(to right, rgba(0,0,0,.78), rgba(0,0,0,.42) 48%, rgba(0,0,0,.08)),
      linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0) 54%);
  }

  .first-hero-copy {
    position: relative;
    z-index: 1;
    height: 100%;
    max-width: 560px;
    padding: clamp(26px, 4vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .first-hero-copy h1 {
    margin: 14px 0 16px;
    color: #fff;
    font-size: clamp(34px, 4.4vw, 62px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1.8px;
  }

  .first-hero-copy h1 em {
    color: var(--yellow);
    font-style: normal;
  }

  .first-hero-copy p {
    max-width: 500px;
    color: rgba(255,255,255,.84);
    font-size: 17px;
    line-height: 1.65;
    word-break: keep-all;
  }

  .first-dashboard {
    min-height: 0;
    display: grid;
    grid-template-rows: auto 1fr 1fr;
    gap: 14px;
  }

  .first-cta-panel {
    display: grid;
    grid-template-columns: 1.22fr .88fr .88fr;
    gap: 10px;
  }

  .first-cta {
    min-height: 86px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
  }

  .first-cta span {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 900;
    opacity: .82;
  }

  .first-cta strong {
    font-size: clamp(18px, 1.7vw, 27px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .first-cta.primary {
    background: var(--gradient);
  }

  .first-cta.kakao {
    background: #FEE500;
    color: #191600;
  }

  .first-cta.consult {
    background: #242424;
    border: 1px solid rgba(255,255,255,.16);
  }

  .first-preview-card {
    min-height: 0;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: #fff;
    color: var(--dark);
    overflow: hidden;
  }

  .first-preview-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
  }

  .first-preview-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
  }

  .first-preview-head h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .first-preview-head a {
    color: var(--orange);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
  }

  .first-post-list {
    display: grid;
    gap: 8px;
  }

  .first-post-link {
    padding: 13px 14px;
    display: block;
    border-radius: 8px;
    background: #f7f7f7;
    border: 1px solid #ededed;
  }

  .first-post-link span,
  .first-empty {
    display: block;
    margin-bottom: 5px;
    color: var(--gray);
    font-size: 12px;
    font-weight: 800;
  }

  .first-post-link strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 1.35;
  }

  .first-empty {
    margin: 0;
    padding: 28px 16px;
    border-radius: 8px;
    background: #f7f7f7;
    text-align: center;
    line-height: 1.5;
  }

  .home-contact-strip {
    padding: 34px 0;
    background: #111;
    color: #fff;
  }

  .home-contact-inner {
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: 26px;
    align-items: center;
  }

  .home-contact-copy h2 {
    margin: 12px 0 12px;
    color: #fff;
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.25;
  }

  .home-contact-copy p {
    max-width: 560px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
    word-break: keep-all;
  }

  .home-contact-actions {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 12px;
  }

  .contact-action {
    min-height: 100px;
    padding: 20px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
  }

  .contact-action:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 208, 0, .55);
    background: rgba(255, 255, 255, .13);
  }

  .contact-action span {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    font-weight: 800;
  }

  .contact-action strong {
    font-size: clamp(19px, 1.35vw, 24px);
    line-height: 1.12;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .contact-action.primary strong {
    font-size: clamp(22px, 1.55vw, 27px);
  }

  .contact-action.primary {
    background: var(--gradient);
    color: #fff;
  }

  .contact-action.primary span {
    color: rgba(255, 255, 255, .86);
  }

  .contact-action.kakao {
    background: #FEE500;
    color: #191600;
  }

  .contact-action.kakao span {
    color: rgba(25, 22, 0, .64);
  }

  .contact-action.blog {
    background: #03C75A;
    color: #fff;
  }

  .contact-action.blog span {
    color: rgba(255, 255, 255, .82);
  }

  .split-heading,
  .content-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    margin-bottom: 34px;
  }

  .split-heading .section-title,
  .split-heading .section-sub,
  .content-preview-header .section-title {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

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

  .content-preview-section {
    background: #fff;
  }

  .blog-preview-section {
    background: #fff9f4;
  }

  .naver-blog-panel {
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid rgba(3, 199, 90, .22);
    border-radius: 8px;
    background: #fff;
  }

  .naver-blog-panel strong {
    display: block;
    margin: 12px 0 8px;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
    color: var(--dark);
  }

  .naver-blog-panel p {
    max-width: 720px;
    color: var(--gray);
    line-height: 1.75;
    word-break: keep-all;
  }

  .customer-contact-panel {
    border: 1px solid rgba(255, 107, 0, .18);
    background: #fff9f4;
  }

  .post-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .post-card {
    min-height: 230px;
    padding: 24px;
  }

  .post-card-thumb {
    margin: -24px -24px 20px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    background: var(--gray-light);
  }

  .post-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .text-link {
    color: var(--orange);
    font-weight: 900;
  }

  .empty-content {
    grid-column: 1 / -1;
    padding: 34px;
    border-radius: 8px;
    border: 1px dashed var(--border);
    color: var(--gray);
    background: #fff;
    text-align: center;
  }

  .archive-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }

  .archive-tabs a {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.1);
    color: rgba(255,255,255,.82);
    font-weight: 800;
  }

  .archive-tabs a.is-active {
    background: var(--gradient);
    color: #fff;
  }

  .consult-grid,
  .customer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .consult-card,
  .customer-panel,
  .detail-panel {
    padding: 28px;
  }

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

  .detail-panel {
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
  }

  .detail-panel h2 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.3;
  }

  .detail-panel p {
    color: var(--gray);
    line-height: 1.8;
    word-break: keep-all;
  }

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

  .price-note {
    margin-top: 28px;
    padding: 30px;
    border-radius: 8px;
    background: #fff9f4;
    border: 1px solid rgba(255,107,0,.18);
  }

  .price-note strong {
    display: block;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .price-note p {
    max-width: 760px;
    margin-bottom: 22px;
    color: var(--gray);
    line-height: 1.8;
  }

  .consult-card span {
    display: block;
    margin-bottom: 18px;
    color: var(--orange);
    font-weight: 900;
  }

  .single-article .article-body {
    max-width: 860px;
  }

  .article-body {
    font-size: 18px;
    line-height: 1.9;
    color: var(--dark2);
  }

  .article-body p {
    margin-bottom: 1.2em;
  }

  .article-featured {
    margin-bottom: 34px;
    border-radius: 8px;
    overflow: hidden;
  }

  .article-featured img {
    width: 100%;
    height: auto;
  }

  .article-back {
    margin-top: 44px;
  }

  @media (max-width: 960px) {
    .home-first-view {
      min-height: auto;
      padding: calc(var(--nav-h) + 14px) 0 22px;
    }

    .first-view-inner {
      height: auto;
      min-height: 0;
      grid-template-columns: 1fr;
    }

    .first-hero {
      min-height: 360px;
    }

    .first-dashboard {
      grid-template-rows: auto auto auto;
    }

    .first-cta-panel {
      grid-template-columns: 1fr;
    }

    .first-cta {
      min-height: 72px;
    }

    .home-contact-inner,
    .home-contact-actions,
    .quick-strip-grid,
    .home-action-grid,
    .compact-grid,
    .post-card-grid,
    .consult-grid,
    .customer-grid,
    .detail-grid,
    .two-column-grid {
      grid-template-columns: 1fr;
    }

    .home-quick-strip {
      padding: 18px 0 10px;
    }

    .quick-strip-card {
      min-height: 104px;
      padding: 18px;
    }

    .quick-post-card {
      min-height: 132px;
      padding-left: 146px;
    }

    .quick-post-card .quick-thumb {
      top: 14px;
      left: 14px;
      width: 108px;
      height: calc(100% - 28px);
      min-height: 92px;
    }

    .quick-cta-actions {
      flex-wrap: wrap;
    }

    .home-contact-strip {
      padding: 34px 0;
    }

    .contact-action {
      min-height: 96px;
    }

    .naver-blog-panel {
      display: block;
    }

    .naver-blog-panel .btn-primary {
      width: 100%;
      margin-top: 24px;
      text-align: center;
    }

    .split-heading,
    .content-preview-header {
      display: block;
    }

    .sub-hero {
      min-height: 300px;
      padding: 64px 0 54px;
    }
  }
