/* ===================================
   소액결제미납 - 일조기프트 | Main CSS
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #1a56db;
  --primary-dark: #1240a8;
  --primary-light: #e8f0fe;
  --secondary: #ff6b35;
  --secondary-dark: #e05520;
  --accent: #ffd700;
  --text-dark: #1a1a2e;
  --text-gray: #4a4a6a;
  --text-light: #7a7a9a;
  --bg-light: #f7f9fc;
  --bg-white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(26, 86, 219, 0.1);
  --shadow-hover: 0 8px 30px rgba(26, 86, 219, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 400;
}

.site-nav {
  display: flex;
  gap: 30px;
}

.site-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.header-cta {
  background: var(--secondary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--secondary-dark);
  transform: translateY(-1px);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #1a56db 0%, #0e3a9e 50%, #0a2570 100%);
  color: #fff;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--accent);
}

.hero-desc {
  font-size: 18px;
  opacity: 0.88;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.btn-primary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,53,0.5);
}

.btn-outline {
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  padding-top: 35px;
  border-top: 1px solid rgba(255,255,255,0.2);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 4px;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 20px;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 55px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.35;
  color: var(--text-dark);
}

.section-title span {
  color: var(--primary);
}

.section-desc {
  font-size: 16px;
  color: var(--text-gray);
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

/* 카드 전체 클릭 링크 오버레이 */
.card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  border-radius: var(--radius-lg);
}

/* 오버레이 호버 시 카드 강조 효과 */
.card-link-overlay:focus {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* 카드 내부 링크 및 배지는 오버레이 위에 표시 */
.card-body a,
.card-body h3,
.card-body p,
.card-body .card-meta,
.card-thumb .card-category {
  position: relative;
  z-index: 2;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  display: block;
}

/* 이미지 썸네일 – 전체 영역 링크 */
.card-thumb a {
  position: absolute;
  inset: 0;
  display: block;
  z-index: 0;
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.blog-card:hover .card-thumb img {
  transform: scale(1.05);
}

.card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.3px;
}

.card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 10px;
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-excerpt {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-anchor {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.blog-card:hover .card-anchor {
  gap: 8px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-light);
}

/* ===== INFO ARTICLE ===== */
.article-section {
  padding: 80px 20px;
}

.article-container {
  max-width: 900px;
  margin: 0 auto;
}

.article-header {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid var(--border);
}

.article-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.article-main-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.article-main-title span {
  color: var(--primary);
}

.article-lead {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
}

.article-toc {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 50px;
}

.toc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toc-list a {
  font-size: 14px;
  color: var(--text-gray);
  padding: 4px 0;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-list a::before {
  content: '▶';
  font-size: 9px;
  color: var(--primary);
}

.toc-list a:hover {
  color: var(--primary);
}

.article-h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--text-dark);
  margin: 55px 0 20px;
  padding-left: 16px;
  border-left: 5px solid var(--primary);
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.article-h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 32px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-h3::before {
  content: '●';
  font-size: 10px;
  color: var(--secondary);
}

.article-p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.9;
  margin-bottom: 18px;
}

.article-p strong {
  color: var(--text-dark);
  font-weight: 700;
}

.info-box {
  background: #fff8f5;
  border: 1px solid #ffd4bc;
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 24px 0;
}

.info-box.blue {
  background: var(--primary-light);
  border-color: #b8d0f9;
}

.info-box.warning {
  background: #fffbeb;
  border-color: #fde68a;
}

.info-box-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dark);
}

.info-box p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
}

.article-list {
  margin: 16px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  padding: 10px 14px;
  background: var(--bg-light);
  border-radius: 8px;
}

.article-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 15px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.article-table th {
  background: var(--primary);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 14px;
}

.article-table td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-gray);
}

.article-table tr:nth-child(even) td {
  background: var(--bg-light);
}

.article-table tr:last-child td {
  border-bottom: none;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.step-num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

/* ===== QNA SECTION ===== */
.qna-section {
  padding: 80px 20px;
  background: var(--bg-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Noto Sans KR', sans-serif;
}

.faq-q-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  line-height: 1.5;
}

.faq-q-badge {
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.faq-icon {
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 22px 64px;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #1a56db, #0a2570);
  padding: 70px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-title span { color: var(--accent); }

.cta-desc {
  font-size: 17px;
  opacity: 0.88;
  margin-bottom: 35px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-cta-call {
  background: var(--secondary);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255,107,53,0.4);
}

.btn-cta-call:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn-cta-sms {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.5);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
}

.btn-cta-sms:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ===== FIXED FLOATING BUTTONS ===== */
.float-btns {
  position: fixed;
  bottom: 30px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
  transition: all 0.25s;
  white-space: nowrap;
  color: #fff;
}

.float-btn:hover {
  transform: translateX(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.float-btn-call {
  background: linear-gradient(135deg, #ff6b35, #e05520);
}

.float-btn-sms {
  background: linear-gradient(135deg, #1a56db, #0a2570);
}

.float-btn-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.float-label {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.float-label-top {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
}

.float-label-num {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.65);
  padding: 50px 20px 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 0 0 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.footer-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
  transition: color 0.2s;
}

.footer-contact a:hover { color: #fff; }

.footer-links {
  flex: 1;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-col h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-notice {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.6;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--bg-light);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--text-light);
  transition: color 0.2s;
}

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

.breadcrumb-sep { color: var(--border); }

.breadcrumb-current { color: var(--text-dark); font-weight: 600; }

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-section { padding: 50px 20px; }
  .hero-stats { gap: 28px; }

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

  .section { padding: 55px 20px; }

  .article-h2 { font-size: 20px; }
  .article-h3 { font-size: 17px; }

  .float-btns {
    bottom: 20px;
    right: 14px;
    gap: 10px;
  }

  .float-btn {
    padding: 12px 16px;
    font-size: 13px;
  }

  .float-label-top { display: none; }

  .footer-top { flex-direction: column; gap: 36px; }
  .footer-brand { flex: none; }

  .cta-btns { flex-direction: column; align-items: center; }

  .hero-btns { flex-direction: column; align-items: center; }

  .article-table { font-size: 13px; }
  .article-table th, .article-table td { padding: 10px 12px; }

  .faq-answer-inner { padding-left: 24px; }
}

@media (max-width: 480px) {
  .stat-num { font-size: 22px; }
  .hero-stats { gap: 20px; }

  .float-btn-call .float-label-top,
  .float-btn-sms .float-label-top {
    display: none;
  }
}
