/* =================================================
   TK세무회계 - style.css
   ================================================= */

:root {
  --primary: #314d89;     /* 메인 네이비 */
  --secondary: #1f335d;   /* 딥 네이비 */
  --headline: #111111;
  --body-text: #505050;
  --light-bg: #f8fcfc;
  --border: #e6e9ec;
  --white: #ffffff;
  --kakao: #fee500;
  --kakao-text: #391b1b;
  --radius: 10px;
  --max-width: 1140px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'IBM Plex Sans KR', -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  font-weight: 400;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  scroll-margin-top: var(--header-height);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--secondary);
}

.btn--outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--outline-navy {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  padding: 10px 20px;
  font-size: 14px;
  white-space: nowrap;
}

.btn--outline-navy:hover {
  background: var(--primary);
  color: var(--white);
}


.btn--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ===== Section heading helpers ===== */
.section__lead {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.section__lead--light {
  color: #aebfe0;
}

.section__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section__title--light {
  color: var(--white);
}

.section__desc {
  color: var(--body-text);
  font-size: 16px;
  max-width: 640px;
  margin-bottom: 40px;
}

.section__desc--light {
  color: #c7d2e2;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  height: var(--header-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Transparent state over dark hero (index.html only, toggled by JS) */
.header--hero {
  background: transparent;
  box-shadow: none;
}
.header--hero .nav__link { color: rgba(255,255,255,0.82); }
.header--hero .nav__link:hover { color: #fff; }
.header--hero .nav__link--cta {
  background: rgba(255,255,255,0.15);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.3);
}
.header--hero .nav__link--cta:hover { background: rgba(255,255,255,0.25); }
.header--hero .hamburger span { background: #fff; }
.header--hero .logo__img--dark  { display: none; }
.header--hero .logo__img--light { display: block; }

/* Default logo states */
.logo__img--light { display: none; }

.header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__img {
  height: 30px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-weight: 500;
  font-size: 15px;
  color: var(--headline);
  padding: 8px 0;
  position: relative;
}

.nav__link:hover {
  color: var(--primary);
}

.nav__link--cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.nav__link--cta:hover {
  background: var(--secondary);
}

.nav__link--kakao {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FEE500;
  padding: 0;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav__link--kakao:hover {
  background: #e6cf00;
  transform: scale(1.08);
}

.nav__link--kakao svg {
  width: 20px;
  height: 18px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--headline);
  transition: all 0.25s ease;
}

.hamburger--open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger--open span:nth-child(2) {
  opacity: 0;
}

.hamburger--open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero (insungacc 스타일) ===== */
.hero {
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-top: calc(-1 * var(--header-height));
}
.hero::before { display: none; }

/* ─ 레이아웃 (캔버스 다음 DOM 순서라 항상 위) */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
  width: 100%;
  padding-top: calc(var(--header-height) + 100px);
  padding-bottom: 100px;
  position: relative;
}

/* ─ 왼쪽 */
.hero__left { }

.hero__logo {
  height: 24px;
  width: auto;
  display: block;
  margin-bottom: 48px;
  opacity: 0.85;
}

.hero__headline {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.5px;
  margin-bottom: 28px;
  word-break: keep-all;
  color: #fff;
}
.hero__headline span { color: #fff; }

.hero__sub {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 2;
  margin-bottom: 56px;
  word-break: keep-all;
}

.hero__tel {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.hero__tel:hover { color: #fff; }
.hero__tel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ─ 오른쪽 폼 */
.hero__right {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 40px 38px;
  border: 1px solid rgba(255,255,255,0.18);
}

.hf-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.3px;
}
.hf-title--mt { margin-top: 32px; }

.hf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}

.hf-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 15px;
  font-family: 'IBM Plex Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  font-weight: 400;
  padding: 10px 0 16px;
  outline: none;
  transition: border-color 0.2s;
}
.hf-input::placeholder { color: rgba(255,255,255,0.75); }
.hf-input:focus { border-bottom-color: #fff; }
.hf-input--wide { grid-column: 1 / -1; }

.hf-textarea {
  font-family: 'IBM Plex Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  font-weight: 400;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 15px;
  padding: 10px 0 18px;
  resize: none;
  outline: none;
  line-height: 1.8;
  transition: border-color 0.2s;
}
.hf-textarea::placeholder { color: rgba(255,255,255,0.75); }
.hf-textarea:focus { border-bottom-color: #fff; }

.hf-privacy {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.hf-privacy input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: rgba(255,255,255,0.7);
  cursor: pointer;
  flex-shrink: 0;
}

.hf-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #1c1c1c;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'IBM Plex Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 1px;
}
.hf-btn:hover { background: #282828; }

/* ─ 모바일 */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 52px;
    gap: 44px;
  }
  .hero__headline { font-size: 30px; letter-spacing: -0.5px; }
  .hero__sub  { font-size: 14px; margin-bottom: 36px; }
  .hero__tel  { font-size: 16px; }
  .hero__right { padding: 32px 24px; }
  .hf-grid { grid-template-columns: 1fr; gap: 0; }
  .hf-input--wide { grid-column: auto; }
}


/* ===== Differentiators (차별점) ===== */
.differentiators {
  padding: 90px 0;
  background: var(--white);
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--secondary);
  padding: 0;
  overflow: hidden;
}

.trust-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 22px 12px;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.09);
  text-align: center;
  transition: background 0.18s;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(255,255,255,0.05);
}

