/* ========================================
   巴夫猫小酒馆 - 企业官网样式系统
   中创企和控股集团
   配色：深色暖调 + 琥珀橙
   ======================================== */

/* ===== CSS Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* 主色调 - 基于PDF品牌手册分析 */
  --color-bg-primary: #0a0807;
  --color-bg-secondary: #14100d;
  --color-bg-card: #1c1612;
  --color-bg-card-hover: #241c16;
  --color-bg-overlay: rgba(10, 8, 7, 0.92);

  /* 强调色 */
  --color-accent: #e85e2f;
  --color-accent-light: #f57842;
  --color-accent-dark: #c44a20;
  --color-gold: #f5a623;
  --color-gold-light: #ffc857;
  --color-amber: #db6336;

  /* 文字色 */
  --color-text-primary: #f0ebe5;
  --color-text-secondary: #b8a89a;
  --color-text-muted: #8a7a6c;
  --color-text-accent: #e85e2f;

  /* 边框/分割线 */
  --color-border: #3a2e25;
  --color-border-light: #2a221c;

  /* 渐变 */
  --gradient-hero: linear-gradient(135deg, #0a0807 0%, #1a0f08 50%, #2a1408 100%);
  --gradient-accent: linear-gradient(135deg, #e85e2f 0%, #f5a623 100%);
  --gradient-card: linear-gradient(180deg, #1c1612 0%, #14100d 100%);
  --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(10,8,7,0.95) 100%);

  /* 阴影 */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 32px rgba(232, 94, 47, 0.15);

  /* 间距 */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* 布局 */
  --container-width: 1200px;
  --header-height: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* 动画 */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

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

ul, ol {
  list-style: none;
}

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header / Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(10, 8, 7, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 8, 7, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--container-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

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

.nav-logo .logo-text .brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: 1px;
}

.nav-logo .logo-text .brand-sub {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu a {
  padding: 8px 18px;
  font-size: 15px;
  color: var(--color-text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-menu a:hover {
  color: var(--color-text-primary);
  background: rgba(232, 94, 47, 0.08);
}

.nav-menu a.active {
  color: var(--color-accent);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.nav-cta {
  padding: 10px 24px !important;
  background: var(--gradient-accent);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #f57842 0%, #ffc857 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 94, 47, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

/* ===== Banner Carousel ===== */
.banner-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.banner-track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide {
  width: 33.3333%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 8, 7, 0.35) 0%,
    rgba(10, 8, 7, 0.55) 40%,
    rgba(10, 8, 7, 0.85) 100%
  );
  z-index: 1;
}

.banner-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.banner-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(240, 235, 225, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-dot.active {
  background: var(--color-accent);
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 0 12px rgba(232, 94, 47, 0.4);
}

.banner-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
  z-index: 3;
  pointer-events: none;
}

.banner-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 8, 7, 0.5);
  border: 1px solid rgba(240, 235, 225, 0.15);
  color: var(--color-text-primary);
  font-size: 28px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  backdrop-filter: blur(8px);
}

.banner-arrow:hover {
  background: rgba(232, 94, 47, 0.6);
  border-color: var(--color-accent);
  transform: scale(1.08);
}

/* Hero background fallback gradient (behind carousel) */
.hero {
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(232, 94, 47, 0.12);
  border: 1px solid rgba(232, 94, 47, 0.3);
  border-radius: 100px;
  font-size: 13px;
  color: var(--color-accent);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.hero-title .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232, 94, 47, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 94, 47, 0.4);
  background: linear-gradient(135deg, #f57842 0%, #ffc857 100%);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(232, 94, 47, 0.05);
}

.btn-lg {
  padding: 16px 44px;
  font-size: 16px;
}

/* ===== Section Styles ===== */
.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(232, 94, 47, 0.1);
  border: 1px solid rgba(232, 94, 47, 0.2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--color-accent);
  letter-spacing: 2px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-title .highlight {
  color: var(--color-accent);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Stats Section ===== */
.stats-section {
  padding: var(--space-lg) 0;
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

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

.stat-item {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

/* ===== Feature Cards ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(232, 94, 47, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 94, 47, 0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-primary);
}

.feature-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-accent), var(--color-border));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  margin-bottom: 20px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 28px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-bg-primary);
  box-shadow: 0 0 0 2px var(--color-accent);
  z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -7px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -7px;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.timeline-content {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}

.timeline-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-primary);
}

.timeline-content p {
  font-size: 13px;
  color: var(--color-text-secondary);
}

/* ===== Qualification Badges ===== */
.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.badge-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.badge-card:hover {
  border-color: rgba(232, 94, 47, 0.3);
  transform: translateY(-4px);
}

.badge-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.badge-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.badge-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== Investment Table ===== */
.investment-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--gradient-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.investment-table th {
  background: rgba(232, 94, 47, 0.1);
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-border);
}

.investment-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-light);
}

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

.investment-table tr:hover td {
  background: rgba(232, 94, 47, 0.03);
  color: var(--color-text-primary);
}

/* ===== Process Steps ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.process-step {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.process-step:hover {
  border-color: rgba(232, 94, 47, 0.3);
  transform: translateY(-4px);
}

.process-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 12px rgba(232, 94, 47, 0.3);
}

.process-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 8px;
  color: var(--color-text-primary);
}

.process-desc {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== Profit Model ===== */
.profit-model {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.profit-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.profit-stat {
  text-align: center;
  padding: 20px;
  background: rgba(232, 94, 47, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
}

.profit-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.profit-stat .label {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 8px;
}

/* ===== Comparison Table ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--color-border-light);
}

.comparison-table th {
  background: rgba(232, 94, 47, 0.1);
  font-weight: 600;
  color: var(--color-accent);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td:first-child {
  text-align: left;
  color: var(--color-text-primary);
  font-weight: 500;
}

.comparison-table .highlight-col {
  background: rgba(232, 94, 47, 0.05);
}

.comparison-table .yes {
  color: #4caf50;
  font-weight: 600;
}

.comparison-table .no {
  color: #f44336;
}

/* ===== News Cards ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.news-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  cursor: pointer;
}

.news-card:hover {
  border-color: rgba(232, 94, 47, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.news-card-image {
  width: 100%;
  height: 200px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.news-card-image .img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 0.3;
}

.news-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: rgba(232, 94, 47, 0.9);
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 500;
}

.news-card-body {
  padding: 24px;
}

.news-card-date {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.news-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text-primary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-excerpt {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-light);
}

.news-card-link {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 500;
}

/* ===== Contact Form ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(232, 94, 47, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 4px;
}

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

.contact-form {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232, 94, 47, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

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

/* ===== CTA Banner ===== */
.cta-banner {
  position: relative;
  padding: var(--space-lg) 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(232, 94, 47, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 60%),
    var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  text-align: center;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner h2 .highlight {
  color: var(--color-accent);
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border-light);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-brand .logo-line .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.footer-brand .logo-line .brand-name {
  font-size: 18px;
  font-weight: 700;
}

.footer-brand p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--color-border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--color-text-muted);
}

.footer-bottom .icp {
  display: flex;
  gap: 16px;
}

/* ===== Page Banner (non-home pages) ===== */
.page-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: var(--header-height);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-banner h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.page-banner .breadcrumb {
  font-size: 14px;
  color: var(--color-text-muted);
}

.page-banner .breadcrumb a:hover {
  color: var(--color-accent);
}

.page-banner .breadcrumb .separator {
  margin: 0 8px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Scroll-triggered animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== Decorative Elements ===== */
.decor-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  margin: 16px auto;
}

.decor-line.left {
  margin-left: 0;
}

/* ===== Advantage Cards (for franchise page) ===== */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.advantage-card {
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
}

.advantage-card:hover {
  border-color: rgba(232, 94, 47, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.advantage-card .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(232, 94, 47, 0.2);
  line-height: 1;
  margin-bottom: 12px;
}

.advantage-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text-primary);
}

.advantage-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ===== Support Policy List ===== */
.support-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.support-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--gradient-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.support-item:hover {
  border-color: rgba(232, 94, 47, 0.3);
  transform: translateY(-2px);
}

.support-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 94, 47, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.support-item .content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
}

.support-item .content p {
  font-size: 13px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .profit-model {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg-overlay);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateY(-150%);
    transition: transform var(--transition);
    border-bottom: 1px solid var(--color-border);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 14px 20px;
    font-size: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

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

  .stat-number {
    font-size: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 50px;
    padding-right: 0;
  }

  .timeline-item .timeline-dot {
    left: 13px !important;
    right: auto !important;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

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

  .page-banner h1 {
    font-size: 2rem;
  }

  .cta-banner h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: var(--space-lg) 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

/* ===== Layout Utility Classes ===== */

/* 2-column centered grid (for brand core, etc.) */
.grid-2col-centered {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

/* 3-column centered grid (for homepage qualifications) */
.grid-3col-centered {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}

/* 4-column centered grid (for qualifications, profit model) */
.grid-4col-centered {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Single item centered row */
.centered-single {
  display: flex;
  justify-content: center;
  max-width: 400px;
  margin: 24px auto 0;
}

/* 2-item centered row (for support bottom row) */
.centered-row-2 {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 760px;
  margin: 24px auto 0;
}

/* Responsive overrides for utility grids */
@media (max-width: 768px) {
  .grid-2col-centered {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .grid-3col-centered {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .grid-4col-centered {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .centered-row-2 {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
  .centered-single {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .grid-3col-centered {
    grid-template-columns: 1fr;
  }
  .grid-4col-centered {
    grid-template-columns: 1fr;
  }
}
