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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* 스크린 리더·키보드 접근성: 본문 바로가기 */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: #0d4a7a;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ========== 헤더 ========== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* 최상단: 히어로 위에 있을 때 흰색 텍스트 */
header .logo {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
header nav a {
  color: rgba(255, 255, 255, 0.95);
}
header nav a:hover {
  color: #fff;
}

/* 스크롤 시: 기존 스타일 */
header.scrolled .logo {
  color: #0d4a7a;
  text-shadow: none;
}
header.scrolled nav a {
  color: #333;
}
header.scrolled nav a:hover {
  color: #0d4a7a;
}

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

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

/* ========== 히어로 캐러셀 ========== */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* 히어로 이미지: 데스크톱 1920px 최적화, 모바일 768px 최적화 */
.hero-slide:nth-child(1) {
  background-image: url('images/hero1.jpg');
}

.hero-slide:nth-child(2) {
  background-image: url('images/hero2.jpg');
}

.hero-slide:nth-child(3) {
  background-image: url('images/hero3.jpg');
}

@media (max-width: 768px) {
  .hero-slide:nth-child(1) {
    background-image: url('images/hero1-768.jpg');
  }
  .hero-slide:nth-child(2) {
    background-image: url('images/hero2-768.jpg');
  }
  .hero-slide:nth-child(3) {
    background-image: url('images/hero3-768.jpg');
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  z-index: 2;
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-caption h1,
.hero-caption .hero-title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* 캐러셀 인디케이터 */
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid #fff;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-dot.active {
  background: #fff;
}

/* ========== 최적의 세무 솔루션 섹션 ========== */
.solutions {
  padding: 5rem 2rem;
  background: #F8F8FC;
  border-bottom: 1px solid #e8e8e8;
}

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

.solutions-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.solutions-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.solutions-subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.solutions-tagline {
  font-size: 0.95rem;
  color: #555;
  font-weight: 400;
}

.solutions-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@keyframes solutionCardUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.solutions-card {
  background: #fff;
  border-radius: 0;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.2s;
  opacity: 0;
  animation: solutionCardUp 0.65s ease-out forwards;
}

.solutions-card:nth-child(1) {
  animation-delay: 0.15s;
}

.solutions-card:nth-child(2) {
  animation-delay: 0.35s;
}

.solutions-card:nth-child(3) {
  animation-delay: 0.55s;
}

.solutions-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.solutions-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: #e8eaf0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: #0d4a7a;
}

.solutions-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.solutions-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ========== 고객의 미래를 여는 섹션 ========== */
.intro-section {
  padding: 5rem 2rem;
  background: #fff;
}

.intro-inner {
  max-width: 900px;
  margin: 0 auto;
}

.intro-header {
  text-align: center;
  margin-bottom: 4rem;
}

.intro-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.intro-tagline {
  font-size: 0.95rem;
  color: #555;
  font-weight: 400;
}

.intro-blocks {
  display: flex;
  flex-direction: column;
}

.intro-block {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  position: relative;
  padding-bottom: 3.5rem;
  margin-bottom: 0;
}

.intro-block:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  height: 1px;
  background: #e0e0e0;
}

.intro-block:last-child {
  padding-bottom: 0;
}

.intro-block-left {
  flex-shrink: 0;
  width: 260px;
  position: relative;
}

.intro-block-num {
  font-size: 5rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08);
  line-height: 0.9;
  display: block;
  font-variant-numeric: tabular-nums;
  margin-bottom: -0.15em;
}

@keyframes introTitleUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-block-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d3b66;
  line-height: 1.45;
  margin: 0;
  opacity: 0;
  animation: introTitleUp 0.6s ease-out forwards;
}

.intro-title-black {
  color: #1a1a1a;
}

.intro-block:nth-child(1) .intro-block-title {
  animation-delay: 0.15s;
}

.intro-block:nth-child(2) .intro-block-title {
  animation-delay: 0.4s;
}

.intro-block:nth-child(3) .intro-block-title {
  animation-delay: 0.65s;
}