.trust-item__val {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.trust-item__label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 0.1px;
}

@media (max-width: 767px) {
  .trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    border-right: 1px solid rgba(255,255,255,0.09);
    border-bottom: 1px solid rgba(255,255,255,0.09);
    padding: 18px 10px;
  }
  .trust-item:nth-child(2n) {
    border-right: none;
  }
  .trust-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* ===== Phone FAB ===== */
.phone-fab {
  position: fixed;
  bottom: 164px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1e8849;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(30,136,73,0.38);
  z-index: 200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.phone-fab:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 28px rgba(30,136,73,0.48);
}

.phone-fab svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 767px) {
  .phone-fab {
    bottom: 156px;
    right: 18px;
  }
}

/* ===== Differentiators ===== */
.differentiators__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.differentiator-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.differentiator-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--light-bg);
  color: var(--primary);
  margin-bottom: 16px;
}

.differentiator-card__icon svg {
  width: 22px;
  height: 22px;
}

.differentiator-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 10px;
}

.differentiator-card__desc {
  font-size: 14px;
  color: var(--body-text);
}

/* ===== FAQ ===== */
.faq {
  padding: 90px 0;
  background: var(--light-bg);
}

.faq__inner {
  max-width: 760px;
  text-align: center;
}

.faq__inner .faq__list {
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  padding: 20px 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--headline);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__q {
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  font-weight: 700;
  margin-right: 8px;
}

.faq-item p {
  padding: 0 4px 20px;
  font-size: 14.5px;
  color: var(--body-text);
}

/* ===== Process steps (업무 진행 프로세스) ===== */
.process {
  padding: 90px 0;
  background: var(--light-bg);
}

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

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.process-step__num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.process-step__title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 8px;
}

.process-step__desc {
  font-size: 13px;
  color: var(--body-text);
}

/* ===== Founder (대표회계사 소개) ===== */
.founder {
  padding: 90px 0;
  background: var(--light-bg);
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 720px;
}

.founder-card__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: stretch;
}

.founder-card__photo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(31, 51, 93, 0.16);
}

.founder-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-card__info {
  display: flex;
  flex-direction: column;
}

.founder-card__name {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 28px;
}

.founder-card__name span {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
}

.founder-card__bio {
  font-size: 15px;
  color: var(--body-text);
  margin-bottom: 20px;
}

.founder-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.founder-card__history {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 4px;
}

.founder-card__history li {
  font-size: 14.5px;
  color: var(--body-text);
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
}

.founder-card__history li:first-child {
  padding-top: 0;
}

.founder-card__history li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.founder-card__history li::before {
  content: '·';
  position: absolute;
  left: 2px;
  color: var(--primary);
  font-weight: 900;
}

.founder-greeting {
  padding: 90px 0;
  background: var(--white);
}

.founder-greeting__inner {
  max-width: 680px;
  text-align: center;
}

.founder-quote {
  font-size: 24px;
  font-weight: 700;
  color: var(--headline);
  margin: 0 auto 32px;
  line-height: 1.5;
}

.founder-greeting__body {
  color: var(--body-text);
  font-size: 15.5px;
  line-height: 1.85;
  text-align: left;
}

.founder-greeting__body p {
  margin-bottom: 18px;
}

.founder-greeting__sign {
  margin-top: 24px;
  font-weight: 700;
  color: var(--headline);
}

.founder-profile {
  padding: 0 0 90px;
  background: var(--white);
}

.founder-profile__inner {
  max-width: 720px;
  text-align: center;
}

.founder-profile__inner .founder-card {
  text-align: left;
}

.differentiators__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ===== Service sections ===== */
.service {
  padding: 90px 0;
  background: var(--white);
}

.service--alt {
  background: var(--light-bg);
}

.service__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.feature-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.feature-list li:first-child {
  padding-top: 0;
}

.feature-list strong {
  display: block;
  font-size: 17px;
  color: var(--headline);
  margin-bottom: 6px;
}

.feature-list strong::before {
  content: '✓';
  display: inline-block;
  color: var(--primary);
  font-weight: 900;
  margin-right: 8px;
}

.feature-list p {
  color: var(--body-text);
  font-size: 14.5px;
}

.service__pricing {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(31, 51, 93, 0.06);
  position: relative;
}

.pricing__badge {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.pricing__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 16px;
}

