/* =============================================
   RISEUP AI — MAIN PAGE STYLES
   ============================================= */

/* ---- RESET & BASE ---- */
/* SPA 공존: margin/padding 전역 제거는 Tailwind·대시보드와 충돌하므로 box-sizing 만 유지 */
*, *::before, *::after { box-sizing: border-box; }

:root {
  --blue:        #3B82F6;
  --blue-dark:   #1D4ED8;
  --blue-light:  #EFF6FF;
  --indigo:      #6366F1;
  --purple:      #8B5CF6;
  --bg:          #FAFBFF;
  --surface:     #FFFFFF;
  --border:      #E5E7F0;
  --text:        #111827;
  --text-muted:  #6B7280;
  --text-light:  #9CA3AF;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:      0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 40px rgba(59,130,246,.15);
  --transition:  0.25s ease;
  /* 랜딩 등: 기본 콘텐츠 밴드 */
  --max-w:       860px;
}

/*
 * 넓은 화면(27~32인치·1440p/4K): 좁은 밴드 + 과한 양옆 여백 → 밴드를 단계적으로 넓혀
 * 한 화면에 콘텐츠가 더 모이도록 함(가독성·시각적 밀도).
 */
@media (min-width: 1440px) {
  :root {
    --max-w: 980px;
  }
}
@media (min-width: 1680px) {
  :root {
    --max-w: 1080px;
  }
}
@media (min-width: 1920px) {
  :root {
    --max-w: 1180px;
  }
}
@media (min-width: 2560px) {
  :root {
    --max-w: 1280px;
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- UTILITIES ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 22px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 36px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 52px;
  }
}
@media (min-width: 1280px) {
  .container {
    padding: 0 64px;
  }
}
/* 초대형: 좌우 패딩을 살짝 줄여 밴드가 화면 비율을 더 쓰게 함 */
@media (min-width: 1920px) {
  .container {
    padding: 0 48px;
  }
}
@media (min-width: 2560px) {
  .container {
    padding: 0 56px;
  }
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: linear-gradient(135deg, #93C5FD, #C4B5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(59,130,246,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59,130,246,.45);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { color: var(--blue); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue-light);
}

.btn-white {
  background: #fff;
  color: var(--blue-dark);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 48px;
  color: var(--text);
}


/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,251,255,.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-badge {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
}
.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 16px;
}
.nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
}
.nav a:hover { color: var(--blue); }
.nav a.active-nav {
  color: var(--blue);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}


/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
}

/* 로그인 후 메인(/): 마케팅 헤더 없음 — AppLayout 상단 바 높이에 맞춰 상단 패딩 축소 */
.hero.hero--app-user {
  padding-top: 88px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #BFDBFE, transparent);
  top: -200px; left: -100px;
}
.orb2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #DDD6FE, transparent);
  top: 50px; right: -150px;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #A5F3FC, transparent);
  bottom: -100px; left: 40%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

/* 데스크톱: 2열이 컨테이너 양끝까지 늘어나지 않도록 열 폭을 제한하고 그리드 전체를 가운데로 */
@media (min-width: 1025px) {
  .hero .container.hero-inner {
    grid-template-columns: minmax(0, 440px) minmax(0, 440px);
    justify-content: center;
    gap: 64px;
  }
}

/* Hero Left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-light);
  border: 1px solid #BFDBFE;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.stat-unit {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Right (로드맵·플로팅 태그 제거 후 단일 카드 — 높이는 콘텐츠에 맞춤) */
.hero-visual {
  position: relative;
  height: auto;
  min-height: 0;
}

.mockup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: absolute;
}