@keyframes introContentFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.intro-block-right {
  flex: 1;
  min-width: 0;
  padding-top: 0.25rem;
  opacity: 0;
  animation: introContentFromRight 0.65s ease-out forwards;
}

.intro-block:nth-child(1) .intro-block-right {
  animation-delay: 0.4s;
}

.intro-block:nth-child(2) .intro-block-right {
  animation-delay: 0.7s;
}

.intro-block:nth-child(3) .intro-block-right {
  animation-delay: 1s;
}

.intro-block-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.85;
  margin: 0;
  text-align: left;
}

/* ========== 고객을 위한 맞춤 솔루션 (파란 배경) ========== */
.features-banner {
  position: relative;
  padding: 5rem 2rem;
  overflow: hidden;
}

.features-banner-bg {
  position: absolute;
  inset: 0;
  background: #0d3b55 url('images/service1.jpg') center / cover no-repeat;
}

@media (max-width: 768px) {
  .features-banner-bg {
    background-image: url('images/service1-768.jpg');
  }
}

.features-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 59, 85, 0.75);
  pointer-events: none;
}

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

.features-banner-header {
  margin-bottom: 3.5rem;
}

.features-banner-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.features-banner-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.features-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.features-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.features-banner-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.features-banner-icon svg {
  width: 44px;
  height: 44px;
}

.features-banner-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

/* ========== 전문가 소개 섹션 ========== */
.expert-section {
  padding: 5rem 2rem;
  background: #fff;
}

.expert-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.expert-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.expert-titles {
  flex: 1;
  min-width: 0;
}

.expert-heading {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.4rem 0;
}

.expert-subheading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d3b66;
  margin: 0;
  letter-spacing: -0.02em;
}

.expert-cta {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.85rem 1.6rem;
  background: #0d3b66;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: background 0.2s, transform 0.2s;
}

.expert-cta:hover {
  background: #0a2d4d;
  transform: translateY(-1px);
}

.expert-body {
  margin: 0;
  max-width: 52em;
}

.expert-body p {
  font-size: 0.95rem;
  color: #1a1a1a;
  line-height: 1.9;
  margin: 0 0 1.5rem 0;
  word-break: keep-all;
}

.expert-body p:last-child {
  margin-bottom: 0;
}

/* ========== 업무 분야 섹션 ========== */
.services-section {
  padding: 5rem 2rem;
  background: #F8F8FA;
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.services-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}

.services-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  color: #666;
  margin: 0 0 3rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.services-card {
  background: #fff;
  border-radius: 0;
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s, transform 0.2s;
}

.services-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.services-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A6076;
}

.services-card-icon svg {
  width: 40px;
  height: 40px;
}

.services-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 0.75rem 0;
}

.services-card-desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ========== 성공사례 섹션 ========== */
.cases-section {
  padding: 5rem 2rem;
  background: #fff;
}

.cases-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.cases-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}

.cases-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  color: #555;
  margin: 0 0 3rem 0;
}

.cases-empty {
  padding: 2rem 0;
}

.cases-empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
}

.cases-empty-icon svg {
  width: 64px;
  height: 64px;
}

.cases-empty-text {
  font-size: 0.95rem;
  color: #999;
  margin: 0 0 1.5rem 0;
}

.cases-write-btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  background: #fff;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  border: 1px solid #ccc;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.cases-write-btn:hover {
  background: #f5f5f5;
  border-color: #aaa;
}

/* ========== 찾아오시는 길 섹션 ========== */
.contact-section {
  padding: 5rem 2rem;
  background: #F8F8FA;
}

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