.pricing__lead {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 16px;
}

.pricing__factors {
  margin-bottom: 18px;
  padding-left: 4px;
}

.pricing__factors li {
  font-size: 14px;
  color: var(--body-text);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.pricing__factors li:first-child {
  padding-top: 0;
}

.pricing__factors li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: var(--primary);
  font-weight: 900;
}

.pricing__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
  font-size: 14px;
}

.pricing__table th,
.pricing__table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--border);
}

.pricing__table th {
  color: var(--white);
  background: var(--secondary);
  font-weight: 700;
  font-size: 13px;
}

.pricing__table tbody tr:hover {
  background: var(--light-bg);
}

.pricing__note {
  font-size: 12.5px;
  color: var(--body-text);
  margin-bottom: 20px;
  line-height: 1.5;
}

/* ===== Plans (세무기장 플랜) ===== */
.plans {
  padding: 90px 0;
  background: var(--light-bg);
}

.plans__quote {
  font-size: 22px;
  font-weight: 700;
  color: var(--headline);
  max-width: 700px;
  line-height: 1.5;
  margin-bottom: 36px;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.plan-card--featured {
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(31, 51, 93, 0.12);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.plan-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 10px;
}

.plan-card__name-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--body-text);
  margin-left: 6px;
}

.plan-card__price {
  font-size: 21px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.plan-card__price span {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--body-text);
  margin-top: 2px;
}

.plan-card__desc {
  font-size: 13px;
  color: var(--body-text);
  margin-bottom: 16px;
}

.plan-card__features li {
  font-size: 13.5px;
  color: var(--body-text);
  padding: 8px 0 8px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.plan-card__features li:first-child {
  padding-top: 0;
}

.plan-card__features li:last-child {
  border-bottom: none;
}

.plan-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

/* ===== Column section ===== */
.column-section {
  padding: 90px 0;
  background: var(--white);
}

.column-naver {
  margin-top: 48px;
  padding: 40px 32px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.column-naver__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 8px;
}

.column-naver__desc {
  font-size: 13.5px;
  color: var(--body-text);
  max-width: 480px;
  margin: 0 auto 20px;
}

.column__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.column__head .section__desc {
  margin-bottom: 0;
}

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

.column-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.column-card:hover {
  box-shadow: 0 10px 28px rgba(31, 51, 93, 0.1);
  transform: translateY(-3px);
}

.column-card__tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.column-card__date {
  display: block;
  font-size: 12.5px;
  color: var(--body-text);
  margin-bottom: 10px;
}

.column-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 10px;
  line-height: 1.4;
}

.column-card__excerpt {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 16px;
}

.column-card__more {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
}

/* ===== Contact section ===== */
.contact {
  padding: 90px 0;
  background: var(--light-bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.form-row {
  margin-bottom: 20px;
}

.form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 8px;
}

.req {
  color: #c0392b;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14.5px;
  font-family: inherit;
  color: var(--headline);
  background: var(--white);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-row--checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-row--checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 13.5px;
}

.form-row--checkbox input {
  width: auto;
}

.form-success {
  margin-top: 16px;
  padding: 12px 16px;
  background: #eaf6ee;
  color: #1f7a3d;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.contact-info {
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  height: fit-content;
}

.contact-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
}

.contact-info ul li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.contact-info ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info ul li strong {
  color: #aebfe0;
  font-size: 13px;
  font-weight: 500;
}

.contact-info ul li span {
  color: #d7deea;
}

/* ===== Footer ===== */
.footer {
  background: var(--secondary);
  color: #aab8cc;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  text-align: center;
}

.footer__logo {
  height: 26px;
  width: auto;
  margin-bottom: 16px;
}

.footer__info {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer__copy {
  font-size: 12px;
  color: #8b9bb5;
}

/* ===== Page banner (서브페이지 상단) ===== */
.page-banner {
  background: linear-gradient(160deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 56px 0 40px;
}

.breadcrumb {
  font-size: 13px;
  color: #aebfe0;
  margin-bottom: 14px;
}

.breadcrumb a {
  color: #aebfe0;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb__sep {
  margin: 0 6px;
  color: #6f81ab;
}

.page-banner__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.page-banner__desc {
  color: #cfd9e8;
  margin-top: 10px;
  max-width: 600px;
}

/* ===== Nav active state ===== */
.nav__link[aria-current='page']:not(.nav__link--cta) {
  color: var(--primary);
  font-weight: 700;
}

/* ===== Services overview (index.html) ===== */
.services-overview {
  padding: 90px 0;
  background: var(--white);
}

.services-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 10px 28px rgba(31, 51, 93, 0.1);
  transform: translateY(-3px);
}

.service-card__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}

.service-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 14.5px;
  color: var(--body-text);
  margin-bottom: 20px;
}

