﻿/* ===== LOGO REDESIGN ===== */
    .logo-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .logo-globe {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2.5px solid var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 20px;
      position: relative;
      flex-shrink: 0;
      background: rgba(255,107,0,0.08);
    }
    .logo-globe::after {
      content: '';
      position: absolute;
      inset: 3px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,107,0,0.3);
    }
    .logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-main {
      font-size: 17px;
      font-weight: 900;
      color: var(--primary);
      letter-spacing: -0.3px;
    }
    .logo-sub {
      font-size: 10px;
      font-weight: 500;
      color: rgba(255,255,255,0.55);
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    /* cross-page hash 진입 시 고정 헤더에 가리지 않도록 앵커 보정 */
    #quote-section {
      scroll-margin-top: 120px;
    }
    body.quote-hash-entry #hero .hero-content {
      padding-top: 142px;
    }

    /* ===== QUOTE FORM TOGGLE ANIMATION ===== */
    /* css/style.css의 .quote-body 재정의 */
    .quote-body {
      overflow: hidden;
      padding: 0 !important;
      display: block !important;
      gap: 0 !important;
    }
    .qf-inner {
      padding: 24px 26px 28px;
    }
    .quote-toggle {
      transition: transform 0.35s ease;
      flex-shrink: 0;
    }
    .quote-toggle.rotated { transform: rotate(180deg); }

    .quick-quote {
      transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
    }
    .quick-quote.quote-collapsed-glow {
      border-color: rgba(255,107,0,0.8);
      box-shadow:
        0 0 0 2px rgba(255,107,0,0.35),
        0 0 22px rgba(255,107,0,0.7),
        0 0 48px rgba(255,107,0,0.55);
      animation: quoteCollapsedPulse 1.45s ease-in-out infinite;
    }
    .quick-quote.quote-collapsed-glow .quote-header {
      background: linear-gradient(135deg, #ff6b00 0%, #ff8a33 100%);
    }
    @keyframes quoteCollapsedPulse {
      0%   { box-shadow: 0 0 0 1px rgba(255,107,0,0.28), 0 0 14px rgba(255,107,0,0.45), 0 0 32px rgba(255,107,0,0.3); }
      50%  { box-shadow: 0 0 0 2px rgba(255,107,0,0.45), 0 0 28px rgba(255,107,0,0.85), 0 0 58px rgba(255,107,0,0.62); }
      100% { box-shadow: 0 0 0 1px rgba(255,107,0,0.28), 0 0 14px rgba(255,107,0,0.45), 0 0 32px rgba(255,107,0,0.3); }
    }

    @media (max-width: 768px) {
      #quote-section {
        scroll-margin-top: 84px;
      }
      #quoteBody {
        max-height: 0;
        opacity: 0;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
      }
      #quoteToggleBtn { transform: rotate(180deg); }
    }

    /* ===== QUOTE FORM — 1열 세로 레이아웃 ===== */
    .qf-row {
      margin-bottom: 18px;
    }
    .qf-row:last-of-type { margin-bottom: 0; }
    .qf-label {
      display: block;
      margin-bottom: 8px;
      font-size: 13px;
      font-weight: 700;
      color: #111;
      letter-spacing: -0.2px;
    }
    .qf-byte-hint {
      float: right;
      font-size: 11px;
      font-weight: 700;
      color: #666;
      background: #f3f3f3;
      border-radius: 999px;
      padding: 3px 8px;
      transition: color 0.25s ease, background 0.25s ease, transform 0.2s ease;
    }
    .qf-byte-hint.byte-warning {
      color: #b42318;
      background: #ffe4e8;
    }
    .qf-byte-hint.byte-pulse {
      transform: scale(1.06);
    }
    .qf-privacy-row {
      position: relative;
      margin-top: 2px;
      margin-bottom: 14px;
      padding: 10px 12px;
      border: 1px solid #ececec;
      border-radius: 10px;
      background: #fafafa;
    }
    .qf-privacy-check {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      color: #333;
      font-weight: 600;
      cursor: pointer;
    }
    .qf-privacy-check input[type="checkbox"] {
      width: 14px !important;
      height: 14px !important;
      margin: 0;
      accent-color: var(--primary);
    }
    .qf-privacy-inline-link {
      border: none;
      background: transparent;
      color: #2152ad;
      font-size: 12px;
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 2px;
      cursor: pointer;
      padding: 0;
      line-height: inherit;
    }
    .qf-privacy-inline-link:hover {
      color: #163977;
    }
    .qf-privacy-tooltip {
      position: absolute;
      top: calc(100% + 8px);
      left: 10px;
      width: min(340px, calc(100vw - 70px));
      background: linear-gradient(145deg, #102243, #1a3c78);
      color: #fff;
      border-radius: 12px;
      border: 1px solid rgba(33,82,173,0.42);
      box-shadow: 0 16px 35px rgba(16,34,67,0.38), 0 0 0 1px rgba(255,255,255,0.06) inset;
      padding: 12px 14px;
      z-index: 45;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-6px) scale(0.98);
      transform-origin: top left;
      transition: opacity 0.23s ease, transform 0.23s ease, visibility 0.23s ease;
      pointer-events: none;
    }
    .qf-privacy-tooltip::before {
      content: '';
      position: absolute;
      top: -7px;
      left: 20px;
      width: 12px;
      height: 12px;
      background: #153263;
      border-left: 1px solid rgba(33,82,173,0.42);
      border-top: 1px solid rgba(33,82,173,0.42);
      transform: rotate(45deg);
    }
    .qf-privacy-tooltip.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .qf-privacy-tooltip strong {
      display: block;
      font-size: 13px;
      margin-bottom: 8px;
      color: #dbe8ff;
      letter-spacing: -0.1px;
    }
    .qf-privacy-tooltip p {
      margin: 0;
      font-size: 12px;
      line-height: 1.6;
      color: rgba(255,255,255,0.94);
    }
    .qf-preview-row {
      margin-top: 8px;
    }
    .qf-preview-content {
      margin: 0;
      padding: 11px 12px;
      min-height: 122px;
      border: 1px solid #e4e6ec;
      border-radius: 10px;
      background: #f7f9ff;
      color: #253858;
      font-size: 12px;
      line-height: 1.52;
      white-space: pre-wrap;
      word-break: break-word;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    }
    .quote-confirm-overlay {
      position: fixed;
      inset: 0;
      background: rgba(8, 10, 14, 0.52);
      backdrop-filter: blur(4px);
      z-index: 10020;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      animation: quoteConfirmFade 0.18s ease;
    }
    .quote-confirm-dialog {
      width: min(420px, 92vw);
      background: #111111;
      border-radius: 14px;
      border-left: 4px solid var(--primary);
      box-shadow: 0 16px 45px rgba(0,0,0,0.42);
      padding: 18px 18px 16px;
      color: #fff;
      animation: quoteConfirmPop 0.2s ease;
    }
    .quote-confirm-title {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px;
    }
    .quote-confirm-title i {
      color: var(--primary);
      font-size: 14px;
    }
    .quote-confirm-message {
      margin: 0;
      color: rgba(255,255,255,0.9);
      font-size: 14px;
      line-height: 1.65;
    }
    .quote-confirm-actions {
      margin-top: 16px;
      display: flex;
      justify-content: flex-end;
      gap: 8px;
    }
    .quote-confirm-btn {
      border: 1px solid transparent;
      border-radius: 9px;
      font-size: 13px;
      font-weight: 700;
      padding: 9px 14px;
      cursor: pointer;
      transition: all 0.2s ease;
    }
    .quote-confirm-cancel {
      background: #2a2a2a;
      color: #ddd;
      border-color: #3a3a3a;
    }
    .quote-confirm-cancel:hover {
      background: #323232;
      color: #fff;
    }
    .quote-confirm-ok {
      background: var(--primary);
      color: #fff;
    }
    .quote-confirm-ok:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 8px 16px rgba(255,107,0,0.34);
    }
    @keyframes quoteConfirmFade {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes quoteConfirmPop {
      from { opacity: 0; transform: translateY(8px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }
    /* 공통 input / select 스타일 (qf-row 내부) */
    .qf-row input[type="text"],
    .qf-row input[type="tel"],
    .qf-row input[type="date"],
    .qf-row select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid #ccc;
      border-radius: 8px;
      font-size: 13px;
      font-family: inherit;
      color: #111;
      background: #f5f5f5;
      outline: none;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
      box-sizing: border-box;
      appearance: none;
    }
    .qf-row select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 13px center;
      background-color: #f5f5f5;
      padding-right: 34px;
    }
    .qf-row input:focus,
    .qf-row select:focus {
      border-color: var(--primary);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
    }
    .qf-invalid-glow {
      animation: qfInvalidPulse 1.1s ease;
    }
    .qf-row input.qf-invalid-glow,
    .qf-row select.qf-invalid-glow,
    .qf-row textarea.qf-invalid-glow {
      border-color: #ef4444 !important;
      box-shadow: 0 0 0 3px rgba(239,68,68,0.22), 0 0 12px rgba(239,68,68,0.25) !important;
      background: #fff6f7 !important;
    }
    .loc-toggle-row.qf-invalid-glow {
      border: 1px solid rgba(239,68,68,0.45);
      border-radius: 10px;
      padding: 8px 10px;
      background: rgba(239,68,68,0.06);
    }
    .qf-privacy-row.qf-invalid-glow {
      border-color: rgba(239,68,68,0.55);
      box-shadow: 0 0 0 3px rgba(239,68,68,0.12), 0 0 14px rgba(239,68,68,0.2);
      background: #fff6f7;
    }
    @keyframes qfInvalidPulse {
      0% { transform: translateX(0); }
      20% { transform: translateX(-3px); }
      40% { transform: translateX(3px); }
      60% { transform: translateX(-2px); }
      80% { transform: translateX(2px); }
      100% { transform: translateX(0); }
    }
    /* FROM~TO 한 줄 */
    .date-range-row {
      display: grid;
      grid-template-columns: 1fr 30px 1fr;
      align-items: center;
      gap: 0;
    }
    .date-range-row input[type="date"] {
      width: 100%;
      font-size: 13px;
      padding: 11px 10px;
    }
    .date-range-sep {
      font-size: 15px;
      color: #999;
      font-weight: 700;
      text-align: center;
      flex-shrink: 0;
    }
    /* 국내/해외 토글 */
    .loc-toggle-row {
      display: flex;
      gap: 20px;
      margin-bottom: 10px;
    }
    .loc-toggle-row label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 600;
      color: #444;
      cursor: pointer;
    }
    .loc-toggle-row input[type="radio"] {
      width: auto !important;
      accent-color: var(--primary);
      margin: 0;
    }
    /* 국가 드롭다운 숨김/표시 */
    .location-sub {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
      margin-top: 0;
    }
    .location-sub.show {
      max-height: 60px;
      opacity: 1;
      margin-top: 8px;
    }
    /* 메모 textarea */
    .qf-memo {
      width: 100%;
      padding: 13px 15px;
      border: 1.5px solid #ccc;
      border-radius: 8px;
      font-size: 13px;
      font-family: inherit;
      resize: vertical;
      min-height: 120px;
      background: #f5f5f5;
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
      color: #111;
      line-height: 1.75;
      box-sizing: border-box;
      display: block;
    }
    .qf-memo:focus {
      border-color: var(--primary);
      background: #fff;
      box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
    }

    /* Smartlog widget는 백엔드 전송용으로만 사용 (UI 비노출) */
    #smlog-sms-icon,
    #smlog-sms,
    #smtg_sms_div,
    #smtg_kao_div,
    #smtg_logo_div {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }

    /* ===== 50개국 현지 통역 섹션 ===== */
    #local-interpret {
      background: var(--black);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    #local-interpret::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(255,107,0,0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(255,107,0,0.05) 0%, transparent 60%);
    }
    .local-header { position: relative; z-index: 2; }
    .countries-showcase {
      position: relative;
      z-index: 2;
      margin-top: 56px;
    }
    .local-map-desktop {
      display: block;
      margin-bottom: 24px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 18px;
      background: rgba(255,255,255,0.03);
      overflow: hidden;
      box-shadow: 0 14px 34px rgba(0,0,0,0.35);
    }
    .local-map-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      background: linear-gradient(90deg, rgba(255,107,0,0.16), rgba(255,107,0,0.03));
    }
    .local-map-head strong { color: var(--white); font-size: 14px; font-weight: 700; }
    .local-map-head span { color: rgba(255,255,255,0.66); font-size: 12px; }
    .local-map-wrap { display: grid; grid-template-columns: 1.55fr 1fr; min-height: 430px; }
    #localWorldMap { width: 100%; min-height: 430px; }
    .map-country-info {
      border-left: 1px solid rgba(255,255,255,0.1);
      padding: 18px 16px;
      background: rgba(0,0,0,0.2);
      color: var(--white);
    }
    .map-country-info .label {
      display: inline-block;
      font-size: 11px;
      color: rgba(255,255,255,0.72);
      background: rgba(255,255,255,0.08);
      border-radius: 999px;
      padding: 4px 8px;
      margin-bottom: 10px;
    }
    .map-country-info h4 { margin: 0 0 8px; font-size: 24px; font-weight: 800; line-height: 1.2; }
    .map-country-info p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.82); line-height: 1.6; }
    .map-meta-grid { margin-top: 12px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .map-meta {
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.04);
      border-radius: 10px;
      padding: 9px 10px;
    }
    .map-meta strong {
      display: block;
      font-size: 10px;
      color: rgba(255,255,255,0.58);
      letter-spacing: 0.7px;
      margin-bottom: 4px;
    }
    .map-meta span { display: block; font-size: 12px; color: var(--white); font-weight: 600; line-height: 1.4; }
    .map-note {
      margin-top: 10px;
      padding: 10px 11px;
      border-radius: 10px;
      border: 1px solid rgba(255,107,0,0.35);
      background: rgba(255,107,0,0.12);
      font-size: 12px;
      color: rgba(255,255,255,0.9);
      line-height: 1.55;
    }
    .leaflet-tooltip.local-country-tooltip {
      background: #16202b;
      color: #fff;
      border: 1px solid rgba(255,107,0,0.8);
      border-radius: 999px;
      font-weight: 700;
      font-size: 12px;
      padding: 7px 12px;
      box-shadow: 0 0 0 1px rgba(255,107,0,0.18), 0 12px 28px rgba(0,0,0,0.45), 0 0 16px rgba(255,107,0,0.35);
    }
    .leaflet-tooltip.local-country-tooltip.leaflet-tooltip-top:before { border-top-color: rgba(255,107,0,0.8); }
    /* 상단 강조 국가 (16개) */
    .featured-countries {
      display: none;
      grid-template-columns: repeat(8, 1fr);
      gap: 16px;
      margin-bottom: 24px;
    }
    .featured-country {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,107,0,0.2);
      border-radius: 14px;
      padding: 20px 12px;
      text-align: center;
      cursor: default;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .featured-country::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,107,0,0.12), transparent);
      opacity: 0;
      transition: opacity 0.3s;
    }
    .featured-country:hover {
      border-color: var(--primary);
      background: rgba(255,107,0,0.1);
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(255,107,0,0.2);
    }
    .featured-country:hover::before { opacity: 1; }
    .fc-flag { font-size: 36px; display: block; margin-bottom: 8px; }
    .fc-name {
      font-size: 12px;
      font-weight: 700;
      color: var(--white);
      display: block;
      margin-bottom: 3px;
    }
    .fc-count {
      font-size: 10px;
      color: var(--primary);
      font-weight: 600;
    }
    /* 나머지 34개 국가 */
    .other-countries {
      display: none;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .other-country {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 7px 14px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 30px;
      transition: all 0.3s;
      cursor: default;
    }
    .other-country:hover {
      border-color: rgba(255,107,0,0.4);
      background: rgba(255,107,0,0.06);
      transform: translateY(-2px);
    }
    .other-country .flag { font-size: 16px; }
    .other-country .name { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }
    .total-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--primary);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 40px;
      font-size: 15px;
      font-weight: 700;
      margin-top: 36px;
      box-shadow: 0 8px 28px rgba(255,107,0,0.4);
    }

    /* ===== STAT KOREAN LABEL ===== */
    .stat-kr-label {
      font-size: 15px;
      font-weight: 700;
      color: var(--white);
      display: block;
      margin-bottom: 4px;
    }

    /* ===== STATS 9-grid ===== */
    .stats-grid-9 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .stat-item-v2 {
      padding: 32px 24px;
      border-radius: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .stat-item-v2::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--primary);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
    .stat-item-v2:hover {
      background: rgba(255,107,0,0.07);
      border-color: rgba(255,107,0,0.3);
      transform: translateY(-5px);
      box-shadow: 0 12px 36px rgba(0,0,0,0.4);
    }
    .stat-item-v2:hover::after { transform: scaleX(1); }
    .stat-icon-v2 {
      width: 52px; height: 52px;
      border-radius: 14px;
      background: rgba(255,107,0,0.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; color: var(--primary);
      margin: 0 auto 18px;
    }
    .stat-num-wrap {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 2px;
      margin-bottom: 6px;
    }
    .stat-num-main {
      font-size: clamp(32px, 4vw, 48px);
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      letter-spacing: -1.5px;
    }
    .stat-num-plus {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
    }
    .stat-lbl {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
      margin-bottom: 8px;
    }
    .growing-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 10px;
      color: #4ade80;
      background: rgba(74,222,128,0.1);
      padding: 3px 8px;
      border-radius: 10px;
      font-weight: 600;
    }
    .growing-badge i { font-size: 9px; }

    /* ===== CLIENTS - 실제 이미지 사용 ===== */
    .clients-img-wrap {
      width: 100%;
      overflow: hidden;
      border-radius: 16px;
      margin-top: 48px;
    }
    .clients-img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    /* ===== CLIENTS MARQUEE 실제 텍스트 스타일 ===== */
    .client-logo-item {
      height: 64px;
      padding: 8px 20px;
      background: var(--white);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 130px;
      border: 1.5px solid transparent;
      transition: all 0.3s;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .client-logo-item:hover {
      border-color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(255,107,0,0.15);
    }
    .client-logo-item .logo-txt {
      font-size: 13px;
      font-weight: 800;
      color: #333;
      letter-spacing: 0.3px;
      white-space: nowrap;
    }
    /* 특정 브랜드 컬러 */
    .cl-philips .logo-txt  { color: #0068b5; }
    .cl-bmw .logo-txt      { color: #1c69d4; }
    .cl-lg .logo-txt       { color: #a50034; }
    .cl-sk .logo-txt       { color: #ea002c; }
    .cl-samsung .logo-txt  { color: #1428a0; }
    .cl-hyundai .logo-txt  { color: #002c5f; }
    .cl-visa .logo-txt     { color: #1a1f71; }
    .cl-fila .logo-txt     { color: #c8102e; font-style: italic; }
    .cl-audi .logo-txt     { color: #1a1a1a; }
    .cl-guess .logo-txt    { color: #1a1a1a; }
    .cl-amore .logo-txt    { color: #003a70; }
    .cl-nexon .logo-txt    { color: #006dcc; }
    .cl-cartier .logo-txt  { color: #b5985a; font-style: italic; }
    .cl-abc .logo-txt      { color: #e60012; font-weight: 900; }
    .cl-kakao .logo-txt    { color: #3a1d1d; background: #fee500; padding: 2px 6px; border-radius: 4px; }
    .cl-nb .logo-txt       { color: #c8102e; }

    /* ===== 국가 섹션 통역사 수 표시 강화 ===== */
    .fc-count {
      font-size: 10px;
      color: var(--primary);
      font-weight: 700;
      background: rgba(255,107,0,0.12);
      padding: 2px 7px;
      border-radius: 10px;
      display: inline-block;
      margin-top: 4px;
    }

    /* ===== 플래그 그리드 이미지 ===== */
    .flags-grid-image {
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      margin: 40px 0 24px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    }
    .flags-grid-image img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* ===== SCROLL TO TOP ===== */
    #scrollTop {
      position: fixed;
      bottom: 36px;
      right: 36px;
      width: 48px;
      height: 48px;
      background: var(--primary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      cursor: pointer;
      z-index: 9990;
      box-shadow: 0 4px 20px rgba(255,107,0,0.45);
      border: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(16px);
      transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    #scrollTop.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    #scrollTop:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(255,107,0,0.55);
    }

    /* ===== RESPONSIVE 국가 섹션 ===== */
    @media (max-width: 1024px) {
      .local-map-wrap { grid-template-columns: 1.35fr 1fr; min-height: 390px; }
      #localWorldMap { min-height: 390px; }
      .map-country-info h4 { font-size: 21px; }
      .featured-countries { grid-template-columns: repeat(4, 1fr); }
    }
    @media (max-width: 768px) {
      .local-map-desktop { display: block; }
      .local-map-wrap {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 12px;
      }
      #localWorldMap { min-height: 300px; }
      .map-country-info { min-height: auto; }
      .featured-countries { display: none !important; }
      .other-countries { display: none !important; }
      .stats-grid-9 { grid-template-columns: repeat(2, 1fr); }
      #scrollTop { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 16px; }
    }
    @media (max-width: 480px) {
      .featured-countries { grid-template-columns: repeat(4, 1fr); }
      .stats-grid-9 { grid-template-columns: 1fr; }
    }