.contact-title {
  font-size: 1.85rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.4rem 0;
  letter-spacing: -0.02em;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 2.5rem 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  min-height: 420px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-map {
  min-height: 420px;
  background: #e8e8e8;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.contact-info {
  padding: 2.5rem 2rem;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-office {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-list li:last-child {
  margin-bottom: 0;
}

.contact-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d3b66;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

/* ========== CTA 배너 섹션 ========== */
.cta-banner {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80') center / cover no-repeat;
  filter: blur(4px) brightness(0.5);
  transform: scale(1.05);
}

.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-banner-content {
  flex: 1;
  min-width: 0;
}

.cta-banner-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin: 0 0 0.6rem 0;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.cta-banner-desc {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.cta-banner-btn {
  flex-shrink: 0;
  display: inline-block;
  padding: 0.9rem 2rem;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cta-banner-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

/* ========== 푸터 ========== */
.footer {
  background: #fff;
  color: #333;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #e8e8e8;
}

.footer-brand {
  max-width: 240px;
}

.footer-logo {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0d4a7a;
  text-decoration: none;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.footer-logo:hover {
  opacity: 0.9;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
  white-space: nowrap;
}

.footer-contact {
  text-align: right;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-contact p {
  margin: 0 0 0.35rem 0;
  color: #444;
  word-break: keep-all;
}

.footer-contact p:last-child {
  margin-bottom: 0;
}

.footer-label {
  display: inline-block;
  width: 4.5em;
  color: #888;
  font-size: 0.85em;
}

.footer-address {
  margin-left: 0;
}

.footer-nowrap {
  white-space: nowrap;
}

.footer-bottom {
  padding: 1.25rem 0 2rem;
  text-align: center;
}

.footer-copy {
  font-size: 0.85rem;
  color: #999;
  margin: 0;
}

/* ========== 반응형 ========== */
@media (max-width: 768px) {
  .intro-section {
    padding: 3.5rem 1.5rem;
  }

  .intro-title {
    font-size: 1.5rem;
  }

  .intro-block {
    flex-direction: column;
    gap: 1rem;
  }

  .intro-block-left {
    width: 100%;
  }

  .intro-block-num {
    font-size: 3.5rem;
  }

  .intro-block-title {
    font-size: 1.05rem;
  }

  .intro-block:not(:last-child)::after {
    left: 0;
    right: 0;
  }

  .solutions-cards {
    grid-template-columns: 1fr;
  }

  .solutions-title {
    font-size: 1.6rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  nav ul {
    gap: 1.25rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    font-size: 0.9rem;
  }

  .hero {
    height: 50vh;
    min-height: 350px;
    margin-top: 0;
  }

  .features-banner {
    padding: 3.5rem 1.5rem;
  }

  .features-banner-title {
    font-size: 1.5rem;
  }

  .features-banner-subtitle {
    font-size: 1rem;
  }

  .features-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .features-banner-icon svg {
    width: 36px;
    height: 36px;
  }

  .features-banner-text {
    font-size: 0.9rem;
  }

  .expert-section {
    padding: 3.5rem 1.5rem;
  }

  .expert-header {
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .expert-heading {
    font-size: 1.1rem;
  }

  .expert-subheading {
    font-size: 1.3rem;
  }

  .expert-cta {
    align-self: flex-start;
  }

  .services-section {
    padding: 3.5rem 1.5rem;
  }

  .services-title {
    font-size: 1.5rem;
  }

  .services-subtitle {
    margin-bottom: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .services-card {
    padding: 1.75rem 1.5rem;
  }

  .cases-section {
    padding: 3.5rem 1.5rem;
  }

  .cases-title {
    font-size: 1.5rem;
  }

  .cases-empty {
    padding: 1.5rem 0;
  }

  .contact-section {
    padding: 3.5rem 1.5rem;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    min-height: 320px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 280px;
  }

  .contact-info {
    padding: 2rem 1.5rem;
  }

  .contact-list li {
    flex-wrap: wrap;
  }

  .cta-banner {
    min-height: 280px;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .cta-banner-title {
    font-size: 1.4rem;
  }

  .cta-banner-desc {
    font-size: 0.95rem;
  }

  .cta-banner-btn {
    margin-top: 0.5rem;
  }

  .footer-inner {
    padding: 2.5rem 1.5rem 0;
  }

  .footer-top {
    gap: 1.5rem;
    padding-bottom: 2rem;
  }

  .footer-tagline {
    font-size: 0.8rem;
  }

  .footer-contact {
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding: 1rem 0 1.5rem;
  }

  .footer-copy {
    font-size: 0.8rem;
  }
}