.service-card__price {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--secondary);
  background: var(--light-bg);
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.service-card__link {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

/* ===== CTA banner (index.html 하단) ===== */
.cta-banner {
  background: linear-gradient(160deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.cta-banner__title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-banner__desc {
  color: #cfd9e8;
  margin-bottom: 28px;
}

/* ===== Article (칼럼 상세) ===== */
.article {
  padding: 56px 0 90px;
}

.article__inner {
  max-width: 760px;
}

.article__back {
  display: inline-block;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.article__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--headline);
  line-height: 1.4;
  margin-bottom: 36px;
}

.article__body {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.85;
}

.article__body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--headline);
  margin: 40px 0 16px;
}

.article__body p {
  margin-bottom: 18px;
}

.article__body ul {
  list-style: disc;
  margin: 0 0 18px 22px;
}

.article__body li {
  margin-bottom: 8px;
}

.article__note {
  background: var(--light-bg);
  border-left: 3px solid var(--primary);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--body-text);
  margin: 28px 0;
}

.article__cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--light-bg);
  border-radius: var(--radius);
  text-align: center;
}

.article__cta p {
  margin-bottom: 18px;
  font-weight: 700;
  color: var(--headline);
}

/* ===== Chatbot widget (정적 FAQ) ===== */
.chatbot-fab {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(7, 22, 46, 0.35);
  cursor: pointer;
  z-index: 1100;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(7, 22, 46, 0.4);
}

.chatbot-fab svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

.chatbot-fab__dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2ecc71;
  border: 2px solid var(--white);
}

.chatbot-fab__dot::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #2ecc71;
  opacity: 0.6;
  animation: chatbot-pulse 2s ease-out infinite;
}

@keyframes chatbot-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

.chatbot-greeting {
  position: fixed;
  bottom: 96px;
  right: 98px;
  max-width: 200px;
  background: var(--white);
  color: var(--headline);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
  padding: 12px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(7, 22, 46, 0.14);
  z-index: 1090;
  cursor: pointer;
  opacity: 0;
  transform: translateX(6px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chatbot-greeting::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-right: none;
  border-left-color: var(--white);
}

.chatbot-greeting--show {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.chatbot-greeting__close {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  border: none;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-panel {
  position: fixed;
  bottom: 170px;
  right: 24px;
  width: min(340px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 140px));
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(7, 22, 46, 0.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1100;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.2,.8,.2,1), transform 0.25s cubic-bezier(.2,.8,.2,1);
}

.chatbot-panel--open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.chatbot-header {
  background: linear-gradient(160deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 18px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.chatbot-header__profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-header__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chatbot-header__avatar img {
  width: 22px;
  height: auto;
}

.chatbot-header strong {
  display: block;
  font-size: 14.5px;
}

.chatbot-header__status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #cfe0d2;
  margin-top: 2px;
}

.chatbot-header__status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2ecc71;
  display: inline-block;
}

.chatbot-close {
  background: rgba(255, 255, 255, 0.14);
  border: none;
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.26);
}

.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #F4F6F8;
  max-height: 240px;
}

.chatbot-msg {
  max-width: 80%;
  font-size: 13.5px;
  line-height: 1.65;
  padding: 10px 13px;
  animation: chatbot-msg-in 0.18s ease;
  word-break: break-word;
}

@keyframes chatbot-msg-in {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.chatbot-msg--bot {
  background: #fff;
  color: #2d2d2d;
  align-self: flex-start;
  border-radius: 4px 16px 16px 16px;
}

.chatbot-msg--user {
  background: var(--primary);
  color: var(--white);
  align-self: flex-end;
  border-radius: 16px 4px 16px 16px;
}

.chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px;
  background: var(--white);
  border-top: 1px solid var(--border);
  max-height: 170px;
  overflow-y: auto;
}

.chatbot-quick button {
  text-align: left;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--headline);
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}

.chatbot-quick button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.chatbot-footer {
  border-top: 1px solid var(--border);
  padding: 14px 16px;
  display: flex;
  gap: 8px;
  background: var(--white);
}

.chatbot-footer a {
  flex: 1;
  text-align: center;
  font-size: 12.5px;
  font-weight: 700;
  padding: 11px 0;
  border-radius: 10px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.chatbot-footer a:hover {
  transform: translateY(-1px);
}

.chatbot-cta--primary {
  background: linear-gradient(160deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(31, 51, 93, 0.25);
}

.chatbot-body::-webkit-scrollbar,
.chatbot-quick::-webkit-scrollbar {
  width: 5px;
}

.chatbot-body::-webkit-scrollbar-thumb,
.chatbot-quick::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 999px;
}

@media (max-width: 480px) {
  .chatbot-panel {
    width: calc(100vw - 32px);
    right: 16px;
    bottom: 164px;
  }

  .chatbot-greeting {
    display: none;
  }

  .chatbot-fab {
    bottom: 90px;
    right: 18px;
  }
}

/* ===== 카카오톡 FAB ===== */
.kakao-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #FEE500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  z-index: 1100;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kakao-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.33);
}