.hero-visual .mockup-card.main-card {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.main-card {
  top: 0; left: 0; right: 40px;
  padding: 0;
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #F8F9FC;
  border-bottom: 1px solid var(--border);
}
.card-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.card-dot.red    { background: #F87171; }
.card-dot.yellow { background: #FBBF24; }
.card-dot.green  { background: #34D399; }
.card-title-bar {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-left: auto;
}

.card-body { padding: 20px; }

.snapshot-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 8px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 8px;
}
.snapshot-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.snapshot-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.snap-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.snap-item > i {
  color: var(--blue);
  font-size: 14px;
  margin-top: 2px;
  width: 16px;
  flex-shrink: 0;
}
.snap-item > div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.snap-label {
  font-size: 11px;
  color: var(--text-muted);
}
.snap-val {
  font-size: 13px;
  font-weight: 600;
}

/* Roadmap card */
.roadmap-card {
  bottom: 0; right: 0; left: 60px;
  padding: 16px 20px;
}
.roadmap-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.roadmap-weeks {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.week {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #F8F9FC;
}
.week.done {
  background: var(--blue-light);
  border-color: #BFDBFE;
}
.week.active {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-color: transparent;
}
.week.active .week-num,
.week.active .week-text { color: #fff; }
.week-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
}
.week-text {
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
}
.week.done .week-num { color: var(--blue); }

.progress-bar {
  height: 6px;
  background: var(--blue-light);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  border-radius: 100px;
}

/* Floating tags */
.floating-tag {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.floating-tag i { color: var(--blue); }

.tag1 { top: -18px; right: 20px; animation: float1 3s ease-in-out infinite; }
.tag2 { bottom: 110px; left: -10px; animation: float2 3.5s ease-in-out infinite; }

@keyframes float1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}


/* =============================================
   HOW IT WORKS
   ============================================= */
.how {
  padding: 100px 0;
  background: var(--surface);
  text-align: center;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.step.visible { opacity: 1; transform: translateY(0); }

.step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .1em;
  margin-bottom: 12px;
}

.step-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-light), #EDE9FE);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--blue);
}

.step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-arrow {
  flex-shrink: 0;
  color: var(--border);
  font-size: 20px;
  padding-top: 60px;
}


/* =============================================
   FEATURES
   ============================================= */
.features {
  padding: 100px 0;
  background: var(--bg);
}

.feature-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tab-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  transition: all var(--transition);
}
.tab-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-color: transparent;
  color: #fff;
}

.tab-panels { position: relative; }

.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
  animation: fadeIn .3s ease;
}

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

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
}

/* 넓은 화면: 1fr 1fr 로 양끝까지 늘어나 가운데가 비어 보이는 문제 → 열 폭 제한 + 가운데 묶음 */
@media (min-width: 1025px) {
  .panel-grid {
    grid-template-columns: minmax(0, 440px) minmax(0, 360px);
    justify-content: center;
    gap: 20px;
  }
}

.panel-info h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.3;
}

.panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
}
.panel-list li i {
  color: var(--blue);
  font-size: 14px;
  flex-shrink: 0;
}

.panel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: default;
  transition: all var(--transition);
}
.mini-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.mini-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-light), #EDE9FE);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--blue);
}


/* =============================================
   COMPARE
   ============================================= */
.compare {
  padding: 100px 0;
  background: var(--surface);
  text-align: center;
}

.compare-table-wrap {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 14px;
}

.compare-table thead tr {
  background: #F8F9FC;
}
.compare-table th:first-child {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.compare-table tbody tr {
  border-top: 1px solid var(--border);
  transition: background var(--transition);
}
.compare-table tbody tr:hover { background: #FAFBFF; }

.compare-table td:first-child {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 13px;
  width: 120px;
}

.col-old {
  color: var(--text-muted) !important;
  font-weight: 500 !important;
}
.col-old i { color: #F87171; margin-right: 6px; }

.col-new {
  color: var(--text) !important;
  font-weight: 600 !important;
}
.col-new i { color: #34D399; margin-right: 6px; }

.compare-table th.col-new {
  color: var(--blue) !important;
  font-weight: 700;
  background: var(--blue-light);
}


/* =============================================
   CTA BOTTOM
   ============================================= */
.cta-bottom {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1E3A8A, #4338CA, #7C3AED);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
}
.cta-orb.orb1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #60A5FA, transparent);
  top: -100px; left: -80px;
}
.cta-orb.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #A78BFA, transparent);
  bottom: -100px; right: -80px;
}

.cta-inner { position: relative; }

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #93C5FD;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.cta-bottom h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-bottom p {
  font-size: 16px;
  color: #BFDBFE;
  margin-bottom: 36px;
  line-height: 1.7;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0F172A;
  color: #94A3B8;
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid #1E293B;
}

.footer-brand .logo-text { color: #F1F5F9; }
.footer-brand .logo-badge {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
}

.footer-brand p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.75;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #F1F5F9;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  font-size: 13px;
  color: #64748B;
  margin-bottom: 8px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #475569;
}


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    height: auto;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .hero-content { text-align: center; }
  .hero-badge { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .step { max-width: 100%; }
  .step-arrow { display: none; }

  .panel-grid {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: rgba(250,251,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 16px;
  }
  .hamburger { display: flex; }
  .header-actions { display: none; }

  .hero { padding: 120px 0 60px; }
  .hero-visual { height: auto; }

  .main-card { right: 10px; }

  .how { padding: 60px 0; }
  .features { padding: 60px 0; }
  .compare { padding: 60px 0; }
  .cta-bottom { padding: 60px 0; }

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

  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 6px; text-align: center; }

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

@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
  .hero-visual { height: auto; }
  .snap-item { display: none; }
  .snap-item:first-child { display: flex; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-divider { display: none; }
  .footer-links { grid-template-columns: 1fr; }
}
