/* ========== 공통 변수 ========== */
:root {
  --navy: #0F1F44;
  --navy-dark: #0A1730;
  --orange: #C95C1C;
  --orange-hover: #E06E2A;
  --text: #1a1a1a;
  --text-muted: #6b6b6b;
  --gray-bg: #f5f5f5;
  --dark-overlay: rgba(0, 0, 0, 0.55);
  --white: #fff;
}

/* ========== 리셋 ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Pretendard', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ========== 네비게이션 ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--navy);
  z-index: 100;
  height: 72px;
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}
.menu {
  display: flex;
  gap: 40px;
}
.menu a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.75;
  padding: 26px 0;
  border-bottom: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.menu a:hover { opacity: 1; }
.menu a.active {
  opacity: 1;
  font-weight: 700;
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ========== 홈 Hero ========== */
.hero-home {
  position: relative;
  min-height: 100vh;
  padding-top: 72px;
  background:
    linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.45)),
    url('images/home/home-hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero-content {
  background: rgba(13, 22, 40, 0.55);
  backdrop-filter: blur(2px);
  color: var(--white);
  padding: 60px 80px;
  margin-right: 8%;
  max-width: 560px;
}
.hero-title {
  font-size: 22px;
  font-weight: 300;
  margin-bottom: 8px;
}
.hero-title-bold {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 36px;
  font-weight: 300;
}
.btn-outline-orange {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s;
}
.btn-outline-orange:hover {
  background: var(--orange);
}

/* ========== 빠른상담 신청 ========== */
.quick-contact {
  padding: 100px 20px;
  background: var(--white);
  text-align: center;
}
.quick-contact h2 {
  font-size: 34px;
  margin-bottom: 50px;
  font-weight: 700;
}
.quick-contact h2 .accent {
  color: var(--orange);
}
.contact-form {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.form-row label::after {
  content: ' *';
  color: var(--orange);
}
.form-row input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: inherit;
}
.form-row input:focus {
  outline: none;
  border-color: var(--orange);
}
.btn-solid-orange {
  display: block;
  margin: 24px auto 0;
  padding: 14px 40px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-solid-orange:hover { background: var(--orange-hover); }

/* ========== 서비스 카드 그리드 (홈) ========== */
.service-cards {
  padding: 0 0 100px;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
  transition: background 0.3s;
}
.card:hover::before { background: rgba(0,0,0,0.4); }
.card > * { position: relative; z-index: 1; }
.card-icon {
  font-size: 40px;
  margin-bottom: 24px;
}
.card-title {
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  margin-bottom: 20px;
  min-width: 180px;
  text-align: center;
}
.card-link {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--white);
  font-size: 13px;
  font-weight: 500;
}
.card-link::before { content: '> '; }

/* 카드별 배경 이미지 */
.card-terminal  { background-image: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('images/home/home-card-terminal.png'); }
.card-pos       { background-image: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('images/home/home-card-pos.png'); }
.card-demolish  { background-image: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('images/home/home-card-demolish.png'); }
.card-internet  { background-image: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('images/home/home-card-internet.png'); }
.card-vending   { background-image: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('images/vending/vending-01.jpg'); background-position: center 70%; }
.card-consult   { background-image: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('https://picsum.photos/seed/consult/600/600'); }

/* ========== CTA 배너 ========== */
.cta-band {
  position: relative;
  padding: 100px 40px;
  background:
    linear-gradient(rgba(15,31,68,0.5), rgba(15,31,68,0.5)),
    url('https://picsum.photos/seed/building/1600/500') center/cover no-repeat;
  color: var(--white);
}
.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.cta-info h3 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  margin-bottom: 24px;
  width: 260px;
}
.cta-phone {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.cta-note {
  font-size: 14px;
  opacity: 0.85;
}
.cta-icons {
  display: flex;
  gap: 50px;
}
.cta-icon {
  text-align: center;
  color: var(--white);
}
.cta-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
}
.cta-icon span { font-size: 14px; font-weight: 500; }

/* ========== 푸터 ========== */
.footer {
  background: #555;
  color: var(--white);
  padding: 60px 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer h4 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 24px;
  width: 280px;
}
.footer p {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.9;
}

/* ========== 플로팅 버튼 ========== */
.floating {
  position: fixed;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 50;
}
.float-btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--white);
  font-size: 13px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.float-btn-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
}
.float-btn:hover .float-btn-circle { background: var(--orange); }