.kakao-fab svg {
  width: 36px;
  height: 32px;
  flex-shrink: 0;
}

/* 호버 말풍선 툴팁 */
.kakao-fab__tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: #fff;
  border-radius: 12px;
  padding: 11px 15px;
  font-size: 13px;
  color: #333;
  line-height: 1.65;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.kakao-fab__tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-right: none;
  border-left-color: #fff;
}

.kakao-fab:hover .kakao-fab__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 480px) {
  .kakao-fab {
    bottom: 18px;
    right: 18px;
  }
  .kakao-fab__tooltip {
    display: none;
  }
}

@media (hover: none) {
  .kakao-fab__tooltip,
  .chatbot-greeting {
    display: none;
  }
}

/* ===== Service Hero ===== */
.service-hero {
  background: linear-gradient(160deg, var(--secondary) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 64px 0 56px;
}

.service-hero__inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 48px;
  align-items: center;
}

.service-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.service-hero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--white);
}

.service-hero__desc {
  font-size: 16px;
  color: #cfd9e8;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 560px;
}

.service-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.service-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero__illustration {
  width: 220px;
  height: 220px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ===== Stats Bar ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item__num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1.1;
}

.stat-item__label {
  font-size: 12.5px;
  color: var(--body-text);
  line-height: 1.45;
}

/* ===== Feature Cards ===== */
.service-features {
  padding: 90px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  box-shadow: 0 10px 28px rgba(31,51,93,0.1);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.feature-card__icon svg { width: 22px; height: 22px; }

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 13.5px;
  color: var(--body-text);
  line-height: 1.65;
}

/* ===== Why Section (dark) ===== */
.why-section {
  padding: 90px 0;
  background: var(--secondary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}

.why-card__icon {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
}

.why-card__icon svg { width: 26px; height: 26px; }

.why-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card__desc {
  font-size: 13.5px;
  color: #aebfe0;
  line-height: 1.7;
}

/* ===== Target Section ===== */
.target-section {
  padding: 90px 0;
  background: var(--light-bg);
}

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

.target-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 3px solid var(--primary);
}

.target-card__icon {
  font-size: 30px;
  margin-bottom: 14px;
  display: block;
}

.target-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 8px;
}

.target-card__desc {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.65;
}

/* ===== Consulting Cards (audit page) ===== */
.consulting-section {
  padding: 90px 0;
  background: var(--white);
}

.consulting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.consulting-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.consulting-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(31,51,93,0.12);
}

