 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
      font-size: 15px; line-height: 1.8; color: #1a1a1a; background: #fff;
      -webkit-font-smoothing: antialiased;
      padding-bottom: 80px; /* 플로팅 CTA 공간 */
    }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    
    /* Typography */
    .section-label {
      font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: #D84E40; margin-bottom: 8px;
    }
    .section-title {
      font-size: clamp(24px, 4vw, 32px); font-weight: 900;
      line-height: 1.3; margin-bottom: 12px; color: #0a0a0a;
    }
    .section-desc {
      font-size: 15px; color: #666; max-width: 600px;
    }
    .section-header { margin-bottom: 48px; }
    .section-header.center { text-align: center; }
    .section-header.center .section-desc { margin: 0 auto; }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 28px; font-size: 14px; font-weight: 700; border-radius: 8px;
      border: none; cursor: pointer; transition: all 0.2s;
    }
    .btn-primary {
      background: #D84E40; color: #fff;
    }
    .btn-primary:hover { background: #c24539; }
    .btn-secondary {
      background: #0a0a0a; color: #fff;
    }
    .btn-secondary:hover { background: #222; }
    .btn-outline {
      background: transparent; color: #0a0a0a; border: 1.5px solid #ddd;
    }
    .btn-outline:hover { border-color: #0a0a0a; }
    .btn-outline-light {
      color: #fff; border-color: rgba(255,255,255,0.4);
    }
    .btn-outline-light:hover { border-color: #fff; }
    .btn-sm { padding: 10px 18px; font-size: 13px; }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      padding: 120px 0 100px;
      background: #fff;
      overflow: hidden;
    }
    /* 배경 네트워크 맵 */
    .hero-bg {
      position: absolute; inset: 0;
      background: 
        url('https://www.gldaily.com/gld-kanri/wp-content/uploads/2025/06/vecteezy_global-network-connection-world-map-point-and-line_6826888.svg') center center / cover no-repeat;
      opacity: 0.08;
    }
    
    /* 점멸 노드들 */
    .hero-nodes {
      position: absolute; inset: 0; pointer-events: none;
    }
    .node {
      position: absolute; border-radius: 50%;
      background: #D84E40;
    }
    /* 일본 (중심) - 오른쪽 */
    .node.japan {
      width: 12px; height: 12px;
      top: 40%; right: 22%;
      animation: pulse-center 2s ease-in-out infinite;
    }
    /* 아시아 (오른쪽) */
    .node.korea { width: 6px; height: 6px; top: 38%; right: 26%; animation: pulse-out 2.5s ease-in-out 0.2s infinite; }
    .node.china { width: 6px; height: 6px; top: 42%; right: 32%; animation: pulse-out 2.5s ease-in-out 0.4s infinite; }
    .node.taiwan { width: 5px; height: 5px; top: 50%; right: 24%; animation: pulse-out 2.5s ease-in-out 0.3s infinite; }
    .node.sea { width: 5px; height: 5px; top: 58%; right: 30%; animation: pulse-out 2.5s ease-in-out 0.5s infinite; }
    .node.oceania { width: 5px; height: 5px; top: 70%; right: 18%; animation: pulse-out 2.5s ease-in-out 0.7s infinite; }
    
    /* 유럽/미국/남미 (왼쪽) */
    .node.eu { width: 6px; height: 6px; top: 32%; left: 38%; animation: pulse-out 2.5s ease-in-out 0.6s infinite; }
    .node.usa { width: 6px; height: 6px; top: 38%; left: 18%; animation: pulse-out 2.5s ease-in-out 0.8s infinite; }
    .node.sa { width: 5px; height: 5px; top: 65%; left: 28%; animation: pulse-out 2.5s ease-in-out 0.9s infinite; }
    
    /* 연결선 (일본에서 뻗어나감) */
    .connection {
      position: absolute;
      top: 40%; right: 22%;
      width: 2px; height: 2px;
      background: transparent;
    }
    .connection::after {
      content: '';
      position: absolute;
      height: 1px;
      background: linear-gradient(90deg, rgba(216,78,64,0.5), transparent);
      transform-origin: left center;
    }
    /* 오른쪽 (아시아) */
    .connection.to-korea::after { width: 60px; transform: rotate(-160deg); animation: line-pulse 2.5s ease-in-out 0.2s infinite; }
    .connection.to-china::after { width: 120px; transform: rotate(-170deg); animation: line-pulse 2.5s ease-in-out 0.4s infinite; }
    .connection.to-sea::after { width: 100px; transform: rotate(150deg); animation: line-pulse 2.5s ease-in-out 0.5s infinite; }
    
    /* 왼쪽 (유럽/미국) - 반대 방향 */
    .connection.to-eu::after { width: 300px; transform: rotate(-175deg); animation: line-pulse 2.5s ease-in-out 0.6s infinite; }
    .connection.to-usa::after { width: 480px; transform: rotate(-178deg); animation: line-pulse 2.5s ease-in-out 0.8s infinite; }
    .connection.to-sa::after { width: 400px; transform: rotate(160deg); animation: line-pulse 2.5s ease-in-out 0.9s infinite; }
    
    @keyframes pulse-center {
      0%, 100% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 0 0 rgba(216,78,64,0.4); }
      50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 20px 10px rgba(216,78,64,0.2); }
    }
    @keyframes pulse-out {
      0%, 100% { transform: scale(0.8); opacity: 0.3; }
      50% { transform: scale(1.3); opacity: 0.9; }
    }
    @keyframes line-pulse {
      0%, 100% { opacity: 0; }
      30%, 70% { opacity: 1; }
    }
    
    .hero .container { position: relative; z-index: 1; }
    .hero-inner {
      max-width: 800px; margin: 0 auto; text-align: center;
    }
    .hero-content {}
    .hero-label-wrap {
      margin-bottom: 16px;
    }
    .hero-label-main {
      display: inline-block; font-size: 14px; font-weight: 700;
      color: #fff; background: #D84E40;
      padding: 10px 24px; border-radius: 6px;
      letter-spacing: 0.02em;
    }
    .hero-sub {
      font-size: 14px; font-weight: 500; color: #888;
      margin-bottom: 24px; letter-spacing: 0.05em;
      display: flex; align-items: center; justify-content: center; gap: 12px;
    }
    .hero-year {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 20px; font-weight: 900; color: #D84E40;
      background: linear-gradient(135deg, #fef7f6, #fff);
      border: 2px solid #D84E40;
      padding: 6px 14px; border-radius: 8px;
    }
    .hero-year-new {
      font-size: 9px; font-weight: 700; color: #fff;
      background: #D84E40; padding: 2px 6px; border-radius: 4px;
      letter-spacing: 0.05em;
    }
    .hero h1 {
      font-size: clamp(26px, 4vw, 42px); font-weight: 900;
      line-height: 1.4; margin-bottom: 20px; color: #0a0a0a;
    }
    .hero-desc {
      font-size: 15px; color: #555; margin-bottom: 40px; line-height: 1.9;
    }
    .hero-desc strong { color: #0a0a0a; }
    
    /* Hero Sessions Cards - 가로형 */
    .hero-sessions {
      display: flex; flex-direction: column; gap: 12px; 
      margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto;
    }
    .hero-session-card {
      display: flex; align-items: center; justify-content: center; gap: 20px;
      background: #fff; border: 2px solid #eee; border-radius: 12px;
      padding: 18px 24px 18px 110px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      transition: all 0.2s;
      position: relative;
      overflow: hidden;
    }
    .hero-session-card:hover {
      border-color: #D84E40;
      box-shadow: 0 4px 16px rgba(216,78,64,0.1);
    }
    .hero-session-card.final {
      background: #0a0a0a; border-color: #0a0a0a; color: #fff;
      padding: 18px 24px 18px 170px;
    }
    .hero-session-card.final:hover {
      border-color: #D84E40;
    }
    .hsc-badge {
      position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
      font-size: 12px; font-weight: 700;
      padding: 6px 12px; border-radius: 4px;
      white-space: nowrap;
      height: auto; line-height: 1.2;
      display: inline-block;
    }
    .hero-session-card .hsc-badge.online { background: #e8f5e9; color: #2e7d32; }
    .hero-session-card .hsc-badge.hsc-offline { 
      background: #D84E40; color: #fff; 
    }
    .hsc-final-label {
      position: absolute; left: 105px; top: 50%; transform: translateY(-50%);
      font-size: 11px; font-weight: 700; color: #D84E40;
      letter-spacing: 0.05em; background: rgba(216,78,64,0.15);
      padding: 4px 10px; border-radius: 4px;
    }
    .hero-session-card.final .hsc-final-label {
      background: rgba(216,78,64,0.3);
    }
    .hsc-date {
      display: flex; align-items: baseline; gap: 2px;
    }
    .hsc-month { font-size: 24px; font-weight: 700; color: #D84E40; }
    .hsc-slash { font-size: 22px; font-weight: 300; color: #ccc; }
    .hsc-day { font-size: 38px; font-weight: 900; color: #0a0a0a; }
    .hero-session-card.final .hsc-day { color: #fff; }
    .hsc-weekday {
      font-size: 16px; font-weight: 600; color: #666; margin-left: 6px;
    }
    .hero-session-card.final .hsc-weekday { color: rgba(255,255,255,0.6); }
    .hsc-time { font-size: 15px; color: #555; white-space: nowrap; font-weight: 500; }
    .hero-session-card.final .hsc-time { color: rgba(255,255,255,0.7); }
    .hsc-btn { padding: 10px 24px; white-space: nowrap; }
    
    .hero-note {
      font-size: 13px; color: #888; margin-bottom: 32px;
    }

    .hero-cta { display: flex; gap: 12px; justify-content: center; }

    /* ===== PAIN POINTS ===== */
    .pain {
      padding: 80px 0;
      background: #fff;
    }
    .pain-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
      margin-bottom: 48px;
    }
    .pain-card {
      padding: 32px 28px; border-radius: 16px;
      border: 1.5px solid #eee; background: #fafafa;
      transition: all 0.2s;
    }
    .pain-card:hover {
      border-color: #ddd; background: #fff;
      box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    }
    .pain-num {
      font-size: 11px; font-weight: 700; color: #D84E40;
      margin-bottom: 16px; letter-spacing: 0.05em;
    }
    .pain-card h4 {
      font-size: 16px; font-weight: 700; color: #0a0a0a;
      margin-bottom: 12px; line-height: 1.5;
    }
    .pain-card p { font-size: 13px; color: #777; line-height: 1.7; }
    
    .pain-cta {
      text-align: center; padding: 32px;
      background: #0a0a0a; border-radius: 16px; color: #fff;
    }
    .pain-cta p { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
    .pain-cta span { font-size: 14px; opacity: 0.6; }

    /* ===== SERVICES - 탭 with 설명 ===== */
    .services {
      padding: 80px 0;
      background: #fafafa;
    }
    
    .service-tabs-wrap {
      display: flex; flex-direction: column; gap: 0;
      background: #fff; border-radius: 16px; overflow: hidden;
      border: 1.5px solid #eee;
    }
    .service-tabs {
      display: grid; grid-template-columns: repeat(3, 1fr);
    }
    .service-tab {
      position: relative;
      padding: 24px 20px; text-align: left; cursor: pointer;
      border-right: 1.5px solid #eee; background: #fafafa;
      transition: all 0.25s ease;
      display: flex; align-items: center; gap: 16px;
    }
    .service-tab:last-child { border-right: none; }
    .service-tab:hover { background: #f5f5f5; }
    .service-tab.active { background: #fff; }
    
    /* 상단 인디케이터 바 */
    .tab-indicator {
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px; background: transparent; transition: all 0.25s;
    }
    .service-tab.active .tab-indicator { background: #0a0a0a; }
    .service-tab.active.kk .tab-indicator { background: #166534; }
    .service-tab.active.rs .tab-indicator { background: #7c3aed; }
    
    .tab-content { flex: 1; }
    .tab-logo {
      height: 28px; margin-bottom: 4px;
    }
    .tab-logo img {
      height: 100%; width: auto; object-fit: contain;
    }
    .service-tab.kk .tab-logo {
      height: 32px; /* korekoko 로고 더 크게 */
    }
    .tab-reading {
      font-size: 10px; color: #999; margin-bottom: 6px; letter-spacing: 0.05em;
    }
    .tab-name {
      font-size: 17px; font-weight: 900; color: #0a0a0a; margin-bottom: 6px;
    }
    .service-tab.active.jk .tab-name { color: #D84E40; }
    .service-tab.active.kk .tab-name { color: #166534; }
    .service-tab.active.rs .tab-name { color: #7c3aed; }
    
    .tab-def {
      font-size: 12px; color: #666; margin-bottom: 10px; line-height: 1.5;
    }
    .tab-keywords {
      display: flex; gap: 6px; flex-wrap: wrap;
    }
    .tab-keywords span {
      font-size: 11px; color: #555; padding: 4px 10px;
      background: #f0f0f0; border-radius: 4px; font-weight: 500;
    }
    .service-tab.active .tab-keywords span {
      background: #e5e5e5; color: #333;
    }
    
    /* 화살표 - 클릭 유도 */
    .tab-arrow {
      font-size: 18px; color: #ccc; transition: all 0.25s;
      flex-shrink: 0;
    }
    .service-tab:hover .tab-arrow { color: #999; transform: translateX(4px); }
    .service-tab.active .tab-arrow { color: #D84E40; }
    .service-tab.active.kk .tab-arrow { color: #166534; }
    .service-tab.active.rs .tab-arrow { color: #7c3aed; }
    
    /* Tab content */
    .service-panel { 
      display: none; padding: 48px;
      border-top: 1.5px solid #eee;
    }
    .service-panel.active { display: block; }
    
    .service-hero {
      display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    }
    .service-visual img {
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    }
    .service-info {}
    .service-info h3 {
      font-size: 28px; font-weight: 900; color: #0a0a0a; margin-bottom: 8px;
    }
    
    /* 서비스 타이틀 로고 */
    .service-title-logo {
      margin-bottom: 12px;
    }
    .service-title-logo img {
      height: 38px; width: auto;
    }
    .service-info.kk .service-title-logo img {
      height: 48px; /* korekoko 로고 더 크게 */
    }
    .service-reading {
      display: block; font-size: 11px; color: #999; margin-top: 4px;
      letter-spacing: 0.05em;
    }
    
    .service-tagline {
      font-size: 14px; color: #D84E40; font-weight: 600; margin-bottom: 20px;
    }
    .service-info.kk .service-tagline { color: #166534; }
    .service-info.rs .service-tagline { color: #7c3aed; }
    
    .service-lead {
      font-size: 15px; color: #555; line-height: 1.9; margin-bottom: 28px;
    }
    .service-lead strong { color: #0a0a0a; font-weight: 700; }
    
    .service-stats {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
      padding: 20px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
      margin-bottom: 28px;
    }
    .stat { text-align: center; }
    .stat-num { font-size: 22px; font-weight: 900; color: #0a0a0a; }
    .stat-label { font-size: 11px; color: #999; }
    
    .service-points {
      display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    }
    .point {
      padding: 16px; background: #fafafa; border-radius: 10px;
      border: 1px solid #eee;
    }
    .point-vs {
      display: flex; align-items: center; gap: 8px;
      font-size: 13px; margin-bottom: 4px;
    }
    .point-old { color: #bbb; text-decoration: line-through; }
    .point-arrow { color: #D84E40; font-weight: 700; }
    .point-new { color: #0a0a0a; font-weight: 700; }
    .point-desc { font-size: 11px; color: #888; }
    
    .service-countries {
      display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px;
    }
    .country {
      font-size: 12px; color: #666; padding: 6px 12px;
      background: #f0f0f0; border-radius: 6px;
    }

    /* ===== SCHEDULE ===== */
    .schedule {
      padding: 80px 0;
      background: #fff;
    }
    
    .month-block { margin-bottom: 48px; }
    .month-head {
      display: flex; justify-content: space-between; align-items: center;
      padding: 20px 28px; background: #0a0a0a; color: #fff;
      border-radius: 12px 12px 0 0;
    }
    .month-head.kk { background: #166534; }
    .month-head h4 { font-size: 18px; font-weight: 900; }
    .month-head p { font-size: 12px; opacity: 0.7; }
    
    .session-list {
      border: 1.5px solid #eee; border-top: none;
      border-radius: 0 0 12px 12px; overflow: hidden;
    }
    
    .session {
      display: grid; grid-template-columns: 90px 1fr 180px;
      gap: 24px; padding: 28px; background: #fff;
      border-bottom: 1px solid #eee; align-items: center;
    }
    .session:last-child { border-bottom: none; }
    
    .session-date { text-align: center; }
    .session-date .month { font-size: 11px; color: #999; font-weight: 600; }
    .session-date .day { font-size: 36px; font-weight: 900; color: #0a0a0a; line-height: 1; }
    .session-date .weekday { font-size: 11px; color: #999; }
    
    .session-content {}
    .session-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
    .tag {
      font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 4px;
      text-transform: uppercase; letter-spacing: 0.03em;
    }
    .tag.jk { background: #0a0a0a; color: #fff; }
    .tag.kk { background: #166534; color: #fff; }
    .tag.rs { background: #7c3aed; color: #fff; }
    .tag.open { background: #e8f5e9; color: #2e7d32; }
    .tag.main { background: #D84E40; color: #fff; }
    
    .session-title { font-size: 17px; font-weight: 700; color: #0a0a0a; margin-bottom: 6px; }
    .session-time { font-size: 12px; color: #D84E40; font-weight: 600; margin-bottom: 8px; }
    .session-topics { font-size: 13px; color: #777; margin-bottom: 8px; }
    .session-speaker { font-size: 12px; color: #D84E40; font-weight: 600; margin-bottom: 14px; }
    .session-cta { display: flex; gap: 8px; }
    
    /* 세션 우측 */
    .session-side {
      display: flex; align-items: center; justify-content: center;
      height: 100%; border-radius: 10px; overflow: hidden;
    }
    .session-side img {
      width: 100%; height: 100px; object-fit: cover; border-radius: 10px;
    }
    .session-note {
      width: 100%; height: 100px; background: #f8f8f8;
      border-radius: 10px; display: flex; align-items: center;
      justify-content: center; text-align: center; padding: 16px;
      border: 1px dashed #ddd;
    }
    .session-note-text { font-size: 12px; color: #999; line-height: 1.5; }
    
    /* 메인 세션 */
    .session.main {
      background: linear-gradient(90deg, #fef7f6 0%, #fff 100%);
      border-left: 4px solid #D84E40;
    }
    
    /* 오프라인 FINAL 세션 */
    .session.offline-session {
      background: linear-gradient(90deg, #0a0a0a 0%, #1a1a1a 100%);
      border-left: 4px solid #D84E40;
    }
    .session.offline-session .session-date .month,
    .session.offline-session .session-date .weekday { color: rgba(255,255,255,0.6); }
    .session.offline-session .session-date .day { color: #fff; }
    .session.offline-session .session-title { color: #fff; }
    .session.offline-session .session-time { color: #D84E40; }
    .session.offline-session .session-topics { color: rgba(255,255,255,0.6); }
    
    .tag.final { background: #D84E40; color: #fff; }
    .tag.offline-tag { background: #fff; color: #0a0a0a; border: 1px solid #ddd; }
    
    .session-offline-badge {
      background: #D84E40; color: #fff; border-radius: 10px;
      padding: 16px; text-align: center; width: 100%; height: 100px;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
    }
    .offline-badge-icon { font-size: 20px; margin-bottom: 4px; }
    .offline-badge-text { font-size: 12px; font-weight: 700; line-height: 1.4; }

    /* ===== OFFLINE ===== */
    .offline {
      padding: 100px 0;
      background: #0a0a0a;
      color: #fff;
    }
    .offline-header {
      text-align: center; margin-bottom: 48px;
    }
    .offline-connect {
      display: inline-block;
      font-size: 13px; font-weight: 700; color: #fff;
      background: #D84E40; padding: 10px 24px;
      border-radius: 100px;
      position: relative;
    }
    .offline-connect::before {
      content: '↓ スケジュール第3回の詳細';
      position: absolute; top: -24px; left: 50%;
      transform: translateX(-50%);
      font-size: 11px; color: rgba(255,255,255,0.5);
      white-space: nowrap;
    }
    .offline-inner {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    }
    .offline-content {}
    .offline-label {
      display: inline-block; font-size: 11px; font-weight: 700;
      letter-spacing: 0.1em; color: #D84E40;
      border: 1.5px solid #D84E40; padding: 6px 14px;
      border-radius: 100px; margin-bottom: 20px;
    }
    .offline h3 {
      font-size: clamp(28px, 4vw, 36px); font-weight: 900;
      line-height: 1.35; margin-bottom: 16px;
    }
    .offline h3 span { color: #D84E40; }
    .offline-desc {
      font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 32px; line-height: 1.8;
    }
    
    .offline-meta {
      display: flex; gap: 32px; margin-bottom: 24px;
      padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .meta-item {}
    .meta-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
    .meta-value { font-size: 18px; font-weight: 700; }
    
    .offline-venue {
      background: rgba(255,255,255,0.05); border-radius: 12px;
      padding: 20px; margin-bottom: 32px;
      border: 1px solid rgba(255,255,255,0.1);
    }
    .venue-title {
      font-size: 12px; font-weight: 700; color: #D84E40; margin-bottom: 12px;
    }
    .venue-name {
      font-size: 15px; font-weight: 700; margin-bottom: 4px;
    }
    .venue-address {
      font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 12px;
    }
    .venue-map {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 13px; color: #D84E40; font-weight: 600;
      padding: 8px 16px; background: rgba(216,78,64,0.1);
      border-radius: 6px; transition: all 0.2s;
    }
    .venue-map:hover {
      background: rgba(216,78,64,0.2);
    }
    
    .offline-features {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px;
    }
    .off-feat {
      padding: 20px; background: rgba(255,255,255,0.05);
      border-radius: 10px; border: 1px solid rgba(255,255,255,0.08);
    }
    .off-feat-num { font-size: 11px; color: #D84E40; font-weight: 700; margin-bottom: 8px; }
    .off-feat-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
    .off-feat-desc { font-size: 12px; color: rgba(255,255,255,0.5); }
    
    .offline-cta { display: flex; gap: 12px; }
    .btn-gold { background: #D84E40; color: #fff; }
    .btn-gold:hover { background: #c24539; }
    .btn-white { background: #fff; color: #0a0a0a; }
    
    .offline-visual { position: relative; }
    .offline-visual img {
      border-radius: 16px;
      box-shadow: 0 32px 80px rgba(0,0,0,0.4);
    }
    .offline-badge {
      position: absolute; top: -20px; right: -20px;
      background: #D84E40; color: #fff;
      padding: 20px 28px; border-radius: 12px; text-align: center;
    }
    .offline-badge-main { font-size: 11px; font-weight: 700; opacity: 0.8; }
    .offline-badge-num { font-size: 28px; font-weight: 900; line-height: 1; }
    .offline-badge-sub { font-size: 12px; font-weight: 600; }

    /* ===== END CTA ===== */
    .end-cta {
      padding: 80px 0; background: #0a0a0a; text-align: center;
      color: #fff;
    }
    .end-cta h3 { font-size: 24px; font-weight: 900; margin-bottom: 12px; }
    .end-cta > .container > p { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
    .end-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .end-cta-actions .btn-secondary {
      background: #fff; color: #0a0a0a;
    }
    .end-cta-actions .btn-outline {
      color: #fff; border-color: rgba(255,255,255,0.3);
    }
    .end-cta-actions .btn-outline:hover {
      border-color: #fff;
    }
    .end-cta-note {
      margin-top: 20px; font-size: 12px; color: rgba(255,255,255,0.5);
    }

    /* ===== MODAL ===== */
    .modal {
      position: fixed; inset: 0; background: rgba(0,0,0,0.5);
      backdrop-filter: blur(4px); z-index: 9999;
      display: flex; align-items: center; justify-content: center; padding: 24px;
      opacity: 0; visibility: hidden; transition: all 0.3s;
    }
    .modal.open { opacity: 1; visibility: visible; }
    .modal-panel {
      background: #fff; border-radius: 16px; width: 100%; max-width: 520px;
      max-height: 90vh; overflow: hidden;
    }
    .modal-head {
      display: flex; justify-content: space-between; align-items: center;
      padding: 24px; border-bottom: 1px solid #eee;
    }
    .modal-head h5 { font-size: 18px; font-weight: 900; color: #0a0a0a; }
    .modal-close {
      width: 36px; height: 36px; border: none; background: #f5f5f5;
      border-radius: 8px; font-size: 18px; cursor: pointer; color: #666;
    }
    .modal-body { padding: 24px; max-height: calc(90vh - 80px); overflow-y: auto; }
    .modal-summary {
      background: #0a0a0a; padding: 20px; border-radius: 12px;
      margin-bottom: 24px; color: #fff;
    }
    .modal-summary-title { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
    .modal-summary-date {
      display: flex; gap: 16px; align-items: center;
    }
    .modal-date-box {
      background: #D84E40; padding: 12px 16px; border-radius: 8px;
      text-align: center; min-width: 70px;
    }
    .modal-date-month { font-size: 11px; opacity: 0.8; }
    .modal-date-day { font-size: 28px; font-weight: 900; line-height: 1; }
    .modal-date-weekday { font-size: 11px; opacity: 0.8; }
    .modal-date-info { flex: 1; }
    .modal-date-time { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
    .modal-date-format { font-size: 12px; opacity: 0.7; }
    .form-zoom-note {
      margin-bottom: 20px; padding: 14px 16px;
      background: #fef7f6; border-radius: 8px;
      font-size: 13px; color: #D84E40; font-weight: 600;
      text-align: center; border: 1px solid #fde8e6;
    }
    
    .form-group { margin-bottom: 20px; }
    .form-group label {
      display: block; font-size: 13px; font-weight: 600;
      color: #333; margin-bottom: 8px;
    }
    .form-group .req { color: #D84E40; }
    .form-group input, .form-group textarea {
      width: 100%; padding: 12px 16px; border: 1.5px solid #e5e5e5;
      border-radius: 8px; font-size: 14px; background: #fafafa;
      transition: all 0.2s;
    }
    .form-group input:focus, .form-group textarea:focus {
      outline: none; border-color: #D84E40; background: #fff;
    }
    .form-group small { font-size: 11px; color: #999; margin-top: 4px; display: block; }
    
    .checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .checkbox-grid label {
      display: flex; align-items: center; gap: 8px;
      padding: 12px 14px; background: #fafafa; border: 1.5px solid #eee;
      border-radius: 8px; font-size: 13px; cursor: pointer; transition: all 0.2s;
    }
    .checkbox-grid label:hover { border-color: #ddd; }
    .checkbox-grid input { accent-color: #D84E40; width: 16px; height: 16px; }

    /* ===== SPEAKERS ===== */
    .speakers {
      padding: 80px 0;
      background: #fafafa;
    }
    .speaker-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
      max-width: 900px; margin: 0 auto;
    }
    .speaker-card {
      background: #fff; border-radius: 12px;
      padding: 28px; border: 1px solid #eee;
      display: flex; gap: 20px; align-items: center;
    }
    .speaker-photo {
      width: 72px; height: 72px; border-radius: 12px;
      overflow: hidden; flex-shrink: 0;
      background: #f5f5f5;
    }
    .speaker-photo img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .speaker-info {
      flex: 1; min-width: 0;
    }
    .speaker-name {
      font-size: 18px; font-weight: 900; color: #0a0a0a; margin-bottom: 2px;
    }
    .speaker-role {
      font-size: 11px; color: #D84E40; font-weight: 600; margin-bottom: 8px;
    }
    .speaker-desc {
      font-size: 12px; color: #888; line-height: 1.6;
    }
    .speaker-more {
      margin-top: 48px; text-align: center;
    }
    .speaker-plus {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      margin-top: 24px; padding: 16px 24px;
      background: linear-gradient(90deg, #fafafa, #f5f5f5, #fafafa);
      border-radius: 100px; max-width: 600px; margin-left: auto; margin-right: auto;
    }
    .speaker-plus-icon {
      width: 24px; height: 24px; border-radius: 50%;
      background: #D84E40; color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700;
    }
    .speaker-plus-text {
      font-size: 13px; color: #666;
    }
    .speaker-detail {
      max-width: 900px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    }
    .detail-box {
      background: #fff; border-radius: 12px; padding: 24px;
      border: 1px solid #eee;
    }
    .detail-box-title {
      font-size: 12px; font-weight: 700; color: #0a0a0a; margin-bottom: 12px;
      display: flex; align-items: center; gap: 8px;
    }
    .detail-box-title::before {
      content: ''; width: 3px; height: 14px; background: #D84E40; border-radius: 2px;
    }
    .detail-box p {
      font-size: 13px; color: #666; line-height: 1.8;
    }
    .detail-box ul {
      font-size: 13px; color: #666; line-height: 1.8;
    }
    .detail-box li {
      margin-bottom: 4px; padding-left: 16px; position: relative;
    }
    .detail-box li::before {
      content: '•'; position: absolute; left: 0; color: #D84E40;
    }

    /* ===== FAQ ===== */
    .faq {
      padding: 80px 0;
      background: #fafafa;
    }
    .faq-list {
      max-width: 800px; margin: 0 auto;
    }
    .faq-item {
      background: #fff; border-radius: 12px; margin-bottom: 12px;
      border: 1.5px solid #eee; overflow: hidden;
    }
    .faq-q {
      padding: 20px 24px; font-size: 15px; font-weight: 700;
      color: #0a0a0a; cursor: pointer; display: flex;
      justify-content: space-between; align-items: center;
      transition: background 0.2s;
    }
    .faq-q:hover { background: #fafafa; }
    .faq-q::after {
      content: '+'; font-size: 20px; color: #D84E40; font-weight: 400;
      transition: transform 0.2s;
    }
    .faq-item.open .faq-q::after {
      transform: rotate(45deg);
    }
    .faq-a {
      max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
    }
    .faq-item.open .faq-a {
      max-height: 200px;
    }
    .faq-a-inner {
      padding: 0 24px 20px; font-size: 14px; color: #666; line-height: 1.8;
    }

    /* ===== FLOATING CTA ===== */
    .floating-cta {
      position: fixed; bottom: 0; left: 0; right: 0;
      background: #fff; padding: 12px 24px;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
      z-index: 1000; display: flex; justify-content: center;
      align-items: center; gap: 16px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    .floating-cta.visible {
      transform: translateY(0);
    }
    .floating-cta-text {
      font-size: 14px; color: #333;
    }
    .floating-cta-text strong {
      color: #D84E40; font-weight: 700;
    }
    .floating-cta .btn {
      white-space: nowrap;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: #0a0a0a; color: #fff; padding: 24px 0;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .footer-bottom {
      text-align: center;
    }
    .footer-bottom p {
      font-size: 11px; color: rgba(255,255,255,0.4);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .hero { padding: 80px 0 60px; }
      .hero-inner { max-width: 100%; }
      .hero-sub { flex-direction: column; gap: 8px; }
      .hero-sessions { max-width: 100%; }
      .hero-session-card { padding: 16px 20px 16px 100px; gap: 16px; }
      .hero-session-card.final { padding: 16px 20px 16px 155px; }
      .service-hero, .offline-inner { grid-template-columns: 1fr; gap: 40px; }
      .pain-grid { grid-template-columns: 1fr; }
      .service-tabs { grid-template-columns: 1fr; }
      .service-tab { 
        border-right: none; border-bottom: 1px solid #eee;
        padding: 20px;
      }
      .service-tab:last-child { border-bottom: none; }
      .tab-arrow { display: none; }
      .service-stats { grid-template-columns: repeat(2, 1fr); }
      .service-points { grid-template-columns: 1fr; }
      .session { grid-template-columns: 70px 1fr; }
      .session-side { display: none; }
      .offline-features { grid-template-columns: 1fr; }
      .offline-meta { flex-wrap: wrap; gap: 20px; }
      .speaker-grid { grid-template-columns: 1fr; }
      .speaker-detail { grid-template-columns: 1fr; }
      .floating-cta { flex-direction: column; gap: 8px; padding: 16px; }
      .floating-cta-text { text-align: center; }
      .modal-summary-date { flex-direction: column; text-align: center; }
      .modal-date-box { width: 100%; }
      .modal-date-info { text-align: center; }
      .end-cta-actions { flex-direction: column; align-items: center; }
      .end-cta-actions .btn { width: 100%; max-width: 320px; }
    }
    @media (max-width: 600px) {
      body { padding-bottom: 120px; }
      .container { padding: 0 16px; }
      .hero { padding: 60px 0 50px; }
      .hero-label-main { font-size: 12px; padding: 8px 16px; }
      .hero h1 { font-size: 22px; line-height: 1.5; }
      .hero-desc { font-size: 14px; }
      .hero-session-card { padding: 14px 16px 14px 85px; gap: 12px; }
      .hero-session-card.final { padding: 14px 16px 14px 140px; }
      .hsc-badge { left: 12px; font-size: 10px; padding: 4px 8px; }
      .hsc-final-label { left: 85px; font-size: 9px; padding: 3px 8px; }
      .hsc-day { font-size: 28px; }
      .hsc-month { font-size: 18px; }
      .hsc-weekday { font-size: 13px; }
      .hsc-time { font-size: 13px; }
      .hsc-btn { padding: 8px 16px; font-size: 13px; }
      .hero-cta { flex-direction: column; align-items: center; width: 100%; }
      .hero-cta .btn { width: 100%; max-width: 280px; }
      .section-title { font-size: 22px; }
      .pain-card { padding: 24px 20px; }
      .pain-card h4 { font-size: 15px; }
      .service-panel { padding: 24px; }
      .session { padding: 20px 16px; gap: 16px; }
      .session-date .day { font-size: 28px; }
      .session-title { font-size: 15px; }
      .session-cta { flex-direction: column; }
      .session-cta .btn { width: 100%; }
      .month-head { padding: 16px 20px; }
      .month-head h4 { font-size: 16px; }
      .offline { padding: 60px 0; }
      .offline h3 { font-size: 24px; }
      .offline-badge { top: -10px; right: -10px; padding: 14px 18px; }
      .offline-badge-num { font-size: 22px; }
      .offline-cta { flex-direction: column; }
      .offline-cta .btn { width: 100%; }
      .speaker-card { padding: 20px; gap: 16px; }
      .speaker-photo { width: 60px; height: 60px; }
      .speaker-name { font-size: 16px; }
      .detail-box { padding: 20px; }
      .faq-q { padding: 16px 20px; font-size: 14px; }
      .faq-a-inner { padding: 0 20px 16px; font-size: 13px; }
      .end-cta { padding: 50px 0; }
      .end-cta h3 { font-size: 18px; }
      .end-cta-actions { flex-direction: column; align-items: center; }
      .end-cta-actions .btn { width: 100%; max-width: 300px; }
      .checkbox-grid { grid-template-columns: 1fr 1fr; }
      .tab-keywords { display: none; }
      .tab-logo { height: 22px; }
      .service-tab.kk .tab-logo { height: 26px; }
      .floating-cta .btn { width: 100%; }
    }
    @media (max-width: 400px) {
      .hero h1 { font-size: 20px; }
      .format-box { min-width: auto; }
      .session { grid-template-columns: 60px 1fr; }
      .session-date .day { font-size: 24px; }
    }
#modal .form-group textarea {
  height: 140px;      
  resize: vertical;
}
/* --- セミナー申込：聞きたい事例分野 チェックボックス --- */

/* 컨테이너: 모달 안 CF7용 */
#modal .wpcf7 .checkbox-grid,
#modal .wpcf7-form .checkbox-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important; /* 기본 2열 */
  gap: 12px;
}

/* 768px 이상에서는 3열 */
@media (min-width: 768px) {
  #modal .wpcf7 .checkbox-grid,
  #modal .wpcf7-form .checkbox-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

/* 각 항목(카드 한 개) */
#modal .wpcf7 .checkbox-grid .wpcf7-list-item {
  margin: 0 !important;            /* 기본 세로 간격 제거 */
}

#modal .wpcf7 .checkbox-grid .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1.5px solid #eee;
  background: #fafafa;
  box-sizing: border-box;
}

/* 실제 체크박스 */
#modal .wpcf7 .checkbox-grid input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #D84E40;
}