/* ========== 하위 페이지 Hero ========== */
.hero-sub-page {
  background: var(--navy);
  color: var(--white);
  padding: 180px 40px 120px;
  text-align: center;
}
.hero-sub-divider {
  width: 80px;
  height: 2px;
  background: var(--white);
  margin: 0 auto 36px;
}
.hero-sub-title {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 40px;
  line-height: 1.3;
}
.btn-dark {
  display: inline-block;
  padding: 14px 36px;
  background: #555;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-dark:hover { background: #333; }

/* ========== 하위 페이지 제품 섹션 ========== */
.product-section {
  padding: 100px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-heading {
  text-align: center;
  margin-bottom: 70px;
}
.section-heading h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}
.section-heading p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  position: relative;
  min-height: 380px;
  padding: 40px 32px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #777;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
}
.product-card > * { position: relative; z-index: 1; }
.product-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.35;
}
.product-card ul {
  list-style: none;
}
.product-card li {
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.95;
}
.product-card li::before { content: '- '; }

.product-card-1 { background-image: url('https://picsum.photos/seed/prod1/600/600'); background-size: cover; background-position: center; }
.product-card-2 { background-image: url('https://picsum.photos/seed/prod2/600/600'); background-size: cover; background-position: center; }
.product-card-3 { background-image: url('https://picsum.photos/seed/prod3/600/600'); background-size: cover; background-position: center; }

.product-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 30px;
}

/* 섹션 사이 간격 조정 - product-section 연속 배치 시 */
.product-section + .product-section { padding-top: 40px; }

/* 페이지별 Hero 배경 이미지 */
.hero-pos {
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://picsum.photos/seed/kiosk-food/1600/600') center/cover no-repeat;
}
.hero-terminal {
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://picsum.photos/seed/cardterm/1600/600') center/cover no-repeat;
}
.hero-demolish {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('https://picsum.photos/seed/demoshop2/1600/600') center/cover no-repeat;
}

/* ========== 좌우 분할 섹션 (철거·원상복구) ========== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px;
  align-items: center;
}
.split-section.reverse .split-image { order: -1; }
.split-text h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.split-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 40px;
}
.split-image {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
}
.split-image-consult {
  background-image: url('https://picsum.photos/seed/consultman/800/600');
}
.split-image-buyout {
  background-image: url('https://picsum.photos/seed/buyoutshop/800/600');
}

/* ========== 소상공인 폐업지원 배너 ========== */
.promo-banner {
  padding: 140px 40px;
  background:
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('https://picsum.photos/seed/smileshop/1600/700') center/cover no-repeat;
  color: var(--white);
}
.promo-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.promo-banner h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 28px;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.promo-banner p {
  font-size: 15px;
  margin-bottom: 40px;
  line-height: 1.9;
  opacity: 0.95;
}
.btn-blue {
  display: inline-block;
  padding: 14px 40px;
  background: #2d5bd0;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-blue:hover { background: #3d6ce0; }

/* ========== 지역 × 업종 로컬 페이지 ========== */
.hero-local {
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('images/home/home-hero.png') center/cover no-repeat;
}
.local-intro {
  padding: 100px 20px;
  background: var(--white);
}
.local-intro-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.local-intro h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.local-intro p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 32px;
}
.local-bullets {
  list-style: none;
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: left;
}
.local-bullets li {
  font-size: 15px;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.local-bullets li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  color: var(--orange);
  font-weight: 700;
}
.local-intro .btn-solid-orange { margin: 0 auto; }

.local-links {
  padding: 80px 20px 100px;
  background: var(--gray-bg);
}
.local-links-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.local-links h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--navy);
}
.local-links h3:first-child { margin-top: 0; }
.link-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.link-grid li a {
  display: block;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid #e5e5e5;
  font-size: 13px;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}
.link-grid li a:hover {
  border-color: var(--orange);
  color: var(--orange);
}
@media (max-width: 900px) {
  .link-grid { grid-template-columns: repeat(2, 1fr); }
  .local-intro h2 { font-size: 22px; }
}
@media (max-width: 560px) {
  .link-grid { grid-template-columns: 1fr; }
}

/* ========== Hero 서브 설명 ========== */
.hero-sub-desc {
  margin-top: 24px;
  font-size: 16px;
  opacity: 0.85;
}