.consulting-card__header {
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.consulting-card__header--audit    { background: linear-gradient(135deg, #1f335d 0%, #314d89 100%); }
.consulting-card__header--finance  { background: linear-gradient(135deg, #0f3460 0%, #1a6b8a 100%); }
.consulting-card__header--ma       { background: linear-gradient(135deg, #1b2a4a 0%, #2d5580 100%); }
.consulting-card__header--strategy { background: linear-gradient(135deg, #2c3e50 0%, #3d6b8a 100%); }

.consulting-card__header-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.consulting-card__header-icon svg { width: 22px; height: 22px; }

.consulting-card__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.consulting-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.consulting-card__subtitle {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

.consulting-card__body {
  padding: 24px 28px;
}

.consulting-card__list li {
  font-size: 13.5px;
  color: var(--body-text);
  padding: 8px 0 8px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.consulting-card__list li:first-child { padding-top: 0; }
.consulting-card__list li:last-child { border-bottom: none; padding-bottom: 0; }

.consulting-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 12px;
}

.consulting-card__tag {
  display: inline-block;
  background: var(--light-bg);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-top: 16px;
}

/* ===== Service Overview Grid (audit page) ===== */
.service-overview-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.service-overview-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-overview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(31,51,93,0.1);
  border-color: var(--primary);
}

.service-overview-card__icon {
  width: 52px;
  height: 52px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
}

.service-overview-card__icon svg { width: 22px; height: 22px; }

.service-overview-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 8px;
}

.service-overview-card__desc {
  font-size: 12.5px;
  color: var(--body-text);
  line-height: 1.6;
}

/* =================================================
   Responsive
   ================================================= */
@media (max-width: 991px) {
  .service-hero__inner {
    grid-template-columns: 1fr;
  }
  .service-hero__visual { display: none; }
  .service-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .consulting-grid { grid-template-columns: 1fr; }

  .service__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

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

  .differentiators__grid,
  .differentiators__grid--4,
  .plans__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__title {
    font-size: 36px;
  }

  .founder-card__layout {
    grid-template-columns: 180px 1fr;
  }
}

@media (max-width: 768px) {
  .br-pc {
    display: none;
  }

  .founder-card__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founder-card__photo {
    max-width: 200px;
    margin: 0 auto;
  }

  .founder-card__history {
    text-align: left;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 24px;
    gap: 4px;
  }

  .nav__link {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__link--cta {
    text-align: center;
    margin-top: 10px;
  }

  .nav__link--kakao {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 64px 0 56px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
    text-align: center;
  }

  .service,
  .column-section,
  .contact,
  .services-overview,
  .article,
  .differentiators,
  .faq,
  .process {
    padding: 50px 0 60px;
  }

  .section__title {
    font-size: 24px;
  }

  .column__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .column__grid,
  .services-overview__grid,
  .differentiators__grid,
  .plans__grid {
    grid-template-columns: 1fr;
  }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:last-child { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .target-grid { grid-template-columns: 1fr; }
  .service-hero__title { font-size: 26px; }
  .service-overview-grid { grid-template-columns: repeat(2, 1fr); }

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

  .form-row--split {
    grid-template-columns: 1fr;
  }

  .pricing__table {
    font-size: 13px;
  }

  .service__pricing {
    overflow-x: auto;
  }

  .plans__quote {
    font-size: 18px;
  }

  .plan-card {
    padding: 20px;
  }

  .hero__desc {
    font-size: 15px;
  }

  .column-naver {
    padding: 24px 20px;
  }

  .cta-banner__title {
    font-size: 20px;
  }

  .founder-card {
    padding: 28px 24px;
  }

  .page-banner {
    padding: 44px 0 32px;
  }

  .page-banner__title {
    font-size: 24px;
  }

  .article__title {
    font-size: 22px;
  }

  .cta-banner {
    padding: 50px 0;
  }

  .cta-banner__title {
    font-size: 21px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .hero__title {
    font-size: 24px;
  }

  .hero__desc {
    font-size: 14px;
  }

  .section__title {
    font-size: 20px;
  }

  .article__title {
    font-size: 20px;
  }

  .article__body {
    font-size: 15px;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .contact-info {
    padding: 20px 16px;
  }

  .service__pricing {
    padding: 20px 16px;
  }

  .differentiators__grid,
  .differentiators__grid--4 {
    grid-template-columns: 1fr;
  }

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

  .page-banner__title {
    font-size: 21px;
  }

  .footer {
    padding: 28px 0;
  }
}

/* ===================================================
   SALES / PERSUASION COMPONENTS
   =================================================== */

/* ── Pain Section ── */
.pain-section {
  padding: 72px 0;
  background: #fff8f0;
}

.pain-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.pain-section__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #c0392b;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.pain-section__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--headline);
  line-height: 1.45;
  margin-bottom: 8px;
}

.pain-section__sub {
  font-size: 15px;
  color: #888;
  margin-bottom: 32px;
}

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

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1.5px solid #f0cfc9;
  border-radius: 10px;
  padding: 16px 18px;
  transition: border-color .2s, box-shadow .2s;
}

.pain-item:hover {
  border-color: #e05c47;
  box-shadow: 0 4px 16px rgba(224, 92, 71, .12);
}

.pain-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fde8e5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 12px;
  font-weight: 900;
  color: #c0392b;
}

.pain-item__text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  font-weight: 600;
}

.pain-item__text em {
  font-style: normal;
  color: #c0392b;
}

.pain-solution {
  background: var(--primary);
  border-radius: 16px;
  padding: 36px 32px;
  color: #fff;
}

.pain-solution__kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #a8c0f0;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pain-solution__title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
}

.pain-solution__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pain-solution__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
}

.pain-solution__item::before {
  content: "✓";
  flex-shrink: 0;
  font-weight: 900;
  color: #FEE500;
  font-size: 15px;
  margin-top: 1px;
}

.pain-solution__cta {
  display: inline-block;
  background: #FEE500;
  color: #391b1b;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: 8px;
  transition: background .2s, transform .15s;
}

.pain-solution__cta:hover {
  background: #f5d900;
  transform: translateY(-1px);
}

/* ── Comparison Table ── */
.comparison-section {
  padding: 80px 0;
  background: #f4f6fb;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.comparison-table thead tr {
  background: var(--primary);
}

.comparison-table th {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.comparison-table th:first-child {
  text-align: left;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  font-size: 13px;
}

.comparison-table th.th--highlight {
  background: #253c70;
}

.comparison-table tbody tr {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.comparison-table tbody tr:nth-child(even) {
  background: #f9fafe;
}

.comparison-table tbody tr:last-child {
  border-bottom: none;
}

.comparison-table td {
  padding: 15px 24px;
  font-size: 14px;
  color: #444;
  text-align: center;
  vertical-align: middle;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: #333;
}

.comparison-table td.td--bad {
  color: #bbb;
}

.comparison-table td.td--good {
  color: var(--primary);
  font-weight: 700;
}

.cmp-x { font-size: 18px; color: #ddd; }
.cmp-o { font-size: 18px; color: var(--primary); font-weight: 900; }
.cmp-badge {
  display: inline-block;
  background: #e8eef9;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── Urgency Banner ── */
.urgency-bar {
  background: linear-gradient(90deg, #c0392b 0%, #e05c47 100%);
  padding: 16px 0;
  text-align: center;
}

.urgency-bar__text {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.urgency-bar__badge {
  background: rgba(255,255,255,.25);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
}

.urgency-bar__link {
  color: #FEE500;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .15s;
}

.urgency-bar__link:hover { opacity: .8; }

/* ── Loss Frame Box ── */
.loss-box {
  background: #fff3cd;
  border: 2px solid #f0c040;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 32px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.loss-box__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.loss-box__title {
  font-size: 15px;
  font-weight: 800;
  color: #7d5a00;
  margin-bottom: 4px;
}

.loss-box__desc {
  font-size: 14px;
  color: #7d5a00;
  line-height: 1.6;
}

/* ── Testimonial ── */
.testimonial-section {
  padding: 80px 0;
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: #f8f9fc;
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  font-size: 60px;
  color: var(--primary);
  opacity: .15;
  position: absolute;
  top: 10px;
  left: 18px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card__text {
  font-size: 14px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 20px;
  padding-top: 18px;
  position: relative;
  z-index: 1;
}

.testimonial-card__text strong {
  color: var(--primary);
}

.testimonial-card__author {
  font-size: 13px;
  font-weight: 700;
  color: #333;
}

.testimonial-card__role {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

/* features-grid used in bookkeeping */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

/* consulting-grid used in audit */
.consulting-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .pain-section__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

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

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

/* ===================================================
   NAV SERVICES DROPDOWN
   =================================================== */
.nav__item--services {
  position: relative;
}

.nav__link--services {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  line-height: inherit;
}

.nav__link--services svg {
  transition: transform 0.2s;
}

.nav__item--services:hover .nav__link--services svg,
.nav__item--services.open .nav__link--services svg {
  transform: rotate(180deg);
}

.nav__services-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 170px;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  transform: translateX(-50%) translateY(-6px);
  z-index: 400;
  list-style: none;
}

.nav__item--services:hover .nav__services-dropdown,
.nav__item--services.open .nav__services-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav__services-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}

.nav__services-dropdown li a:hover {
  background: #f4f6fb;
  color: var(--primary);
}

/* Mobile: dropdown opens inline inside hamburger menu */
@media (max-width: 768px) {
  .nav__item--services {
    position: static;
  }

  .nav__link--services {
    color: #fff;
    font-size: 15px;
    width: 100%;
    justify-content: space-between;
    padding: 0;
  }

  .nav__services-dropdown {
    position: static;
    transform: none !important;
    box-shadow: none;
    border-radius: 8px;
    padding: 4px 0 8px 0;
    opacity: 1;
    visibility: visible;
    display: none;
    background: rgba(255,255,255,0.08);
    margin-top: 4px;
  }

  .nav__item--services.open .nav__services-dropdown {
    display: block;
  }

  .nav__services-dropdown li a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    padding: 8px 16px;
  }

  .nav__services-dropdown li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
  }
}

/* ===================================================
   SERVICE DETAIL (세무기장 서비스 범위)
   =================================================== */
.svc-section-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.svc-detail-item {
  background: #f4f6fb;
  border-radius: 8px;
  padding: 18px 20px;
  border-left: 3px solid var(--primary);
}

.svc-detail-item__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 10px;
}

.svc-detail-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-detail-item li {
  font-size: 13px;
  color: #555;
  padding-left: 12px;
  position: relative;
  line-height: 1.8;
}

.svc-detail-item li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.svc-note {
  font-size: 12px;
  color: #999;
  margin-top: 12px;
}

/* ===================================================
   AUDIT SERVICES GRID (회계감사 서비스)
   =================================================== */
.audit-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audit-svc-card {
  border: 1px solid #e4e8f0;
  border-radius: 10px;
  padding: 32px 26px 28px;
  background: #fff;
}

.audit-svc-card__icon {
  color: #314d89;
  margin-bottom: 24px;
}

.audit-svc-card__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #314d89;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.audit-svc-card__title {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
  display: block;
}

.audit-svc-card__tag {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #888;
}

.audit-svc-card__list li {
  font-size: 13px;
  color: #444;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.audit-svc-card__list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* audit-svc-card__tag now handled above */

.audit-svc-card__callout {
  background: #f4f6fb;
  border-left: 3px solid var(--primary);
  border-radius: 0 6px 6px 0;
  padding: 10px 13px;
  margin: 10px 0 14px;
}

.audit-svc-card__callout strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 5px;
}

.audit-svc-card__callout ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.audit-svc-card__callout ul li {
  font-size: 12px;
  color: #444;
  padding-left: 11px;
  position: relative;
  line-height: 1.55;
}

.audit-svc-card__callout ul li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 900;
}

.audit-svc-card__callout p {
  font-size: 12px;
  color: #444;
  line-height: 1.65;
  margin: 0;
}

.svc-detail-item__callout {
  background: #f4f6fb;
  border-left: 3px solid var(--primary);
  border-radius: 0 6px 6px 0;
  padding: 8px 12px;
  margin: 10px 0 8px;
  font-size: 12px;
  color: #444;
  line-height: 1.6;
}

.service--bg-light {
  background: #f4f6fb;
}

.service__grid--reverse {
  flex-direction: row-reverse;
}

@media (max-width: 991px) {
  .audit-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .svc-detail-grid {
    grid-template-columns: 1fr;
  }

  .audit-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   PRACTICE AREAS (업무분야)
   =================================================== */
.practice-areas {
  padding: 80px 0;
  background: #f4f6fb;
}

.practice-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.practice-card {
  background: #fff;
  border-radius: 10px;
  padding: 32px 28px 28px;
  border: 1px solid #e4e8f0;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.practice-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 24px rgba(49,77,137,.10);
}

.practice-card__top { display: none; }

.practice-card__num {
  font-family: 'Montserrat', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2.5px;
  display: block;
  margin-bottom: 10px;
}

.practice-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--headline);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef0f5;
}

.practice-card__desc { display: none; }

.practice-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.practice-card__list li {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
  padding-left: 0;
}

.practice-card__list li::before {
  display: none;
}

.practice-card__link {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.1px;
}

.practice-card__link:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .practice-areas__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .practice-areas__grid {
    grid-template-columns: 1fr;
  }

  .practice-card {
    padding: 24px 20px;
  }

  .practice-card__list {
    grid-template-columns: 1fr;
  }
}

/* ===================================================
   MOBILE SPACING FIX
   =================================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 20px;
  }

  .hero__desc {
    font-size: 14px;
  }

  .section__title {
    font-size: 20px;
  }

  .practice-areas__grid {
    grid-template-columns: 1fr;
  }

  .practice-card {
    padding: 22px 18px;
  }

  .practice-card__list {
    grid-template-columns: 1fr;
  }

  .audit-services-grid {
    grid-template-columns: 1fr;
  }

  .page-banner {
    padding: 40px 0;
  }

  .plan-card {
    padding: 24px 20px;
  }
}

/* ===== Plan Comparison Table (bookkeeping.html) ===== */
.plan-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0 32px;
  font-size: 14px;
  line-height: 1.5;
}

.plan-compare-table th,
.plan-compare-table td {
  padding: 13px 16px;
  text-align: center;
  border-bottom: 1px solid #eef0f5;
  vertical-align: middle;
}

.plan-compare-table th:first-child,
.plan-compare-table td:first-child {
  text-align: left;
  color: #444;
  font-weight: 400;
  width: 45%;
}

.plan-compare-table thead th {
  background: #f8f9fc;
  color: #111;
  vertical-align: bottom;
  padding: 22px 16px 18px;
  border-top: 3px solid var(--primary);
  border-bottom: 2px solid #e4e8f0;
}

.plan-compare-table thead th.col-featured {
  background: var(--primary);
  color: #fff;
  border-top: 3px solid var(--secondary);
}

.plan-compare-table thead th .col-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.plan-compare-table thead th .col-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.65;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.plan-compare-table thead th .col-price {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.plan-compare-table thead th .col-note {
  display: block;
  font-size: 10.5px;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 5px;
}

.plan-compare-table tr.cat-row td {
  background: #f4f6fb;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--primary);
  text-align: left;
  padding: 9px 16px;
  letter-spacing: 0.2px;
}

.plan-compare-table .check {
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}

.plan-compare-table .dash {
  color: #ccc;
  font-size: 15px;
}

.plan-compare-table .note-txt {
  font-size: 12px;
  color: #555;
}

.plan-compare-table tbody tr:hover {
  background: #f9fafc;
}

.plan-compare-table tbody tr.cat-row:hover {
  background: #f4f6fb;
}

.plan-compare-table tr.price-row td {
  font-weight: 700;
  background: #f8f9fc;
  font-size: 14px;
  border-top: 2px solid var(--primary);
  border-bottom: none;
  padding: 18px 16px;
  line-height: 1.5;
}

.plan-compare-table tr.price-row td.col-featured-cell {
  background: var(--primary);
  color: #fff;
}

@media (max-width: 640px) {
  .plan-compare-table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .plan-compare-table th,
  .plan-compare-table td {
    padding: 10px 10px;
    white-space: nowrap;
  }

  .plan-compare-table th:first-child,
  .plan-compare-table td:first-child {
    white-space: normal;
    min-width: 130px;
  }
}

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

  .pain-section__title {
    font-size: 21px;
  }

  .comparison-section {
    padding: 48px 0;
  }

  .comparison-table {
    font-size: 13px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
  }

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

  .pain-solution {
    padding: 28px 20px;
  }
}