/* ========== 허브 페이지 공통 ========== */
.hub-section {
  padding: 80px 20px 100px;
  background: var(--gray-bg);
}
.hub-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }
.hub-heading {
  font-size: 22px;
  font-weight: 800;
  margin: 40px 0 20px;
  color: var(--navy);
}
.hub-heading:first-of-type { margin-top: 0; }

/* 서비스 카드 (허브 메인) */
.hub-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 60px;
}
.hub-service-card {
  display: block;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid #e5e5e5;
  transition: border-color 0.2s, transform 0.15s;
}
.hub-service-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}
.hub-service-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.hub-service-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.hub-service-count {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
}

/* 시도 그리드 */
.hub-sido-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.hub-sido-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid #e5e5e5;
  font-size: 14px;
  transition: border-color 0.2s;
}
.hub-sido-card:hover { border-color: var(--orange); }
.hub-sido-name { font-weight: 700; color: var(--text); }
.hub-sido-count { font-size: 12px; color: var(--text-muted); }

/* 시도 블록 (서비스별 지역 페이지) */
.sido-block { margin-bottom: 36px; }
.sido-heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--navy);
}
.sido-count {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

/* 지역 리스트 그리드 */
.region-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.region-grid li a {
  display: block;
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid #e5e5e5;
  font-size: 13px;
  color: var(--text);
  transition: border-color 0.2s, color 0.2s;
}
.region-grid li a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* 업종 그리드 (지역별 페이지) */
.industry-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 40px;
}
.industry-grid li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid #e5e5e5;
  transition: border-color 0.2s, background 0.2s;
}
.industry-grid li a:hover {
  border-color: var(--orange);
  background: #fff8f3;
}
.industry-name { font-size: 16px; font-weight: 700; color: var(--text); }
.industry-arrow { font-size: 18px; color: var(--orange); }

/* 허브 허브 페이지 반응형 */
@media (max-width: 900px) {
  .hub-service-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-sido-grid { grid-template-columns: repeat(3, 1fr); }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .hub-service-grid { grid-template-columns: 1fr; }
  .hub-sido-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
}

/* ========== 홈 "지역별 찾기" 배너 ========== */
.local-finder-band {
  padding: 60px 20px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.local-finder-inner { max-width: 720px; margin: 0 auto; }
.local-finder-band h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.local-finder-band p {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 28px;
  line-height: 1.7;
}
.btn-solid-orange.btn-inline { display: inline-block; margin: 0; }
@media (max-width: 560px) {
  .local-finder-band h2 { font-size: 22px; }
}

/* ========== 이미지 스택 (자판기 상세 이미지용) ========== */
.image-stack {
  padding-top: 72px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.image-stack img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
}
.image-stack-continued {
  padding-top: 0;
}
.hero-vending {
  background:
    linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url('https://picsum.photos/seed/vendingm/1600/600') center/cover no-repeat;
}

/* ========== 햄버거 버튼 ========== */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== 반응형 ========== */
@media (max-width: 900px) {
  .nav-inner { padding: 0 20px; }
  .logo { white-space: nowrap; }
  .nav-toggle { display: block; }

  .menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .menu.open { max-height: calc(100vh - 72px); padding: 12px 0; }
  .menu a {
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    font-size: 15px;
    opacity: 1;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .menu a:last-child { border-bottom: none; }
  .menu a.active {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: rgba(201, 92, 28, 0.15);
  }

  .hero-content {
    margin: 0 auto;
    padding: 40px 28px;
  }
  .hero-title-bold { font-size: 32px; }

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

  .split-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 80px 20px;
  }
  .split-section.reverse .split-image { order: 0; }
  .split-text h2 { font-size: 22px; }
  .promo-banner { padding: 80px 20px; }
  .promo-banner h2 { font-size: 26px; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-info h3, .footer h4 { width: 100%; }
  .cta-icons { gap: 20px; }

  .hero-sub-title { font-size: 32px; }

  /* 플로팅 버튼 모바일: 텍스트 숨기고 원만 */
  .floating { right: 12px; bottom: 20px; gap: 8px; }
  .float-btn span { display: none; }
  .float-btn-circle { width: 44px; height: 44px; font-size: 16px; }
}

@media (max-width: 560px) {
  .logo { font-size: 16px; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-sub-title { font-size: 26px; }
  .section-heading h2 { font-size: 26px; }
  .quick-contact h2 { font-size: 26px; }
  .promo-banner h2 { font-size: 22px; }
  .cta-phone { font-size: 32px; }
}
